gnumakefile: don't squelch _version output
[pspp] / ChangeLog
1 2010-03-31  Eric Blake  <eblake@redhat.com>
2
3         gnumakefile: don't squelch _version output
4         * top/GNUmakefile (_version): Create one-shot dependency rather
5         than using $(shell) when version must be regenerated.
6         (_autoreconf): Run verbosely, by default.
7
8         sys_time: avoid compiler warnings
9         * lib/sys_time.in.h (includes): Ensure gcc pragma is
10         unconditional, fixing regression from 2010-03-29.
11         Reported by Simon Josefsson.
12
13 2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
14
15         maint.mk: s/_header_without_use/_sc_header_without_use/
16         * top/maint.mk (_sc_header_without_use): Rename from _header_without_use.
17         (sc_prohibit_assert_without_use): Use the new name.
18         (sc_prohibit_close_stream_without_use): Likewise.
19         (sc_prohibit_getopt_without_use): Likewise.
20         (sc_prohibit_quotearg_without_use): Likewise.
21         (sc_prohibit_quote_without_use): Likewise.
22         (sc_prohibit_long_options_without_use): Likewise.
23         (sc_prohibit_inttostr_without_use): Likewise.
24         (sc_prohibit_ignore_value_without_use): Likewise.
25         (sc_prohibit_error_without_use): Likewise.
26         (sc_prohibit_xalloc_without_use): Likewise.
27         (sc_prohibit_hash_without_use): Likewise.
28         (sc_prohibit_hash_pjw_without_use): Likewise.
29         (sc_prohibit_safe_read_without_use): Likewise.
30         (sc_prohibit_argmatch_without_use): Likewise.
31         (sc_prohibit_canonicalize_without_use): Likewise.
32         (sc_prohibit_root_dev_ino_without_use): Likewise.
33         (sc_prohibit_openat_without_use): Likewise.
34         (sc_prohibit_c_ctype_without_use): Likewise.
35         (sc_prohibit_signal_without_use): Likewise.
36         (sc_prohibit_intprops_without_use): Likewise.
37
38 2010-03-30  Eric Blake  <eblake@redhat.com>
39
40         maint: improve module indicators
41         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE)
42         (gl_MODULE_INDICATOR, gl_MODULE_INDICATOR_FOR_TESTS): Fit in 80
43         columns, and avoid extra macro expansion.
44
45         fdopendir: work around FreeBSD bug
46         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
47         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Set it.
48         * modules/dirent (Makefile.am): Substitute it.
49         * lib/dirent.in.h (fdopendir): Supply missing FreeBSD
50         declaration.
51         * doc/posix-functions/fdopendir.texi (fdopendir): Document the
52         fix.
53         Reported by Christian Weisgerber <naddy@mips.inka.de>.
54
55 2010-03-29  Bruno Haible  <bruno@clisp.org>
56
57         Emit #pragma system_header after the inclusion guard, not before.
58         * lib/arpa_inet.in.h: Emit #pragma system_header after the inclusion
59         guard that spans the entire file, not before. This enables an
60         optimization in GCC's preprocessor.
61         * lib/ctype.in.h: Likewise.
62         * lib/dirent.in.h: Likewise.
63         * lib/errno.in.h: Likewise.
64         * lib/float.in.h: Likewise.
65         * lib/getopt.in.h: Likewise.
66         * lib/iconv.in.h: Likewise.
67         * lib/langinfo.in.h: Likewise.
68         * lib/locale.in.h: Likewise.
69         * lib/math.in.h: Likewise.
70         * lib/netdb.in.h: Likewise.
71         * lib/netinet_in.in.h: Likewise.
72         * lib/pty.in.h: Likewise.
73         * lib/sched.in.h: Likewise.
74         * lib/se-selinux.in.h: Likewise.
75         * lib/search.in.h: Likewise.
76         * lib/spawn.in.h: Likewise.
77         * lib/stdarg.in.h: Likewise.
78         * lib/stdint.in.h: Likewise.
79         * lib/string.in.h: Likewise.
80         * lib/strings.in.h: Likewise.
81         * lib/sys_file.in.h: Likewise.
82         * lib/sys_ioctl.in.h: Likewise.
83         * lib/sys_time.in.h: Likewise.
84         * lib/sys_times.in.h: Likewise.
85         * lib/sys_utsname.in.h: Likewise.
86         * lib/sys_wait.in.h: Likewise.
87         * lib/sysexits.in.h: Likewise.
88         * lib/wctype.in.h: Likewise.
89
90 2010-03-28  James Youngman  <jay@gnu.org>
91
92         save-cwd: don't leak a file descriptor when the caller execs.
93         * lib/save-cwd.c (save_cwd): set the close-on-exec flag for the
94         saved file descriptor.
95         * modules/save-cwd (Depends-on): Depend on cloexec.
96
97 2010-03-29  Bruno Haible  <bruno@clisp.org>
98
99         Remove vestiges of fts-lgpl module.
100         * lib/fts_.h: Assume GNULIB_FTS is 1.
101         * lib/fts.c: Likewise.
102         * modules/fts (configure.ac): Remove gl_MODULE_INDICATOR invocation.
103
104 2010-03-28  Bruno Haible  <bruno@clisp.org>
105
106         Fix definition of tests witness macro.
107         * gnulib-tool (func_import): Fix definition of witness macro.
108
109 2010-03-28  Bruno Haible  <bruno@clisp.org>
110
111         Fix ioctl's protoype on glibc systems.
112         * lib/sys_ioctl.in.h (ioctl): If REPLACE_IOCTL is 1, use a wrapper. Use
113         _GL_CXXALIAS_SYS, not _GL_CXXALIAS_SYS_CAST.
114         * lib/ioctl.c (rpl_ioctl) [HAVE_IOCTL]: New wrapper.
115         * modules/ioctl (configure.ac): Test whether ioctl has the POSIX
116         signature. If not, arrange to replace the ioctl function.
117         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
118         REPLACE_IOCTL.
119         * modules/sys_ioctl (Makefile.am): Substitute REPLACE_IOCTL.
120         * doc/posix-functions/ioctl.texi: Mention the glibc problem.
121         Reported by Ludovic Courtès <ludo@gnu.org>.
122
123 2010-03-28  Javier Villavicencio  <the_paya@gentoo.org>
124
125         exclude: fix the case of globs vs. EXCLUDE_INCLUDE
126         * lib/exclude.c (excluded_file_pattern_p): Fix logic error that
127         made it so grep -r --include=GLOB* ... did not work.
128
129 2010-03-26  Jim Meyering  <meyering@redhat.com>
130             Eric Blake  <eblake@redhat.com>
131
132         maint.mk: prohibit use of test's -o and -a operators
133         * top/maint.mk (sc_prohibit_test_minus_ao): New rule.
134
135 2010-03-28  Bruno Haible  <bruno@clisp.org>
136
137         Remove unused GNULIB_XYZ macro definitions.
138         * modules/crypto/gc-camellia (configure.ac): Remove gl_MODULE_INDICATOR
139         invocation.
140
141 2010-03-28  Bruno Haible  <bruno@clisp.org>
142
143         Mark privileged tests modules.
144         * modules/idpriv-drop-tests (Status): New section.
145         * modules/idpriv-droptemp-tests (Status): New section.
146
147 2010-03-28  Bruno Haible  <bruno@clisp.org>
148
149         Split C++ tests into separate tests modules.
150         * modules/dirent-c++-tests: New file, extracted from
151         modules/dirent-tests.
152         * modules/dirent-tests: Depend on it.
153         * modules/fcntl-h-c++-tests: New file, extracted from
154         modules/fcntl-h-tests.
155         * modules/fcntl-h-tests: Depend on it.
156         * modules/glob-c++-tests: New file, extracted from modules/glob-tests.
157         * modules/glob-tests: Depend on it.
158         * modules/iconv-h-c++-tests: New file, extracted from
159         modules/iconv-h-tests.
160         * modules/iconv-h-tests: Depend on it.
161         * modules/langinfo-c++-tests: New file, extracted from
162         modules/langinfo-tests.
163         * modules/langinfo-tests: Depend on it.
164         * modules/locale-c++-tests: New file, extracted from
165         modules/locale-tests.
166         * modules/locale-tests: Depend on it.
167         * modules/math-c++-tests: New file, extracted from modules/math-tests.
168         * modules/math-tests: Depend on it.
169         * modules/pty-c++-tests: New file, extracted from modules/pty-tests.
170         * modules/pty-tests: Depend on it.
171         * modules/search-c++-tests: New file, extracted from
172         modules/search-tests.
173         * modules/search-tests: Depend on it.
174         * modules/signal-c++-tests: New file, extracted from
175         modules/signal-tests.
176         * modules/signal-tests: Depend on it.
177         * modules/spawn-c++-tests: New file, extracted from
178         modules/spawn-tests.
179         * modules/spawn-tests: Depend on it.
180         * modules/stdio-c++-tests: New file, extracted from
181         modules/stdio-tests.
182         * modules/stdio-tests: Depend on it.
183         * modules/stdlib-c++-tests: New file, extracted from
184         modules/stdlib-tests.
185         * modules/stdlib-tests: Depend on it.
186         * modules/string-c++-tests: New file, extracted from
187         modules/string-tests.
188         * modules/string-tests: Depend on it.
189         * modules/sys_ioctl-c++-tests: New file, extracted from
190         modules/sys_ioctl-tests.
191         * modules/sys_ioctl-tests: Depend on it.
192         * modules/sys_select-c++-tests: New file, extracted from
193         modules/sys_select-tests.
194         * modules/sys_select-tests: Depend on it.
195         * modules/sys_socket-c++-tests: New file, extracted from
196         modules/sys_socket-tests.
197         * modules/sys_socket-tests: Depend on it.
198         * modules/sys_stat-c++-tests: New file, extracted from
199         modules/sys_stat-tests.
200         * modules/sys_stat-tests: Depend on it.
201         * modules/sys_time-c++-tests: New file, extracted from
202         modules/sys_time-tests.
203         * modules/sys_time-tests: Depend on it.
204         * modules/time-c++-tests: New file, extracted from modules/time-tests.
205         * modules/time-tests: Depend on it.
206         * modules/unistd-c++-tests: New file, extracted from
207         modules/unistd-tests.
208         * modules/unistd-tests: Depend on it.
209         * modules/wchar-c++-tests: New file, extracted from
210         modules/wchar-tests.
211         * modules/wchar-tests: Depend on it.
212         * modules/wctype-c++-tests: New file, extracted from
213         modules/wctype-tests.
214         * modules/wctype-tests: Depend on it.
215         Reported by Simon Josefsson.
216
217 2010-03-28  Bruno Haible  <bruno@clisp.org>
218
219         gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
220         * gnulib-tool (func_exists_module): New function, extracted from
221         func_verify_module.
222         (func_verify_module): Use it.
223         (func_get_dependencies): Synthetize a dependency from 'foo-tests' to
224         'foo' only if 'foo' exists.
225         * doc/gnulib.texi (Extra tests modules): Explain how to split a tests
226         module.
227
228 2010-03-28  Bruno Haible  <bruno@clisp.org>
229
230         gnulib-tool: Add support for special categories of tests.
231         * gnulib-tool: New options --with-c++-tests, --with-longrunning-tests,
232         --with-privileged-tests, --with-unportable-tests, --with-all-tests.
233         (func_usage): Document them.
234         (inc_cxx_tests, inc_longrunning_tests, inc_privileged_tests,
235         inc_unportable_tests, inc_all_tests): New variables.
236         (func_acceptable): Consider these variables.
237         (func_modules_transitive_closure): Make it work when the 'Status' field
238         consists of multiple words.
239         (func_import): Store and restore the values of inc_cxx_tests,
240         inc_longrunning_tests, inc_privileged_tests, inc_unportable_tests,
241         inc_all_tests in gnulib-comp.m4.
242         (func_create_testdir): Set inc_all_tests to true.
243         * doc/gnulib.texi (Extra tests modules): New section.
244         Suggested by Jim Meyering.
245
246 2010-03-28  Bruno Haible  <bruno@clisp.org>
247
248         ansi-c++-opt: Allow turning off the C++ build by default.
249         * m4/ansi-c++.m4 (gl_CXX_CHOICE): Let CXX_CHOICE default to 'no' if
250         gl_CXX_CHOICE_DEFAULT_NO is defined.
251         Requested by Eric Blake.
252
253 2010-03-28  Bruno Haible  <bruno@clisp.org>
254
255         unistd: Avoid #define replacements in C++ mode.
256         * lib/unistd.in.h (socket, connect, accept, bind, getpeername,
257         getsockname, getsockopt, listen, recv, send, recvfrom, sendto,
258         setsockopt, shutdown, select): In C++, attach a warning to the function
259         if possible, rather than #defining the symbol to a dysfunctional alias.
260         Reported by John W. Eaton <jwe@gnu.org>.
261
262 2010-03-28  Bruno Haible  <bruno@clisp.org>
263
264         Fix link errors on mingw.
265         * lib/sys_ioctl.in.h (ioctl): Fix declaration idiom.
266         * modules/sys_ioctl-tests (Makefile.am): Link test-sys_ioctl-c++ with
267         $(LIBSOCKET).
268         * modules/sys_select-tests (Makefile.am): Link test-sys_select-c++ with
269         $(LIBSOCKET).
270
271 2010-03-28  Bruno Haible  <bruno@clisp.org>
272             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
273
274         lib-ignore: Determine different options for different compilers.
275         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Set a variable which
276         depends on the current language (C/C++/Fortran). Don't set LDFLAGS.
277         Add comments.
278         (_gl_IGNORE_UNUSED_LIBRARIES_OPTIONS): New macro.
279         * NEWS: Mention the change.
280
281 2010-03-27  Bruno Haible  <bruno@clisp.org>
282
283         Remove unused GNULIB_XYZ macro definitions.
284         * modules/dup3 (configure.ac): Remove gl_MODULE_INDICATOR invocation.
285         * modules/fseek (configure.ac): Likewise.
286         * modules/ioctl (configure.ac): Likewise.
287         * modules/open (configure.ac): Likewise.
288         * modules/stdlib-safer (configure.ac): Likewise.
289
290 2010-03-27  Bruno Haible  <bruno@clisp.org>
291
292         Add a remark about certain modules.
293         * modules/malloc (Comment): New section.
294         * modules/realloc (Comment): Likewise.
295         * modules/sigpipe (Comment): Likewise.
296
297 2010-03-27  Bruno Haible  <bruno@clisp.org>
298
299         Resolve conflict between the two kinds of module indicators.
300         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Define
301         GNULIB_TEST_XYZ instead of GNULIB_XYZ.
302         * modules/canonicalize (configure.ac): Invoke
303         gl_MODULE_INDICATOR_FOR_TESTS.
304         * tests/test-canonicalize-lgpl.c: Test GNULIB_TEST_XYZ instead of
305         GNULIB_XYZ.
306         * tests/test-dirent-c++.cc: Likewise.
307         * tests/test-dirent-safer.c: Likewise.
308         * tests/test-dup2.c: Likewise.
309         * tests/test-fchdir.c: Likewise.
310         * tests/test-fcntl-h-c++.cc: Likewise.
311         * tests/test-getopt.c: Likewise.
312         * tests/test-getopt.h: Likewise.
313         * tests/test-langinfo-c++.cc: Likewise.
314         * tests/test-locale-c++.cc: Likewise.
315         * tests/test-math-c++.cc: Likewise.
316         * tests/test-pty-c++.cc: Likewise.
317         * tests/test-search-c++.cc: Likewise.
318         * tests/test-signal-c++.cc: Likewise.
319         * tests/test-spawn-c++.cc: Likewise.
320         * tests/test-stdio-c++.cc: Likewise.
321         * tests/test-stdlib-c++.cc: Likewise.
322         * tests/test-string-c++.cc: Likewise.
323         * tests/test-sys_ioctl-c++.cc: Likewise.
324         * tests/test-sys_select-c++.cc: Likewise.
325         * tests/test-sys_socket-c++.cc: Likewise.
326         * tests/test-sys_stat-c++.cc: Likewise.
327         * tests/test-sys_time-c++.cc: Likewise.
328         * tests/test-time-c++.cc: Likewise.
329         * tests/test-unistd-c++.cc: Likewise.
330         * tests/test-wchar-c++.cc: Likewise.
331         * tests/uninorm/test-u8-nfc.c: Likewise.
332         * tests/uninorm/test-u8-nfd.c: Likewise.
333         * tests/uninorm/test-u8-nfkc.c: Likewise.
334         * tests/uninorm/test-u8-nfkd.c: Likewise.
335         * tests/uninorm/test-u16-nfc.c: Likewise.
336         * tests/uninorm/test-u16-nfd.c: Likewise.
337         * tests/uninorm/test-u16-nfkc.c: Likewise.
338         * tests/uninorm/test-u16-nfkd.c: Likewise.
339         * tests/uninorm/test-u32-nfc.c: Likewise.
340         * tests/uninorm/test-u32-nfc-big.c: Likewise.
341         * tests/uninorm/test-u32-nfd.c: Likewise.
342         * tests/uninorm/test-u32-nfd-big.c: Likewise.
343         * tests/uninorm/test-u32-nfkc.c: Likewise.
344         * tests/uninorm/test-u32-nfkc-big.c: Likewise.
345         * tests/uninorm/test-u32-nfkd.c: Likewise.
346         * tests/uninorm/test-u32-nfkd-big.c: Likewise.
347         * tests/uninorm/test-u32-normalize-big.c: Likewise.
348
349 2010-03-27  Bruno Haible  <bruno@clisp.org>
350
351         Distinguish two kinds of module indicators.
352         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Renamed from
353         gl_MODULE_INDICATOR.
354         (gl_MODULE_INDICATOR): New macro.
355         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
356         gl_MODULE_INDICATOR_FOR_TESTS instead of gl_MODULE_INDICATOR.
357         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
358         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
359         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
360         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
361         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
362         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
363         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
364         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
365         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
366         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
367         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
368         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
369         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
370         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
371         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
372         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
373         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
374         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
375         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
376         * modules/cloexec (configure.ac): Likewise.
377         * modules/getopt-gnu (configure.ac): Likewise.
378         * modules/uninorm/u8-normalize (configure.ac): Likewise.
379         * modules/uninorm/u16-normalize (configure.ac): Likewise.
380         * modules/uninorm/u32-normalize (configure.ac): Likewise.
381         * modules/fdopendir (configure.ac): Invoke gl_MODULE_INDICATOR.
382
383 2010-03-27  Bruno Haible  <bruno@clisp.org>
384
385         New module description field 'Comment'.
386         * gnulib-tool: New option --extract-comment.
387         (func_usage): Document it.
388         (sed_extract_prog, sed_extract_field_header): Support 'Comment' field.
389         (func_get_comment): New function.
390         * modules/TEMPLATE-EXTENDED: Add a blank Comment field.
391
392 2010-03-27  Bruno Haible  <bruno@clisp.org>
393
394         Addendum to 2010-02-07 commit.
395         * gnulib-tool (func_usage): Document --extract-applicability option.
396
397 2010-03-27  Bruno Haible  <bruno@clisp.org>
398
399         Use GNULIB_POSIXCHECK instead of GNULIB_PORTCHECK.
400         * lib/time.in.h (asctime, asctime_r, ctime, ctime_r): Test
401         GNULIB_POSIXCHECK, not GNULIB_PORTCHECK. Provide compile-time warnings
402         rather than link errors.
403
404 2010-03-27  Bruno Haible  <bruno@clisp.org>
405
406         Avoid side effects from tests-related modules on the compilation of lib.
407         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_CONDITION): New macro.
408         (gl_MODULE_INDICATOR_SET_VARIABLE): Use its expansion as a value.
409         * gnulib-tool (func_emit_tests_Makefile_am): Accept a witness_macro
410         parameter. Emit into AM_CPPFLAGS a definition of the designated C
411         macro.
412         (func_import): Define a witness macro. Assign it a value that depends
413         on the current package. Override gl_MODULE_INDICATOR_CONDITION for the
414         tests-related modules.
415         (func_create_testdir): Update func_emit_tests_Makefile_am invocation.
416         Reported by Jim Meyering.
417
418 2010-03-27  Bruno Haible  <bruno@clisp.org>
419
420         Factorize common .m4 code.
421         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE): New macro.
422         * m4/arpa_inet_h.m4 (gl_ARPA_INET_MODULE_INDICATOR): Use it.
423         * m4/ctype.m4 (gl_CTYPE_MODULE_INDICATOR): Likewise.
424         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Likewise.
425         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
426         * m4/iconv_h.m4 (gl_ICONV_MODULE_INDICATOR): Likewise.
427         * m4/inttypes.m4 (gl_INTTYPES_MODULE_INDICATOR): Likewise.
428         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
429         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
430         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
431         * m4/netdb_h.m4 (gl_NETDB_MODULE_INDICATOR): Likewise.
432         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
433         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
434         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
435         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
436         * m4/stddef_h.m4 (gl_STDDEF_MODULE_INDICATOR): Likewise.
437         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
438         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
439         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
440         * m4/strings_h.m4 (gl_STRINGS_MODULE_INDICATOR): Likewise.
441         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_MODULE_INDICATOR): Likewise.
442         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
443         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
444         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
445         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
446         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
447         * m4/sys_times_h.m4 (gl_SYS_TIMES_MODULE_INDICATOR): Likewise.
448         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_MODULE_INDICATOR): Likewise.
449         * m4/sys_wait_h.m4 (gl_SYS_WAIT_MODULE_INDICATOR): Likewise.
450         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
451         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
452         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
453
454 2010-03-27  Bruno Haible  <bruno@clisp.org>
455
456         Fix a compilation error on Cygwin with g++ >= 4.3.
457         * lib/sys_stat.in.h (lchmod): Don't warn about the use of this function
458         if it is undefined or if we alias it to chmod.
459         (lstat): Don't warn about the use of this function if it is undefined
460         or if we alias it to stat.
461         Reported by Simon Josefsson.
462
463 2010-03-27  Bruno Haible  <bruno@clisp.org>
464
465         * m4/getlogin.m4 (gl_FUNC_GETLOGIN): Renamed from gl_GETLOGIN.
466         * modules/getlogin (configure.ac): Update.
467
468         * m4/getlogin_r.m4 (gl_FUNC_GETLOGIN_R): Renamed from gl_GETLOGIN_R.
469         * modules/getlogin_r (configure.ac): Update.
470
471         * m4/inet_ntop.m4 (gl_FUNC_INET_NTOP): Renamed from gl_INET_NTOP.
472         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Update.
473         * modules/inet_ntop (configure.ac): Update.
474
475         * m4/inet_pton.m4 (gl_FUNC_INET_PTON): Renamed from gl_INET_PTON.
476         * modules/inet_pton (configure.ac): Update.
477
478         * m4/mbslen.m4 (gl_FUNC_MBSLEN): Renamed from gl_MBSLEN.
479         * modules/mbslen (configure.ac): Update.
480
481         * m4/pty.m4 (gl_FUNC_FORKPTY): Renamed from gl_FORKPTY.
482         (gl_FUNC_OPENPTY): Renamed from gl_OPENPTY.
483         * modules/forkpty (configure.ac): Update.
484         * modules/openpty (configure.ac): Update.
485
486 2010-03-26  Simon Josefsson  <simon@josefsson.org>
487
488         * top/maint.mk (sc_texinfo_acronym): Don't infloop if there is
489         no *.texi files.  Reported by Eric Blake <eblake@redhat.com>.
490
491 2010-03-25  Eric Blake  <eblake@redhat.com>
492
493         maint: use pragma consistently across replacement headers
494         * lib/ctype.in.h (system_header): Hoist for consistent placement.
495         * lib/dirent.in.h (system_header): Likewise.
496         * lib/errno.in.h (system_header): Likewise.
497         * lib/float.in.h (system_header): Likewise.
498         * lib/getopt.in.h (system_header): Likewise.
499         * lib/iconv.in.h (system_header): Likewise.
500         * lib/inttypes.in.h (system_header): Likewise.
501         * lib/langinfo.in.h (system_header): Likewise.
502         * lib/locale.in.h (system_header): Likewise.
503         * lib/math.in.h (system_header): Likewise.
504         * lib/netdb.in.h (system_header): Likewise.
505         * lib/netinet_in.in.h (system_header): Likewise.
506         * lib/pty.in.h (system_header): Likewise.
507         * lib/sched.in.h (system_header): Likewise.
508         * lib/se-selinux.in.h (system_header): Likewise.
509         * lib/search.in.h (system_header): Likewise.
510         * lib/spawn.in.h (system_header): Likewise.
511         * lib/stdarg.in.h (system_header): Likewise.
512         * lib/stdint.in.h (system_header): Likewise.
513         * lib/string.in.h (system_header): Likewise.
514         * lib/strings.in.h (system_header): Likewise.
515         * lib/sys_file.in.h (system_header): Likewise.
516         * lib/sys_ioctl.in.h (system_header): Likewise.
517         * lib/sys_socket.in.h (system_header): Likewise.
518         * lib/sys_times.in.h (system_header): Likewise.
519         * lib/sys_utsname.in.h (system_header): Likewise.
520         * lib/sys_wait.in.h (system_header): Likewise.
521         * lib/sysexits.in.h (system_header): Likewise.
522         * lib/unistd.in.h (system_header): Likewise.
523         * lib/wctype.in.h (system_header): Likewise.
524
525         arpa/inet: fix mingw compilation warning
526         * lib/arpa_inet.in.h (system_header): Hoist to be unconditional.
527         Reported by Matthew Bolte.
528
529 2010-03-25  Bruno Haible  <bruno@clisp.org>
530
531         Avoid collision between gnulib wrapper and libintl wrapper.
532         * lib/printf.c (printf): Don't define if a printf wrapper is already
533         defined in intl/printf.c.
534         Reported by Michel Boaventura <michel@michelboaventura.com>.
535
536 2010-03-25  Bruno Haible  <bruno@clisp.org>
537
538         Use ANSI C.
539         * lib/readutmp.h (getutent): Provide ANSI C prototype.
540
541 2010-03-25  Bruno Haible  <bruno@clisp.org>
542
543         Minor formatting changes.
544         * lib/acosl.c: Insert space before function argument list.
545         * lib/argz.c: Likewise.
546         * lib/asinl.c: Likewise.
547         * lib/expl.c: Likewise.
548         * lib/gen-uni-tables.c: Likewise.
549         * lib/gettext.h: Likewise.
550         * lib/glthread/lock.h: Likewise.
551         * lib/tanl.c: Likewise.
552         * lib/uniname/uniname.c: Likewise.
553         * tests/test-idpriv-drop.c: Likewise.
554         * tests/test-idpriv-droptemp.c: Likewise.
555         * tests/test-lock.c: Likewise.
556         * tests/test-tls.c: Likewise.
557         * lib/argp-help.c: Insert space before function-like macro argument
558         list.
559         * lib/memcmp.c: Likewise.
560         * tests/test-base64.c: Likewise.
561         * lib/localename.c: Insert space before sizeof's argument list.
562         * lib/safe-alloc.h: Likewise.
563         * lib/file-set.h: Insert space before macro argument list.
564         * tests/test-argp.c: Likewise.
565         * lib/argp-namefrob.h: Insert space before function parameter list.
566         * lib/getaddrinfo.c: Likewise.
567         * lib/netdb.in.h: Likewise.
568         * lib/parse-duration.h: Likewise.
569         * lib/parse-duration.c: Likewise.
570         * lib/poll.c: Likewise.
571         * lib/select.c: Likewise.
572         * lib/trim.h: Likewise.
573         * tests/test-usleep.c: Likewise.
574         * lib/ldexpl.c: Insert space before function parameter list and before
575         function argument list.
576         * lib/logl.c: Likewise.
577         * lib/sqrtl.c: Likewise.
578         * lib/trim.c: Likewise.
579         * lib/cosl.c: Use GNU style indentation. Insert space before function
580         argument list.
581         * lib/sinl.c: Likewise.
582         * lib/tsearch.c: Insert space after 'for'.
583         Reported by Jim Meyering.
584
585 2010-03-23  Pádraig Brady  <P@draigBrady.com>  (tiny change)
586
587         * maint.mk (sc_Wundef_boolean): Check for the presence of the
588         config header before grepping, as it's not present before
589         autoreconf/configure are run.  Reported by Simon Josefsson.
590
591 2010-03-23  Bruno Haible  <bruno@clisp.org>
592
593         pt_chown: Make it work with automake < 1.11.
594         * modules/pt_chown (Makefile.am): Define pkglibexecdir.
595         Reported by Simon Josefsson.
596
597 2010-03-23  Bruno Haible  <bruno@clisp.org>
598
599         pt_chown: Don't depend on GPLed modules.
600         * lib/pt_chown.c: Don't include idpriv.h.
601         (main): Don't drop privileges.
602         * modules/pt_chown (Depends-on): Remove idpriv-drop.
603         Reported by Simon Josefsson.
604
605 2010-03-24  Simon Josefsson  <simon@josefsson.org>
606
607         * top/maint.mk (sc_texinfo_acronym): Add rule, based on
608         suggestions from karl@freefriends.org (Karl Berry).
609
610 2010-03-22  Eric Blake  <eblake@redhat.com>
611
612         gethostname: further tweaks
613         * lib/unistd.in.h (includes): Only worry about <winsock2.h> if we
614         are overriding gethostname.
615         Suggested by Bruno Haible.
616
617 2010-03-21  Bruno Haible  <bruno@clisp.org>
618
619         Fix comments.
620         * lib/forkpty.c (rpl_forkpty): Fix comment.
621         * lib/openpty.c (rpl_openpty): Likewise.
622         Reported by Eric Blake.
623
624 2010-03-22  Eric Blake  <eblake@redhat.com>
625
626         gethostname: fix build on mingw
627         * lib/unistd.in.h (includes): Work around fact that mingw
628         <winsock2.h> re-includes <unistd.h>, by avoiding any
629         redeclarations if we are being included by <winsock2.h>.
630         Reported by Matthias Bolte.
631
632 2010-03-21  Bruno Haible  <bruno@clisp.org>
633
634         forkpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
635         * lib/forkpty.c (forkpty): New replacement function, from glibc with
636         modifications.
637         * lib/pty.in.h (forkpty): Update declaration. Add comments.
638         * m4/pty.m4 (gl_FORKPTY): If forkpty is not declared, arrange to
639         provide the replacement.
640         * modules/forkpty (Depends-on): Add openpty, login_tty.
641         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_FORKPTY.
642         * modules/pty (Makefile.am): Substitute HAVE_FORKPTY.
643         * doc/glibc-functions/forkpty.texi: More supported platforms.
644         * config/srclist.txt: Add forkpty.c (commented).
645
646 2010-03-21  Bruno Haible  <bruno@clisp.org>
647
648         * modules/forkpty-tests: Use the common TEMPLATE-TESTS.
649         (Makefile.am): Verify that PTY_LIB is defined.
650
651         * modules/openpty-tests: Use the common TEMPLATE-TESTS.
652
653 2010-03-21  Bruno Haible  <bruno@clisp.org>
654
655         Tests for module 'login_tty'.
656         * modules/login_tty-tests: New file.
657         * tests/test-login_tty.c: New file.
658
659         New module 'login_tty'.
660         * lib/login_tty.c: New file.
661         * m4/pty.m4 (gl_FUNC_LOGIN_TTY): New macro.
662         * modules/login_tty: New file.
663         * doc/glibc-functions/login_tty.texi: Mention the new module.
664
665 2010-03-21  Bruno Haible  <bruno@clisp.org>
666
667         login_tty: Documentation.
668         * doc/glibc-functions/login_tty.texi: New file.
669         * doc/gnulib.texi (Glibc <utmp.h>): Include it.
670
671 2010-03-21  Bruno Haible  <bruno@clisp.org>
672
673         pty: Consistent macro naming.
674         * m4/pty_h.m4 (gl_PTY_H): Renamed from gl_PTY.
675         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): Update.
676         * modules/pty (configure.ac): Update.
677
678 2010-03-21  Bruno Haible  <bruno@clisp.org>
679
680         Tests for openpty: Make stricter.
681         * tests/test-openpty.c (main): Add test of canonical processing and
682         erase.
683         * modules/openpty-tests (Makefile.am): Verify that PTY_LIB is defined.
684
685         openpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
686         * lib/openpty.c (openpty): New replacement function.
687         * lib/pty.in.h: Include <termios.h>.
688         (openpty): Update declaration. Add comments.
689         * m4/pty.m4 (gl_OPENPTY): Require AC_USE_SYSTEM_EXTENSIONS. If openpty
690         is not declared, arrange to provide the replacement. Check for _getpty
691         and posix_openpt.
692         * modules/openpty (Depends-on): Add extensions, fcntl-h, ioctl.
693         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_OPENPTY.
694         * modules/pty (Makefile.am): Substitute HAVE_OPENPTY.
695         * modules/pty-tests (test_pty_c___LDADD): New variable.
696         * doc/glibc-functions/openpty.texi: More supported platforms.
697
698 2010-03-21  Bruno Haible  <bruno@clisp.org>
699
700         setenv: Tweaks.
701         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Include necessary headers in
702         the test program.
703         * doc/posix-functions/setenv.texi: Update platforms list.
704
705 2010-03-21  Bruno Haible  <bruno@clisp.org>
706
707         New module 'unlockpt'.
708         * lib/unlockpt.c: New file, from glibc with modifications.
709         * m4/unlockpt.m4: New file.
710         * modules/unlockpt: New file.
711         * lib/stdlib.in.h (unlockpt): New declaration.
712         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether unlockpt is declared.
713         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_UNLOCKPT, HAVE_UNLOCKPT.
714         * modules/stdlib (Makefile.am): Substitute GNULIB_UNLOCKPT,
715         HAVE_UNLOCKPT.
716         * doc/posix-functions/unlockpt.texi: Mention the new module.
717         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::unlockpt.
718         * config/srclist.txt: Add unlockpt.c (commented).
719
720 2010-03-21  Jim Meyering  <meyering@redhat.com>
721
722         maint.mk: prohibit inclusion of "intprops.h" without use
723         * top/maint.mk (sc_prohibit_intprops_without_use): New rule.
724
725 2010-03-21  Bruno Haible  <bruno@clisp.org>
726
727         New module 'grantpt'.
728         * lib/grantpt.c: New file, from glibc with modifications.
729         * m4/grantpt.m4: New file.
730         * modules/grantpt: New file.
731         * lib/stdlib.in.h (grantpt): New declaration.
732         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether grantpt is declared.
733         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GRANTPT, HAVE_GRANTPT.
734         * modules/stdlib (Makefile.am): Substitute GNULIB_GRANTPT,
735         HAVE_GRANTPT.
736         * doc/posix-functions/grantpt.texi: Mention the new module.
737         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::grantpt.
738         * config/srclist.txt: Add grantpt.c (commented).
739
740 2010-03-21  Bruno Haible  <bruno@clisp.org>
741
742         New module 'pt_chown'.
743         * lib/pt_chown.c: New file, from glibc with modifications.
744         * lib/pty-private.h: New file, from glibc with modifications.
745         * modules/pt_chown: New file.
746         * config/srclist.txt: Add pt_chown.c, pty-private.h (commented).
747
748 2010-03-21  Bruno Haible  <bruno@clisp.org>
749
750         Tests for module 'ptsname'.
751         * modules/ptsname-tests: New file.
752         * tests/test-ptsname.c: New file.
753
754         New module 'ptsname'.
755         * lib/ptsname.c: New file, from glibc with modifications.
756         * m4/ptsname.m4: New file.
757         * modules/ptsname: New file.
758         * lib/stdlib.in.h (ptsname): New declaration.
759         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether ptsname is declared.
760         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PTSNAME, HAVE_PTSNAME.
761         * modules/stdlib (Makefile.am): Substitute GNULIB_PTSNAME,
762         HAVE_PTSNAME.
763         * doc/posix-functions/ptsname.texi: Mention the new module.
764         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::ptsname.
765         * config/srclist.txt: Add ptsname.c (commented).
766
767 2010-03-21  Bruno Haible  <bruno@clisp.org>
768
769         Tests for module 'ttyname_r'.
770         * modules/ttyname_r-tests: New file.
771         * tests/test-ttyname_r.c: New file.
772
773         New module 'ttyname_r'.
774         * lib/ttyname_r.c: New file.
775         * m4/ttyname_r.m4: New file.
776         * modules/ttyname_r: New file.
777         * lib/unistd.in.h (ttyname_r): New declaration.
778         * m4/unistd_h.m4 (gl_UNISTD_H): Check whether ttyname_r is declared.
779         (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_TTYNAME_R, HAVE_TTYNAME_R.
780         * modules/unistd (Makefile.am): Substitute GNULIB_TTYNAME_R,
781         HAVE_TTYNAME_R.
782         * tests/test-unistd-c++.cc: Check GNULIB_NAMESPACE::ttyname_r.
783         * doc/posix-functions/ttyname_r.texi: Mention the new module.
784
785 2010-03-20  Bruno Haible  <bruno@clisp.org>
786
787         signal: Undefine macro definitions in C++ mode.
788         * lib/signal.in.h (sigismember, sigemptyset, sigaddset, sigdelset,
789         sigfillset): Undefine macro definitions from the system header in C++
790         mode.
791         Reported by John W. Eaton <jwe@gnu.org>.
792
793 2010-03-20  Bruno Haible  <bruno@clisp.org>
794
795         Ensure no #include statements inside extern "C" { ... }.
796         * lib/obstack.h: Shrink extern "C" { ... } region so that it does not
797         contain #include statements.
798         * lib/time.in.h: Likewise.
799
800 2010-03-20  Bruno Haible  <bruno@clisp.org>
801
802         Make _GL_WARN_ON_USE usable in C++ and C mode in the same compilation.
803         * build-aux/warn-on-use.h (_GL_WARN_EXTERN_C): New macro.
804         (_GL_WARN_ON_USE, _GL_WARN_ON_USE_CXX): Likewise.
805         Reported by John W. Eaton <jwe@gnu.org>.
806
807 2010-03-20  Bruno Haible  <bruno@clisp.org>
808
809         * m4/unlink.m4 (gl_FUNC_UNLINK): Fix last commit.
810         Reported by Jim Meyering.
811
812 2010-03-20  Bruno Haible  <bruno@clisp.org>
813
814         pipe: Set errno upon failure.
815         * lib/pipe.h: Specify that when -1 is returned, errno is set.
816         * lib/pipe.c (create_pipe): Set errno when returning -1. Use the right
817         errno value in error message.
818
819 2010-03-20  Bruno Haible  <bruno@clisp.org>
820             Jim Meyering  <meyering@redhat.com>
821
822         lchown: Avoid "unused variable" warning.
823         * lib/lchown.c (rpl_lchown): Move variable 'st' into #if block.
824
825 2010-03-20  Bruno Haible  <bruno@clisp.org>
826
827         Work around unlink() bug on MacOS X 10.5.6.
828         * lib/unlink.c (rpl_unlink): If UNLINK_PARENT_BUG is defined, fail when
829         attempting to unlink a parent directory.
830         * m4/unlink.m4 (gl_FUNC_UNLINK): Require AC_CANONICAL_HOST. Test for
831         MacOS X 10.5 bug. If the bug is present, define UNLINK_PARENT_BUG and
832         activate for the replacement function.
833         * doc/posix-functions/unlink.texi: Mention the MacOS X 10.5 bug.
834
835 2010-03-20  Bruno Haible  <bruno@clisp.org>
836
837         Fix link errors on Solaris 8.
838         * modules/dirent-tests (test_dirent_c___LDADD): Add LIB_NANOSLEEP.
839         * modules/wctype-tests (test_wctype_c___LDADD): Likewise.
840
841 2010-03-19  Jim Meyering  <meyering@redhat.com>
842
843         regcomp.c: make non-_LIBC implementation of build_range_exp consistent
844         The _LIBC implementation of build_range_exp correctly honors the
845         RE_NO_EMPTY_RANGES flag when checking for reversed range endpoints.
846         However, the non-_LIBC implementation would ignore that syntax-bit
847         flag and return REG_ERANGE unconditionally.
848         This change makes it honor that flag.
849         * lib/regcomp.c (build_range_exp) [!_LIBC]: Add a parameter: "syntax".
850         Make two pointer parameters "const".
851         Use "syntax" bits in order to honor RE_NO_EMPTY_RANGES.
852         (parse_bracket_exp): Update caller.
853
854         regex.m4: correct the reversed range endpoint ([b-a]) test
855         * m4/regex.m4: When requiring that [b-a] evoke failure,
856         use RE_NO_EMPTY_RANGES.  This makes this entire configure-time
857         test pass once again for x86-based systems.
858
859 2010-03-19  Bruno Haible  <bruno@clisp.org>
860
861         scandir: Fix link error on Solaris 8.
862         * lib/scandir.c (_D_EXACT_NAMLEN, _D_ALLOC_NAMLEN): New fallback
863         macros.
864
865 2010-03-19  Bruno Haible  <bruno@clisp.org>
866
867         getusershell: Fix documentation.
868         * doc/glibc-functions/endusershell.texi: Refer to the getusershell
869         module.
870         * doc/glibc-functions/setusershell.texi: Likewise.
871
872         getusershell: Provide declaration, missing on Solaris 9.
873         * lib/unistd.in.h (getusershell, setusershell, endusershell): Declare
874         also if HAVE_GETUSERSHELL && !HAVE_DECL_GETUSERSHELL.
875         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): When the function exists,
876         check whether it is declared. Set HAVE_DECL_GETUSERSHELL.
877         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
878         HAVE_DECL_GETUSERSHELL, not HAVE_GETUSERSHELL.
879         * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETUSERSHELL, not
880         HAVE_GETUSERSHELL.
881         * doc/glibc-functions/getusershell.texi: Mention the Solaris problem.
882
883 2010-03-19  Bruno Haible  <bruno@clisp.org>
884
885         wctype: Provide iswblank function.
886         * lib/wctype.in.h (iswblank): Provide a replacement also when iswcntrl
887         exists and is fine.
888         * m4/wctype_h.m4 (gl_WCTYPE_H): Also check whether iswcntrl exists.
889         * modules/wctype (Makefile.am): Substitute HAVE_ISWBLANK.
890         * tests/test-wctype.c (main): Re-enable the iswblank tests.
891         * doc/posix-functions/iswblank.texi: Update.
892
893 2010-03-19  Bruno Haible  <bruno@clisp.org>
894
895         Tests of module 'pty' in C++ mode.
896         * modules/pty-tests: New file.
897         * tests/test-pty-c++.cc: New file.
898         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
899
900 2010-03-19  Eric Blake  <eblake@redhat.com>
901
902         logb: fix documentation
903         * doc/posix-functions/logb.texi (logb): Gnulib fixes the cygwin
904         1.5 declaration bug.
905
906         forkpty, openpty: prefer glibc's const-safe prototype
907         * lib/forkpty.c (rpl_forkpty): New file.
908         * lib/openpty.c (rpl_openpty): Likewise.
909         * modules/forkpty (Files): Distribute it.
910         * modules/openpty (Files): Likewise.
911         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.  Move decl
912         check...
913         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): ...here.  Request
914         replacement for for non-const BSD signature.
915         * modules/pty (Makefile.am): Substitute witnesses.
916         * lib/pty.in.h (forkpty, openpty): Declare replacements.
917         * tests/test-forkpty.c: Update signature check.
918         * tests/test-openpty.c: Likewise.
919         * doc/glibc-functions/forkpty.texi (forkpty): Document the fix.
920         * doc/glibc-functions/openpty.texi (openpty): Likewise.
921
922         forkpty, openpty: split functions into new modules
923         * modules/pty (Makefile.am): Substitute new witnesses.
924         (Libraries): Move library detection...
925         * modules/forkpty: ...into new module.
926         * modules/openpty: Another new module.
927         * modules/pty-tests: Rename and split...
928         * modules/forkpty-tests: ...to this...
929         * modules/openpty-tests: ...and this.
930         * tests/test-pty.c: Rename and split...
931         * tests/test-forkpty.c: ...to this...
932         * tests/test-openpty.c: ...and this.
933         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.
934         (gl_PTY): Split library searching...
935         * m4/pty.m4 (gl_PTY_LIB): ...into new file.
936         (gl_FORKPTY, gl_OPENPTY): New macros.
937         * lib/pty.in.h (forkpty, openpty): Honor new witnesses.
938         * NEWS: Mention the split.
939         * MODULES.html.sh (Misc): Document the modules.
940         * doc/glibc-functions/forkpty.texi (forkpty): Likewise.
941         * doc/glibc-functions/openpty.texi (openpty): Likewise.
942
943         pty: improve replacement header
944         * lib/pty.in.h: New file.
945         * modules/pty (Files): Ship it.
946         (Makefile.am): Always build replacement.
947         * m4/pty.m4: Rename...
948         * m4/pty_h.m4: ...to this.
949         (gl_PTY): Modernize setting of witness macros; update check of
950         forkpty to take proper advantage of cache.
951         (gl_PTY_MODULE_INDICATOR, gl_PTY_H_DEFAULTS): New macros.
952
953         getopt: avoid compiler warning
954         * lib/getopt.c (attribute_hidden): Remove unused macro.
955
956 2010-03-18  Bruno Haible  <bruno@clisp.org>
957
958         Fix link errors on Solaris 8.
959         * modules/iconv-h-tests (test_iconv_h_c___LDADD): Add LIB_NANOSLEEP.
960         * modules/search-tests (test_search_c___LDADD): Likewise.
961         * modules/signal-tests (test_signal_c___LDADD): Likewise.
962         * modules/spawn-tests (test_spawn_c___LDADD): Likewise.
963         * modules/stdio-tests (test_stdio_c___LDADD): Likewise.
964         * modules/sys_select-tests (test_sys_select_c___LDADD): Likewise.
965         * modules/sys_socket-tests (test_sys_socket_c___LDADD): Likewise.
966         * modules/sys_time-tests (test_sys_time_c___LDADD): Likewise.
967         * modules/wchar-tests (test_wchar_c___LDADD): Likewise.
968
969 2010-03-18  Bruno Haible  <bruno@clisp.org>
970
971         Fix bug introduced on 2010-03-14.
972         * m4/spawn_h.m4 (gl_HAVE_POSIX_SPAWN): New macro.
973         (gl_SPAWN_H): Require it.
974         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Likewise.
975         Reported by Simon Josefsson.
976
977 2010-03-18  Bruno Haible  <bruno@clisp.org>
978
979         Fix typo introduced on 2009-12-31.
980         * m4/spawn_h.m4 (gl_SPAWN_H): Check for the declaration of
981         posix_spawn_file_actions_adddup2.
982
983 2010-03-17  Bert Wesarg  <bert.wesarg@googlemail.com>  (tiny change)
984         and Eric Blake  <eblake@redhat.com>
985
986         test-vc-list-files-git: make more robust
987         * tests/test-vc-list-files-git.sh: Unset problematic environment
988         variables.  Chain commands together.
989
990 2010-03-17  Ludovic Courtès <ludo@gnu.org>  (tiny change)
991
992         * m4/pty.m4: Unset $ac_cv_have_decl_forkpty before the second
993         `AC_CHECK_DECL' invocation.
994
995 2010-03-15  Sergey Poznyakoff  <gray@gnu.org.ua>
996
997         * lib/inttostr.c (inttostr): Make sure the invocation of verify
998         appears before executable statements. Suggested by Petr Sumbera
999         <Petr.Sumbera@Sun.COM>.
1000
1001 2010-03-14  Bruno Haible  <bruno@clisp.org>
1002
1003         * tests/test-flock.c (test_exclusive): Comment out a test that causes
1004         portability problems. Instead use a simpler test.
1005         (main): Check that invalid arguments are rejected only on Linux.
1006
1007 2010-03-14  Bruno Haible  <bruno@clisp.org>
1008
1009         Fix bug introduced on 2009-12-31.
1010         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
1011         gl_PREREQ_SYS_H_WINSOCK2 always.
1012         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise. Remove
1013         SYS_SOCKET_H variable.
1014         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Remove test for flock.
1015         Update comments.
1016         * m4/ctype.m4 (gl_CTYPE_H): Update comments.
1017         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
1018         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
1019         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
1020         * m4/sys_wait_h.m4 (gl_SYS_WAIT_H): Likewise.
1021
1022 2010-03-14  Bruno Haible  <bruno@clisp.org>
1023
1024         Fix values returned by sinl, cosl.
1025         * lib/trigl.h: Add specification comments.
1026         * lib/sincosl.c (kernel_sinl, kernel_cosl): Fix comments and formula
1027         that combines the values from the precomputed table with the values of
1028         the Chebyshev polynomials.
1029
1030 2010-03-14  Bruno Haible  <bruno@clisp.org>
1031
1032         Fix compilation error when modules 'posix_spawn[p]' are not used.
1033         * m4/spawn_h.m4 (gl_SPAWN_H): Set HAVE_POSIX_SPAWN here.
1034         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): ... not here.
1035
1036 2010-03-14  Bruno Haible  <bruno@clisp.org>
1037
1038         Fix compilation error on mingw when module 'time_r' is not used.
1039         * lib/time.in.h (localtime_r, gmtime_r): Declare only if GNULIB_TIME_R
1040         is 1.
1041         * tests/test-time-c++.cc (localtime_r, gmtime_r): Likewise.
1042         * modules/time_r (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
1043         * modules/time (Makefile.am): Substitute GNULIB_TIME_R.
1044         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize GNULIB_TIME_R.
1045
1046 2010-03-14  Bruno Haible  <bruno@clisp.org>
1047
1048         Fix compilation error with Sun C.
1049         * lib/strtol.c: Use LLONG_MIN instead of GCC specific LONG_LONG_MIN.
1050         Use LLONG_MAX instead of GCC specific LONG_LONG_MAX. Use ULLONG_MAX
1051         instead of GCC specific ULONG_LONG_MAX.
1052         * lib/xstrtoll.c: Likewise.
1053         * lib/xstrtoull.c: Likewise.
1054
1055 2010-03-13  Bruno Haible  <bruno@clisp.org>
1056
1057         Allow the user to disable C++ code and tests.
1058         * m4/ansi-c++.m4 (gl_CXX_CHOICE): New macro.
1059         (gl_PROG_ANSI_CXX): Require it.
1060
1061 2010-03-13  Bruno Haible  <bruno@clisp.org>
1062
1063         * DEPENDENCIES (libtool): Mention libtool 2.2.x requirement in special
1064         cases.
1065
1066 2010-03-13  Bruno Haible  <bruno@clisp.org>
1067
1068         Test that gnulib does not break the standard C++ headers.
1069         * tests/test-locale-c++2.cc: New file.
1070         * modules/locale-tests (Files): Add it.
1071         (Makefile.am): Compile it for test-locale-c++.
1072         * tests/test-math-c++2.cc: New file.
1073         * modules/math-tests (Files): Add it.
1074         (Makefile.am): Compile it for test-math-c++.
1075         * tests/test-signal-c++2.cc: New file.
1076         * modules/signal-tests (Files): Add it.
1077         (Makefile.am): Compile it for test-signal-c++.
1078         * tests/test-stdio-c++2.cc: New file.
1079         * modules/stdio-tests (Files): Add it.
1080         (Makefile.am): Compile it for test-stdio-c++.
1081         * tests/test-stdlib-c++2.cc: New file.
1082         * modules/stdlib-tests (Files): Add it.
1083         (Makefile.am): Compile it for test-stdlib-c++.
1084         * tests/test-string-c++2.cc: New file.
1085         * modules/string-tests (Files): Add it.
1086         (Makefile.am): Compile it for test-string-c++.
1087         * tests/test-time-c++2.cc: New file.
1088         * modules/time-tests (Files): Add it.
1089         (Makefile.am): Compile it for test-time-c++.
1090         Reported by John W. Eaton <jwe@gnu.org>.
1091
1092 2010-03-13  Bruno Haible  <bruno@clisp.org>
1093
1094         * gnulib-tool (func_usage): Clarify which options are available for
1095         --create-testdir and --create-megatestdir.
1096
1097 2010-03-13  Bruno Haible  <bruno@clisp.org>
1098
1099         Fix compilation error with glibc >= 2.10 and g++ >= 4.4.
1100         * build-aux/warn-on-use.h (_GL_WARN_ON_USE_CXX): New macro.
1101         * build-aux/c++defs.h (_GL_CXXALIASWARN1): New macro.
1102         * lib/string.in.h (memchr, memrchr, rawmemchr, strchrnul, strpbrk,
1103         strstr, strcasestr): Use _GL_CXXALIASWARN1 instead of _GL_CXXALIASWARN
1104         when appropriate.
1105         Reported by Jim Meyering.
1106
1107 2010-03-12  Simon Josefsson  <simon@josefsson.org>
1108
1109         * gnulib-tool (func_import): Explain origin of code.
1110
1111 2010-03-12  Bruno Haible  <bruno@clisp.org>
1112
1113         Fix problem with automake's definition of CXXLINK.
1114         * gnulib-tool (func_create_testdir): After LT_INIT, also use LT_LANG.
1115         Reported by Simon Josefsson and Ludovic Courtès.
1116
1117 2010-03-12  Bruno Haible  <bruno@clisp.org>
1118
1119         * doc/gnulib-intro.texi (Steady Development): Mention Ian Beckwith's
1120         stable releases.
1121
1122 2010-03-11  Bruno Haible  <bruno@clisp.org>
1123
1124         Fix problems with overloaded C++ definitions of memchr, strpbrk, etc.
1125         * build-aux/c++defs.h (_GL_CXXALIAS_SYS_CAST2): Make it work regardless
1126         whether the system provides one variant or multiple variants of the
1127         function.
1128         * lib/string.in.h (memchr, strpbrk): Use _GL_CXXALIAS_SYS_CAST2 for all
1129         C++ compilers.
1130         (memrchr, rawmemchr, strchrnul, strstr, strcasestr): Use
1131         _GL_CXXALIAS_SYS_CAST2 instead of _GL_CXXALIAS_SYS.
1132         Reported by Jim Meyering.
1133
1134 2010-03-09  Simon Josefsson  <simon@josefsson.org>
1135
1136         * gnulib-tool (LIBTOOLPATH): Fix cut'n'paste bug.
1137
1138 2010-03-08  Bruno Haible  <bruno@clisp.org>
1139
1140         gnulib-tool: Add support for --libtool in --create-testdir.
1141         * gnulib-tool (LIBTOOLPATH, LIBTOOLIZE): New variables.
1142         (func_create_testdir): Emit LT_INIT invocations. Invoke LIBTOOLIZE.
1143
1144 2010-03-08  Eric Blake  <eblake@redhat.com>
1145
1146         gnulib-tool.texi: mention possibility of git submodule
1147         * doc/gnulib-tool.texi (VCS Issues): Add details about using git
1148         submodules.
1149         * doc/.gitignore: Ignore another generated file.
1150
1151 2010-03-08  Karl Berry  <karl@gnu.org>
1152
1153         * doc/gnulib-tool.texi (VCS Issues): Mention third option
1154         of committing gnulib files while skipping others.
1155
1156 2010-03-07  Bruno Haible  <bruno@clisp.org>
1157
1158         Tests of module 'wctype' in C++ mode.
1159         * tests/test-wctype-c++.cc: New file.
1160         * modules/wctype-tests (Files): Add it and tests/signature.h.
1161         (Depends-on): Add ansi-c++-opt.
1162         (Makefile.am): Arrange to compile and run test-wctype-c++.
1163
1164         Tests of module 'wchar' in C++ mode.
1165         * tests/test-wchar-c++.cc: New file.
1166         * modules/wchar-tests (Files): Add it and tests/signature.h.
1167         (Depends-on): Add ansi-c++-opt.
1168         (Makefile.am): Arrange to compile and run test-wchar-c++.
1169         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Invoke
1170         gl_MODULE_INDICATOR.
1171
1172         Tests of module 'unistd' in C++ mode.
1173         * tests/test-unistd-c++.cc: New file.
1174         * modules/unistd-tests (Files): Add it and tests/signature.h.
1175         (Depends-on): Add ansi-c++-opt.
1176         (Makefile.am): Arrange to compile and run test-unistd-c++.
1177         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Invoke
1178         gl_MODULE_INDICATOR.
1179
1180         Tests of module 'time' in C++ mode.
1181         * tests/test-time-c++.cc: New file.
1182         * modules/time-tests (Files): Add it and tests/signature.h.
1183         (Depends-on): Add ansi-c++-opt.
1184         (Makefile.am): Arrange to compile and run test-time-c++.
1185         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
1186
1187         Tests of module 'sys_time' in C++ mode.
1188         * tests/test-sys_time-c++.cc: New file.
1189         * modules/sys_time-tests (Files): Add it and tests/signature.h.
1190         (Depends-on): Add ansi-c++-opt.
1191         (Makefile.am): Arrange to compile and run test-sys_time-c++.
1192         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Invoke
1193         gl_MODULE_INDICATOR.
1194
1195         Tests of module 'sys_stat' in C++ mode.
1196         * tests/test-sys_stat-c++.cc: New file.
1197         * modules/sys_stat-tests (Files): Add it and tests/signature.h.
1198         (Depends-on): Add ansi-c++-opt.
1199         (Makefile.am): Arrange to compile and run test-sys_stat-c++.
1200         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Invoke
1201         gl_MODULE_INDICATOR.
1202
1203         Tests of module 'sys_socket' in C++ mode.
1204         * tests/test-sys_socket-c++.cc: New file.
1205         * modules/sys_socket-tests (Files): Add it and tests/signature.h.
1206         (Depends-on): Add ansi-c++-opt.
1207         (Makefile.am): Arrange to compile and run test-sys_socket-c++.
1208         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Invoke
1209         gl_MODULE_INDICATOR.
1210
1211         Tests of module 'sys_select' in C++ mode.
1212         * tests/test-sys_select-c++.cc: New file.
1213         * modules/sys_select-tests (Files): Add it and tests/signature.h.
1214         (Depends-on): Add ansi-c++-opt.
1215         (Makefile.am): Arrange to compile and run test-sys_select-c++.
1216         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Invoke
1217         gl_MODULE_INDICATOR.
1218
1219         Tests of module 'sys_ioctl' in C++ mode.
1220         * tests/test-sys_ioctl-c++.cc: New file.
1221         * modules/sys_ioctl-tests (Files): Add it and tests/signature.h.
1222         (Depends-on): Add ansi-c++-opt.
1223         (Makefile.am): Arrange to compile and run test-sys_ioctl-c++.
1224         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Invoke
1225         gl_MODULE_INDICATOR.
1226
1227         Tests of module 'string' in C++ mode.
1228         * tests/test-string-c++.cc: New file.
1229         * modules/string-tests (Files): Add it and tests/signature.h.
1230         (Depends-on): Add ansi-c++-opt.
1231         (Makefile.am): Arrange to compile and run test-string-c++.
1232         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Invoke
1233         gl_MODULE_INDICATOR.
1234
1235         Tests of module 'stdlib' in C++ mode.
1236         * tests/test-stdlib-c++.cc: New file.
1237         * modules/stdlib-tests (Files): Add it and tests/signature.h.
1238         (Depends-on): Add ansi-c++-opt.
1239         (Makefile.am): Arrange to compile and run test-stdlib-c++.
1240         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Invoke
1241         gl_MODULE_INDICATOR.
1242
1243         Tests of module 'stdio' in C++ mode.
1244         * tests/test-stdio-c++.cc: New file.
1245         * modules/stdio-tests (Files): Add it and tests/signature.h.
1246         (Depends-on): Add ansi-c++-opt.
1247         (Makefile.am): Arrange to compile and run test-stdio-c++.
1248         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Invoke
1249         gl_MODULE_INDICATOR.
1250
1251         Tests of module 'spawn' in C++ mode.
1252         * tests/test-spawn-c++.cc: New file.
1253         * modules/spawn-tests (Files): Add it and tests/signature.h.
1254         (Depends-on): Add ansi-c++-opt.
1255         (Makefile.am): Arrange to compile and run test-spawn-c++.
1256         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Invoke
1257         gl_MODULE_INDICATOR.
1258
1259         Tests of module 'signal' in C++ mode.
1260         * tests/test-signal-c++.cc: New file.
1261         * modules/signal-tests (Files): Add it and tests/signature.h.
1262         (Depends-on): Add ansi-c++-opt.
1263         (Makefile.am): Arrange to compile and run test-signal-c++.
1264         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Invoke
1265         gl_MODULE_INDICATOR.
1266
1267         Tests of module 'search' in C++ mode.
1268         * tests/test-search-c++.cc: New file.
1269         * modules/search-tests (Files): Add it and tests/signature.h.
1270         (Depends-on): Add ansi-c++-opt.
1271         (Makefile.am): Arrange to compile and run test-search-c++.
1272         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Invoke
1273         gl_MODULE_INDICATOR.
1274
1275         Tests of module 'math' in C++ mode.
1276         * tests/test-math-c++.cc: New file.
1277         * modules/math-tests (Files): Add it and tests/signature.h.
1278         (Depends-on): Add ansi-c++-opt.
1279         (Makefile.am): Arrange to compile and run test-math-c++.
1280         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
1281
1282         Tests of module 'locale' in C++ mode.
1283         * tests/test-locale-c++.cc: New file.
1284         * modules/locale-tests (Files): Add it and tests/signature.h.
1285         (Depends-on): Add ansi-c++-opt.
1286         (Makefile.am): Arrange to compile and run test-locale-c++.
1287         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Invoke
1288         gl_MODULE_INDICATOR.
1289
1290         Tests of module 'langinfo' in C++ mode.
1291         * tests/test-langinfo-c++.cc: New file.
1292         * modules/langinfo-tests (Files): Add it and tests/signature.h.
1293         (Depends-on): Add ansi-c++-opt.
1294         (Makefile.am): Arrange to compile and run test-langinfo-c++.
1295         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Invoke
1296         gl_MODULE_INDICATOR.
1297
1298         Tests of module 'iconv-h' in C++ mode.
1299         * tests/test-iconv-h-c++.cc: New file.
1300         * modules/iconv-h-tests (Files): Add it and tests/signature.h.
1301         (Depends-on): Add ansi-c++-opt.
1302         (Makefile.am): Arrange to compile and run test-iconv-h-c++.
1303
1304         Tests of module 'glob' in C++ mode.
1305         * tests/test-glob-c++.cc: New file.
1306         * modules/glob-tests (Files): Add it.
1307         (Depends-on): Add ansi-c++-opt.
1308         (Makefile.am): Arrange to compile and run test-glob-c++.
1309
1310         Tests of module 'fcntl-h' in C++ mode.
1311         * tests/test-fcntl-h-c++.cc: New file.
1312         * modules/fcntl-h-tests (Files): Add it and tests/signature.h.
1313         (Depends-on): Add ansi-c++-opt.
1314         (Makefile.am): Arrange to compile and run test-fcntl-h-c++.
1315         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Invoke
1316         gl_MODULE_INDICATOR.
1317
1318         Tests of module 'dirent' in C++ mode.
1319         * tests/test-dirent-c++.cc: New file.
1320         * modules/dirent-tests (Files): Add it and tests/signature.h.
1321         (Depends-on): Add ansi-c++-opt.
1322         (Makefile.am): Arrange to compile and run test-dirent-c++.
1323         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
1324         gl_MODULE_INDICATOR.
1325
1326         New module 'ansi-c++-opt'.
1327         * modules/ansi-c++-opt: New file.
1328         * m4/ansi-c++.m4: New file, from GNU gettext with modifications.
1329
1330         Document C++ namespace mode.
1331         * doc/gnulib.texi (A C++ namespace for gnulib): New section.
1332
1333         wctype: Avoid #define replacements in C++ mode.
1334         * lib/wctype.in.h: Include c++defs.h, warn-on-use.h.
1335         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower,
1336         iswprint, iswpunct, iswspace, iswupper, iswxdigit, towlower, towupper):
1337         In C++, define a namespaced alias symbol.
1338         * m4/wctype_h.m4 (gl_WCTYPE_H): Don't set WCTYPE_H.
1339         * modules/wctype (Depends-on): Add c++defs, warn-on-use.
1340         (Makefile.am): Provide a wctype.h replacement always. Update wctype.h
1341         rule.
1342
1343         wchar: Avoid #define replacements in C++ mode.
1344         * lib/wchar.in.h: Include c++defs.h.
1345         (btowc, wctob, mbsinit, mbrtowc, mbrlen, mbsrtowcs, mbsnrtowcs,
1346         wcrtomb, wcsrtombs, wcsnrtombs): In C++, define a namespaced alias
1347         symbol.
1348         (wcwidth): Likewise. Fix prototype to be POSIX compliant.
1349         * modules/wchar (Depends-on): Add c++defs.
1350         (Makefile.am): Update wchar.h rule.
1351
1352         unistd: Avoid #define replacements in C++ mode.
1353         * lib/unistd.in.h: Include c++defs.h.
1354         (chown, close, dup, dup2, dup3, euidaccess, faccessat, fchdir,
1355         fchownat, fsync, ftruncate, getcwd, getdomainname, getdtablesize,
1356         getgroups, gethostname, getlogin, getlogin_r, getpagesize,
1357         getusershell, setusershell, endusershell, lchown, link, linkat, lseek,
1358         pipe2, pread, readlink, readlinkat, rmdir, sleep, symlink, symlinkat,
1359         unlink, unlinkat, usleep, write): In C++, define a namespaced alias
1360         symbol.
1361         (environ): Update.
1362         * modules/unistd (Depends-on): Add c++defs.
1363         (Makefile.am): Update unistd.h rule.
1364
1365         time: Avoid #define replacements in C++ mode.
1366         * lib/time.in.h: Include c++defs.h, warn-on-use.h.
1367         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): In C++,
1368         define a namespaced alias symbol.
1369         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): New macro.
1370         (gl_HEADER_TIME_H_DEFAULTS): Initialize also GNULIB_MKTIME,
1371         GNULIB_NANOSLEEP, GNULIB_STRPTIME, GNULIB_TIMEGM.
1372         * modules/time (Depends-on): Add c++defs, warn-on-use.
1373         (Makefile.am): Update time.h rule.
1374         * modules/mktime (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
1375         * modules/nanosleep (configure.ac): Likewise.
1376         * modules/strptime (configure.ac): Likewise.
1377         * modules/timegm (configure.ac): Likewise.
1378
1379         sys_time: Avoid #define replacements in C++ mode.
1380         * lib/sys_time.in.h: Include c++defs.h.
1381         (gettimeofday): In C++, define a namespaced alias symbol.
1382         * modules/sys_time (Depends-on): Add c++defs.
1383         (Makefile.am): Update sys/time.h rule.
1384
1385         sys_stat: Avoid #define replacements in C++ mode.
1386         * lib/sys_stat.in.h: Include c++defs.h.
1387         (fchmodat, fstat, fstatat, futimens, lchmod, lstat, mkdir, mkdirat,
1388         mkfifo, mkfifoat, mknod, mknodat, utimensat): In C++, define a
1389         namespaced alias symbol.
1390         In C++, define a namespaced alias symbol.
1391         * modules/sys_stat (Depends-on): Add c++defs.
1392         (Makefile.am): Update sys/stat.h rule.
1393
1394         sys_socket: Avoid #define replacements in C++ mode.
1395         * lib/sys_socket.in.h: Handle the case of recursive include on Cygwin.
1396         Include c++defs.h. Include warn-on-use.h earlier. Enable the function
1397         definitions also when the system has a <sys/socket.h>.
1398         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
1399         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, accept4):
1400         In C++, define a namespaced alias symbol.
1401         * modules/sys_socket (Depends-on): Add c++defs.
1402         (Makefile.am): Update sys/socket.h rule.
1403
1404         sys_select: Avoid #define replacements in C++ mode.
1405         * lib/sys_select.in.h: Include c++defs.h. Enable the function
1406         definitions also when the system has a <sys/select.h>.
1407         (select): In C++, define a namespaced alias symbol.
1408         * modules/sys_select (Depends-on): Add c++defs.
1409         (Makefile.am): Update sys/select.h rule.
1410
1411         sys_ioctl: Avoid #define replacements in C++ mode.
1412         * lib/sys_ioctl.in.h: Include c++defs.h.
1413         (ioctl): In C++, define a namespaced alias symbol.
1414         * modules/sys_ioctl (Depends-on): Add c++defs.
1415         (Makefile.am): Update sys/ioctl.h rule.
1416
1417         string: Avoid #define replacements in C++ mode.
1418         * lib/string.in.h: Include c++defs.h.
1419         (stpncpy): Define to rpl_stpncpy, not gnu_stpncpy.
1420         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
1421         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
1422         strcasestr, strtok_r, mbslen, mbschr, mbsrchr, mbspbrk, strerror,
1423         strsignal, strverscmp): In C++, define a namespaced alias symbol.
1424         * modules/string (Depends-on): Add c++defs.
1425         (Makefile.am): Update string.h rule.
1426
1427         stdlib: Avoid #define replacements in C++ mode.
1428         * lib/stdlib.in.h: Include c++defs.h.
1429         (atoll, calloc, canonicalize_file_name, getloadavg, getsubopt, malloc,
1430         mkdtemp, mkostemp, mkostemps, mkstemp, mkstemps, putenv, random_r,
1431         srandom_r, initstate_r, setstate_r, realloc, realpath, rpmatch, setenv,
1432         strtod, strtoll, strtoull, unsetenv): In C++, define a namespaced alias
1433         symbol.
1434         * modules/stdlib (Depends-on): Add c++defs.
1435         (Makefile.am): Update stdlib.h rule.
1436
1437         stdio: Avoid #define replacements in C++ mode.
1438         * lib/stdio.in.h: Include c++defs.h.
1439         (dprintf, fclose, fflush, fopen, fprintf, fpurge, fputc, fputs,
1440         freopen, fseek, fseeko, ftell, ftello, fwrite, getdelim, getline,
1441         obstack_printf, obstack_vprintf, perror, popen, printf, fputc, putchar,
1442         puts, remove, rename, renameat, snprintf, sprintf, asprintf, vasprintf,
1443         vdprintf, vfprintf, vprintf, vsnprintf, vsprintf): In C++, define a
1444         namespaced alias symbol.
1445         * modules/stdio (Depends-on): Add c++defs.
1446         (Makefile.am): Update stdio.h rule.
1447
1448         spawn: Avoid #define replacements in C++ mode.
1449         * lib/spawn.in.h: Include c++defs.h.
1450         (posix_spawn, posix_spawnp, posix_spawnattr_init,
1451         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
1452         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
1453         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
1454         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
1455         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
1456         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
1457         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
1458         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
1459         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
1460         In C++, define a namespaced alias symbol.
1461         * modules/spawn (Depends-on): Add c++defs.
1462         (Makefile.am): Update spawn.h rule.
1463
1464         signal: Avoid #define replacements in C++ mode.
1465         * lib/signal.in.h: Include c++defs.h.
1466         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
1467         sigpending, sigprocmask, signal, raise, sigaction): In C++, define a
1468         namespaced alias symbol.
1469         * modules/signal (Depends-on): Add c++defs.
1470         (Makefile.am): Update signal.h rule.
1471
1472         search: Avoid #define replacements in C++ mode.
1473         * lib/search.in.h: Include c++defs.h.
1474         (_gl_search_compar_fn, _gl_search_action_fn): New types.
1475         (tsearch, tfind, tdelete, twalk): In C++, define a namespaced alias
1476         symbol.
1477         * modules/search (Depends-on): Add c++defs.
1478         (Makefile.am): Update search.h rule.
1479
1480         math: Avoid #define replacements in C++ mode.
1481         * lib/math.in.h: Include c++defs.h.
1482         (frexp, acosl, asinl, atanl, ceilf, ceill, cosl, expl, floorf, floorl,
1483         frexpl, ldexpl, logl, roundf, round, roundl, sinl, sqrtl, tanl, truncf,
1484         trunc, truncl): In C++, define a namespaced alias symbol.
1485         * modules/math (Depends-on): Add c++defs.
1486         (Makefile.am): Update math.h rule.
1487
1488         locale: Avoid #define replacements in C++ mode.
1489         * lib/locale.in.h: Include c++defs.h.
1490         (duplocale): In C++, define a namespaced alias symbol.
1491         * m4/locale_h.m4 (gl_LOCALE_H_DEFAULTS): Initialize HAVE_DUPLOCALE.
1492         * m4/duplocale.m4 (gl_FUNC_DUPLOCALE): Set HAVE_DUPLOCALE.
1493         * modules/locale (Depends-on): Add c++defs.
1494         (Makefile.am): Update locale.h rule. Substitute HAVE_DUPLOCALE.
1495
1496         langinfo: Avoid #define replacements in C++ mode.
1497         * lib/langinfo.in.h: Include c++defs.h.
1498         (nl_langinfo): In C++, define a namespaced alias symbol.
1499         * modules/langinfo (Depends-on): Add c++defs.
1500         (Makefile.am): Update langinfo.h rule.
1501
1502         iconv-h: Avoid #define replacements in C++ mode.
1503         * lib/iconv.in.h: Include c++defs.h, warn-on-use.h.
1504         (iconv_open, iconv, iconv_close): In C++, define a namespaced alias
1505         symbol.
1506         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
1507         whenever iconv is present.
1508         * modules/iconv-h (Depends-on): Add c++defs, warn-on-use.
1509         (Makefile.am): Update iconv.h rule.
1510
1511         glob: Avoid #define replacements in C++ mode.
1512         * lib/glob.in.h: Include c++defs.h, warn-on-use.h.
1513         (_gl_glob_errfunc_fn): New type.
1514         (glob, globfree, glob_pattern_p): In C++, define a namespaced alias
1515         symbol.
1516         * modules/glob (Depends-on): Add c++defs, warn-on-use.
1517         (Makefile.am): Update glob.h rule.
1518
1519         fcntl-h: Avoid #define replacements in C++ mode.
1520         * lib/fcntl.in.h: Include c++defs.h.
1521         (fcntl, open, openat): In C++, define a namespaced alias symbol.
1522         * modules/fcntl-h (Depends-on): Add c++defs.
1523         (Makefile.am): Update fcntl.h rule.
1524
1525         dirent: Avoid #define replacements in C++ mode.
1526         * lib/dirent.in.h: Include c++defs.h.
1527         (closedir, fdopendir, opendir, scandir, alphasort): In C++, define a
1528         namespaced alias symbol.
1529         (dirfd): Update declaration.
1530         * modules/dirent (Depends-on): Add c++defs.
1531         (Makefile.am): Update dirent.h rule.
1532
1533         ctype: Make it usable in C++ code.
1534         * lib/ctype.in.h: Include c++defs.h.
1535         (isblank): Declare as extern "C".
1536         * modules/ctype (Depends-on): Add c++defs.
1537         (Makefile.am): Update ctype.h rule.
1538
1539         New module 'c++defs'.
1540         * modules/c++defs: New file.
1541         * build-aux/c++defs.h: New file.
1542         Reported by John W. Eaton <jwe@gnu.org>.
1543
1544 2010-03-07  Bruno Haible  <bruno@clisp.org>
1545
1546         logb: Provide missing declaration for Cygwin.
1547         * lib/math.in.h (logb): New declaration.
1548         * m4/logb.m4: New file.
1549         * modules/logb (Files): Add m4/logb.m4.
1550         (Depends-on): Add math.
1551         (configure.ac): Invoke gl_FUNC_LOGB, gl_MATH_MODULE_INDICATOR.
1552         * m4/math_h.m4 (gl_MATH_H): Check also for logb declaration.
1553         (gl_MATH_H_DEFAULTS): Initialize GNULIB_LOGB, HAVE_DECL_LOGB.
1554         * modules/math (Makefile.am): Substitute GNULIB_LOGB, HAVE_DECL_LOGB.
1555         * doc/posix-functions/logb.texi: Mention the Cygwin bug.
1556
1557 2010-03-07  Bruno Haible  <bruno@clisp.org>
1558
1559         Fix test-cond link error.
1560         * tests/test-cond.c: Include <stdio.h>.
1561
1562 2010-03-07  Bruno Haible  <bruno@clisp.org>
1563
1564         Fix test-dirent-safer link error.
1565         * modules/dirent-safer-tests (Makefile.am): Define
1566         test_dirent_safer_LDADD.
1567
1568 2010-03-07  Bruno Haible  <bruno@clisp.org>
1569
1570         * gnulib-tool (func_create_testdir): Don't use 'lib-ignore' module
1571         among default module list.
1572
1573 2010-03-07  Bruno Haible  <bruno@clisp.org>
1574
1575         Fix link error on platforms with GNU libiconv.
1576         * modules/unistr/u8-strcoll-tests (Makefile): Define
1577         test_u8_strcoll_LDADD.
1578         * modules/unistr/u16-strcoll-tests (Makefile): Define
1579         test_u16_strcoll_LDADD.
1580         * modules/unistr/u32-strcoll-tests (Makefile): Define
1581         test_u32_strcoll_LDADD.
1582
1583 2010-03-07  Bruno Haible  <bruno@clisp.org>
1584
1585         Use POSIX declarations for socket functions.
1586         * lib/sys_socket.in.h (rpl_connect, rpl_accept, rpl_bind,
1587         rpl_getpeername, rpl_getsockname, rpl_recv, rpl_send, rpl_recvfrom,
1588         rpl_sendto): Change declaration to match POSIX.
1589         * lib/connect.c (rpl_connect): Likewise.
1590         * lib/accept.c (rpl_accept): Likewise.
1591         * lib/bind.c (rpl_bind): Likewise.
1592         * lib/getpeername.c (rpl_getpeername): Likewise.
1593         * lib/getsockname.c (rpl_getsockname): Likewise.
1594         * lib/recv.c (rpl_recv): Likewise.
1595         * lib/send.c (rpl_send): Likewise.
1596         * lib/recvfrom.c (rpl_recvfrom): Likewise.
1597         * lib/sendto.c (rpl_sendto): Likewise.
1598
1599 2010-03-06  Bruno Haible  <bruno@clisp.org>
1600
1601         Clarify access, euidaccess, faccessat.
1602         * doc/posix-functions/faccessat.texi: Mention security problem under
1603         "Other problems", not "Portability problems".
1604         * doc/posix-functions/access.texi: Likewise. Mention a related security
1605         problem.
1606         * doc/glibc-functions/euidaccess.texi: Mention security problems.
1607         * lib/euidaccess.c: Add comments about platforms.
1608         * lib/unistd.in.h (access, euidaccess): Add warnings.
1609
1610 2010-03-07  Bruno Haible  <bruno@clisp.org>
1611
1612         Ensure posix_spawnattr_{get,set}sched{policy,param} are defined.
1613         * lib/spawn.in.h (POSIX_SPAWN_SETSCHEDPARAM): Define fallback.
1614         (POSIX_SPAWN_SETSCHEDULER): Likewise.
1615         (POSIX_SPAWN_USEVFORK): Define in a way that works when
1616         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
1617         (posix_spawnattr_getschedpolicy, posix_spawnattr_setschedpolicy): Also
1618         declare when POSIX_SPAWN_SETSCHEDULER is zero.
1619         (posix_spawnattr_getschedparam, posix_spawnattr_setschedparam): Also
1620         declare when POSIX_SPAWN_SETSCHEDPARAM is zero.
1621         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Test whether
1622         POSIX_SPAWN_SETSCHEDULER or POSIX_SPAWN_SETSCHEDPARAM are zero.
1623         * modules/posix_spawnattr_getschedparam (configure.ac): Enable the
1624         replacement also when POSIX_SPAWN_SETSCHEDPARAM is zero.
1625         * modules/posix_spawnattr_setschedparam (configure.ac): Likewise.
1626         * modules/posix_spawnattr_getschedpolicy (configure.ac): Enable the
1627         replacement also when POSIX_SPAWN_SETSCHEDULER is zero.
1628         * modules/posix_spawnattr_setschedpolicy (configure.ac): Likewise.
1629         * lib/spawnattr_getschedparam.c (posix_spawnattr_getschedparam): Do
1630         nothing if POSIX_SPAWN_SETSCHEDPARAM is zero.
1631         * lib/spawnattr_setschedparam.c (posix_spawnattr_setschedparam):
1632         Likewise.
1633         * lib/spawnattr_getschedpolicy.c (posix_spawnattr_getschedpolicy): Do
1634         nothing if POSIX_SPAWN_SETSCHEDULER is zero.
1635         * lib/spawnattr_setschedpolicy.c (posix_spawnattr_setschedpolicy):
1636         Likewise.
1637         * tests/test-spawn.c (main): Make it work when
1638         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
1639
1640 2010-03-07  Bruno Haible  <bruno@clisp.org>
1641
1642         Fix incorrect Makefile.am generation in German locale.
1643         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
1644         Execute sed command with character range in C locale.
1645
1646 2010-03-06  Bruno Haible  <bruno@clisp.org>
1647
1648         Tests for module 'iconv-h'.
1649         * modules/iconv-h-tests: New file.
1650         * tests/test-iconv-h.c: New file.
1651
1652         New module 'iconv-h'.
1653         * modules/iconv-h: New file.
1654         * modules/iconv_open (Files): Remove lib/iconv.in.h, m4/iconv_h.m4.
1655         (Depends-on): Add iconv-h. Remove include_next, arg-nonnull.
1656         (configure.ac): Remove gl_ICONV_H.
1657         (Makefile.am): Remove rule for iconv.h.
1658
1659 2010-03-06  Bruno Haible  <bruno@clisp.org>
1660
1661         More consistent naming of *.m4 files.
1662         * m4/wctype_h.m4: Renamed from m4/wctype.m4.
1663         * modules/wctype (Files): Update.
1664
1665         More consistent naming of *.m4 files.
1666         * m4/wchar_h.m4: Renamed from m4/wchar.m4.
1667         * modules/wchar (Files): Update.
1668
1669 2010-03-06  Jim Meyering  <meyering@redhat.com>
1670
1671         euidaccess: relax license to LGPLv2+
1672         * modules/euidaccess (License): Relax to LGPLv2+.
1673
1674 2010-03-06  Bruno Haible  <bruno@clisp.org>
1675
1676         Prefer lib_SOURCES over unconditional AC_LIBOBJ.
1677         * modules/exitfail (configure.ac): Remove AC_LIBOBJ invocation.
1678         (Makefile.am): Augment lib_SOURCES instead.
1679
1680 2010-03-04  Jim Meyering  <meyering@redhat.com>
1681
1682         utime: remove obsolete module
1683         This module, like autoconf's AC_FUNC_UTIME_NULL macro, has been
1684         unnecessary for years, and has been marked as obsolete for 10 months.
1685         * modules/utime: Remove file.
1686         * lib/utime.c: Remove file.
1687         * m4/utime.m4: Remove file.
1688         * m4/utimes-null.m4: Remove file.
1689         * doc/posix-functions/utime.texi (utime): Remove reference to
1690         the module.  Move the sole "fixed by gnulib" item into the
1691         "problems not fixed by Gnulib" list.
1692         * MODULES.html.sh (func_all_modules): Remove reference to "utime".
1693
1694 2010-03-05  Simon Josefsson  <simon@josefsson.org>
1695
1696         * modules/exit (License): Relax license to LGPLv2+.
1697         (Status): Mark as obsolete.
1698         * NEWS: Mention deprecated 'exit' module.
1699         * doc/posix-functions/exit.texi: Recommend 'stdlib' module instead
1700         of now obsolete 'exit'.
1701
1702 2010-03-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1703
1704         fts-lgpl: remove unused module
1705         * modules/fts-lgpl: Remove.
1706         * MODULES.html.sh (func_all_modules): Adjust.
1707         * check-module (find_included_lib_files): Adjust.
1708         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove.
1709
1710 2010-03-02  Ben Walton  <bwalton@artsci.utoronto.ca>  (tiny change)
1711
1712         copy-acl: enhance Solaris ACL error handling
1713         * lib/copy-acl.c (qcopy_acl): Also ignore EOPNOTSUPP.
1714         * lib/set-mode-acl.c (qset_acl): Likewise.
1715
1716 2010-03-02  Bruno Haible  <bruno@clisp.org>
1717
1718         spawn: Don't override the system defined values on FreeBSD 8.
1719         * lib/spawn.in.h (POSIX_SPAWN_RESETIDS, POSIX_SPAWN_SETPGROUP,
1720         POSIX_SPAWN_SETSIGDEF, POSIX_SPAWN_SETSIGMASK,
1721         POSIX_SPAWN_SETSCHEDPARAM, POSIX_SPAWN_SETSCHEDULER): Don't redefine
1722         if HAVE_POSIX_SPAWN is 1.
1723         Reported by Johan van Selst <johans@stack.nl> via Eric Blake.
1724
1725 2010-03-01  Bruno Haible  <bruno@clisp.org>
1726
1727         * doc/gnulib-tool.texi (Initial import): Clarify the requirements
1728         regarding Automake.
1729
1730 2010-02-25  Bruno Haible  <bruno@clisp.org>
1731
1732         Fix breakage of gnulib-tool with ksh, introduced on 2010-02-21.
1733         * gnulib-tool: Define 'echo' as a function only before the ksh alias
1734         setting, not afterwards.
1735         Reported by Ben Walton <bwalton@artsci.utoronto.ca>.
1736
1737 2010-02-24  Eric Blake  <eblake@redhat.com>
1738
1739         bootstrap, git-version-gen: use timestamp
1740         * build-aux/git-version-gen (scriptversion): Force UTC.
1741         * build-aux/bootstrap (scriptversion): New variable.
1742
1743         bootstrap: allow older git
1744         * build-aux/bootstrap (GNULIB_SRCDIR): Add fallback if git is
1745         older than 1.6.4.  Requested by the libvirt project.
1746
1747 2010-02-23  Eric Blake  <eblake@redhat.com>
1748
1749         warn-on-use: work with old autoconf
1750         * m4/warn-on-use.m4 (gl_WARN_ON_USE_PREPARE): Accomodate older
1751         AS_VAR semantics of autoconf 2.60.
1752         Reported by Bruno Haible.
1753
1754         bootstrap: improve some comments
1755         * build-aux/bootstrap: Drop unneeded emacs hint.  Add some
1756         clarification comments.
1757
1758         gettimeofday: provide correct function
1759         * lib/gettimeofday.c (gettimeofday): Provide rpl_gettimeofday only
1760         when replacement is declared, otherwise provide gettimeofday.
1761         Reported by Michael Goffioul.
1762
1763 2010-02-23  Jim Meyering  <meyering@redhat.com>
1764
1765         lib-ignore: relax license to "unlimited", not LGPLv2+
1766         * modules/lib-ignore (License): Relax to "unlimited".
1767
1768 2010-02-23  Jim Meyering  <meyering@redhat.com>
1769
1770         lib-ignore: relax license to LGPLv2+
1771         * modules/lib-ignore (License): Relax to LGPLv2+.
1772
1773 2010-02-22  Eric Blake  <eblake@redhat.com>
1774
1775         lseek: avoid bash 3.2 broken pipe bug
1776         * m4/lseek.m4 (gl_FUNC_LSEEK): Drain pipe, to avoid spurious
1777         warning from bash 3.2.
1778         Reported by Ben Pfaff, with analysis from Bruno Haible.
1779
1780         bootstrap: support non-FSF copyright holder
1781         * build-aux/bootstrap (COPYRIGHT_HOLDER, with_gettext): Allow
1782         bootstrap.conf override of COPYRIGHT_HOLDER.
1783         (MSGID_BUGS_ADDRESS): Allow URL rather than email.
1784
1785         bootstrap: interoperate with gettext 0.14.1
1786         * build-aux/bootstrap (slurp): Fix typo when using older gettext.
1787
1788         bootstrap: allow for alternate submodule location
1789         * build-aux/bootstrap (gnulib_path): New variable; use instead of
1790         hardcoding submodule location.
1791         (gnulib_mk): Allow direct use of Makefile.am.
1792
1793         bootstrap: use GNULIB_SRCDIR to reduce disk usage
1794         * build-aux/bootstrap (GNULIB_SRCDIR): If set, use as a reference,
1795         rather than reconfiguring where the submodule points.
1796
1797         gettimeofday: restore support for platforms that lack function
1798         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Also compile
1799         replacement if function is missing.
1800         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_DEFAULTS): New witness.
1801         * modules/sys_time (Makefile.am): Substitute it.
1802         * lib/sys_time.in.h (gettimeofday): Check it.
1803         Reported by Michael Goffioul.
1804
1805 2010-02-21  Bruno Haible  <bruno@clisp.org>
1806
1807         * lib/stdio.in.h (obstack_printf): Fix typo.
1808
1809 2010-02-21  Jose E. Marchesi  <jemarch@gnu.org>
1810
1811         vc-list-files: use bzr ls's -R option
1812         * build-aux/vc-list-files: Invoke bazaar to generate a recursive
1813         list of versioned files based on 'dir' (usage of -R in 'bzr ls').
1814
1815 2010-02-21  Jim Meyering  <meyering@redhat.com>
1816
1817         init.sh: fix EXEEXT shims to work also for names like test-prog
1818         * tests/init.sh: Re-exec a better shell, when needed.
1819         If the current shell lacks support for posix $(...), an init.sh-using
1820         test will now try to find a shell that supports that.  If EXEEXT is
1821         nonempty, we also require support for hyphen-in-alias-name and shell
1822         substitutions like ${var#glob}.  Failure to find such a shell results
1823         in a skipped test.
1824
1825 2010-02-21  Bruno Haible  <bruno@clisp.org>
1826
1827         Really work around around "broken pipe" error message from bash 3.2.
1828         * gnulib-tool (func_reset_sigpipe): Remove function.
1829         (echo): In bash 3.2, define to a function that uses printf.
1830         Analyzed by Ralf Wildenhues, Chet Ramey, Ben Pfaff.
1831
1832 2010-02-20  Bruno Haible  <bruno@clisp.org>
1833
1834         Restore support for automake 1.9.6 with autoconf 2.61.
1835         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Ensure MKDIR_P is AC_SUBSTed.
1836         Reported by James Youngman <jay@gnu.org>.
1837
1838 2010-02-20  Bruno Haible  <bruno@clisp.org>
1839
1840         Improve *printf warning condition.
1841         * lib/stdio.in.h (fprintf, printf, vfprintf, vprintf): Emit warning
1842         also if GNULIB_POSIXCHECK is defined, the *-posix module is not used,
1843         and the function is overridden due to SIGPIPE emulation.
1844
1845 2010-02-20  Bruno Haible  <bruno@clisp.org>
1846
1847         * lib/stdio.in.h: Tweak comments.
1848
1849 2010-02-19  Bruno Haible  <bruno@clisp.org>
1850
1851         Make it easier to find modules. New gnulib-tool option '--find'.
1852         * gnulib-tool: New option --find.
1853         (func_usage): Document it.
1854         (func_sanitize_modulelist): New function, extracted from
1855         func_all_modules.
1856         (func_all_modules): Invoke it.
1857         * doc/gnulib-tool.texi (Which modules?): New node.
1858
1859 2010-02-18  Markus Duft <mduft@gentoo.org>  (tiny change)
1860
1861         * lib/sys_select.in.h: Provide select replacement even if
1862         sys/select.h exists on a system, for Interix.
1863
1864 2010-02-18  Jim Meyering  <meyering@redhat.com>
1865
1866         init.sh: don't use $(...) just yet
1867         * tests/init.sh (create_exe_shim_functions_): Use `...`, not $(...),
1868         to accommodate e.g., Solaris' /bin/sh.
1869
1870 2010-02-17  Bruno Haible  <bruno@clisp.org>
1871
1872         * doc/posix-headers/netdb.texi: Mention NetBSD 5.0 problem.
1873         Reported by Ludovic Courtès <ludo@gnu.org>.
1874
1875 2010-02-16  Simon Josefsson  <simon@josefsson.org>
1876
1877         * modules/userspec-tests (test_userspec_LDADD): Add variable, for
1878         linking with -lintl.
1879
1880 2010-02-17  Simon Josefsson  <simon@josefsson.org>
1881
1882         * lib/netdb.in.h (AI_V4MAPPED, AI_ALL, AI_ADDRCONFIG): Define to 0
1883         if not provided by the system's netdb.h.  Reported by
1884         ludo@gnu.org (Ludovic Courtès).
1885
1886 2010-02-15  Jim Meyering  <meyering@redhat.com>
1887
1888         init.sh: improve portability and efficiency
1889         * tests/init.sh (find_exe_basenames_): Remove unnecessary use of
1890         "dummy" in a for loop.
1891         Use '!', not '^' to select the complement of a character set used
1892         in a "case" statement.
1893         Use shell variable manipulation, a la ${...%.exe}, rather than sed.
1894         Suggestions from Eric Blake.
1895
1896         init.sh: automatically accommodate programs with the .exe suffix
1897         Automatically arrange for an invocation of "prog" to execute the
1898         program named "prog$EXEEXT" (usually prog.exe).  Thus, all invocations
1899         may use the simpler "prog", yet still work when built on a system
1900         that requires specifying the added suffix.
1901         Do this by constructing a function named "prog" that invokes
1902         "prog.exe" for each .exe file in selected directories.
1903         * tests/init.sh (find_exe_basenames_): New function.
1904         (create_exe_shim_functions_): New function.
1905         (path_prepend_): Use it.
1906
1907         maint.mk: mark syntax-check sc_*.m rules as .PHONY
1908         * top/maint.mk ($(syntax-check-rules)): Add .PHONY, so that
1909         "make -t syntax-check" doesn't create a ton of sc_*.m files.
1910
1911 2010-02-14  Jim Meyering  <meyering@redhat.com>
1912
1913         maint.mk: prohibit inclusion of "hash-pjw.h" without_use
1914         * top/maint.mk (sc_prohibit_hash_without_use): Re-add "@".
1915         (sc_prohibit_hash_pjw_without_use): New rule.
1916
1917         maint.mk: allow the default upload destination dir to be overridden
1918         * top/maint.mk (upload_dest_dir_): Define with a default that
1919         preserves the status quo.
1920         (emit_upload_commands): Use it, rather than hard-coding $(PACKAGE).
1921         Reported by Peter Simons.
1922
1923         maint.mk: prohibit inclusion of "hash.h" without_use
1924         * top/maint.mk (sc_prohibit_hash_without_use): New rule.
1925
1926 2010-02-10  Jim Meyering  <meyering@redhat.com>
1927
1928         maint.mk: prohibit inclusion of "ignore-value.h" without_use
1929         * top/maint.mk (sc_prohibit_ignore_value_without_use): New rule.
1930
1931 2010-02-09  Eric Blake  <ebb9@byu.net>
1932         and Bruno Haible  <bruno@clisp.org>
1933
1934         obstack-printf-posix: ensure declaration
1935         * m4/obstack-printf.m4 (gl_DECL_OBSTACK_PRINTF): New macro,
1936         extracted from gl_FUNC_OBSTACK_PRINTF.
1937         (gl_FUNC_OBSTACK_PRINTF): Invoke it.
1938         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
1939         Likewise.
1940         * lib/stdio.in.h (obstack_printf, obstack_vprintf): Declare also
1941         if GNULIB_OBSTACK_PRINTF_POSIX is 1 and GNULIB_OBSTACK_PRINTF is
1942         0.
1943
1944 2010-02-08  Bruno Haible  <bruno@clisp.org>
1945
1946         gnulib-tool: Fix typo in 2010-02-07 commit.
1947         * gnulib-tool (func_get_dependencies): Fix typo in last commit.
1948         Reported by Eric Blake.
1949
1950 2010-02-07  Bruno Haible  <bruno@clisp.org>
1951
1952         gnulib-tool: Fix up caching patches.
1953         * gnulib-tool: New options --cache-modules, --no-cache-modules. Remove
1954         option --no-cache. Use associative arrays when supported by the shell.
1955         (sed_comments): New variable.
1956         (modcache): Renamed from do_cache.
1957         (sed_extract_field_header): Renamed from sed_extract_cache_prog. Don't
1958         abbreviate unnecessarily.
1959         (have_associative): New variable.
1960         (func_cache_var): Define correctly for bash 1.x. Define in an optimized
1961         way also for ksh and zsh.
1962         (func_init_sed_convert_to_cache_statements): New function, extracted
1963         from func_cache_lookup_module. Add support for associative arrays.
1964         Don't set the c_MODULE_cached variable here. Ignore all lines before
1965         the first field header. Remove only the final newline, not all trailing
1966         newlines. Support empty fields correctly. Limit the use of 'eval' to
1967         assignments.
1968         (func_get_description, func_get_status, func_get_notice,
1969         func_get_applicability, func_get_filelist, func_get_dependencies,
1970         func_get_autoconf_early_snippet, func_get_autoconf_snippet,
1971         func_get_automake_snippet, func_get_include_directive,
1972         func_get_link_directive, func_get_license, func_get_maintainer):
1973         Update documentation. List the unoptimized code first. Add support for
1974         associative arrays. Limit the use of 'eval' to assignments.
1975         (func_get_applicability): Undo stylistic pessimisations.
1976         (func_get_automake_snippet, func_get_include_directive): Reduce code
1977         duplication.
1978         (func_modules_transitive_closure, func_modules_add_dummy,
1979         func_modules_notice, func_modules_to_filelist, func_add_file,
1980         func_update_file, func_emit_lib_Makefile_am, func_emit_po_Makevars,
1981         func_emit_po_POTFILES_in, func_emit_tests_Makefile_am, func_import,
1982         func_create_testdir, func_create_megatestdir): Update documentation.
1983
1984 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1985
1986         * gnulib-tool (func_cache_lookup_module): Store the module name
1987         belonging to the cache variable; error out if two different
1988         module names map to the same cache variable name.
1989
1990 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1991
1992         gnulib-tool: Make caching optional.
1993         * gnulib-tool: Accept option --no-cache, turning off $do_cache.
1994         Update matching short versions of --no-changelog.
1995         (func_usage): Update.
1996         (sed_extract_cache_prog): Renamed from ...
1997         (sed_extract_prog): ... this; revert to old extraction script.
1998         (func_get_description, func_get_status)
1999         (func_get_notice, func_get_applicability, func_get_filelist)
2000         (func_get_dependencies, func_get_autoconf_early_snippet)
2001         (func_get_autoconf_snippet, func_get_automake_snippet)
2002         (func_get_include_directive, func_get_link_directive)
2003         (func_get_license, func_get_maintainer): If $do_cache is false,
2004         use old, non-caching extraction scripts.
2005         Suggestion by Bruno Haible.
2006
2007 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2008
2009         gnulib-tool: cache module metainformation.
2010         * gnulib-tool (sed_extract_prog): Match newline before each
2011         header, and rewrite header to a shell variable suffix.
2012         (func_cache_var, func_cache_lookup_module): New functions,
2013         to turn a module name into a cache variable prefix, and to
2014         look up and cache module metainformation.
2015         (func_get_description, func_get_status)
2016         (func_get_notice, func_get_applicability, func_get_filelist)
2017         (func_get_dependencies, func_get_autoconf_early_snippet)
2018         (func_get_autoconf_snippet, func_get_automake_snippet)
2019         (func_get_include_directive, func_get_link_directive)
2020         (func_get_license, func_get_maintainer): Use
2021         func_cache_lookup_module.
2022
2023 2010-02-07  Bruno Haible  <bruno@clisp.org>
2024
2025         fnctl: Fix missing dependency.
2026         * modules/fcntl (Depends-on): Add getdtablesize.
2027         Reported by John W. Eaton <jwe@gnu.org>.
2028
2029 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
2030
2031         Argp: fix recognition of short alias options.
2032
2033         * lib/argp-parse.c (convert_options): Fix improper use of
2034         `|' between character values.
2035         * tests/test-argp.c (group1_option): New alias option
2036         --read (-r).
2037         (group1_parser): Special handling for 'r'.
2038         (test15): New test case.
2039         (test_fun): Add test15.
2040         * tests/test-argp-2.sh: Update expected --help and --usage
2041         outputs.
2042
2043 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
2044
2045         * tests/test-argp.c: Fix indentation.
2046
2047 2010-02-04  Eric Blake  <ebb9@byu.net>
2048
2049         gettimeofday: expose type of second argument
2050         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Do better detection
2051         of glibc extension signature, and define GETTIMEOFDAY_TIMEZONE.
2052         * tests/test-gettimeofday.c: Use it to silence warning.
2053         * doc/posix-functions/gettimeofday.texi (gettimeofday): Document
2054         the issue.
2055
2056 2010-02-03  Jim Meyering  <meyering@redhat.com>
2057
2058         regcomp.c: avoid the sole warning from gcc's -Wtype-limits
2059         * lib/regcomp.c (TYPE_SIGNED): Define.
2060         (parse_dup_op): Use it to avoid the sole warning from -Wtype-limits.
2061
2062         regcomp.c: avoid a new -Wshadow warning
2063         * lib/regcomp.c (create_initial_state): Do not shadow local "err".
2064
2065 2010-02-01  Jim Meyering  <meyering@redhat.com>
2066
2067         removing useless parentheses in cpp #define directives
2068         For motivation, see commit c0221df4, "define STREQ(a,b)
2069         consistently, removing useless parentheses"
2070         * lib/memcmp.c (CMP_LT_OR_GT): Remove useless parentheses.
2071         * lib/mountlist.c (MNT_IGNORE): Likewise.
2072         * lib/trim.h (trim, trim_trailing, trim_leading): Likewise.
2073
2074 2010-02-01  Eric Blake  <ebb9@byu.net>
2075
2076         sys_time: use link-warning
2077         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Split defaults...
2078         (gl_HEADER_SYS_TIME_H_DEFAULTS): ...into new macro.
2079         (gl_SYS_TIME_MODULE_INDICATOR): New macro.
2080         * modules/sys_time (Depends-on): Add warn-on-use.
2081         (Makefile.am): Always build replacement.
2082         (configure.ac): Update substitutions.
2083         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY)
2084         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Include defaults, and no longer
2085         bother with SYS_TIME_H.
2086         * modules/gettimeofday (configure.ac): Declare indicator.
2087         * lib/sys_time.in.h (gettimeofday): Warn if gnulib module is not
2088         in use.
2089
2090         closein-tests: silence compiler warning
2091         * tests/test-closein.c (main): Ignore fread result.
2092         * modules/closein-tests (Depends-on): Add ignore-value.
2093
2094         tests: silence warning about system return
2095         * tests/test-areadlink-with-size.c (main): Ignore system result.
2096         * tests/test-areadlink.c (main): Likewise.
2097         * tests/test-areadlinkat-with-size.c (main): Likewise.
2098         * tests/test-areadlinkat.c (main): Likewise.
2099         * tests/test-canonicalize-lgpl.c (main): Likewise.
2100         * tests/test-canonicalize.c (main): Likewise.
2101         * tests/test-chown.c (main): Likewise.
2102         * tests/test-fchownat.c (main): Likewise.
2103         * tests/test-fdutimensat.c (main): Likewise.
2104         * tests/test-fstatat.c (main): Likewise.
2105         * tests/test-futimens.c (main): Likewise.
2106         * tests/test-lchown.c (main): Likewise.
2107         * tests/test-link.c (main): Likewise.
2108         * tests/test-linkat.c (main): Likewise.
2109         * tests/test-lstat.c (main): Likewise.
2110         * tests/test-mkdir.c (main): Likewise.
2111         * tests/test-mkdirat.c (main): Likewise.
2112         * tests/test-mkfifo.c (main): Likewise.
2113         * tests/test-mkfifoat.c (main): Likewise.
2114         * tests/test-mknod.c (main): Likewise.
2115         * tests/test-readlink.c (main): Likewise.
2116         * tests/test-remove.c (main): Likewise.
2117         * tests/test-rename.c (main): Likewise.
2118         * tests/test-renameat.c (main): Likewise.
2119         * tests/test-rmdir.c (main): Likewise.
2120         * tests/test-symlink.c (main): Likewise.
2121         * tests/test-symlinkat.c (main): Likewise.
2122         * tests/test-unlink.c (main): Likewise.
2123         * tests/test-unlinkat.c (main): Likewise.
2124         * tests/test-utimens.c (main): Likewise.
2125         * tests/test-utimensat.c (main): Likewise.
2126         * modules/areadlink-tests (Depends-on): Add ignore-value.
2127         * modules/areadlink-with-size-tests (Depends-on): Likewise.
2128         * modules/areadlinkat-tests (Depends-on): Likewise.
2129         * modules/areadlinkat-with-size-tests (Depends-on): Likewise.
2130         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
2131         * modules/canonicalize-tests (Depends-on): Likewise.
2132         * modules/chown-tests (Depends-on): Likewise.
2133         * modules/fdutimensat-tests (Depends-on): Likewise.
2134         * modules/futimens-tests (Depends-on): Likewise.
2135         * modules/lchown-tests (Depends-on): Likewise.
2136         * modules/link-tests (Depends-on): Likewise.
2137         * modules/linkat-tests (Depends-on): Likewise.
2138         * modules/lstat-tests (Depends-on): Likewise.
2139         * modules/mkdir-tests (Depends-on): Likewise.
2140         * modules/mkfifo-tests (Depends-on): Likewise.
2141         * modules/mkfifoat-tests (Depends-on): Likewise.
2142         * modules/mknod-tests (Depends-on): Likewise.
2143         * modules/openat-tests (Depends-on): Likewise.
2144         * modules/readlink-tests (Depends-on): Likewise.
2145         * modules/remove-tests (Depends-on): Likewise.
2146         * modules/rename-tests (Depends-on): Likewise.
2147         * modules/renameat-tests (Depends-on): Likewise.
2148         * modules/rmdir-tests (Depends-on): Likewise.
2149         * modules/symlink-tests (Depends-on): Likewise.
2150         * modules/symlinkat-tests (Depends-on): Likewise.
2151         * modules/unlink-tests (Depends-on): Likewise.
2152         * modules/utimens-tests (Depends-on): Likewise.
2153         * modules/utimensat-tests (Depends-on): Likewise.
2154
2155 2010-01-31  Bruno Haible  <bruno@clisp.org>
2156
2157         Perform the same test for many <math.h> functions.
2158         * m4/mathfunc.m4 (gl_COMMON_DOUBLE_MATHFUNC,
2159         gl_COMMON_DOUBLE_MATHFUNC_TEST): New macros.
2160         * m4/sqrt.m4 (gl_FUNC_SQRT): Invoke gl_COMMON_DOUBLE_MATHFUNC instead
2161         of gl_MATHFUNC.
2162         * modules/acos (configure.ac): Likewise.
2163         * modules/asin (configure.ac): Likewise.
2164         * modules/atan (configure.ac): Likewise.
2165         * modules/atan2 (configure.ac): Likewise.
2166         * modules/cbrt (configure.ac): Likewise.
2167         * modules/copysign (configure.ac): Likewise.
2168         * modules/cos (configure.ac): Likewise.
2169         * modules/cosh (configure.ac): Likewise.
2170         * modules/erf (configure.ac): Likewise.
2171         * modules/erfc (configure.ac): Likewise.
2172         * modules/exp (configure.ac): Likewise.
2173         * modules/fmod (configure.ac): Likewise.
2174         * modules/hypot (configure.ac): Likewise.
2175         * modules/j0 (configure.ac): Likewise.
2176         * modules/j1 (configure.ac): Likewise.
2177         * modules/jn (configure.ac): Likewise.
2178         * modules/lgamma (configure.ac): Likewise.
2179         * modules/log (configure.ac): Likewise.
2180         * modules/log10 (configure.ac): Likewise.
2181         * modules/log1p (configure.ac): Likewise.
2182         * modules/pow (configure.ac): Likewise.
2183         * modules/remainder (configure.ac): Likewise.
2184         * modules/sin (configure.ac): Likewise.
2185         * modules/sinh (configure.ac): Likewise.
2186         * modules/tan (configure.ac): Likewise.
2187         * modules/tanh (configure.ac): Likewise.
2188         * modules/y0 (configure.ac): Likewise.
2189         * modules/y1 (configure.ac): Likewise.
2190         * modules/yn (configure.ac): Likewise.
2191         Suggested by Paolo Bonzini.
2192
2193 2010-01-31  Bruno Haible  <bruno@clisp.org>
2194
2195         * m4/getline.m4 (gl_FUNC_GETLINE): Add comment about REPLACE_GETLINE.
2196
2197 2010-01-31  Bruno Haible  <bruno@clisp.org>
2198
2199         Work around getdelim() bug on FreeBSD 8.0.
2200         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Test whether getdelim supports an
2201         initially NULL line. Set REPLACE_GETDELIM if getdelim exists but does
2202         not work.
2203         * lib/stdio.in.h (getdelim): Define as an alias if REPLACE_GETDELIM
2204         is 1.
2205         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize REPLACE_GETDELIM.
2206         * modules/stdio (Makefile.am): Also substitute REPLACE_GETDELIM.
2207         * tests/test-getdelim.c (main): Also test result for a NULL buffer and
2208         a non-zero size.
2209         * doc/posix-functions/getdelim.texi: Mention the FreeBSD bug.
2210
2211 2010-01-31  Bruno Haible  <bruno@clisp.org>
2212
2213         Work around getline() bug on FreeBSD 8.0.
2214         * m4/getline.m4 (gl_FUNC_GETLINE): Also test result for a NULL buffer
2215         and a non-zero size.
2216         * tests/test-getline.c (main): Likewise.
2217         * doc/posix-functions/getline.texi: Mention the FreeBSD bug.
2218         Reported by Dennis <noordsij@cs.helsinki.fi> via Eric Blake.
2219
2220 2010-01-28  Eric Blake  <ebb9@byu.net>
2221
2222         regex: fix build failure
2223         * lib/regex_internal.h (__GNUC_PREREQ): Define for non-glibc
2224         platforms.
2225
2226 2010-01-28  Jim Meyering  <meyering@redhat.com>
2227
2228         regex: do not ignore memory allocation failure
2229         * lib/regex_internal.c (create_cd_newstate): Detect
2230         re_node_set_init_copy failure.   Extracted from glibc commit
2231         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2232
2233         regex: sync more white-space changes from libc
2234         * lib/regex_internal.c: White-space only changes.
2235         * lib/regexec.c: Likewise.
2236
2237         regex: add many uses of __attribute_warn_unused_result__
2238         * lib/regex_internal.c: Use __attribute_warn_unused_result__.
2239         * lib/regexec.c: Likewise.
2240         Extracted from a messy glibc commit.
2241
2242         regcomp.c: spelling and merge-artifact from glibc
2243         * lib/regcomp.c: Merge remainder of glibc's
2244         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2245
2246         regcomp.c: sync white-space changes from glibc
2247         * lib/regcomp.c: Merge to accommodate white space
2248         changes from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2249
2250         regcomp.c: do not ignore internal return values
2251         * lib/regcomp.c: Do not ignore internal return values.
2252         This is from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c,
2253         but without its white-space changes and spelling fixes.
2254
2255         regex_internal.h: define __attribute_warn_unused_result__
2256         * lib/regex_internal.h (__attribute_warn_unused_result__): Define.
2257
2258         maint: add a syntax-check rule to check for vulnerable Makefile.in
2259         * top/maint.mk (sc_vulnerable_makefile_CVE-2009-4029): New rule.
2260
2261 2010-01-27  Jim Meyering  <meyering@redhat.com>
2262
2263         ncftpput-ftp: clean up spaces
2264         * build-aux/ncftpput-ftp: Make Copyright line consistent.
2265         Remove trailing blanks.
2266
2267 2010-01-27  Simon Josefsson  <simon@josefsson.org>
2268
2269         * build-aux/git-version-gen: Fix copyright statement.
2270         * build-aux/gnupload: Likewise.
2271         * tests/test-arcfour.c: Likewise.
2272         * tests/test-arctwo.c: Likewise.
2273         * tests/test-count-one-bits.c: Likewise.
2274         * tests/test-crc.c: Likewise.
2275         * tests/test-des.c: Likewise.
2276         * tests/test-gc-arcfour.c: Likewise.
2277         * tests/test-gc-arctwo.c: Likewise.
2278         * tests/test-gc-des.c: Likewise.
2279         * tests/test-gc-hmac-md5.c: Likewise.
2280         * tests/test-gc-hmac-sha1.c: Likewise.
2281         * tests/test-gc-md2.c: Likewise.
2282         * tests/test-gc-md4.c: Likewise.
2283         * tests/test-gc-md5.c: Likewise.
2284         * tests/test-gc-pbkdf2-sha1.c: Likewise.
2285         * tests/test-gc-rijndael.c: Likewise.
2286         * tests/test-gc-sha1.c: Likewise.
2287         * tests/test-gc.c: Likewise.
2288         * tests/test-gethostname.c: Likewise.
2289         * tests/test-gettimeofday.c: Likewise.
2290         * tests/test-hash.c: Likewise.
2291         * tests/test-hmac-md5.c: Likewise.
2292         * tests/test-hmac-sha1.c: Likewise.
2293         * tests/test-md2.c: Likewise.
2294         * tests/test-md4.c: Likewise.
2295         * tests/test-md5.c: Likewise.
2296         * tests/test-memchr.c: Likewise.
2297         * tests/test-memchr2.c: Likewise.
2298         * tests/test-memcmp.c: Likewise.
2299         * tests/test-memmem.c: Likewise.
2300         * tests/test-memrchr.c: Likewise.
2301         * tests/test-rawmemchr.c: Likewise.
2302         * tests/test-read-file.c: Likewise.
2303         * tests/test-rijndael.c: Likewise.
2304         * tests/test-sockets.c: Likewise.
2305         * tests/test-strchrnul.c: Likewise.
2306         * tests/test-strstr.c: Likewise.
2307         * tests/test-strtod.c: Likewise.
2308         * build-aux/ncftpput-ftp: Likewise.
2309
2310 2010-01-26  Eric Blake  <ebb9@byu.net>
2311
2312         ignore-value: update recommended header name
2313         * modules/ignore-value (Include): Only use <> for headers that
2314         exist in glibc.
2315
2316 2010-01-26  Jim Meyering  <meyering@redhat.com>
2317
2318         test-userspec.c: avoid compiler warnings
2319         * tests/test-userspec.c (main): Avoid shadowing ("uid"),
2320         and "initialization discards qualifiers..." warnings.
2321         Put the first "uid" in its own scope, and make char* members "const".
2322
2323 2010-01-25  Bruno Haible  <bruno@clisp.org>
2324
2325         gnulib-tool: Make warning diagnostics consistent.
2326         * gnulib-tool (func_warning): New function.
2327         Use it everywhere where gnulib-tool produces output to stderr and it is
2328         not a fatal error.
2329
2330 2010-01-25  Bruno Haible  <bruno@clisp.org>
2331
2332         Fix test dependencies.
2333         * modules/xstrtol-tests (Depends-on): Add inttypes.
2334         * modules/xstrtoll-tests (Depends-on): Likewise. Remove xstrtoll.
2335
2336 2010-01-25 Pádraig Brady <P@draigBrady.com>
2337
2338         syntax-check: detect incorrect boolean macro values in config.h
2339         * modules/maintainer-makefile (configure.ac): Parameterize the location
2340         of config.h which will be available to makefiles as $(CONFIG_INCLUDE).
2341         The logic is from Eric Blake and the location indicated by Jim Meyering.
2342         Note the more natural CONFIG_HEADER name is prohibited by automake
2343         for backwards compatibility reasons.
2344         * top/maint.mk (sc_Wundef_boolean): New rule.
2345
2346 2010-01-25  Jim Meyering  <meyering@redhat.com>
2347
2348         bootstrap: detect MacOS 10.6's shasum, too
2349         * build-aux/bootstrap: Also recognize MacOS 10.6's shasum.
2350         Suggested by Thomas Treichl <Thomas.Treichl@gmx.net>.
2351
2352 2010-01-23  Jim Meyering  <meyering@redhat.com>
2353
2354         xstrtoll: new module
2355         * modules/xstrtoll: New file.
2356         * MODULES.html.sh (Numeric conversion functions): Add xstrtoll.
2357         * lib/xstrtol.h [HAVE_LONG_LONG_INT]: Declare xstrtoll and xstrtoull.
2358         * lib/xstrtoll.c, lib/xstrtoull.c: New files.
2359         ./configure fails if you use this module and lack "long long".
2360         * modules/xstrtoll-tests: New module.
2361         * tests/test-xstrtoll.c, tests/test-xstrtoull.c: New files.
2362         * tests/test-xstrtoll.sh: Like test-xstrtol.c, but use the
2363         new init.sh-based test framework.
2364
2365 2010-01-24  Bruno Haible  <bruno@clisp.org>
2366
2367         Tests for module 'yn'.
2368         * modules/yn-tests: New file.
2369         * tests/test-yn.c: New file.
2370
2371         Tests for module 'y1'.
2372         * modules/y1-tests: New file.
2373         * tests/test-y1.c: New file.
2374
2375         Tests for module 'y0'.
2376         * modules/y0-tests: New file.
2377         * tests/test-y0.c: New file.
2378
2379         Tests for module 'tanh'.
2380         * modules/tanh-tests: New file.
2381         * tests/test-tanh.c: New file.
2382
2383         Tests for module 'tan'.
2384         * modules/tan-tests: New file.
2385         * tests/test-tan.c: New file.
2386
2387         Tests for module 'sqrt'.
2388         * modules/sqrt-tests: New file.
2389         * tests/test-sqrt.c: New file.
2390
2391         Tests for module 'sinh'.
2392         * modules/sinh-tests: New file.
2393         * tests/test-sinh.c: New file.
2394
2395         Tests for module 'sin'.
2396         * modules/sin-tests: New file.
2397         * tests/test-sin.c: New file.
2398
2399         Tests for module 'rint'.
2400         * modules/rint-tests: New file.
2401         * tests/test-rint.c: New file.
2402
2403         Tests for module 'remainder'.
2404         * modules/remainder-tests: New file.
2405         * tests/test-remainder.c: New file.
2406
2407         Tests for module 'pow'.
2408         * modules/pow-tests: New file.
2409         * tests/test-pow.c: New file.
2410
2411         Tests for module 'nextafter'.
2412         * modules/nextafter-tests: New file.
2413         * tests/test-nextafter.c: New file.
2414
2415         Tests for module 'modf'.
2416         * modules/modf-tests: New file.
2417         * tests/test-modf.c: New file.
2418
2419         Tests for module 'logb'.
2420         * modules/logb-tests: New file.
2421         * tests/test-logb.c: New file.
2422
2423         Tests for module 'log1p'.
2424         * modules/log1p-tests: New file.
2425         * tests/test-log1p.c: New file.
2426
2427         Tests for module 'log10'.
2428         * modules/log10-tests: New file.
2429         * tests/test-log10.c: New file.
2430
2431         Tests for module 'log'.
2432         * modules/log-tests: New file.
2433         * tests/test-log.c: New file.
2434
2435         Tests for module 'lgamma'.
2436         * modules/lgamma-tests: New file.
2437         * tests/test-lgamma.c: New file.
2438
2439         Tests for module 'ldexp'.
2440         * modules/ldexp-tests: New file.
2441         * tests/test-ldexp.c: New file.
2442
2443         Tests for module 'jn'.
2444         * modules/jn-tests: New file.
2445         * tests/test-jn.c: New file.
2446
2447         Tests for module 'j1'.
2448         * modules/j1-tests: New file.
2449         * tests/test-j1.c: New file.
2450
2451         Tests for module 'j0'.
2452         * modules/j0-tests: New file.
2453         * tests/test-j0.c: New file.
2454
2455         Tests for module 'hypot'.
2456         * modules/hypot-tests: New file.
2457         * tests/test-hypot.c: New file.
2458
2459         Tests for module 'fmod'.
2460         * modules/fmod-tests: New file.
2461         * tests/test-fmod.c: New file.
2462
2463         Tests for module 'fabs'.
2464         * modules/fabs-tests: New file.
2465         * tests/test-fabs.c: New file.
2466
2467         Tests for module 'exp'.
2468         * modules/exp-tests: New file.
2469         * tests/test-exp.c: New file.
2470
2471         Tests for module 'erfc'.
2472         * modules/erfc-tests: New file.
2473         * tests/test-erfc.c: New file.
2474
2475         Tests for module 'erf'.
2476         * modules/erf-tests: New file.
2477         * tests/test-erf.c: New file.
2478
2479         Tests for module 'cosh'.
2480         * modules/cosh-tests: New file.
2481         * tests/test-cosh.c: New file.
2482
2483         Tests for module 'cos'.
2484         * modules/cos-tests: New file.
2485         * tests/test-cos.c: New file.
2486
2487         Tests for module 'copysign'.
2488         * modules/copysign-tests: New file.
2489         * tests/test-copysign.c: New file.
2490
2491         Tests for module 'cbrt'.
2492         * modules/cbrt-tests: New file.
2493         * tests/test-cbrt.c: New file.
2494
2495         Tests for module 'atan2'.
2496         * modules/atan2-tests: New file.
2497         * tests/test-atan2.c: New file.
2498
2499         Tests for module 'atan'.
2500         * modules/atan-tests: New file.
2501         * tests/test-atan.c: New file.
2502
2503         Tests for module 'asin'.
2504         * modules/asin-tests: New file.
2505         * tests/test-asin.c: New file.
2506
2507         Tests for module 'acos'.
2508         * modules/acos-tests: New file.
2509         * tests/test-acos.c: New file.
2510
2511 2010-01-24  Bruno Haible  <bruno@clisp.org>
2512
2513         Fix tests for common <math.h> functions.
2514         * m4/mathfunc.m4 (gl_MATHFUNC): Take two additional parameters. Use a
2515         code snippet that references the function pointer, rather than merely
2516         calling the function. Substitute the FUNC_LIBM variable.
2517         * m4/sqrt.m4 (gl_FUNC_SQRT): Update gl_MATHFUNC invocation.
2518         * modules/acos (configure.ac): Likewise.
2519         * modules/asin (configure.ac): Likewise.
2520         * modules/atan (configure.ac): Likewise.
2521         * modules/atan2 (configure.ac): Likewise.
2522         * modules/cbrt (configure.ac): Likewise.
2523         * modules/copysign (configure.ac): Likewise.
2524         * modules/cos (configure.ac): Likewise.
2525         * modules/cosh (configure.ac): Likewise.
2526         * modules/erf (configure.ac): Likewise.
2527         * modules/erfc (configure.ac): Likewise.
2528         * modules/exp (configure.ac): Likewise.
2529         * modules/fabs (configure.ac): Likewise.
2530         * modules/fmod (configure.ac): Likewise.
2531         * modules/hypot (configure.ac): Likewise.
2532         * modules/j0 (configure.ac): Likewise.
2533         * modules/j1 (configure.ac): Likewise.
2534         * modules/jn (configure.ac): Likewise.
2535         * modules/ldexp (configure.ac): Likewise.
2536         * modules/lgamma (configure.ac): Likewise.
2537         * modules/log (configure.ac): Likewise.
2538         * modules/log10 (configure.ac): Likewise.
2539         * modules/log1p (configure.ac): Likewise.
2540         * modules/logb (configure.ac): Likewise.
2541         * modules/modf (configure.ac): Likewise.
2542         * modules/nextafter (configure.ac): Likewise.
2543         * modules/pow (configure.ac): Likewise.
2544         * modules/remainder (configure.ac): Likewise.
2545         * modules/rint (configure.ac): Likewise.
2546         * modules/sin (configure.ac): Likewise.
2547         * modules/sinh (configure.ac): Likewise.
2548         * modules/tan (configure.ac): Likewise.
2549         * modules/tanh (configure.ac): Likewise.
2550         * modules/y0 (configure.ac): Likewise.
2551         * modules/y1 (configure.ac): Likewise.
2552         * modules/yn (configure.ac): Likewise.
2553
2554 2010-01-24  Bruno Haible  <bruno@clisp.org>
2555
2556         Tests: Defeat inlining of math functions by GCC >= 4.3.0.
2557         * tests/test-acosl.c (x): New variable.
2558         (main): Store argument in x and fetch it from x.
2559         * tests/test-asinl.c (x): New variable.
2560         (main): Store argument in x and fetch it from x.
2561         * tests/test-atanl.c (x): New variable.
2562         (main): Store argument in x and fetch it from x.
2563         * tests/test-cosl.c (x): New variable.
2564         (main): Store argument in x and fetch it from x.
2565         * tests/test-expl.c (x): New variable.
2566         (main): Store argument in x and fetch it from x.
2567         * tests/test-logl.c (x): New variable.
2568         (main): Store argument in x and fetch it from x.
2569         * tests/test-sinl.c (x): New variable.
2570         (main): Store argument in x and fetch it from x.
2571         * tests/test-sqrtl.c (x): New variable.
2572         (main): Store argument in x and fetch it from x.
2573         * tests/test-tanl.c (x): New variable.
2574         (main): Store argument in x and fetch it from x.
2575
2576 2010-01-24  Bruno Haible  <bruno@clisp.org>
2577
2578         Provide EXEEXT and srcdir in TESTS_ENVIRONMENT by default.
2579         * gnulib-tool (func_emit_tests_Makefile_am): Add EXEEXT and srcdir
2580         assignments to the initial TESTS_ENVIRONMENT.
2581         * doc/gnulib.texi (Unit test modules): Document it.
2582         * modules/acl-tests (Makefile.am): Drop EXEEXT assignment from
2583         TESTS_ENVIRONMENT.
2584         * modules/btowc-tests (Makefile.am): Likewise.
2585         * modules/c-stack-tests (Makefile.am): Likewise.
2586         * modules/c-strcase-tests (Makefile.am): Likewise.
2587         * modules/copy-file-tests (Makefile.am): Likewise.
2588         * modules/mbmemcasecmp-tests (Makefile.am): Likewise.
2589         * modules/mbmemcasecoll-tests (Makefile.am): Likewise.
2590         * modules/mbrtowc-tests (Makefile.am): Likewise.
2591         * modules/mbscasecmp-tests (Makefile.am): Likewise.
2592         * modules/mbscasestr-tests (Makefile.am): Likewise.
2593         * modules/mbschr-tests (Makefile.am): Likewise.
2594         * modules/mbscspn-tests (Makefile.am): Likewise.
2595         * modules/mbsinit-tests (Makefile.am): Likewise.
2596         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
2597         * modules/mbsnrtowcs-tests (Makefile.am): Likewise.
2598         * modules/mbspbrk-tests (Makefile.am): Likewise.
2599         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
2600         * modules/mbsrchr-tests (Makefile.am): Likewise.
2601         * modules/mbsrtowcs-tests (Makefile.am): Likewise.
2602         * modules/mbsspn-tests (Makefile.am): Likewise.
2603         * modules/mbsstr-tests (Makefile.am): Likewise.
2604         * modules/nl_langinfo-tests (Makefile.am): Likewise.
2605         * modules/unicase/locale-language-tests (Makefile.am): Likewise.
2606         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
2607         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
2608         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
2609         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
2610         * modules/uniwbrk/ulc-wordbreaks-tests (Makefile.am): Likewise.
2611         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
2612         * modules/wcrtomb-tests (Makefile.am): Likewise.
2613         * modules/wcsnrtombs-tests (Makefile.am): Likewise.
2614         * modules/wcsrtombs-tests (Makefile.am): Likewise.
2615         * modules/quotearg-tests (Makefile.am): Drop EXEEXT and srcdir
2616         assignments from TESTS_ENVIRONMENT.
2617         * modules/argp-tests (Makefile.am): Drop TESTS_ENVIRONMENT
2618         augmentation.
2619         * modules/argp-version-etc-tests (Makefile.am): Likewise.
2620         * modules/atexit-tests (Makefile.am): Likewise.
2621         * modules/binary-io-tests (Makefile.am): Likewise.
2622         * modules/closein-tests (Makefile.am): Likewise.
2623         * modules/dprintf-posix-tests (Makefile.am): Likewise.
2624         * modules/exclude-tests (Makefile.am): Likewise.
2625         * modules/fflush-tests (Makefile.am): Likewise.
2626         * modules/fpending-tests (Makefile.am): Likewise.
2627         * modules/fprintf-posix-tests (Makefile.am): Likewise.
2628         * modules/freadahead-tests (Makefile.am): Likewise.
2629         * modules/freadptr-tests (Makefile.am): Likewise.
2630         * modules/freadseek-tests (Makefile.am): Likewise.
2631         * modules/fseek-tests (Makefile.am): Likewise.
2632         * modules/fseeko-tests (Makefile.am): Likewise.
2633         * modules/ftell-tests (Makefile.am): Likewise.
2634         * modules/ftello-tests (Makefile.am): Likewise.
2635         * modules/idpriv-drop-tests (Makefile.am): Likewise.
2636         * modules/idpriv-droptemp-tests (Makefile.am): Likewise.
2637         * modules/lseek-tests (Makefile.am): Likewise.
2638         * modules/parse-duration-tests (Makefile.am): Likewise.
2639         * modules/perror-tests (Makefile.am): Likewise.
2640         * modules/pipe-filter-gi-tests (Makefile.am): Likewise.
2641         * modules/pipe-filter-ii-tests (Makefile.am): Likewise.
2642         * modules/pipe-tests (Makefile.am): Likewise.
2643         * modules/pread-tests (Makefile.am): Likewise.
2644         * modules/printf-posix-tests (Makefile.am): Likewise.
2645         * modules/select-tests (Makefile.am): Likewise.
2646         * modules/sigpipe-tests (Makefile.am): Likewise.
2647         * modules/tsearch-tests (Makefile.am): Likewise.
2648         * modules/unicase/ulc-casecmp-tests (Makefile.am): Likewise.
2649         * modules/unicase/ulc-casecoll-tests (Makefile.am): Likewise.
2650         * modules/uniname/uniname-tests (Makefile.am): Likewise.
2651         * modules/uniwidth/width-tests (Makefile.am): Likewise.
2652         * modules/vdprintf-posix-tests (Makefile.am): Likewise.
2653         * modules/version-etc-tests (Makefile.am): Likewise.
2654         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
2655         * modules/vprintf-posix-tests (Makefile.am): Likewise.
2656         * modules/xalloc-die-tests (Makefile.am): Likewise.
2657         * modules/xprintf-posix-tests (Makefile.am): Likewise.
2658         * modules/xstrtoimax-tests (Makefile.am): Likewise.
2659         * modules/xstrtol-tests (Makefile.am): Likewise.
2660         * modules/xstrtoumax-tests (Makefile.am): Likewise.
2661         * modules/yesno-tests (Makefile.am): Likewise.
2662         Suggested by Jim Meyering.
2663
2664 2010-01-24  Bruno Haible  <bruno@clisp.org>
2665
2666         More documentation.
2667         * doc/gnulib.texi (Writing modules): New chapter.
2668         (Miscellaneous Notes): Move sections "Comments" and "Header files" to
2669         the new chapter.
2670
2671 2010-01-24  Jim Meyering  <meyering@redhat.com>
2672
2673         maint.mk: do not prepend "./" after filtering
2674         * top/maint.mk (_prepend_srcdir_prefix): New variable
2675         (VC_LIST_EXCEPT): Use it to avoid prepending (post-filter)
2676         "./" when $(srcdir) is ".".
2677
2678         define STREQ(a,b) consistently, removing useless parentheses
2679         #define STREQ(a, b) (strcmp ((a), (b)) == 0) is over-parenthesized,
2680         since the only risk is that "a" or "b" contains an unparenthesized
2681         comma, but if either did that, STREQ would have 3 or more arguments.
2682         Hence, #define STREQ(a, b) (strcmp (a, b) == 0) is better.
2683         * lib/fts.c (STREQ): Remove unnecessary parentheses.
2684         * lib/hash-triple.c (STREQ): Likewise.
2685         * tests/test-argv-iter.c (STREQ): Use a and b, not s1 and s2.
2686         * lib/getugroups.c (STREQ): Likewise.
2687
2688 2010-01-23  Jim Meyering  <meyering@redhat.com>
2689
2690         maint.mk: fix syntax-check in a non-srcdir build directory
2691         * top/maint.mk (_dot_escaped_srcdir): Remove erroneous backslash,
2692         introduced in my 2010-01-21 commit, a6da6c45.  Reported by Eric Blake.
2693
2694 2010-01-22  Jim Meyering  <meyering@redhat.com>
2695
2696         userspec: add unit tests
2697         * tests/test-userspec.c: New file.
2698         * modules/userspec-tests: Likewise.
2699
2700 2010-01-21  Jim Meyering  <meyering@redhat.com>
2701
2702         maint.mk: handle source file names containing "." robustly
2703         * top/maint.mk (_dot_escaped_srcdir): Define.
2704         (VC_LIST): Use it in LHS of sed substitution.
2705
2706 2010-01-21  Jiri Denemark  <jdenemar@redhat.com>
2707
2708         maint.mk: fix VC_LIST_EXCEPT for srcdir != builddir
2709         * top/maint.mk (VC_LIST_EXCEPT): Preprocess the output of
2710         $(VC_LIST) to remove a prefix of '$(srcdir)/', so that it works
2711         from a non-srcdir build.
2712
2713 2010-01-20  Eric Blake  <ebb9@byu.net>
2714
2715         warn-on-use: use instead of link-warning
2716         * modules/stdio (Depends-on, Makefile.am): Drop link-warning.
2717         * modules/unistd (Depends-on, Makefile.am): Likewise.
2718         * modules/arpa_inet (Depends-on): Replace link-warning with
2719         warn-on-use.
2720         (Makefile.am): Update rules accordingly.
2721         * modules/ctype (Depends-on, Makefile.am): Likewise.
2722         * modules/dirent (Depends-on, Makefile.am): Likewise.
2723         * modules/fcntl-h (Depends-on, Makefile.am): Likewise.
2724         * modules/inttypes (Depends-on, Makefile.am): Likewise.
2725         * modules/langinfo (Depends-on, Makefile.am): Likewise.
2726         * modules/locale (Depends-on, Makefile.am): Likewise.
2727         * modules/math (Depends-on, Makefile.am): Likewise.
2728         * modules/search (Depends-on, Makefile.am): Likewise.
2729         * modules/signal (Depends-on, Makefile.am): Likewise.
2730         * modules/spawn (Depends-on, Makefile.am): Likewise.
2731         * modules/stdlib (Depends-on, Makefile.am): Likewise.
2732         * modules/string (Depends-on, Makefile.am): Likewise.
2733         * modules/strings (Depends-on, Makefile.am): Likewise.
2734         * modules/sys_file (Depends-on, Makefile.am): Likewise.
2735         * modules/sys_ioctl (Depends-on, Makefile.am): Likewise.
2736         * modules/sys_select (Depends-on, Makefile.am): Likewise.
2737         * modules/sys_socket (Depends-on, Makefile.am): Likewise.
2738         * modules/sys_stat (Depends-on, Makefile.am): Likewise.
2739         * modules/sys_times (Depends-on, Makefile.am): Likewise.
2740         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
2741         * modules/wchar (Depends-on, Makefile.am): Likewise.
2742         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Check which functions
2743         should be poisoned.
2744         * m4/ctype.m4 (gl_CTYPE_H): Likewise.
2745         * m4/dirent_h.m4 (gl_DIRENT_H): Likewise.
2746         * m4/fcntl_h.m4 (gl_FCNTL_H): Likewise.
2747         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
2748         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
2749         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
2750         * m4/math_h.m4 (gl_MATH_H): Likewise.
2751         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
2752         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
2753         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
2754         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
2755         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
2756         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
2757         * m4/strings_h.m4 (gl_HEADER_STRINGS_H_BODY): Likewise.
2758         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H_DEFAULTS): Likewise.
2759         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Likewise.
2760         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
2761         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
2762         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
2763         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
2764         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
2765         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
2766         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
2767         * lib/arpa_inet.in.h: Use _GL_WARN_ON_USE instead of
2768         GL_LINK_WARNING.
2769         * lib/ctype.in.h: Likewise.
2770         * lib/dirent.in.h: Likewise.
2771         * lib/fcntl.in.h: Likewise.
2772         * lib/inttypes.in.h: Likewise.
2773         * lib/langinfo.in.h: Likewise.
2774         * lib/locale.in.h: Likewise.
2775         * lib/math.in.h: Likewise.
2776         * lib/search.in.h: Likewise.
2777         * lib/signal.in.h: Likewise.
2778         * lib/spawn.in.h: Likewise.
2779         * lib/stdio.in.h: Likewise.
2780         * lib/stdlib.in.h: Likewise.
2781         * lib/string.in.h: Likewise.
2782         * lib/strings.in.h: Likewise.
2783         * lib/sys_file.in.h: Likewise.
2784         * lib/sys_ioctl.in.h: Likewise.
2785         * lib/sys_select.in.h: Likewise.
2786         * lib/sys_socket.in.h: Likewise.
2787         * lib/sys_stat.in.h: Likewise.
2788         * lib/sys_times.in.h: Likewise.
2789         * lib/sys_utsname.in.h: Likewise.
2790         * lib/unistd.in.h: Likewise.
2791         * lib/wchar.in.h: Likewise.
2792
2793 2010-01-20  Bruno Haible  <bruno@clisp.org>
2794
2795         Avoid duplicate -lm.
2796         * m4/isnan.m4 (gl_ISNAN): Avoid duplicate -lm in $ISNAN_LIBM.
2797         * m4/round.m4 (gl_FUNC_ROUND): Avoid duplicate -lm in $ROUND_LIBM.
2798         * m4/roundf.m4 (gl_FUNC_ROUNDF): Avoid duplicate -lm in $ROUNDF_LIBM.
2799         * m4/roundl.m4 (gl_FUNC_ROUNDL): Avoid duplicate -lm in $ROUNDL_LIBM.
2800         * m4/acosl.m4 (gl_FUNC_ACOSL): Avoid duplicate -lm in $ACOSL_LIBM.
2801         * m4/cosl.m4 (gl_FUNC_COSL): Avoid duplicate -lm in $COSL_LIBM.
2802         * m4/logl.m4 (gl_FUNC_LOGL): Avoid duplicate -lm in $LOGL_LIBM.
2803         * m4/sinl.m4 (gl_FUNC_SINL): Avoid duplicate -lm in $SINL_LIBM.
2804         * m4/sqrtl.m4 (gl_FUNC_SQRTL): Avoid duplicate -lm in $SQRTL_LIBM.
2805         * m4/tanl.m4 (gl_FUNC_TANL): Avoid duplicate -lm in $TANL_LIBM.
2806         * m4/asinl.m4 (gl_FUNC_ASINL): Same change, for consistency.
2807         * m4/atanl.m4 (gl_FUNC_ATANL): Likewise.
2808         Reported by Paolo Bonzini.
2809
2810 2010-01-19  Bruno Haible  <bruno@clisp.org>
2811
2812         langinfo, nl_langinfo: Relicense under LGPLv2+.
2813         * modules/langinfo (License): Change to LGPLv2+.
2814         * modules/nl_langinfo (License): Likewise.
2815         Patch by David Lutterkort <lutter@redhat.com>.
2816
2817 2010-01-19  Bruno Haible  <bruno@clisp.org>
2818
2819         Avoid compilation error with cc on OSF/1 5.1.
2820         * lib/fcntl.in.h: Include <unistd.h> after the #include_next <fcntl.h>
2821         statement, not before.
2822         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2823
2824 2010-01-18  Bruno Haible  <bruno@clisp.org>
2825
2826         Avoid a link error due to the __printf__ symbol.
2827         * lib/stdio.in.h (__attribute__): Define to empty also for gcc 2.5.x
2828         and 2.6.x.
2829         (__format__, __printf__): Remove definitions.
2830         * lib/argp-fmtstream.h: Likewise.
2831         * lib/argp.h: Likewise.
2832         * lib/error.h: Likewise.
2833         * lib/vasnprintf.h: Likewise.
2834         * lib/xprintf.h: Likewise.
2835         * lib/xvasprintf.h: Likewise.
2836         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2837
2838 2010-01-18  Bruno Haible  <bruno@clisp.org>
2839
2840         Tests for module 'tanl'.
2841         * modules/tanl-tests: New file.
2842         * tests/test-tanl.c: New file.
2843
2844         Tests for module 'sqrtl'.
2845         * modules/sqrtl-tests: New file.
2846         * tests/test-sqrtl.c: New file.
2847
2848         Tests for module 'sinl'.
2849         * modules/sinl-tests: New file.
2850         * tests/test-sinl.c: New file.
2851
2852         Tests for module 'logl'.
2853         * modules/logl-tests: New file.
2854         * tests/test-logl.c: New file.
2855
2856         Tests for module 'expl'.
2857         * modules/expl-tests: New file.
2858         * tests/test-expl.c: New file.
2859
2860         Tests for module 'cosl'.
2861         * modules/cosl-tests: New file.
2862         * tests/test-cosl.c: New file.
2863
2864         Tests for module 'atanl'.
2865         * modules/atanl-tests: New file.
2866         * tests/test-atanl.c: New file.
2867
2868         Tests for module 'asinl'.
2869         * modules/asinl-tests: New file.
2870         * tests/test-asinl.c: New file.
2871
2872         Tests for module 'acosl'.
2873         * modules/acosl-tests: New file.
2874         * tests/test-acosl.c: New file.
2875
2876         New modules acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
2877         * lib/math.in.h (acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl,
2878         tanl): Use the standard gnulib idiom.
2879         * lib/cosl.c: Don't include trigl.c and sincosl.c.
2880         * lib/sinl.c: Likewise.
2881         * lib/tanl.c: Don't include trigl.c.
2882         (kernel_tanl): Make static.
2883         * lib/sincosl.c: Include trigl.h first.
2884         * lib/trigl.c: Likewise.
2885         * m4/acosl.m4: New file.
2886         * m4/asinl.m4: New file.
2887         * m4/atanl.m4: New file.
2888         * m4/cosl.m4: New file.
2889         * m4/expl.m4: New file.
2890         * m4/logl.m4: New file.
2891         * m4/sinl.m4: New file.
2892         * m4/sqrtl.m4: New file.
2893         * m4/tanl.m4: New file.
2894         * m4/mathl.m4: Remove file.
2895         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_* and HAVE_*
2896         variables for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
2897         Don't initialize GNULIB_MATHL.
2898         * modules/acosl: New file.
2899         * modules/asinl: New file.
2900         * modules/atanl: New file.
2901         * modules/cosl: New file.
2902         * modules/expl: New file.
2903         * modules/logl: New file.
2904         * modules/sinl: New file.
2905         * modules/sqrtl: New file.
2906         * modules/tanl: New file.
2907         * modules/math (Makefile.am): Substitute GNULIB_* and HAVE_* variables
2908         for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl. Don't
2909         substitute GNULIB_MATHL.
2910         * modules/mathl: Rewritten.
2911         * doc/posix-functions/acosl.texi: Mention the 'acosl' module.
2912         * doc/posix-functions/asinl.texi: Mention the 'asinl' module.
2913         * doc/posix-functions/atanl.texi: Mention the 'atanl' module.
2914         * doc/posix-functions/cosl.texi: Mention the 'cosl' module.
2915         * doc/posix-functions/expl.texi: Mention the 'expl' module.
2916         * doc/posix-functions/logl.texi: Mention the 'logl' module.
2917         * doc/posix-functions/sinl.texi: Mention the 'sinl' module.
2918         * doc/posix-functions/sqrtl.texi: Mention the 'sqrtl' module.
2919         * doc/posix-functions/tanl.texi: Mention the 'tanl' module.
2920
2921 2010-01-18  Bruno Haible  <bruno@clisp.org>
2922
2923         sqrt: Make gl_FUNC_SQRT requirable.
2924         * m4/sqrt.m4: New file.
2925         * modules/sqrt (Files): Add it.
2926         (configure.ac): Invoke gl_FUNC_SQRT.
2927
2928 2010-01-18  Bruno Haible  <bruno@clisp.org>
2929
2930         New modules for common <math.h> functions.
2931         * m4/mathfunc.m4: New file.
2932         * modules/acos: New file.
2933         * modules/asin: New file.
2934         * modules/atan: New file.
2935         * modules/atan2: New file.
2936         * modules/cbrt: New file.
2937         * modules/copysign: New file.
2938         * modules/cos: New file.
2939         * modules/cosh: New file.
2940         * modules/erf: New file.
2941         * modules/erfc: New file.
2942         * modules/exp: New file.
2943         * modules/fabs: New file.
2944         * modules/fmod: New file.
2945         * modules/hypot: New file.
2946         * modules/j0: New file.
2947         * modules/j1: New file.
2948         * modules/jn: New file.
2949         * modules/ldexp: New file.
2950         * modules/lgamma: New file.
2951         * modules/log: New file.
2952         * modules/log10: New file.
2953         * modules/log1p: New file.
2954         * modules/logb: New file.
2955         * modules/modf: New file.
2956         * modules/nextafter: New file.
2957         * modules/pow: New file.
2958         * modules/remainder: New file.
2959         * modules/rint: New file.
2960         * modules/sin: New file.
2961         * modules/sinh: New file.
2962         * modules/sqrt: New file.
2963         * modules/tan: New file.
2964         * modules/tanh: New file.
2965         * modules/y0: New file.
2966         * modules/y1: New file.
2967         * modules/yn: New file.
2968         * doc/posix-functions/acos.texi: Mention the 'acos' module.
2969         * doc/posix-functions/asin.texi: Mention the 'asin' module.
2970         * doc/posix-functions/atan.texi: Mention the 'atan' module.
2971         * doc/posix-functions/atan2.texi: Mention the 'atan2' module.
2972         * doc/posix-functions/cbrt.texi: Mention the 'cbrt' module.
2973         * doc/posix-functions/copysign.texi: Mention the 'copysign' module.
2974         * doc/posix-functions/cos.texi: Mention the 'cos' module.
2975         * doc/posix-functions/cosh.texi: Mention the 'cosh' module.
2976         * doc/posix-functions/erf.texi: Mention the 'erf' module.
2977         * doc/posix-functions/erfc.texi: Mention the 'erfc' module.
2978         * doc/posix-functions/exp.texi: Mention the 'exp' module.
2979         * doc/posix-functions/fabs.texi: Mention the 'fabs' module.
2980         * doc/posix-functions/fmod.texi: Mention the 'fmod' module.
2981         * doc/posix-functions/hypot.texi: Mention the 'hypot' module.
2982         * doc/posix-functions/j0.texi: Mention the 'j0' module.
2983         * doc/posix-functions/j1.texi: Mention the 'j1' module.
2984         * doc/posix-functions/jn.texi: Mention the 'jn' module.
2985         * doc/posix-functions/ldexp.texi: Mention the 'ldexp' module.
2986         * doc/posix-functions/lgamma.texi: Mention the 'lgamma' module.
2987         * doc/posix-functions/log.texi: Mention the 'log' module.
2988         * doc/posix-functions/log10.texi: Mention the 'log10' module.
2989         * doc/posix-functions/log1p.texi: Mention the 'log1p' module.
2990         * doc/posix-functions/logb.texi: Mention the 'logb' module.
2991         * doc/posix-functions/modf.texi: Mention the 'modf' module.
2992         * doc/posix-functions/nextafter.texi: Mention the 'nextafter' module.
2993         * doc/posix-functions/pow.texi: Mention the 'pow' module.
2994         * doc/posix-functions/remainder.texi: Mention the 'remainder' module.
2995         * doc/posix-functions/rint.texi: Mention the 'rint' module.
2996         * doc/posix-functions/sin.texi: Mention the 'sin' module.
2997         * doc/posix-functions/sinh.texi: Mention the 'sinh' module.
2998         * doc/posix-functions/sqrt.texi: Mention the 'sqrt' module.
2999         * doc/posix-functions/tan.texi: Mention the 'tan' module.
3000         * doc/posix-functions/tanh.texi: Mention the 'tanh' module.
3001         * doc/posix-functions/y0.texi: Mention the 'y0' module.
3002         * doc/posix-functions/y1.texi: Mention the 'y1' module.
3003         * doc/posix-functions/yn.texi: Mention the 'yn' module.
3004
3005 2010-01-18  Jim Meyering  <meyering@redhat.com>
3006
3007         ignore-value: relax license to LGPLv2+
3008         * modules/ignore-value (License): Relax to LGPLv2+.
3009
3010         getdate: don't leak when TZ contains two or more '"'s
3011         * lib/getdate.y (get_date): Don't leak a copy of TZ for each
3012         double quote in TZ after the first one.
3013
3014         readtokens: do not leak internal token_lengths buffer
3015         * lib/readtokens.c (readtokens): Free the local, lengths,
3016         when the supplied "token_lengths" parameter is NULL.
3017
3018 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3019
3020         Fix a couple of missing LIBTHREAD link failures on AIX.
3021         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add
3022         $(LIBTHREAD).
3023         * modules/strsignal-tests (test_strsignal_LDADD): Likewise.
3024
3025         Link test-poll against INET_PTON_LIB.
3026         * modules/poll-tests (test_poll_LDADD): Add $(INET_PTON_LIB),
3027         for inet_pton on Solaris 10.
3028
3029 2010-01-17  Bruno Haible  <bruno@clisp.org>
3030
3031         unistdio/*-sprintf: Fix typo in module description.
3032         * modules/unistdio/u8-sprintf (Depends-on): Fix typo.
3033         * modules/unistdio/u8-u8-sprintf (Depends-on): Likewise.
3034         * modules/unistdio/u16-sprintf (Depends-on): Likewise.
3035         * modules/unistdio/u16-u16-sprintf (Depends-on): Likewise.
3036         * modules/unistdio/u32-sprintf (Depends-on): Likewise.
3037         * modules/unistdio/u32-u32-sprintf (Depends-on): Likewise.
3038         * modules/unistdio/ulc-sprintf (Depends-on): Likewise.
3039         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3040
3041 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3042
3043         gnulib-tool: fix filelist for AIX, HP-UX ksh.
3044         * gnulib-tool (func_filter_filelist): Do not quote possibly-empty
3045         variables in shell case patterns, for AIX and HP-UX ksh.
3046
3047         Split large sed scripts, for HP-UX sed.
3048         * modules/stdio: Split sed scripts around 50 sed commands,
3049         to avoid HP-UX limit of 99 commands, in the near future.
3050         * modules/string: Likewise.
3051         * modules/unistd: Likewise.
3052
3053         gnulib-tool: avoid writing in the current directory.
3054         * gnulib-tool (func_emit_lib_Makefile_am)
3055         (func_emit_tests_Makefile_am): Put temporary files in $tmp,
3056         not in the current directory, so concurrent gnulib-tool
3057         instances do not interfere.
3058
3059 2010-01-16  Jim Meyering  <meyering@redhat.com>
3060
3061         doc: update users.txt
3062         * users.txt: Add grep.
3063         (diffutils, gzip): Update URLs.
3064
3065 2010-01-12  Bruno Haible  <bruno@clisp.org>
3066
3067         posix_spawn: Avoid test failure on Cygwin.
3068         * tests/test-posix_spawn3.c (DATA_FILENAME) [CYGWIN]: Use less risky
3069         characters.
3070         Reported by Simon Josefsson.
3071
3072 2010-01-12  Bruno Haible  <bruno@clisp.org>
3073
3074         * tests/test-cond.c (main): When skipping the test, show the reason.
3075
3076 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3077
3078         * lib/striconv.c (str_cd_iconv): Avoid if before free.
3079
3080 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3081
3082         * top/maint.mk (VC_LIST_EXCEPT): Filter list through
3083         VC_LIST_ALWAYS_EXCLUDE_REGEX.
3084
3085 2010-01-12  Eric Blake  <ebb9@byu.net>
3086
3087         build: guarantee AS_VAR_IF
3088         * m4/warnings.m4 (gl_WARN_ADD): Use autoconf name.
3089         (gl_AS_VAR_IF): Move...
3090         * m4/gnulib-common.m4 (AS_VAR_IF): ...here.
3091         Reported by Simon Josefsson.
3092
3093 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3094
3095         * lib/stdio.in.h: Fix typo.
3096
3097 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3098
3099         * m4/gc.m4: Check if linking to libgcrypt also needs linking to
3100         libgpg-error.
3101
3102 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3103
3104         * tests/test-xalloc-die.sh: Use $EXEEXT.
3105
3106 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3107             Bruno Haible  <bruno@clisp.org>
3108
3109         getlogin, getlogin_r: Avoid test failure.
3110         * tests/test-getlogin.c: Include <stdio.h>.
3111         (main): Skip the test when the function fails because stdin is not a
3112         tty.
3113         * tests/test-getlogin_r.c: Include <stdio.h>.
3114         (main): Skip the test when the function fails because stdin is not a
3115         tty.
3116
3117 2010-01-11  Eric Blake  <ebb9@byu.net>
3118
3119         tests: avoid more large file warnings
3120         * tests/test-fflush.c: Avoid warning about ftell use.
3121         * tests/test-fseek.c: Avoid warning about fseek use.
3122
3123 2010-01-10  Bruno Haible  <bruno@clisp.org>
3124
3125         nproc: Work better on Linux when /proc and /sys are not mounted.
3126         * lib/nproc.c (num_processors): Use num_processors_via_affinity_mask ()
3127         as lower bound when, on glibc/Linux systems,
3128         sysconf (_SC_NPROCESSORS_CONF) returns 1.
3129         Suggested by Pádraig Brady <P@draigbrady.com>.
3130         Reported by Dmitry V. Levin <ldv@altlinux.org>.
3131
3132         nproc: Refactor.
3133         * lib/nproc.c (num_processors_via_affinity_mask): New function,
3134         extracted from num_processors.
3135         (num_processors): Call it.
3136
3137 2010-01-11  Jim Meyering  <meyering@redhat.com>
3138
3139         utimecmp: avoid new warning from upcoming gcc-4.5.0
3140         * lib/utimecmp.c (BILLION): Define using #define rather than an
3141         anonymous enum, to placate upcoming gcc-4.5.0's -Wenum-compare.
3142
3143 2010-01-11  Eric Blake  <ebb9@byu.net>
3144
3145         math: add portability warnings for classification macros
3146         * modules/math (Depends-on): Add warn-on-use.
3147         (Makefile.am): Provide new substitutions.
3148         * m4/math_h.m4 (gl_MATH_H): Require inline.
3149         * lib/math.in.h (_GL_WARN_REAL_FLOATING_DECL)
3150         (_GL_WARN_REAL_FLOATING_IMPL): New helper macros.
3151         (isfinite, isinf, isnan, signbit) [GNULIB_POSIXCHECK]: Use them to
3152         implement warnings.
3153
3154         unistd: warn on use of environ without module
3155         * modules/unistd (Depends-on): Add warn-on-use.
3156         (Makefile.am): Provide new substitutions.
3157         * m4/unistd_h.m4 (gl_UNISTD_H): Check for inline and environ.
3158         * lib/unistd.in.h (environ): Wrap with a warning helper function.
3159
3160         stdio: warn on suspicious uses
3161         * modules/stdio (Depends-on): Add warn-on-use.
3162         (Makefile.am): Provide new substitutions.
3163         * m4/stdio_h.m4 (gl_STDIO_H): Check for inline, ftello, and
3164         fseeko.
3165         * lib/stdio.in.h (gets): Always warn on use.
3166         (fseek, ftell): Adjust when warnings are issued, and honor
3167         _GL_NO_LARGE_FILES as a way to silence the warning.
3168         * tests/test-fpurge.c [!GNULIB_FSEEK]: Use new means to squelch
3169         any warning about large file offsets.
3170         * tests/test-freadable.c [!GNULIB_FSEEK]: Likewise.
3171         * tests/test-freading.c [!GNULIB_FSEEK]: Likewise.
3172         * tests/test-fseeko.c [!GNULIB_FSEEK]: Likewise.
3173         * tests/test-ftell.c [!GNULIB_FSEEK]: Likewise.
3174         * tests/test-ftello.c [!GNULIB_FSEEK]: Likewise.
3175         * tests/test-fwritable.c [!GNULIB_FSEEK]: Likewise.
3176         * tests/test-fwriting.c [!GNULIB_FSEEK]: Likewise.
3177         * tests/test-getopt.c [!GNULIB_FTELL]: Likewise.
3178
3179         warn-on-use: new module
3180         * modules/warn-on-use: New file.
3181         * build-aux/warn-on-use.h: Likewise.
3182         * m4/warn-on-use.m4: Likewise.
3183         * MODULES.html.sh (Support for building): Mention it.
3184
3185 2010-01-10  Bruno Haible  <bruno@clisp.org>
3186
3187         Tests for module 'unistr/u32-strdup'.
3188         * modules/unistr/u32-strdup-tests: New file.
3189         * tests/unistr/test-u32-strdup.c: New file.
3190
3191         Tests for module 'unistr/u16-strdup'.
3192         * modules/unistr/u16-strdup-tests: New file.
3193         * tests/unistr/test-u16-strdup.c: New file.
3194
3195         Tests for module 'unistr/u8-strdup'.
3196         * modules/unistr/u8-strdup-tests: New file.
3197         * tests/unistr/test-u8-strdup.c: New file.
3198         * tests/unistr/test-strdup.h: New file.
3199
3200         Tests for module 'unistr/u32-strncmp'.
3201         * modules/unistr/u32-strncmp-tests: New file.
3202         * tests/unistr/test-u32-strncmp.c: New file.
3203
3204         Tests for module 'unistr/u16-strncmp'.
3205         * modules/unistr/u16-strncmp-tests: New file.
3206         * tests/unistr/test-u16-strncmp.c: New file.
3207
3208         Tests for module 'unistr/u8-strncmp'.
3209         * modules/unistr/u8-strncmp-tests: New file.
3210         * tests/unistr/test-u8-strncmp.c: New file.
3211         * tests/unistr/test-strncmp.h: New file.
3212
3213         Tests for module 'unistr/u32-strcoll'.
3214         * modules/unistr/u32-strcoll-tests: New file.
3215         * tests/unistr/test-u32-strcoll.c: New file.
3216
3217         Tests for module 'unistr/u16-strcoll'.
3218         * modules/unistr/u16-strcoll-tests: New file.
3219         * tests/unistr/test-u16-strcoll.c: New file.
3220
3221         Tests for module 'unistr/u8-strcoll'.
3222         * modules/unistr/u8-strcoll-tests: New file.
3223         * tests/unistr/test-u8-strcoll.c: New file.
3224
3225         Tests for module 'unistr/u32-strcmp'.
3226         * modules/unistr/u32-strcmp-tests: New file.
3227         * tests/unistr/test-u32-strcmp.c: New file.
3228         * tests/unistr/test-u32-strcmp.h: New file.
3229
3230         Tests for module 'unistr/u16-strcmp'.
3231         * modules/unistr/u16-strcmp-tests: New file.
3232         * tests/unistr/test-u16-strcmp.c: New file.
3233         * tests/unistr/test-u16-strcmp.h: New file.
3234
3235         Tests for module 'unistr/u8-strcmp'.
3236         * modules/unistr/u8-strcmp-tests: New file.
3237         * tests/unistr/test-u8-strcmp.c: New file.
3238         * tests/unistr/test-u8-strcmp.h: New file.
3239         * tests/unistr/test-strcmp.h: New file.
3240
3241         Tests for module 'unistr/u32-strncat'.
3242         * modules/unistr/u32-strncat-tests: New file.
3243         * tests/unistr/test-u32-strncat.c: New file.
3244
3245         Tests for module 'unistr/u16-strncat'.
3246         * modules/unistr/u16-strncat-tests: New file.
3247         * tests/unistr/test-u16-strncat.c: New file.
3248
3249         Tests for module 'unistr/u8-strncat'.
3250         * modules/unistr/u8-strncat-tests: New file.
3251         * tests/unistr/test-u8-strncat.c: New file.
3252         * tests/unistr/test-strncat.h: New file.
3253
3254         Tests for module 'unistr/u32-strcat'.
3255         * modules/unistr/u32-strcat-tests: New file.
3256         * tests/unistr/test-u32-strcat.c: New file.
3257
3258         Tests for module 'unistr/u16-strcat'.
3259         * modules/unistr/u16-strcat-tests: New file.
3260         * tests/unistr/test-u16-strcat.c: New file.
3261
3262         Tests for module 'unistr/u8-strcat'.
3263         * modules/unistr/u8-strcat-tests: New file.
3264         * tests/unistr/test-u8-strcat.c: New file.
3265         * tests/unistr/test-strcat.h: New file.
3266
3267         Tests for module 'unistr/u32-stpncpy'.
3268         * modules/unistr/u32-stpncpy-tests: New file.
3269         * tests/unistr/test-u32-stpncpy.c: New file.
3270
3271         Tests for module 'unistr/u16-stpncpy'.
3272         * modules/unistr/u16-stpncpy-tests: New file.
3273         * tests/unistr/test-u16-stpncpy.c: New file.
3274
3275         Tests for module 'unistr/u8-stpncpy'.
3276         * modules/unistr/u8-stpncpy-tests: New file.
3277         * tests/unistr/test-u8-stpncpy.c: New file.
3278         * tests/unistr/test-stpncpy.h: New file.
3279
3280         Tests for module 'unistr/u32-strncpy'.
3281         * modules/unistr/u32-strncpy-tests: New file.
3282         * tests/unistr/test-u32-strncpy.c: New file.
3283
3284         Tests for module 'unistr/u16-strncpy'.
3285         * modules/unistr/u16-strncpy-tests: New file.
3286         * tests/unistr/test-u16-strncpy.c: New file.
3287
3288         Tests for module 'unistr/u8-strncpy'.
3289         * modules/unistr/u8-strncpy-tests: New file.
3290         * tests/unistr/test-u8-strncpy.c: New file.
3291         * tests/unistr/test-strncpy.h: New file.
3292
3293         Tests for module 'unistr/u32-stpcpy'.
3294         * modules/unistr/u32-stpcpy-tests: New file.
3295         * tests/unistr/test-u32-stpcpy.c: New file.
3296
3297         Tests for module 'unistr/u16-stpcpy'.
3298         * modules/unistr/u16-stpcpy-tests: New file.
3299         * tests/unistr/test-u16-stpcpy.c: New file.
3300
3301         Tests for module 'unistr/u8-stpcpy'.
3302         * modules/unistr/u8-stpcpy-tests: New file.
3303         * tests/unistr/test-u8-stpcpy.c: New file.
3304         * tests/unistr/test-stpcpy.h: New file.
3305
3306         Tests for module 'unistr/u32-strcpy'.
3307         * modules/unistr/u32-strcpy-tests: New file.
3308         * tests/unistr/test-u32-strcpy.c: New file.
3309
3310         Tests for module 'unistr/u16-strcpy'.
3311         * modules/unistr/u16-strcpy-tests: New file.
3312         * tests/unistr/test-u16-strcpy.c: New file.
3313
3314         Tests for module 'unistr/u8-strcpy'.
3315         * modules/unistr/u8-strcpy-tests: New file.
3316         * tests/unistr/test-u8-strcpy.c: New file.
3317         * tests/unistr/test-strcpy.h: New file.
3318
3319         Tests for module 'unistr/u32-strnlen'.
3320         * modules/unistr/u32-strnlen-tests: New file.
3321         * tests/unistr/test-u32-strnlen.c: New file.
3322
3323         Tests for module 'unistr/u16-strnlen'.
3324         * modules/unistr/u16-strnlen-tests: New file.
3325         * tests/unistr/test-u16-strnlen.c: New file.
3326
3327         Tests for module 'unistr/u8-strnlen'.
3328         * modules/unistr/u8-strnlen-tests: New file.
3329         * tests/unistr/test-u8-strnlen.c: New file.
3330         * tests/unistr/test-strnlen.h: New file.
3331
3332         Tests for module 'unistr/u32-strlen'.
3333         * modules/unistr/u32-strlen-tests: New file.
3334         * tests/unistr/test-u32-strlen.c: New file.
3335
3336         Tests for module 'unistr/u16-strlen'.
3337         * modules/unistr/u16-strlen-tests: New file.
3338         * tests/unistr/test-u16-strlen.c: New file.
3339
3340         Tests for module 'unistr/u8-strlen'.
3341         * modules/unistr/u8-strlen-tests: New file.
3342         * tests/unistr/test-u8-strlen.c: New file.
3343
3344         Tests for module 'unistr/u32-prev'.
3345         * modules/unistr/u32-prev-tests: New file.
3346         * tests/unistr/test-u32-prev.c: New file.
3347
3348         Tests for module 'unistr/u16-prev'.
3349         * modules/unistr/u16-prev-tests: New file.
3350         * tests/unistr/test-u16-prev.c: New file.
3351
3352         Tests for module 'unistr/u8-prev'.
3353         * modules/unistr/u8-prev-tests: New file.
3354         * tests/unistr/test-u8-prev.c: New file.
3355
3356         Tests for module 'unistr/u32-next'.
3357         * modules/unistr/u32-next-tests: New file.
3358         * tests/unistr/test-u32-next.c: New file.
3359
3360         Tests for module 'unistr/u16-next'.
3361         * modules/unistr/u16-next-tests: New file.
3362         * tests/unistr/test-u16-next.c: New file.
3363
3364         Tests for module 'unistr/u8-next'.
3365         * modules/unistr/u8-next-tests: New file.
3366         * tests/unistr/test-u8-next.c: New file.
3367
3368         Tests for module 'unistr/u32-strmbtouc'.
3369         * modules/unistr/u32-strmbtouc-tests: New file.
3370         * tests/unistr/test-u32-strmbtouc.c: New file.
3371
3372         Tests for module 'unistr/u16-strmbtouc'.
3373         * modules/unistr/u16-strmbtouc-tests: New file.
3374         * tests/unistr/test-u16-strmbtouc.c: New file.
3375
3376         Tests for module 'unistr/u8-strmbtouc'.
3377         * modules/unistr/u8-strmbtouc-tests: New file.
3378         * tests/unistr/test-u8-strmbtouc.c: New file.
3379
3380         Tests for module 'unistr/u32-strmblen'.
3381         * modules/unistr/u32-strmblen-tests: New file.
3382         * tests/unistr/test-u32-strmblen.c: New file.
3383
3384         Tests for module 'unistr/u16-strmblen'.
3385         * modules/unistr/u16-strmblen-tests: New file.
3386         * tests/unistr/test-u16-strmblen.c: New file.
3387
3388         Tests for module 'unistr/u8-strmblen'.
3389         * modules/unistr/u8-strmblen-tests: New file.
3390         * tests/unistr/test-u8-strmblen.c: New file.
3391
3392         Tests for module 'unistr/u32-cpy-alloc'.
3393         * modules/unistr/u32-cpy-alloc-tests: New file.
3394         * tests/unistr/test-u32-cpy-alloc.c: New file.
3395
3396         Tests for module 'unistr/u16-cpy-alloc'.
3397         * modules/unistr/u16-cpy-alloc-tests: New file.
3398         * tests/unistr/test-u16-cpy-alloc.c: New file.
3399
3400         Tests for module 'unistr/u8-cpy-alloc'.
3401         * modules/unistr/u8-cpy-alloc-tests: New file.
3402         * tests/unistr/test-u8-cpy-alloc.c: New file.
3403         * tests/unistr/test-cpy-alloc.h: New file.
3404
3405         Tests for module 'unistr/u32-mbsnlen'.
3406         * modules/unistr/u32-mbsnlen-tests: New file.
3407         * tests/unistr/test-u32-mbsnlen.c: New file.
3408
3409         Tests for module 'unistr/u16-mbsnlen'.
3410         * modules/unistr/u16-mbsnlen-tests: New file.
3411         * tests/unistr/test-u16-mbsnlen.c: New file.
3412
3413         Tests for module 'unistr/u8-mbsnlen'.
3414         * modules/unistr/u8-mbsnlen-tests: New file.
3415         * tests/unistr/test-u8-mbsnlen.c: New file.
3416
3417         Tests for module 'unistr/u32-chr'.
3418         * modules/unistr/u32-chr-tests: New file.
3419         * tests/unistr/test-u32-chr.c: New file.
3420
3421         Tests for module 'unistr/u16-chr'.
3422         * modules/unistr/u16-chr-tests: New file.
3423         * tests/unistr/test-u16-chr.c: New file.
3424
3425         Tests for module 'unistr/u8-chr'.
3426         * modules/unistr/u8-chr-tests: New file.
3427         * tests/unistr/test-u8-chr.c: New file.
3428         * tests/unistr/test-chr.h: New file, based on tests/test-memchr.c.
3429
3430         Tests for module 'unistr/u32-cmp2'.
3431         * modules/unistr/u32-cmp2-tests: New file.
3432         * tests/unistr/test-u32-cmp2.c: New file.
3433
3434         Tests for module 'unistr/u16-cmp2'.
3435         * modules/unistr/u16-cmp2-tests: New file.
3436         * tests/unistr/test-u16-cmp2.c: New file.
3437
3438         Tests for module 'unistr/u8-cmp2'.
3439         * modules/unistr/u8-cmp2-tests: New file.
3440         * tests/unistr/test-u8-cmp2.c: New file.
3441         * tests/unistr/test-cmp2.h: New file, based on tests/unistr/test-cmp.h.
3442
3443         Tests for module 'unistr/u32-cmp'.
3444         * modules/unistr/u32-cmp-tests: New file.
3445         * tests/unistr/test-u32-cmp.c: New file.
3446
3447         Tests for module 'unistr/u16-cmp'.
3448         * modules/unistr/u16-cmp-tests: New file.
3449         * tests/unistr/test-u16-cmp.c: New file.
3450
3451         Tests for module 'unistr/u8-cmp'.
3452         * modules/unistr/u8-cmp-tests: New file.
3453         * tests/unistr/test-u8-cmp.c: New file.
3454         * tests/unistr/test-cmp.h: New file, based on tests/test-memcmp.c.
3455
3456         Tests for module 'unistr/u32-set'.
3457         * modules/unistr/u32-set-tests: New file.
3458         * tests/unistr/test-u32-set.c: New file.
3459
3460         Tests for module 'unistr/u16-set'.
3461         * modules/unistr/u16-set-tests: New file.
3462         * tests/unistr/test-u16-set.c: New file.
3463
3464         Tests for module 'unistr/u8-set'.
3465         * modules/unistr/u8-set-tests: New file.
3466         * tests/unistr/test-u8-set.c: New file.
3467         * tests/unistr/test-set.h: New file.
3468
3469         Tests for module 'unistr/u32-move'.
3470         * modules/unistr/u32-move-tests: New file.
3471         * tests/unistr/test-u32-move.c: New file.
3472
3473         Tests for module 'unistr/u16-move'.
3474         * modules/unistr/u16-move-tests: New file.
3475         * tests/unistr/test-u16-move.c: New file.
3476
3477         Tests for module 'unistr/u8-move'.
3478         * modules/unistr/u8-move-tests: New file.
3479         * tests/unistr/test-u8-move.c: New file.
3480         * tests/unistr/test-move.h: New file.
3481
3482         Tests for module 'unistr/u32-cpy'.
3483         * modules/unistr/u32-cpy-tests: New file.
3484         * tests/unistr/test-u32-cpy.c: New file.
3485
3486         Tests for module 'unistr/u16-cpy'.
3487         * modules/unistr/u16-cpy-tests: New file.
3488         * tests/unistr/test-u16-cpy.c: New file.
3489
3490         Tests for module 'unistr/u8-cpy'.
3491         * modules/unistr/u8-cpy-tests: New file.
3492         * tests/unistr/test-u8-cpy.c: New file.
3493         * tests/unistr/test-cpy.h: New file.
3494
3495 2010-01-09  Bruno Haible  <bruno@clisp.org>
3496
3497         Tests for module 'unistr/u32-uctomb'.
3498         * modules/unistr/u32-uctomb-tests: New file.
3499         * tests/unistr/test-u32-uctomb.c: New file.
3500
3501         Tests for module 'unistr/u16-uctomb'.
3502         * modules/unistr/u16-uctomb-tests: New file.
3503         * tests/unistr/test-u16-uctomb.c: New file.
3504
3505         Tests for module 'unistr/u8-uctomb'.
3506         * modules/unistr/u8-uctomb-tests: New file.
3507         * tests/unistr/test-u8-uctomb.c: New file.
3508
3509         Tests for module 'unistr/u32-mbtoucr'.
3510         * modules/unistr/u32-mbtoucr-tests: New file.
3511         * tests/unistr/test-u32-mbtoucr.c: New file.
3512
3513         Tests for module 'unistr/u16-mbtoucr'.
3514         * modules/unistr/u16-mbtoucr-tests: New file.
3515         * tests/unistr/test-u16-mbtoucr.c: New file.
3516
3517         Tests for module 'unistr/u8-mbtoucr'.
3518         * modules/unistr/u8-mbtoucr-tests: New file.
3519         * tests/unistr/test-u8-mbtoucr.c: New file.
3520
3521         Tests for module 'unistr/u32-mbtouc'.
3522         * modules/unistr/u32-mbtouc-tests: New file.
3523         * tests/unistr/test-u32-mbtouc.c: New file.
3524
3525         Tests for module 'unistr/u16-mbtouc'.
3526         * modules/unistr/u16-mbtouc-tests: New file.
3527         * tests/unistr/test-u16-mbtouc.c: New file.
3528
3529         Tests for module 'unistr/u8-mbtouc'.
3530         * modules/unistr/u8-mbtouc-tests: New file.
3531         * tests/unistr/test-u8-mbtouc.c: New file.
3532
3533         Tests for module 'unistr/u32-mbtouc-unsafe'.
3534         * modules/unistr/u32-mbtouc-unsafe-tests: New file.
3535         * tests/unistr/test-u32-mbtouc-unsafe.c: New file.
3536         * tests/unistr/test-u32-mbtouc.h: New file.
3537
3538         Tests for module 'unistr/u16-mbtouc-unsafe'.
3539         * modules/unistr/u16-mbtouc-unsafe-tests: New file.
3540         * tests/unistr/test-u16-mbtouc-unsafe.c: New file.
3541         * tests/unistr/test-u16-mbtouc.h: New file.
3542
3543         Tests for module 'unistr/u8-mbtouc-unsafe'.
3544         * modules/unistr/u8-mbtouc-unsafe-tests: New file.
3545         * tests/unistr/test-u8-mbtouc-unsafe.c: New file.
3546         * tests/unistr/test-u8-mbtouc.h: New file.
3547
3548         Tests for module 'unistr/u32-mblen'.
3549         * modules/unistr/u32-mblen-tests: New file.
3550         * tests/unistr/test-u32-mblen.c: New file.
3551
3552         Tests for module 'unistr/u16-mblen'.
3553         * modules/unistr/u16-mblen-tests: New file.
3554         * tests/unistr/test-u16-mblen.c: New file.
3555
3556         Tests for module 'unistr/u8-mblen'.
3557         * modules/unistr/u8-mblen-tests: New file.
3558         * tests/unistr/test-u8-mblen.c: New file.
3559
3560         Tests for module 'unistr/u32-to-u16'.
3561         * modules/unistr/u32-to-u16-tests: New file.
3562         * tests/unistr/test-u32-to-u16.c: New file.
3563
3564         Tests for module 'unistr/u32-to-u8'.
3565         * modules/unistr/u32-to-u8-tests: New file.
3566         * tests/unistr/test-u32-to-u8.c: New file.
3567
3568         Tests for module 'unistr/u16-to-u32'.
3569         * modules/unistr/u16-to-u32-tests: New file.
3570         * tests/unistr/test-u16-to-u32.c: New file.
3571
3572         Tests for module 'unistr/u16-to-u8'.
3573         * modules/unistr/u16-to-u8-tests: New file.
3574         * tests/unistr/test-u16-to-u8.c: New file.
3575
3576         Tests for module 'unistr/u8-to-u32'.
3577         * modules/unistr/u8-to-u32-tests: New file.
3578         * tests/unistr/test-u8-to-u32.c: New file.
3579
3580         Tests for module 'unistr/u8-to-u16'.
3581         * modules/unistr/u8-to-u16-tests: New file.
3582         * tests/unistr/test-u8-to-u16.c: New file.
3583
3584         Tests for module 'unistr/u32-check'.
3585         * modules/unistr/u32-check-tests: New file.
3586         * tests/unistr/test-u32-check.c: New file.
3587
3588         Tests for module 'unistr/u16-check'.
3589         * modules/unistr/u16-check-tests: New file.
3590         * tests/unistr/test-u16-check.c: New file.
3591
3592         Tests for module 'unistr/u8-check'.
3593         * modules/unistr/u8-check-tests: New file.
3594         * tests/unistr/test-u8-check.c: New file.
3595
3596         * tests/unictype/test-categ_byname.c: Include <stdbool.h>.
3597         (category_equals): New function.
3598         (main): Add more tests.
3599         * modules/unictype/category-byname-tests (Depends-on): Add stdbool.
3600
3601         * tests/unictype/test-bidi_byname.c (main): Add more tests.
3602
3603 2010-01-10  Bruno Haible  <bruno@clisp.org>
3604
3605         unistr/u*-strcoll: Try harder to distinguish different strings.
3606         * lib/unistr/u-strcoll.h (FUNC): When sl1 and sl2 are the same,
3607         compare s1 and s2 to see if they are different.
3608
3609 2010-01-10  Bruno Haible  <bruno@clisp.org>
3610
3611         unistr/u*-stpncpy: Fix the return value.
3612         * lib/unistr.h (u8_stpncpy, u16_stpncpy, u32_stpncpy): Make the
3613         description of the return value consistent with stpncpy in glibc.
3614         * lib/unistr/u-stpncpy.h (FUNC): Return the pointer past the last
3615         written non-NUL unit.
3616
3617 2010-01-10  Bruno Haible  <bruno@clisp.org>
3618
3619         unistr/u*-next: Add missing dependencies.
3620         * modules/unistr/u8-next (Depends-on): Add unistr/u8-strmbtouc.
3621         * modules/unistr/u16-next (Depends-on): Add unistr/u16-strmbtouc.
3622         * modules/unistr/u32-next (Depends-on): Add unistr/u32-strmbtouc.
3623
3624 2010-01-10  Bruno Haible  <bruno@clisp.org>
3625
3626         unistr/u8-mbsnlen: Fix return value for incomplete character.
3627         * lib/unistr/u8-mbsnlen.c (u8_mbsnlen): Use u8_mbtoucr instead of
3628         u8_mblen.
3629         * modules/unistr/u8-mbsnlen (Depends-on): Add unistr/u8-mbtoucr.
3630         Remove unistr/u8-mblen.
3631         * lib/unistr/u16-mbsnlen.c (u16_mbsnlen): Use u16_mbtoucr instead of
3632         u16_mblen.
3633         * modules/unistr/u16-mbsnlen (Depends-on): Add unistr/u16-mbtoucr.
3634         Remove unistr/u16-mblen.
3635
3636 2010-01-10  Bruno Haible  <bruno@clisp.org>
3637
3638         wchar: Fix compilation error when <wchar.h> is used from coreutils.
3639         * lib/wchar.in.h: Treat __need_wint_t like __need_mbstate_t.
3640         Reported by Brian Gough <bjg@gnu.org> and
3641         Chris Clayton <chris2553@googlemail.com> via
3642         Mike Frysinger <vapier@gentoo.org> and Jim Meyering <jim@meyering.net>.
3643
3644 2010-01-09  Bruno Haible  <bruno@clisp.org>
3645
3646         unistr/u16-to-u32: Reject invalid input.
3647         * lib/unistr/u16-to-u32.c (u16_to_u32): Call u16_mbtoucr instead of
3648         u16_mbtouc.
3649         * modules/unistr/u16-to-u32 (Depends-on): Add unistr/u16-mbtoucr.
3650         Remove unistr/u16-mbtouc.
3651
3652         unistr/u16-to-u8: Reject invalid input.
3653         * lib/unistr/u16-to-u8.c (u16_to_u8): Call u16_mbtoucr instead of
3654         u16_mbtouc.
3655         * modules/unistr/u16-to-u8 (Depends-on): Add unistr/u16-mbtoucr.
3656         Remove unistr/u16-mbtouc.
3657
3658         unistr/u8-to-u32: Reject invalid input.
3659         * lib/unistr/u8-to-u32.c (u8_to_u32): Call u8_mbtoucr instead of
3660         u8_mbtouc.
3661         * modules/unistr/u8-to-u32 (Depends-on): Add unistr/u8-mbtoucr.
3662         Remove unistr/u8-mbtouc.
3663
3664         unistr/u8-to-u16: Reject invalid input.
3665         * lib/unistr/u8-to-u16.c (u8_to_u16): Call u8_mbtoucr instead of
3666         u8_mbtouc.
3667         * modules/unistr/u8-to-u16 (Depends-on): Add unistr/u8-mbtoucr.
3668         Remove unistr/u8-mbtouc.
3669
3670 2010-01-09  Bruno Haible  <bruno@clisp.org>
3671
3672         Tests for module 'getlogin'.
3673         * modules/getlogin-tests: New file.
3674         * tests/test-getlogin.c: New file.
3675
3676         New module 'getlogin'.
3677         * lib/unistd.in.h (getlogin): New declaration.
3678         * lib/getlogin.c: New file.
3679         * m4/getlogin.m4: New file.
3680         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETLOGIN,
3681         HAVE_GETLOGIN.
3682         * modules/unistd (Makefile.am): Substitute GNULIB_GETLOGIN,
3683         HAVE_GETLOGIN.
3684         * modules/getlogin: New file.
3685         * doc/posix-functions/getlogin.texi: Mention the new module.
3686         Reported by John W. Eaton <jwe@gnu.org>.
3687
3688 2010-01-09  Bruno Haible  <bruno@clisp.org>
3689
3690         getlogin_r: Support for native Windows.
3691         * lib/getlogin_r.c: Include <windows.h>
3692         (getlogin_r): Implement for native Windows.
3693         * tests/test-getlogin_r.c (main): Also test with a huge buffer.
3694         Reported by Tatsuro MATSUOKA <tmacchant5@yahoo.co.jp>
3695         via John W. Eaton <jwe@gnu.org>.
3696
3697 2010-01-09  Bruno Haible  <bruno@clisp.org>
3698
3699         getlogin_r: Small fixes.
3700         * lib/getlogin_r.c (getlogin_r): Don't set errno if the function
3701         succeeds.
3702         * m4/getlogin_r.m4 (gl_GETLOGIN_R): Require gl_USE_SYSTEM_EXTENSIONS
3703         before testing whether getlogin_r is declared. No need to set
3704         HAVE_DECL_GETLOGIN_R to 1.
3705         (gl_PREREQ_GETLOGIN_R): Don't check for the getlogin_r declaration.
3706
3707 2010-01-09  Bruno Haible  <bruno@clisp.org>
3708
3709         * lib/unistd.in.h (getlogin_r): Add comment.
3710
3711 2010-01-09  Bruno Haible  <bruno@clisp.org>
3712
3713         Tests for module 'getlogin_r'.
3714         * modules/getlogin_r-tests: New file.
3715         * tests/test-getlogin_r.c: New file.
3716
3717 2010-01-09  Jim Meyering  <meyering@redhat.com>
3718
3719         maint.mk: extend proper_name_utf8-vs-LIBICONV-checking rule
3720         * top/maint.mk (sc_proper_name_utf8_requires_ICONV): Adapt to work
3721         also when $(LIBICONV) is part of LDADD, rather than ${prog}_LDADD.
3722
3723 2010-01-08  Simon Josefsson  <simon@josefsson.org>
3724
3725         * lib/dup2.c (rpl_dup2): Improve comment.
3726
3727 2010-01-08  Eric Blake  <ebb9@byu.net>
3728
3729         maint.mk: allow packages to add makefile @@ exceptions
3730         * top/maint.mk (_makefile_at_at_check_exceptions): New hook.
3731         (sc_makefile_check): Rename...
3732         (sc_makefile_at_at_check): ...to this, and use hook.
3733
3734         dup2: work around mingw bug
3735         * lib/dup2.c (rpl_dup2): Sanitize return value on mingw.
3736         Reported by Simon Josefsson.
3737
3738 2010-01-07  John W. Eaton  <jwe@octave.org>  (tiny change)
3739
3740         glob: Fix C++ compilation.
3741         * lib/glob.in.h [__cplusplus]: Define __BEGIN_DECLS and __END_DECLS for
3742         C++.
3743
3744 2010-01-07  Bruno Haible  <bruno@clisp.org>
3745
3746         Fix indentation of wctype.in.h, broken since 2007-01-06.
3747         * lib/wctype.in.h: Fix indentation of preprocessor directives.
3748
3749 2010-01-07  Bruno Haible  <bruno@clisp.org>
3750
3751         mbslen: Avoid collision with system function.
3752         * lib/string.in.h [MirBSD]: Include <wchar.h>.
3753         (mbslen): Undefine first. Alias mbslen to rpl_mbslen.
3754         * m4/mbslen.m4: New file.
3755         * modules/mbslen (Files): Add it.
3756         (configure.ac): Invoke gl_MBSLEN.
3757         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize HAVE_MBSLEN.
3758         * modules/string (Makefile.am): Substitute HAVE_MBSLEN.
3759         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>
3760         via Ian Beckwith <ianb@erislabs.net>.
3761
3762 2010-01-07  Bruno Haible  <bruno@clisp.org>
3763
3764         dirent: Document the last fix.
3765         * doc/posix-headers/dirent.texi: Document the bug of missing 'ino_t'.
3766
3767 2010-01-07  Bruno Haible  <bruno@clisp.org>
3768
3769         stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
3770         * lib/stdio.in.h: Include <sys/types.h> unconditionally.
3771         * tests/test-stdio.c: Verify that fpos_t, off_t, size_t, ssize_t,
3772         va_list are defined.
3773         * doc/posix-headers/stdio.texi: Document the bug of missing types.
3774         Reported by Eric Blake.
3775
3776 2010-01-07  Bruno Haible  <bruno@clisp.org>
3777
3778         xlist, xoset: Fix missing dependency bug, introduced on 2009-12-13.
3779         * modules/xlist (Depends-on): Add 'list',
3780         * modules/xoset (Depends-on): Add 'oset'.
3781         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3782
3783 2010-01-07  Bruno Haible  <bruno@clisp.org>
3784
3785         * doc/posix-functions/strcasecmp.texi: Clarify the platforms.
3786         * doc/posix-functions/strncasecmp.texi: Likewise.
3787
3788 2010-01-07  Bruno Haible  <bruno@clisp.org>
3789
3790         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Simplify logic.
3791
3792 2010-01-07  John W. Eaton  <jwe@octave.org>
3793
3794         wctype: allow C++ use
3795         * lib/wctype.in.h: Add extern "C" block for C++.
3796
3797 2010-01-06  Eric Blake  <ebb9@byu.net>
3798
3799         maint.mk: detect incorrect GFDL usage
3800         * top/maint.mk (_GFDL_regexp, sc_GFDL_version): New rule.
3801
3802 2010-01-06  Jim Meyering  <meyering@redhat.com>
3803         and Eric Blake  <ebb9@byu.net>
3804
3805         maint.mk: ignore multi-line copyright in NEWS
3806         * top/maint.mk (NEWS_hash): Add immunity to multi-line copyright.
3807
3808 2010-01-06  Eric Blake  <ebb9@byu.net>
3809
3810         select: add missing dependency
3811         * modules/select-tests (Depends-on): Move sockets dependency...
3812         * modules/select (Depends-on): ...here.
3813         Reported by Ian Beckwith.
3814
3815         doc: regenerate INSTALL
3816         * doc/INSTALL: Reflect recent autoconf update.
3817         * doc/INSTALL.ISO: Likewise.
3818         * doc/INSTALL.UTF-8: Likewise.
3819
3820         pread: fix compilation on glibc
3821         * m4/pread.m4 (gl_FUNC_PREAD): Request all interfaces.
3822         Reported by Ralf Wildenhues.
3823
3824         dirent: fix test failure
3825         * lib/dirent.in.h (includes): Guarantee ino_t.
3826         Reported by Ralf Wildenhues.
3827
3828 2010-01-06  Petr Salinger  <Petr.Salinger@seznam.cz>  (tiny change)
3829
3830         linkat, renameat: avoid bad free
3831         * lib/at-func2.c (at_func2): Fix typo.
3832         Reported via Ian Beckwith, from http://bugs.debian.org/561117.
3833
3834 2010-01-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3835
3836         cleanup after gl_FUNC_READLINK, for gl_FUNC_SYMLINK test
3837         * m4/readlink.m4 (gl_FUNC_READLINK): Remove conftest.lnk2,
3838         to avoid failure of symlink test later.
3839
3840 2010-01-06  Eric Blake  <ebb9@byu.net>
3841
3842         stdio, unistd: guarantee ssize_t
3843         * lib/unistd.in.h (includes): Ensure that types required by POSIX
3844         2008 are exposed when needed.
3845         * lib/stdio.in.h (includes): Likewise.
3846         Reported by Ralf Wildenhues.
3847
3848 2010-01-06  Paolo Bonzini  <bonzini@gnu.org>
3849
3850         nl_langinfo: do not call AC_CHECK_FUNC_ONCE inside if.
3851         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Do not call
3852         AC_CHECK_FUNC_ONCE inside if, do not adjust ac_cv_func_nl_langinfo.
3853
3854 2010-01-06  Jim Meyering  <meyering@redhat.com>
3855
3856         readtokens: this module *does* require xalloc.h
3857         It uses only functions that were omitted by the old syntax-check rule.
3858         * lib/readtokens.c: Include "xalloc.h" once again.
3859         * modules/readtokens (Depends-on): Add xalloc.
3860         This reverts part of 0e0f8f12ec241c0f1c1f21f960bb5cf908a0fa3c.
3861
3862 2010-01-05  Eric Blake  <ebb9@byu.net>
3863
3864         maint: support 'make announcement' from a VPATH build
3865         * top/maint.mk (announcement): Look for correct NEWS file.
3866
3867 2010-01-05  Aurelien Jarno  <aurelien@aurel32.net>  (tiny change)
3868
3869         utimens (fdutimens): ignore a negative FD, per contract
3870         * lib/utimens.c (fdutimens) [HAVE_FUTIMENS]: Call futimens only
3871         when we have a valid file descriptor.  Otherwise, using a brand
3872         new glibc (with just-patched futimens that now fails with EBADF)
3873         would cause this function to fail with ENOSYS.
3874         Reported by Guillaume Ayoub in http://bugs.debian.org/563726.
3875         See also http://bugzilla.redhat.com/552320.
3876
3877 2010-01-05  Eric Blake  <ebb9@byu.net>
3878
3879         strcase: document what it provides
3880         * doc/posix-functions/strcasecmp.texi (strcasecmp): Mention the
3881         gnulib module.
3882         * doc/posix-functions/strncasecmp.texi (strncasecmp): Likewise.
3883         Reported by Dilyan Palauzov <Dilyan.Palauzov@aegee.org>.
3884
3885 2010-01-05  Jim Meyering  <meyering@redhat.com>
3886
3887         maint: remove useless inclusions of "xalloc.h"
3888         * lib/getloadavg.c: Remove useless inclusion of "xalloc.h".
3889         * lib/readtokens.c: Likewise.
3890         * lib/same.c: Likewise.
3891         * modules/getloadavg (Depends-on): Remove xalloc.
3892         * modules/readtokens: Likewise.
3893         * modules/same: Likewise.
3894
3895         maint.mk: include 4 more function names in alloca.h-checking regexp
3896         * top/maint.mk (sc_prohibit_xalloc_without_use): Use more complete
3897         regexp.  Before, we would give a false-positive (saying alloca.h
3898         is included unnecessarily) when the only uses involved omitted symbols.
3899
3900         xalloc.h: use consistent formatting
3901         * lib/xalloc.h: Move declarations to start in the first column.
3902
3903 2010-01-05  Eric Blake  <ebb9@byu.net>
3904
3905         mkdir: avoid xalloc
3906         * lib/mkdir.c (includes): Drop unused header.
3907         Reported by John W. Eaton.
3908
3909 2010-01-04  Jim Meyering  <meyering@redhat.com>
3910
3911         nl_langinfo: avoid configure-time syntax error
3912         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): When we've already tested
3913         for nl_langinfo.h, AC_CHECK_FUNCS_ONCE([nl_langinfo]) expands to
3914         the empty string.  Don't let that provoke a shell syntax error.
3915
3916         regcomp, regexec, fnmatch: avoid array bounds read error
3917         * lib/regcomp.c (build_equiv_class): From glibc:
3918         Use only the low 24 bits of a findidx return value as an index
3919         into the weights array.  Patch by Ulrich Drepper:
3920         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=b7d1c5fa30
3921         * lib/regexec.c (check_node_accept_bytes): Likewise.
3922         * lib/fnmatch_loop.c (FCT): Likewise.
3923
3924         regcomp: skip collseq lookup when there are no rules
3925         * lib/regcomp.c (lookup_collation_sequence_value): From glibc:
3926         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a532a41df58
3927
3928         regcomp: recognize ill-formed { } expressions
3929         * lib/regcomp.c (parse_dup_op): From glibc:
3930         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a87cd2894cb
3931
3932         regcomp: fix typo in comment
3933         * lib/regcomp.c (duplicate_node_closure): Sync from glibc.
3934         s/satisfy/satisfies/.
3935
3936         regcomp: sync from glibc: remove dead store
3937         * lib/regcomp.c (duplicate_node_closure): Remove useless
3938         search_duplicated_node call and dead store.
3939
3940         regcomp: sync from glibc; always use nl_langinfo
3941         * lib/regcomp.c (init_dfa) [!LIBC]: Always use nl_langinfo (CODESET),
3942         now that gnulib provides it.  Recognize UTF8 as well as UTF-8.
3943         * modules/regex (Depends-on): Add nl_langinfo.
3944
3945 2010-01-04  Eric Blake  <ebb9@byu.net>
3946
3947         fdopendir: fix configure test
3948         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for existing file.
3949
3950 2010-01-01  Bruno Haible  <bruno@clisp.org>
3951
3952         wchar: Remove unused configure check.
3953         * m4/wchar.m4 (gl_WCHAR_H): Don't test whether <wchar.h> is standalone.
3954
3955 2010-01-01  Eric Blake  <ebb9@byu.net>
3956
3957         headers: make check of system header explicit
3958         * m4/netdb_h.m4 (gl_HEADER_NETDB): Don't exploit knowledge of
3959         gl_CHECK_NEXT_HEADER internals, but call AC_CHECK_HEADERS_ONCE
3960         ourselves.
3961         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
3962         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
3963         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
3964         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise, for gt_INTTYPES_PRI
3965         internals.
3966         * m4/wchar.m4 (gl_WCHAR_H): Skip followup test if header is
3967         missing.
3968         Suggested by Bruno Haible.
3969
3970 2010-01-01  Jim Meyering  <meyering@redhat.com>
3971
3972         ChangeLog: tweak to eliminate unnecessary copyright line
3973         * ChangeLog: Remove a copyright line that was mistakenly updated
3974         by today's update-copyright run.  Reported by Eric Blake.
3975
3976         test-update-copyright: don't let envvar setting cause test failure
3977         * tests/test-update-copyright.sh: Set UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
3978
3979 2010-01-01  Bruno Haible  <bruno@clisp.org>
3980
3981         localename: Avoid gcc warning.
3982         * lib/localename.c (gl_locale_name_thread_unsafe): Don't define this
3983         function if it is not used.
3984
3985 2010-01-01  Jim Meyering  <meyering@redhat.com>
3986
3987         update nearly all FSF copyright year lists to include 2010
3988         Use the same procedure as for 2009, outlined in
3989         http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/20081
3990
3991         version-etc: set COPYRIGHT_YEAR to 2010
3992         * lib/version-etc.c (COPYRIGHT_YEAR): Manually update the enum.
3993
3994 2009-12-31  Eric Blake  <ebb9@byu.net>
3995
3996         doc: correct availability of cygwin 1.5.x getopt
3997         * doc/posix-functions/optarg.texi (optarg): Cygwin supplies getopt
3998         variables.
3999         * doc/posix-functions/opterr.texi (opterr): Likewise.
4000         * doc/posix-functions/optind.texi (optind): Likewise.
4001         * doc/posix-functions/optopt.texi (optopt): Likewise.
4002         * doc/posix-functions/tzname.texi (tzname): Likewise.
4003
4004         openat: update maintainer
4005         * modules/openat (Maintainer): Add myself.
4006
4007         utimens: avoid shadowing warning
4008         * lib/utimens.c (fdutimens, lutimens): Consolidate separate stat
4009         buffers into one, to avoid shadowing, as well as avoiding a
4010         redundant stat.
4011         Reported by Jim Meyering.
4012
4013         test-dup2: avoid compiler warning
4014         * tests/test-dup2.c (is_inheritable): Only define if used.
4015
4016 2010-01-01  Bruno Haible  <bruno@clisp.org>
4017
4018         vasnprintf: Avoid passing an 'rpl_mbstate_t *' to the system's wcrtomb.
4019         * lib/vasnprintf.c (VASNPRINTF): If GNULIB_defined_mbstate_t is
4020         defined, use wctomb instead of wcrtomb.
4021
4022 2010-01-01  Bruno Haible  <bruno@clisp.org>
4023
4024         iconv: Reject native Solaris iconv.
4025         * m4/iconv.m4 (AM_ICONV_LINK): Recognize native Solaris iconv() bug.
4026         * doc/posix-functions/iconv.texi: Document native Solaris iconv() bug.
4027
4028 2009-12-31  Bruno Haible  <bruno@clisp.org>
4029
4030         * tests/test-signal.c (main): Remove test of 'SIG'.
4031
4032 2009-12-31  Bruno Haible  <bruno@clisp.org>
4033
4034         spawn: Fix incomplete fix.
4035         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
4036         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
4037         warnings for GNULIB_POSIXCHECK again.
4038         Reported by Eric Blake.
4039
4040 2009-12-31  Bruno Haible  <bruno@clisp.org>
4041
4042         Avoid namespace pollution on glibc systems.
4043         * lib/spawn.in.h: Don't include <sched.h>, <signal.h> on glibc systems.
4044         * lib/sys_times.in.h: Don't include <time.h> on glibc systems.
4045         * lib/wchar.in.h: Don't include <stddef.h>, <stdio.h>, <time.h> on
4046         glibc systems.
4047
4048 2009-12-31  Bruno Haible  <bruno@clisp.org>
4049
4050         * m4/wchar.m4 (gl_WCHAR_H): Remove gl_STDDEF_H invocation.
4051         (gl_REPLACE_WCHAR_H): Turn into a no-op.
4052         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Likewise.
4053         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H): Likewise.
4054         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H): Likewise.
4055         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H): Likewise.
4056         * m4/sys_ioctl_h.m4 (gl_REPLACE_SYS_IOCTL_H): Likewise.
4057
4058 2009-12-31  Bruno Haible  <bruno@clisp.org>
4059
4060         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
4061         gl_CHECK_NEXT_HEADERS before testing ac_cv_header_sys_select_h, not
4062         afterwards.
4063
4064 2009-12-31  Bruno Haible  <bruno@clisp.org>
4065
4066         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H_DEFAULTS): Don't set
4067         SYS_UTSNAME_H.
4068
4069 2009-12-31  Bruno Haible  <bruno@clisp.org>
4070
4071         spawn: Fix misapplied patch.
4072         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
4073         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
4074         warnings for GNULIB_POSIXCHECK.
4075
4076 2009-12-31  Bruno Haible  <bruno@clisp.org>
4077
4078         times: Update after sys_times changed.
4079         * m4/times.m4: New file, extracted from modules/times. Set HAVE_TIMES.
4080         * modules/times (Files): Add it.
4081         (configure.ac): Invoke gl_FUNC_TIMES.
4082
4083 2009-12-31  Bruno Haible  <bruno@clisp.org>
4084
4085         Use AC_C_INLINE where necessary.
4086         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Require AC_C_INLINE.
4087         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
4088         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
4089         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
4090         * m4/mbfile.m4 (gl_MBFILE): Likewise.
4091         * m4/mbiter.m4 (gl_MBITER): Likewise.
4092         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
4093         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
4094         * m4/wait-process.m4 (gl_WAIT_PROCESS): Likewise.
4095         * modules/u64 (configure.ac): Likewise.
4096
4097 2009-12-31  Bruno Haible  <bruno@clisp.org>
4098
4099         Use AC_C_INLINE instead of module 'inline' where possible.
4100         * modules/inline (Description): Clarify purpose.
4101         * m4/count-one-bits.m4 (gl_COUNT_ONE_BITS): Require AC_C_INLINE.
4102         * modules/count-one-bits (Depends-on): Remove inline.
4103         * m4/openat.m4 (gl_PREREQ_OPENAT): Require AC_C_INLINE.
4104         * modules/openat (Depends-on): Remove inline.
4105         * modules/fdutimensat (Depends-on, configure.ac): Require AC_C_INLINE
4106         instead of depending on module 'inline'.
4107         * modules/filevercmp (Depends-on, configure.ac): Likewise.
4108         * modules/unicase/cased (Depends-on, configure.ac): Likewise.
4109         * modules/unicase/ignorable (Depends-on, configure.ac): Likewise.
4110         * modules/unictype/category-of (Depends-on, configure.ac): Likewise.
4111         * modules/unictype/category-test (Depends-on, configure.ac): Likewise.
4112         * modules/unictype/ctype-alnum (Depends-on, configure.ac): Likewise.
4113         * modules/unictype/ctype-alpha (Depends-on, configure.ac): Likewise.
4114         * modules/unictype/ctype-blank (Depends-on, configure.ac): Likewise.
4115         * modules/unictype/ctype-cntrl (Depends-on, configure.ac): Likewise.
4116         * modules/unictype/ctype-digit (Depends-on, configure.ac): Likewise.
4117         * modules/unictype/ctype-graph (Depends-on, configure.ac): Likewise.
4118         * modules/unictype/ctype-lower (Depends-on, configure.ac): Likewise.
4119         * modules/unictype/ctype-print (Depends-on, configure.ac): Likewise.
4120         * modules/unictype/ctype-punct (Depends-on, configure.ac): Likewise.
4121         * modules/unictype/ctype-space (Depends-on, configure.ac): Likewise.
4122         * modules/unictype/ctype-upper (Depends-on, configure.ac): Likewise.
4123         * modules/unictype/ctype-xdigit (Depends-on, configure.ac): Likewise.
4124         * modules/unictype/property-alphabetic (Depends-on, configure.ac):
4125         Likewise.
4126         * modules/unictype/property-ascii-hex-digit (Depends-on,
4127         configure.ac): Likewise.
4128         * modules/unictype/property-bidi-arabic-digit (Depends-on,
4129         configure.ac): Likewise.
4130         * modules/unictype/property-bidi-arabic-right-to-left (Depends-on,
4131         configure.ac): Likewise.
4132         * modules/unictype/property-bidi-block-separator (Depends-on,
4133         configure.ac): Likewise.
4134         * modules/unictype/property-bidi-boundary-neutral (Depends-on,
4135         configure.ac): Likewise.
4136         * modules/unictype/property-bidi-common-separator (Depends-on,
4137         configure.ac): Likewise.
4138         * modules/unictype/property-bidi-control (Depends-on, configure.ac):
4139         Likewise.
4140         * modules/unictype/property-bidi-embedding-or-override (Depends-on,
4141         configure.ac): Likewise.
4142         * modules/unictype/property-bidi-eur-num-separator (Depends-on,
4143         configure.ac): Likewise.
4144         * modules/unictype/property-bidi-eur-num-terminator (Depends-on,
4145         configure.ac): Likewise.
4146         * modules/unictype/property-bidi-european-digit (Depends-on,
4147         configure.ac): Likewise.
4148         * modules/unictype/property-bidi-hebrew-right-to-left (Depends-on,
4149         configure.ac): Likewise.
4150         * modules/unictype/property-bidi-left-to-right (Depends-on,
4151         configure.ac): Likewise.
4152         * modules/unictype/property-bidi-non-spacing-mark (Depends-on,
4153         configure.ac): Likewise.
4154         * modules/unictype/property-bidi-other-neutral (Depends-on,
4155         configure.ac): Likewise.
4156         * modules/unictype/property-bidi-pdf (Depends-on, configure.ac):
4157         Likewise.
4158         * modules/unictype/property-bidi-segment-separator (Depends-on,
4159         configure.ac): Likewise.
4160         * modules/unictype/property-bidi-whitespace (Depends-on,
4161         configure.ac): Likewise.
4162         * modules/unictype/property-combining (Depends-on, configure.ac):
4163         Likewise.
4164         * modules/unictype/property-composite (Depends-on, configure.ac):
4165         Likewise.
4166         * modules/unictype/property-currency-symbol (Depends-on,
4167         configure.ac): Likewise.
4168         * modules/unictype/property-dash (Depends-on, configure.ac): Likewise.
4169         * modules/unictype/property-decimal-digit (Depends-on, configure.ac):
4170         Likewise.
4171         * modules/unictype/property-default-ignorable-code-point (Depends-on,
4172         configure.ac): Likewise.
4173         * modules/unictype/property-deprecated (Depends-on, configure.ac):
4174         Likewise.
4175         * modules/unictype/property-diacritic (Depends-on, configure.ac):
4176         Likewise.
4177         * modules/unictype/property-extender (Depends-on, configure.ac):
4178         Likewise.
4179         * modules/unictype/property-format-control (Depends-on, configure.ac):
4180         Likewise.
4181         * modules/unictype/property-grapheme-base (Depends-on, configure.ac):
4182         Likewise.
4183         * modules/unictype/property-grapheme-extend (Depends-on, configure.ac):
4184         Likewise.
4185         * modules/unictype/property-grapheme-link (Depends-on, configure.ac):
4186         Likewise.
4187         * modules/unictype/property-hex-digit (Depends-on, configure.ac):
4188         Likewise.
4189         * modules/unictype/property-hyphen (Depends-on, configure.ac):
4190         Likewise.
4191         * modules/unictype/property-id-continue (Depends-on, configure.ac):
4192         Likewise.
4193         * modules/unictype/property-id-start (Depends-on, configure.ac):
4194         Likewise.
4195         * modules/unictype/property-ideographic (Depends-on, configure.ac):
4196         Likewise.
4197         * modules/unictype/property-ids-binary-operator (Depends-on,
4198         configure.ac): Likewise.
4199         * modules/unictype/property-ids-trinary-operator (Depends-on,
4200         configure.ac): Likewise.
4201         * modules/unictype/property-ignorable-control (Depends-on,
4202         configure.ac): Likewise.
4203         * modules/unictype/property-iso-control (Depends-on, configure.ac):
4204         Likewise.
4205         * modules/unictype/property-join-control (Depends-on, configure.ac):
4206         Likewise.
4207         * modules/unictype/property-left-of-pair (Depends-on, configure.ac):
4208         Likewise.
4209         * modules/unictype/property-line-separator (Depends-on, configure.ac):
4210         Likewise.
4211         * modules/unictype/property-logical-order-exception (Depends-on,
4212         configure.ac): Likewise.
4213         * modules/unictype/property-lowercase (Depends-on, configure.ac):
4214         Likewise.
4215         * modules/unictype/property-math (Depends-on, configure.ac): Likewise.
4216         * modules/unictype/property-non-break (Depends-on, configure.ac):
4217         Likewise.
4218         * modules/unictype/property-not-a-character (Depends-on, configure.ac):
4219         Likewise.
4220         * modules/unictype/property-numeric (Depends-on, configure.ac):
4221         Likewise.
4222         * modules/unictype/property-other-alphabetic (Depends-on,
4223         configure.ac): Likewise.
4224         * modules/unictype/property-other-default-ignorable-code-point
4225         (Depends-on, configure.ac): Likewise.
4226         * modules/unictype/property-other-grapheme-extend (Depends-on,
4227         configure.ac): Likewise.
4228         * modules/unictype/property-other-id-continue (Depends-on,
4229         configure.ac): Likewise.
4230         * modules/unictype/property-other-id-start (Depends-on, configure.ac):
4231         Likewise.
4232         * modules/unictype/property-other-lowercase (Depends-on, configure.ac):
4233         Likewise.
4234         * modules/unictype/property-other-math (Depends-on, configure.ac):
4235         Likewise.
4236         * modules/unictype/property-other-uppercase (Depends-on, configure.ac):
4237         Likewise.
4238         * modules/unictype/property-paired-punctuation (Depends-on,
4239         configure.ac): Likewise.
4240         * modules/unictype/property-paragraph-separator (Depends-on,
4241         configure.ac): Likewise.
4242         * modules/unictype/property-pattern-syntax (Depends-on, configure.ac):
4243         Likewise.
4244         * modules/unictype/property-pattern-white-space (Depends-on,
4245         configure.ac): Likewise.
4246         * modules/unictype/property-private-use (Depends-on, configure.ac):
4247         Likewise.
4248         * modules/unictype/property-punctuation (Depends-on, configure.ac):
4249         Likewise.
4250         * modules/unictype/property-quotation-mark (Depends-on, configure.ac):
4251         Likewise.
4252         * modules/unictype/property-radical (Depends-on, configure.ac):
4253         Likewise.
4254         * modules/unictype/property-sentence-terminal (Depends-on,
4255         configure.ac): Likewise.
4256         * modules/unictype/property-soft-dotted (Depends-on, configure.ac):
4257         Likewise.
4258         * modules/unictype/property-space (Depends-on, configure.ac): Likewise.
4259         * modules/unictype/property-terminal-punctuation (Depends-on,
4260         configure.ac): Likewise.
4261         * modules/unictype/property-titlecase (Depends-on, configure.ac):
4262         Likewise.
4263         * modules/unictype/property-unassigned-code-value (Depends-on,
4264         configure.ac): Likewise.
4265         * modules/unictype/property-unified-ideograph (Depends-on,
4266         configure.ac): Likewise.
4267         * modules/unictype/property-uppercase (Depends-on, configure.ac):
4268         Likewise.
4269         * modules/unictype/property-variation-selector (Depends-on,
4270         configure.ac): Likewise.
4271         * modules/unictype/property-white-space (Depends-on, configure.ac):
4272         Likewise.
4273         * modules/unictype/property-xid-continue (Depends-on, configure.ac):
4274         Likewise.
4275         * modules/unictype/property-xid-start (Depends-on, configure.ac):
4276         Likewise.
4277         * modules/unictype/property-zero-width (Depends-on, configure.ac):
4278         Likewise.
4279         * modules/unictype/syntax-c-ident (Depends-on, configure.ac): Likewise.
4280         * modules/unictype/syntax-java-ident (Depends-on, configure.ac):
4281         Likewise.
4282
4283 2009-12-31  Bruno Haible  <bruno@clisp.org>
4284
4285         Remove unnecessary AC_C_INLINE invocation.
4286         * m4/popen.m4 (gl_PREREQ_POPEN): Don't invoke AC_C_INLINE. Not needed
4287         since 2009-08-21.
4288
4289 2009-12-31  Jim Meyering  <meyering@redhat.com>
4290
4291         maint.mk: don't require explicit gpg_key_ID in cfg.mk
4292         * top/maint.mk (gpg_key_ID): Derive key ID from signed release tag.
4293         With this change, we can all remove the gpg_key_ID = ... definition
4294         from our respective cfg.mk files.
4295
4296         maint.mk: create announcement template in ~/, not in /tmp
4297         * top/maint.mk (emit_upload_commands): Adjust.
4298         (release-prep): Emit into ~/announce-..., not /tmp/announce-...
4299         Remove temporary file, .ci-msg.
4300
4301 2009-12-31  Eric Blake  <ebb9@byu.net>
4302
4303         link-warning: always build headers with link warnings
4304         * modules/arpa_inet (Makefile.am): Always build replacement
4305         header.
4306         * modules/ctype (Makefile.am): Likewise.
4307         * modules/dirent (Makefile.am): Likewise.
4308         * modules/inttypes (Makefile.am): Likewise.
4309         * modules/langinfo (Makefile.am): Likewise.
4310         * modules/locale (Makefile.am): Likewise.
4311         * modules/spawn (Makefile.am): Likewise.
4312         * modules/sys_file (Makefile.am): Likewise.
4313         * modules/sys_ioctl (Makefile.am): Likewise.
4314         * modules/sys_select (Makefile.am): Likewise.
4315         * modules/sys_socket (Makefile.am): Likewise.
4316         * modules/sys_times (Makefile.am): Likewise.
4317         * modules/sys_utsname (Makefile.am): Likewise.
4318         * modules/sys_wait (Makefile.am): Likewise.
4319         * modules/wchar (Makefile.am): Likewise.
4320         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET)
4321         (gl_ARPA_INET_H_DEFAULTS): Drop unneeded variable.
4322         * m4/ctype.m4 (gl_CTYPE_H_DEFAULTS): Likewise.
4323         * m4/isblank.m4 (gl_FUNC_ISBLANK): Likewise.
4324         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H, gl_DIRENT_H_DEFAULTS):
4325         Likewise.
4326         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
4327         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
4328         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_H_DEFAULTS):
4329         Likewise.
4330         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H, gl_SPAWN_H_DEFAULTS):
4331         Likewise.
4332         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Likewise.
4333         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H, gl_REPLACE_SYS_IOCTL_H)
4334         (gl_SYS_IOCTL_H_DEFAULTS): Likewise.
4335         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
4336         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
4337         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
4338         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
4339         * m4/wchar.m4 (gl_WCHAR_H, gl_REPLACE_WCHAR_H)
4340         (gl_WCHAR_H_DEFAULTS): Likewise.
4341
4342 2009-12-31  Eric Blake  <ebb9@byu.net>
4343
4344         signal, spawn: use link warnings
4345         * lib/signal.in.h (sigset_t): Make unconditional.
4346         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset)
4347         (sigpending, sigprocmask, sigaction): Add link warnings.
4348         * lib/spawn.in.h (posix_spawn, posix_spawnp, posix_spawnattr_init)
4349         (posix_spawnattr_destroy, posix_spawnattr_getsigdefault)
4350         (posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask)
4351         (posix_spawnattr_setsigmask, posix_spawnattr_getflags)
4352         (posix_spawnattr_setflags, posix_spawnattr_getpgroup)
4353         (posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy)
4354         (posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam)
4355         (posix_spawnattr_setschedparam, posix_spawn_file_actions_init)
4356         (posix_spawn_file_actions_destroy)
4357         (posix_spawn_file_actions_addopen)
4358         (posix_spawn_file_actions_addclose)
4359         (posix_spawn_file_actions_adddup2): Likewise.
4360         * m4/signal_h.m4 (gl_SIGNAL_H): Guarantee uid_t.
4361         * tests/test-signal.c (main): Enhance test.
4362
4363         spawn: improve wrapper support
4364         * m4/spawn_h.m4 (gl_SPAWN_H): Check for type existence.
4365         (gl_SPAWN_H_DEFAULTS): New defaults.
4366         * modules/spawn (Makefile.am): Substitute them.
4367         * lib/spawn.in.h: (posix_spawnattr_t, posix_spawn_file_actions_t):
4368         Only declare if missing or broken.
4369
4370         sys_times, sys_utsname: use include_next
4371         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Support wrapping an existing
4372         header.
4373         (gl_SYS_TIMES_H_DEFAULTS): Add another variable.
4374         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
4375         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
4376         * modules/sys_times (Depends-on): Add include_next.
4377         (Makefile.am): Substitute additional values.
4378         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
4379         * lib/sys_times.in.h (includes): Include native header, if
4380         available.
4381         * lib/sys_utsname.in.h (includes): Likewise.
4382         * tests/test-sys_times.c (main): Enhance test.
4383
4384         fdutimensat: revert prior patch
4385         * modules/fdutimensat (Depends-on): Re-add inline; it is needed by
4386         utimens.h.
4387         Reported by Bruno Haible.
4388
4389 2009-12-30  Eric Blake  <ebb9@byu.net>
4390
4391         sys_wait: drop link-warning dependency
4392         * modules/sys_wait (Depends-on, Makefile.am): Drop unneeded
4393         link-warning efforts.
4394         * lib/sys_wait.in.h: Likewise.
4395
4396         fdutimensat: remove bogus dependency
4397         * modules/fdutimensat (Depends-on): Drop inline.
4398
4399         unistd: fix typo
4400         * lib/unistd.in.h (linkat) [GNULIB_POSIXCHECK]: Fix typo.
4401
4402 2009-12-30  Bruno Haible  <bruno@clisp.org>
4403
4404         Fix compilation error with Solaris cc.
4405         * lib/unicase/u8-is-invariant.c: Include <stdbool.h>.
4406         * lib/unicase/u16-is-invariant.c: Likewise.
4407         * lib/unicase/u32-is-invariant.c: Likewise.
4408         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
4409
4410 2009-12-30  Bruno Haible  <bruno@clisp.org>
4411
4412         Fix test crash.
4413         * tests/test-localename.c (test_locale_name_thread): Skip unavailable
4414         locales.
4415         Reported by Simon Josefsson <simon@josefsson.org>.
4416
4417 2009-12-30  Bruno Haible  <bruno@clisp.org>
4418
4419         Fix compilation error on most platforms.
4420         * tests/test-localename.c (categories): Define only if HAVE_NEWLOCALE.
4421         Reported by Simon Josefsson <simon@josefsson.org>
4422         and Nelson H. F. Beebe <beebe@math.utah.edu>.
4423
4424 2009-12-30  Eric Blake  <ebb9@byu.net>
4425
4426         futimens, utimensat: work around ntfs-3g bug
4427         * lib/utimensat.c (rpl_utimensat): Drop attempts to cache whether
4428         a ctime bug is present, and expand workaround to cover ntfs-3g.
4429         * lib/utimens.c (fdutimens, lutimens): Likewise.
4430         (utimensat_ctime_really, detect_ctime_bug): Drop cache mechanism.
4431         (validate_timespec): Adjust return value.
4432         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Update comment.
4433         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
4434         Reported by ctrn3e8 <ctrn3e8@gmail.com>.
4435
4436 2009-12-29  Eric Blake  <ebb9@byu.net>
4437
4438         link-warning: make usage consistent
4439         * modules/ctype (Depends-on): Add link-warning.
4440         (Makefile.am): Update rules accordingly.
4441         * modules/langinfo (Depends-on, Makefile.am): Likewise.
4442         * modules/locale (Depends-on, Makefile.am): Likewise.
4443         * modules/sys_file (Makefile.am): Likewise.
4444         * modules/getopt-posix (Makefile.am): Delete unused link warning
4445         efforts.
4446         * lib/ctype.in.h (GL_LINK_WARNING): Ensure definition before use.
4447         * lib/langinfo.in.h (GL_LINK_WARNING): Likewise.
4448         * lib/locale.in.h (GL_LINK_WARNING): Likewise.
4449         * lib/sys_file.in.h (GL_LINK_WARNING): Likewise.
4450
4451         stdio: remove unused variables
4452         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Remove unused variables.
4453         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Likewise.
4454         * m4/ftello.m4 (gl_FUNC_FTELLO): Likewise.
4455
4456         tests: test more substitute headers
4457         * modules/ctype-tests: New file.
4458         * modules/dirent-tests: Likewise.
4459         * modules/spawn-tests: Likewise.
4460         * modules/sys_file-tests: Likewise.
4461         * modules/sys_ioctl-tests: Likewise.
4462         * modules/sys_wait-tests: Likewise.
4463         * tests/test-ctype.c: Likewise.
4464         * tests/test-dirent.c: Likewise.
4465         * tests/test-spawn.c: Likewise.
4466         * tests/test-sys_file.c: Likewise.
4467         * tests/test-sys_ioctl.c: Likewise.
4468         * tests/test-sys_wait.c: Likewise.
4469         * m4/spawn_h.m4 (gl_SPAWN_H): Replace header if it is missing.
4470         * lib/sys_file.in.h (LOCK_SH, LOCK_EX, LOCK_UN, LOCK_NB): Provide
4471         whether or not flock is in use.
4472
4473         tests: remove License section from module
4474         * modules/arpa_inet-tests: Remove unneeded section.
4475         * modules/byteswap-tests: Likewise.
4476         * modules/ceilf-tests: Likewise.
4477         * modules/ceill-tests: Likewise.
4478         * modules/crypto/des-tests: Likewise.
4479         * modules/crypto/gc-arcfour-tests: Likewise.
4480         * modules/crypto/gc-arctwo-tests: Likewise.
4481         * modules/crypto/gc-des-tests: Likewise.
4482         * modules/crypto/gc-hmac-md5-tests: Likewise.
4483         * modules/crypto/gc-hmac-sha1-tests: Likewise.
4484         * modules/crypto/gc-md2-tests: Likewise.
4485         * modules/crypto/gc-md4-tests: Likewise.
4486         * modules/crypto/gc-md5-tests: Likewise.
4487         * modules/crypto/gc-pbkdf2-sha1-tests: Likewise.
4488         * modules/crypto/gc-rijndael-tests: Likewise.
4489         * modules/crypto/gc-sha1-tests: Likewise.
4490         * modules/crypto/gc-tests: Likewise.
4491         * modules/crypto/md2-tests: Likewise.
4492         * modules/crypto/md4-tests: Likewise.
4493         * modules/fcntl-h-tests: Likewise.
4494         * modules/floorf-tests: Likewise.
4495         * modules/floorl-tests: Likewise.
4496         * modules/frexp-nolibm-tests: Likewise.
4497         * modules/frexp-tests: Likewise.
4498         * modules/frexpl-nolibm-tests: Likewise.
4499         * modules/frexpl-tests: Likewise.
4500         * modules/getaddrinfo-tests: Likewise.
4501         * modules/inttypes-tests: Likewise.
4502         * modules/isfinite-tests: Likewise.
4503         * modules/isinf-tests: Likewise.
4504         * modules/ldexpl-tests: Likewise.
4505         * modules/locale-tests: Likewise.
4506         * modules/math-tests: Likewise.
4507         * modules/netdb-tests: Likewise.
4508         * modules/netinet_in-tests: Likewise.
4509         * modules/printf-frexp-tests: Likewise.
4510         * modules/printf-frexpl-tests: Likewise.
4511         * modules/priv-set-tests: Likewise.
4512         * modules/random_r-tests: Likewise.
4513         * modules/round-tests: Likewise.
4514         * modules/roundf-tests: Likewise.
4515         * modules/roundl-tests: Likewise.
4516         * modules/search-tests: Likewise.
4517         * modules/select-tests: Likewise.
4518         * modules/signal-tests: Likewise.
4519         * modules/stdbool-tests: Likewise.
4520         * modules/stddef-tests: Likewise.
4521         * modules/stdint-tests: Likewise.
4522         * modules/stdio-tests: Likewise.
4523         * modules/stdlib-tests: Likewise.
4524         * modules/string-tests: Likewise.
4525         * modules/strings-tests: Likewise.
4526         * modules/sys_select-tests: Likewise.
4527         * modules/sys_socket-tests: Likewise.
4528         * modules/sys_stat-tests: Likewise.
4529         * modules/sys_time-tests: Likewise.
4530         * modules/sys_utsname-tests: Likewise.
4531         * modules/sysexits-tests: Likewise.
4532         * modules/time-tests: Likewise.
4533         * modules/trunc-tests: Likewise.
4534         * modules/truncf-tests: Likewise.
4535         * modules/truncl-tests: Likewise.
4536         * modules/tsearch-tests: Likewise.
4537         * modules/unistd-tests: Likewise.
4538         * modules/wchar-tests: Likewise.
4539         * modules/wctype-tests: Likewise.
4540
4541         tests: fix license on several tests
4542         * tests/test-des.c: Update to GPLv3+.
4543         * tests/test-flock.c: Likewise.
4544         * tests/test-fsync.c: Likewise.
4545         * tests/test-futimens.h: Likewise.
4546         * tests/test-gc-arcfour.c: Likewise.
4547         * tests/test-gc-arctwo.c: Likewise.
4548         * tests/test-gc-des.c: Likewise.
4549         * tests/test-gc-hmac-md5.c: Likewise.
4550         * tests/test-gc-hmac-sha1.c: Likewise.
4551         * tests/test-gc-md2.c: Likewise.
4552         * tests/test-gc-md4.c: Likewise.
4553         * tests/test-gc-md5.c: Likewise.
4554         * tests/test-gc-pbkdf2-sha1.c: Likewise.
4555         * tests/test-gc-rijndael.c: Likewise.
4556         * tests/test-gc-sha1.c: Likewise.
4557         * tests/test-gc.c: Likewise.
4558         * tests/test-getcwd.c: Likewise.
4559         * tests/test-link.c: Likewise.
4560         * tests/test-link.h: Likewise.
4561         * tests/test-lutimens.h: Likewise.
4562         * tests/test-md2.c: Likewise.
4563         * tests/test-md4.c: Likewise.
4564         * tests/test-mkdir.h: Likewise.
4565         * tests/test-rename.c: Likewise.
4566         * tests/test-rename.h: Likewise.
4567         * tests/test-safe-alloc.c: Likewise.
4568         * tests/test-utimens-common.h: Likewise.
4569         * tests/test-utimens.h: Likewise.
4570
4571         maint: sync license texts
4572         * config/srclist.txt: Add gpl-1.3.texi, lgpl-1.3.texi.
4573         * doc/gpl-3.0.texi: Revert copyright year update.
4574         * doc/lgpl-3.0.texi: Likewise.
4575
4576 2009-12-29  Jim Meyering  <meyering@redhat.com>
4577
4578         update nearly all FSF copyright year lists to include 2009
4579         The files named by the following are exempted:
4580             grep -v '^#' config/srclist.txt|grep -v '^$' | while read src dst; do
4581               test -f "$dst" && { echo "$dst"; continue; }
4582               test -d "$dst" || continue
4583               echo "$dst"/$(basename "$src")
4584             done > exempt
4585             git ls-files tests/unictype >> exempt
4586         In the remaining files, convert to all-interval notation if
4587         - there is already at least one year interval like 2000-2003
4588         - the file is maintained by me
4589         - the file is in lib/uni*/, where that style already prevails
4590         Otherwise, use update-copyright's default.
4591
4592 2009-12-29  Simon Josefsson  <simon@josefsson.org>
4593         and Eric Blake  <ebb9@byu.net>
4594
4595         tests: don't require debug system() to pass
4596         * tests/test-lstat.h (test_lstat_func): Move debug cleanup...
4597         * tests/test-rmdir.h (test_rmdir_func): Likewise.
4598         * tests/test-unlink.h (test_unlink_func): Likewise.
4599         * tests/test-fstatat.c (main): ...into callers.
4600         * tests/test-lstat.c (main): Likewise.
4601         * tests/test-rmdir.c (main): Likewise.
4602         * tests/test-unlink.c (main): Likewise.
4603         * tests/test-unlinkat.c (main): Likewise.
4604         * tests/test-areadlink-with-size.c (main): Don't require a
4605         debug-only system call to pass, aiding cross-testing to mingw.
4606         * tests/test-areadlink.c (main): Likewise.
4607         * tests/test-areadlinkat-with-size.c (main): Likewise.
4608         * tests/test-areadlinkat.c (main): Likewise.
4609         * tests/test-canonicalize-lgpl.c (main): Likewise.
4610         * tests/test-canonicalize.c (main): Likewise.
4611         * tests/test-chown.c (main): Likewise.
4612         * tests/test-fchownat.c (main): Likewise.
4613         * tests/test-lchown.c (main): Likewise.
4614         * tests/test-fdutimensat.c (main): Likewise.
4615         * tests/test-futimens.c (main): Likewise.
4616         * tests/test-link.c (main): Likewise.
4617         * tests/test-linkat.c (main): Likewise.
4618         * tests/test-mkdir.c (main): Likewise.
4619         * tests/test-mkdirat.c (main): Likewise.
4620         * tests/test-mkfifo.c (main): Likewise.
4621         * tests/test-mkfifoat.c (main): Likewise.
4622         * tests/test-mknod.c (main): Likewise.
4623         * tests/test-readlink.c (main): Likewise.
4624         * tests/test-remove.c (main): Likewise.
4625         * tests/test-rename.c (main): Likewise.
4626         * tests/test-renameat.c (main): Likewise.
4627         * tests/test-symlink.c (main): Likewise.
4628         * tests/test-symlinkat.c (main): Likewise.
4629         * tests/test-utimens.c (main): Likewise.
4630         * tests/test-utimensat.c (main): Likewise.
4631
4632 2009-12-29  Simon Josefsson  <simon@josefsson.org>
4633
4634         * modules/selinux-h (selinux/selinux.h, selinux/context.h): Depend
4635         on $(UNUSED_PARAMETER_H) to avoid build failure.
4636
4637 2009-12-28  Jim Meyering  <meyering@redhat.com>
4638
4639         update-copyright: you may specify a max. line length other than 72
4640         * build-aux/update-copyright: Honor $UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
4641
4642         maint: use consistent FSF copyright line syntax
4643         * lib/posixtm.c: Add missing comma in FSF copyright line.
4644         * lib/posixtm.h: Likewise.
4645         * lib/getugroups.c: Add missing ", Inc.".
4646
4647         pmccabe2html: emit consistent FSF copyright; remove trailing blanks
4648         * build-aux/pmccabe2html: Insert comma before "Inc." in emitted
4649         FSF copyright line.  Remove trailing blanks.
4650
4651 2009-12-28  Eric Blake  <ebb9@byu.net>
4652
4653         test-dup2: reduce dependencies
4654         * modules/cloexec (Configure.ac): Set witness.
4655         * modules/dup2-tests (Depends-on): Drop cloexec.
4656         * tests/test-dup2.c (main): Skip portion of test if cloexec module
4657         not present.
4658         Suggested by Bruno Haible.
4659
4660 2009-12-26  Bruno Haible  <bruno@clisp.org>
4661
4662         Remove an unneeded dependency.
4663         * modules/fseterr (Depends-on): Remove dup2.
4664
4665 2009-12-26  Eric Blake  <ebb9@byu.net>
4666
4667         tests: use macros.h in more places
4668         * tests/macros.h (ASSERT): Depend on ASSERT_STREAM.
4669         (ASSERT_STREAM): Provide default of stderr.
4670         * tests/test-dirent-safer.c: Include macros.h, using alternate
4671         stream for assertions.
4672         * tests/test-dup-safer.c: Likewise.
4673         * tests/test-freopen-safer.c: Likewise.
4674         * tests/test-getopt.c: Likewise.
4675         * tests/test-openat-safer.c: Likewise.
4676         * tests/test-pipe.c: Likewise.
4677         * tests/test-popen-safer.c: Likewise.
4678         * modules/dirent-safer-tests (Files): Include macros.h.
4679         * modules/unistd-safer-tests (Files): Likewise.
4680         * modules/freopen-safer-tests (Files): Likewise.
4681         * modules/getopt-posix-tests (Files): Likewise.
4682         * modules/openat-safer-tests (Files): Likewise.
4683         * modules/pipe-tests (Files): Likewise.
4684
4685 2009-12-26  Bruno Haible  <bruno@clisp.org>
4686
4687         javacomp: Portability fix.
4688         * m4/javacomp.m4 (gt_JAVACOMP): Fix creation of conftestver.class so
4689         that it also works on Solaris.
4690
4691 2009-12-26  Bruno Haible  <bruno@clisp.org>
4692
4693         localename: Fix storage allocation of gl_locale_name_thread's result.
4694         * lib/localename.c (SIZE_BITS, string_hash, struct hash_node,
4695         HASH_TABLE_SIZE, struniq_hash_table, struniq_lock, struniq): Define on
4696         all platforms that have 'uselocale'.
4697         (gl_locale_name_thread_unsafe): New function, extracted from
4698         gl_locale_name_thread.
4699         (gl_locale_name_thread): Call struniq on all platforms that have
4700         'uselocale'.
4701         * tests/test-localename.c (test_locale_name_thread): Check that the
4702         resulting strings are permanently allocated.
4703         * modules/localename-tests (Depends-on): Add strdup.
4704
4705 2009-12-26  Bruno Haible  <bruno@clisp.org>
4706
4707         * tests/test-localename.c (categories): Fill in the strings.
4708
4709 2009-12-26  Jim Meyering  <meyering@redhat.com>
4710
4711         isdir: complete the removal of m4/isdir.m4
4712         * modules/isdir (configure.ac): Remove reference to gl_ISDIR.
4713
4714         isdir: clean up, since at least grep still uses it
4715         * lib/isdir.c: Include "isdir.h".
4716         (S_ISDIR): Remove now-unneeded definition.
4717         * modules/isdir (Files): Add lib/isdir.h.
4718         * lib/isdir.h: New file, with declaration.
4719         * m4/isdir.m4: Remove file -- unneeded.
4720
4721 2009-12-25  Bruno Haible  <bruno@clisp.org>
4722
4723         selinux-h: Make generated .h files standalone.
4724         * lib/se-context.in.h: Arrange to include _GL_UNUSED_PARAMETER
4725         definition. Use _GL_UNUSED_PARAMETER instead of _GL_UNUSED.
4726         * lib/se-selinux.in.h: Likewise.
4727         * modules/selinux-h (Depends-on): Add unused-parameter.
4728         (Makefile.am): Insert definition of _GL_UNUSED_PARAMETER into
4729         selinux/selinux.h and selinux/context.h.
4730         Suggested by Eric Blake.
4731
4732 2009-12-25  Bruno Haible  <bruno@clisp.org>
4733
4734         Move gl_FCNTL_O_FLAGS to a separate .m4 file.
4735         * m4/fcntl-o.m4: New file, extracted from m4/fcntl_h.m4.
4736         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): Remove macro.
4737         * modules/fcntl-h (Files): Add m4/fcntl-o.m4.
4738         * modules/localcharset (Files): Likewise. Remove m4/fcntl_h.m4.
4739
4740 2009-12-24  Bruno Haible  <bruno@clisp.org>
4741
4742         openat: Fix warning.
4743         * lib/openat-proc.c: Include <unistd.h>.
4744
4745 2009-12-24  Bruno Haible  <bruno@clisp.org>
4746
4747         New module 'unused-parameter'.
4748         * build-aux/unused-parameter.h: New file, extracted from earlier
4749         gnulib-common.m4.
4750         * modules/unused-parameter: New file.
4751         * lib/unistr.h: Include unused-parameter.h.
4752         (u32_mbtouc_unsafe, u32_mbtouc): Use _GL_UNUSED_PARAMETER instead of
4753         _GL_UNUSED.
4754         * modules/unistr/base (Depends-on): Add unused-parameter.
4755
4756 2009-12-24  Bruno Haible  <bruno@clisp.org>
4757
4758         Add missing dependencies to 'extensions' module.
4759         * m4/extensions.m4: Add comment.
4760         * modules/accept4 (Depends-on): Add extensions.
4761         * modules/dup3 (Depends-on): Likewise.
4762         * modules/fcntl (Depends-on): Likewise.
4763         * modules/futimens (Depends-on): Likewise.
4764         * modules/mknod (Depends-on): Likewise.
4765         * modules/pipe2 (Depends-on): Likewise.
4766         * modules/stat-time (Depends-on): Likewise.
4767         * modules/strcasestr-simple (Depends-on): Likewise.
4768         * modules/strsignal (Depends-on): Likewise.
4769         * modules/utimensat (Depends-on): Likewise.
4770         * modules/localcharset (Depends-on): Likewise. Needed because of
4771         gl_FCNTL_O_FLAGS.
4772         * modules/wcrtomb (Depends-on): Likewise. Needed because of
4773         AC_TYPE_MBSTATE_T.
4774         * modules/wcsnrtombs (Depends-on): Likewise.
4775         * modules/wcsrtombs (Depends-on): Likewise.
4776
4777 2009-12-24  Bruno Haible  <bruno@clisp.org>
4778
4779         binary-io: Avoid gcc warning due to SET_BINARY.
4780         * lib/binary-io.h (SET_BINARY): Cast the result to void.
4781         Reported by Jim Meyering <jim@meyering.net>. Suggestion by Eric Blake.
4782
4783 2009-12-24  Bruno Haible  <bruno@clisp.org>
4784
4785         Avoid future namespace pollution on glibc systems.
4786         * lib/arpa_inet.in.h: Don't include <sys/socket.h> on glibc systems.
4787         * lib/sys_ioctl.in.h: Don't include <unistd.h> on glibc systems.
4788         * lib/sys_select.in.h: Don't include <sys/time.h> and <string.h> on
4789         glibc systems.
4790
4791 2009-12-24  Bruno Haible  <bruno@clisp.org>
4792
4793         Refactor common macros used in tests.
4794         * tests/macros.h: New file.
4795         * tests/test-areadlink.c: Include macros.h. Don't include <stdio.h>
4796         and/or <stdlib.h>, if appropriate.
4797         (ASSERT, SIZEOF): Remove macros.
4798         * tests/test-areadlink-with-size.c: Likewise.
4799         * tests/test-areadlinkat.c: Likewise.
4800         * tests/test-areadlinkat-with-size.c: Likewise.
4801         * tests/test-argmatch.c: Likewise.
4802         * tests/test-argv-iter.c: Likewise.
4803         * tests/test-array-mergesort.c: Likewise.
4804         * tests/test-array_list.c: Likewise.
4805         * tests/test-array_oset.c: Likewise.
4806         * tests/test-avltree_list.c: Likewise.
4807         * tests/test-avltree_oset.c: Likewise.
4808         * tests/test-avltreehash_list.c: Likewise.
4809         * tests/test-base64.c: Likewise.
4810         * tests/test-binary-io.c: Likewise.
4811         * tests/test-bitrotate.c: Likewise.
4812         * tests/test-btowc.c: Likewise.
4813         * tests/test-byteswap.c: Likewise.
4814         * tests/test-c-ctype.c: Likewise.
4815         * tests/test-c-stack.c: Likewise.
4816         * tests/test-c-strcasecmp.c: Likewise.
4817         * tests/test-c-strcasestr.c: Likewise.
4818         * tests/test-c-strncasecmp.c: Likewise.
4819         * tests/test-c-strstr.c: Likewise.
4820         * tests/test-canonicalize-lgpl.c: Likewise.
4821         * tests/test-canonicalize.c: Likewise.
4822         * tests/test-carray_list.c: Likewise.
4823         * tests/test-ceilf1.c: Likewise.
4824         * tests/test-ceilf2.c: Likewise.
4825         * tests/test-ceill.c: Likewise.
4826         * tests/test-chown.c: Likewise.
4827         * tests/test-cloexec.c: Likewise.
4828         * tests/test-copy-acl.c: Likewise.
4829         * tests/test-copy-file.c: Likewise.
4830         * tests/test-count-one-bits.c: Likewise.
4831         * tests/test-dprintf-posix.c: Likewise.
4832         * tests/test-dup2.c: Likewise.
4833         * tests/test-dup3.c: Likewise.
4834         * tests/test-duplocale.c: Likewise.
4835         * tests/test-fbufmode.c: Likewise.
4836         * tests/test-fchdir.c: Likewise.
4837         * tests/test-fchownat.c: Likewise.
4838         * tests/test-fcntl-safer.c: Likewise.
4839         * tests/test-fcntl.c: Likewise.
4840         * tests/test-fdopendir.c: Likewise.
4841         * tests/test-fdutimensat.c: Likewise.
4842         * tests/test-fflush2.c: Likewise.
4843         * tests/test-file-has-acl.c: Likewise.
4844         * tests/test-filevercmp.c: Likewise.
4845         * tests/test-flock.c: Likewise.
4846         * tests/test-floorf1.c: Likewise.
4847         * tests/test-floorf2.c: Likewise.
4848         * tests/test-floorl.c: Likewise.
4849         * tests/test-fnmatch.c: Likewise.
4850         * tests/test-fopen.h: Likewise.
4851         * tests/test-fpending.c: Likewise.
4852         * tests/test-fprintf-posix.c: Likewise.
4853         * tests/test-fpurge.c: Likewise.
4854         * tests/test-freadable.c: Likewise.
4855         * tests/test-freadahead.c: Likewise.
4856         * tests/test-freading.c: Likewise.
4857         * tests/test-freadptr.c: Likewise.
4858         * tests/test-freadptr2.c: Likewise.
4859         * tests/test-freadseek.c: Likewise.
4860         * tests/test-freopen.c: Likewise.
4861         * tests/test-frexp.c: Likewise.
4862         * tests/test-frexpl.c: Likewise.
4863         * tests/test-fseek.c: Likewise.
4864         * tests/test-fseeko.c: Likewise.
4865         * tests/test-fstatat.c: Likewise.
4866         * tests/test-fstrcmp.c: Likewise.
4867         * tests/test-fsync.c: Likewise.
4868         * tests/test-ftell.c: Likewise.
4869         * tests/test-ftello.c: Likewise.
4870         * tests/test-func.c: Likewise.
4871         * tests/test-futimens.c: Likewise.
4872         * tests/test-fwritable.c: Likewise.
4873         * tests/test-fwriting.c: Likewise.
4874         * tests/test-getcwd.c: Likewise.
4875         * tests/test-getdate.c: Likewise.
4876         * tests/test-getdelim.c: Likewise.
4877         * tests/test-getdtablesize.c: Likewise.
4878         * tests/test-getgroups.c: Likewise.
4879         * tests/test-getline.c: Likewise.
4880         * tests/test-getndelim2.c: Likewise.
4881         * tests/test-glob.c: Likewise.
4882         * tests/test-hash.c: Likewise.
4883         * tests/test-i-ring.c: Likewise.
4884         * tests/test-iconv-utf.c: Likewise.
4885         * tests/test-iconv.c: Likewise.
4886         * tests/test-idpriv-drop.c: Likewise.
4887         * tests/test-idpriv-droptemp.c: Likewise.
4888         * tests/test-inet_ntop.c: Likewise.
4889         * tests/test-inet_pton.c: Likewise.
4890         * tests/test-isblank.c: Likewise.
4891         * tests/test-isfinite.c: Likewise.
4892         * tests/test-isinf.c: Likewise.
4893         * tests/test-isnan.c: Likewise.
4894         * tests/test-isnand.h: Likewise.
4895         * tests/test-isnanf.h: Likewise.
4896         * tests/test-isnanl.h: Likewise.
4897         * tests/test-lchown.c: Likewise.
4898         * tests/test-ldexpl.c: Likewise.
4899         * tests/test-link.c: Likewise.
4900         * tests/test-linkat.c: Likewise.
4901         * tests/test-linked_list.c: Likewise.
4902         * tests/test-linkedhash_list.c: Likewise.
4903         * tests/test-localename.c: Likewise.
4904         * tests/test-lseek.c: Likewise.
4905         * tests/test-lstat.c: Likewise.
4906         * tests/test-mbmemcasecmp.c: Likewise.
4907         * tests/test-mbmemcasecoll.c: Likewise.
4908         * tests/test-mbrtowc.c: Likewise.
4909         * tests/test-mbscasecmp.c: Likewise.
4910         * tests/test-mbscasestr1.c: Likewise.
4911         * tests/test-mbscasestr2.c: Likewise.
4912         * tests/test-mbscasestr3.c: Likewise.
4913         * tests/test-mbscasestr4.c: Likewise.
4914         * tests/test-mbschr.c: Likewise.
4915         * tests/test-mbscspn.c: Likewise.
4916         * tests/test-mbsinit.c: Likewise.
4917         * tests/test-mbsncasecmp.c: Likewise.
4918         * tests/test-mbsnrtowcs.c: Likewise.
4919         * tests/test-mbspbrk.c: Likewise.
4920         * tests/test-mbspcasecmp.c: Likewise.
4921         * tests/test-mbsrchr.c: Likewise.
4922         * tests/test-mbsrtowcs.c: Likewise.
4923         * tests/test-mbsspn.c: Likewise.
4924         * tests/test-mbsstr1.c: Likewise.
4925         * tests/test-mbsstr2.c: Likewise.
4926         * tests/test-mbsstr3.c: Likewise.
4927         * tests/test-memchr.c: Likewise.
4928         * tests/test-memchr2.c: Likewise.
4929         * tests/test-memcmp.c: Likewise.
4930         * tests/test-memmem.c: Likewise.
4931         * tests/test-memrchr.c: Likewise.
4932         * tests/test-mkdir.c: Likewise.
4933         * tests/test-mkdirat.c: Likewise.
4934         * tests/test-mkfifo.c: Likewise.
4935         * tests/test-mkfifoat.c: Likewise.
4936         * tests/test-mknod.c: Likewise.
4937         * tests/test-nanosleep.c: Likewise.
4938         * tests/test-nl_langinfo.c: Likewise.
4939         * tests/test-obstack-printf.c: Likewise.
4940         * tests/test-open.c: Likewise.
4941         * tests/test-openat.c: Likewise.
4942         * tests/test-pipe-filter-gi1.c: Likewise.
4943         * tests/test-pipe-filter-gi2-main.c: Likewise.
4944         * tests/test-pipe-filter-ii1.c: Likewise.
4945         * tests/test-pipe-filter-ii2-main.c: Likewise.
4946         * tests/test-pipe2.c: Likewise.
4947         * tests/test-popen.h: Likewise.
4948         * tests/test-posixtm.c: Likewise.
4949         * tests/test-pread.c: Likewise.
4950         * tests/test-printf-frexp.c: Likewise.
4951         * tests/test-printf-frexpl.c: Likewise.
4952         * tests/test-printf-posix.c: Likewise.
4953         * tests/test-priv-set.c: Likewise.
4954         * tests/test-quotearg.c: Likewise.
4955         * tests/test-random_r.c: Likewise.
4956         * tests/test-rawmemchr.c: Likewise.
4957         * tests/test-rbtree_list.c: Likewise.
4958         * tests/test-rbtree_oset.c: Likewise.
4959         * tests/test-rbtreehash_list.c: Likewise.
4960         * tests/test-readlink.c: Likewise.
4961         * tests/test-remove.c: Likewise.
4962         * tests/test-rename.c: Likewise.
4963         * tests/test-renameat.c: Likewise.
4964         * tests/test-rmdir.c: Likewise.
4965         * tests/test-round1.c: Likewise.
4966         * tests/test-roundf1.c: Likewise.
4967         * tests/test-roundl.c: Likewise.
4968         * tests/test-safe-alloc.c: Likewise.
4969         * tests/test-sameacls.c: Likewise.
4970         * tests/test-set-mode-acl.c: Likewise.
4971         * tests/test-setenv.c: Likewise.
4972         * tests/test-sigaction.c: Likewise.
4973         * tests/test-signbit.c: Likewise.
4974         * tests/test-sleep.c: Likewise.
4975         * tests/test-snprintf-posix.c: Likewise.
4976         * tests/test-snprintf.c: Likewise.
4977         * tests/test-sprintf-posix.c: Likewise.
4978         * tests/test-stat-time.c: Likewise.
4979         * tests/test-stat.c: Likewise.
4980         * tests/test-strcasestr.c: Likewise.
4981         * tests/test-strchrnul.c: Likewise.
4982         * tests/test-strerror.c: Likewise.
4983         * tests/test-striconv.c: Likewise.
4984         * tests/test-striconveh.c: Likewise.
4985         * tests/test-striconveha.c: Likewise.
4986         * tests/test-strsignal.c: Likewise.
4987         * tests/test-strstr.c: Likewise.
4988         * tests/test-strtod.c: Likewise.
4989         * tests/test-strverscmp.c: Likewise.
4990         * tests/test-symlink.c: Likewise.
4991         * tests/test-symlinkat.c: Likewise.
4992         * tests/test-trunc1.c: Likewise.
4993         * tests/test-trunc2.c: Likewise.
4994         * tests/test-truncf1.c: Likewise.
4995         * tests/test-truncf2.c: Likewise.
4996         * tests/test-truncl.c: Likewise.
4997         * tests/test-uname.c: Likewise.
4998         * tests/test-unlink.c: Likewise.
4999         * tests/test-unlinkat.c: Likewise.
5000         * tests/test-unsetenv.c: Likewise.
5001         * tests/test-usleep.c: Likewise.
5002         * tests/test-utimens.c: Likewise.
5003         * tests/test-utimensat.c: Likewise.
5004         * tests/test-vasnprintf-posix.c: Likewise.
5005         * tests/test-vasnprintf-posix2.c: Likewise.
5006         * tests/test-vasnprintf.c: Likewise.
5007         * tests/test-vasprintf-posix.c: Likewise.
5008         * tests/test-vasprintf.c: Likewise.
5009         * tests/test-vdprintf-posix.c: Likewise.
5010         * tests/test-vfprintf-posix.c: Likewise.
5011         * tests/test-vprintf-posix.c: Likewise.
5012         * tests/test-vsnprintf-posix.c: Likewise.
5013         * tests/test-vsnprintf.c: Likewise.
5014         * tests/test-vsprintf-posix.c: Likewise.
5015         * tests/test-wcrtomb.c: Likewise.
5016         * tests/test-wcsnrtombs.c: Likewise.
5017         * tests/test-wcsrtombs.c: Likewise.
5018         * tests/test-wctype.c: Likewise.
5019         * tests/test-wcwidth.c: Likewise.
5020         * tests/test-xfprintf-posix.c: Likewise.
5021         * tests/test-xmemdup0.c: Likewise.
5022         * tests/test-xprintf-posix.c: Likewise.
5023         * tests/test-xvasprintf.c: Likewise.
5024         * tests/unicase/test-locale-language.c: Likewise.
5025         * tests/unicase/test-mapping-part1.h: Likewise.
5026         * tests/unicase/test-predicate-part1.h: Likewise.
5027         * tests/unicase/test-u8-casecmp.c: Likewise.
5028         * tests/unicase/test-u8-casecoll.c: Likewise.
5029         * tests/unicase/test-u8-casefold.c: Likewise.
5030         * tests/unicase/test-u8-is-cased.c: Likewise.
5031         * tests/unicase/test-u8-is-casefolded.c: Likewise.
5032         * tests/unicase/test-u8-is-lowercase.c: Likewise.
5033         * tests/unicase/test-u8-is-titlecase.c: Likewise.
5034         * tests/unicase/test-u8-is-uppercase.c: Likewise.
5035         * tests/unicase/test-u8-tolower.c: Likewise.
5036         * tests/unicase/test-u8-totitle.c: Likewise.
5037         * tests/unicase/test-u8-toupper.c: Likewise.
5038         * tests/unicase/test-u16-casecmp.c: Likewise.
5039         * tests/unicase/test-u16-casecoll.c: Likewise.
5040         * tests/unicase/test-u16-casefold.c: Likewise.
5041         * tests/unicase/test-u16-is-cased.c: Likewise.
5042         * tests/unicase/test-u16-is-casefolded.c: Likewise.
5043         * tests/unicase/test-u16-is-lowercase.c: Likewise.
5044         * tests/unicase/test-u16-is-titlecase.c: Likewise.
5045         * tests/unicase/test-u16-is-uppercase.c: Likewise.
5046         * tests/unicase/test-u16-tolower.c: Likewise.
5047         * tests/unicase/test-u16-totitle.c: Likewise.
5048         * tests/unicase/test-u16-toupper.c: Likewise.
5049         * tests/unicase/test-u32-casecmp.c: Likewise.
5050         * tests/unicase/test-u32-casecoll.c: Likewise.
5051         * tests/unicase/test-u32-casefold.c: Likewise.
5052         * tests/unicase/test-u32-is-cased.c: Likewise.
5053         * tests/unicase/test-u32-is-casefolded.c: Likewise.
5054         * tests/unicase/test-u32-is-lowercase.c: Likewise.
5055         * tests/unicase/test-u32-is-titlecase.c: Likewise.
5056         * tests/unicase/test-u32-is-uppercase.c: Likewise.
5057         * tests/unicase/test-u32-tolower.c: Likewise.
5058         * tests/unicase/test-u32-totitle.c: Likewise.
5059         * tests/unicase/test-u32-toupper.c: Likewise.
5060         * tests/unicase/test-ulc-casecmp.c: Likewise.
5061         * tests/unicase/test-ulc-casecoll.c: Likewise.
5062         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
5063         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
5064         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
5065         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
5066         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
5067         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
5068         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
5069         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
5070         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
5071         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
5072         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
5073         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
5074         * tests/unictype/test-bidi_byname.c: Likewise.
5075         * tests/unictype/test-bidi_name.c: Likewise.
5076         * tests/unictype/test-bidi_of.c: Likewise.
5077         * tests/unictype/test-bidi_test.c: Likewise.
5078         * tests/unictype/test-block_list.c: Likewise.
5079         * tests/unictype/test-block_of.c: Likewise.
5080         * tests/unictype/test-block_test.c: Likewise.
5081         * tests/unictype/test-categ_and.c: Likewise.
5082         * tests/unictype/test-categ_and_not.c: Likewise.
5083         * tests/unictype/test-categ_byname.c: Likewise.
5084         * tests/unictype/test-categ_name.c: Likewise.
5085         * tests/unictype/test-categ_none.c: Likewise.
5086         * tests/unictype/test-categ_of.c: Likewise.
5087         * tests/unictype/test-categ_or.c: Likewise.
5088         * tests/unictype/test-categ_test_withtable.c: Likewise.
5089         * tests/unictype/test-combining.c: Likewise.
5090         * tests/unictype/test-decdigit.c: Likewise.
5091         * tests/unictype/test-digit.c: Likewise.
5092         * tests/unictype/test-mirror.c: Likewise.
5093         * tests/unictype/test-numeric.c: Likewise.
5094         * tests/unictype/test-pr_byname.c: Likewise.
5095         * tests/unictype/test-pr_test.c: Likewise.
5096         * tests/unictype/test-predicate-part1.h: Likewise.
5097         * tests/unictype/test-scripts.c: Likewise.
5098         * tests/unictype/test-sy_c_ident.c: Likewise.
5099         * tests/unictype/test-sy_java_ident.c: Likewise.
5100         * tests/unilbrk/test-u8-possible-linebreaks.c: Likewise.
5101         * tests/unilbrk/test-u8-width-linebreaks.c: Likewise.
5102         * tests/unilbrk/test-u16-possible-linebreaks.c: Likewise.
5103         * tests/unilbrk/test-u16-width-linebreaks.c: Likewise.
5104         * tests/unilbrk/test-u32-possible-linebreaks.c: Likewise.
5105         * tests/unilbrk/test-u32-width-linebreaks.c: Likewise.
5106         * tests/unilbrk/test-ulc-possible-linebreaks.c: Likewise.
5107         * tests/unilbrk/test-ulc-width-linebreaks.c: Likewise.
5108         * tests/uninorm/test-canonical-decomposition.c: Likewise.
5109         * tests/uninorm/test-compat-decomposition.c: Likewise.
5110         * tests/uninorm/test-composition.c: Likewise.
5111         * tests/uninorm/test-decomposing-form.c: Likewise.
5112         * tests/uninorm/test-decomposition.c: Likewise.
5113         * tests/uninorm/test-u8-nfc.c: Likewise.
5114         * tests/uninorm/test-u8-nfd.c: Likewise.
5115         * tests/uninorm/test-u8-nfkc.c: Likewise.
5116         * tests/uninorm/test-u8-nfkd.c: Likewise.
5117         * tests/uninorm/test-u8-normcmp.c: Likewise.
5118         * tests/uninorm/test-u8-normcoll.c: Likewise.
5119         * tests/uninorm/test-u16-nfc.c: Likewise.
5120         * tests/uninorm/test-u16-nfd.c: Likewise.
5121         * tests/uninorm/test-u16-nfkc.c: Likewise.
5122         * tests/uninorm/test-u16-nfkd.c: Likewise.
5123         * tests/uninorm/test-u16-normcmp.c: Likewise.
5124         * tests/uninorm/test-u16-normcoll.c: Likewise.
5125         * tests/uninorm/test-u32-nfc.c: Likewise.
5126         * tests/uninorm/test-u32-nfd.c: Likewise.
5127         * tests/uninorm/test-u32-nfkc.c: Likewise.
5128         * tests/uninorm/test-u32-nfkd.c: Likewise.
5129         * tests/uninorm/test-u32-normalize-big.c: Likewise.
5130         * tests/uninorm/test-u32-normcmp.c: Likewise.
5131         * tests/uninorm/test-u32-normcoll.c: Likewise.
5132         * tests/uninorm/test-uninorm-filter-nfc.c: Likewise.
5133         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
5134         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
5135         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
5136         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
5137         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
5138         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
5139         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
5140         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
5141         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
5142         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
5143         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
5144         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
5145         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
5146         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
5147         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
5148         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
5149         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
5150         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
5151         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
5152         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
5153         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
5154         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
5155         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
5156         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
5157         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
5158         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
5159         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
5160         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
5161         * tests/uniwbrk/test-u8-wordbreaks.c: Likewise.
5162         * tests/uniwbrk/test-u16-wordbreaks.c: Likewise.
5163         * tests/uniwbrk/test-u32-wordbreaks.c: Likewise.
5164         * tests/uniwbrk/test-ulc-wordbreaks.c: Likewise.
5165         * tests/uniwidth/test-u8-strwidth.c: Likewise.
5166         * tests/uniwidth/test-u8-width.c: Likewise.
5167         * tests/uniwidth/test-u16-strwidth.c: Likewise.
5168         * tests/uniwidth/test-u16-width.c: Likewise.
5169         * tests/uniwidth/test-u32-strwidth.c: Likewise.
5170         * tests/uniwidth/test-u32-width.c: Likewise.
5171         * tests/uniwidth/test-uc_width.c: Likewise.
5172         * tests/uniwidth/test-uc_width2.c: Likewise.
5173         * modules/acl-tests (Files): Add tests/macros.h.
5174         * modules/areadlink-tests (Files): Likewise.
5175         * modules/areadlink-with-size-tests (Files): Likewise.
5176         * modules/areadlinkat-tests (Files): Likewise.
5177         * modules/areadlinkat-with-size-tests (Files): Likewise.
5178         * modules/argmatch-tests (Files): Likewise.
5179         * modules/argv-iter-tests (Files): Likewise.
5180         * modules/array-list-tests (Files): Likewise.
5181         * modules/array-mergesort-tests (Files): Likewise.
5182         * modules/array-oset-tests (Files): Likewise.
5183         * modules/avltree-list-tests (Files): Likewise.
5184         * modules/avltree-oset-tests (Files): Likewise.
5185         * modules/avltreehash-list-tests (Files): Likewise.
5186         * modules/base64-tests (Files): Likewise.
5187         * modules/binary-io-tests (Files): Likewise.
5188         * modules/bitrotate-tests (Files): Likewise.
5189         * modules/btowc-tests (Files): Likewise.
5190         * modules/byteswap-tests (Files): Likewise.
5191         * modules/c-ctype-tests (Files): Likewise.
5192         * modules/c-stack-tests (Files): Likewise.
5193         * modules/c-strcase-tests (Files): Likewise.
5194         * modules/c-strcasestr-tests (Files): Likewise.
5195         * modules/c-strstr-tests (Files): Likewise.
5196         * modules/canonicalize-lgpl-tests (Files): Likewise.
5197         * modules/canonicalize-tests (Files): Likewise.
5198         * modules/carray-list-tests (Files): Likewise.
5199         * modules/ceilf-tests (Files): Likewise.
5200         * modules/ceill-tests (Files): Likewise.
5201         * modules/chown-tests (Files): Likewise.
5202         * modules/cloexec-tests (Files): Likewise.
5203         * modules/copy-file-tests (Files): Likewise.
5204         * modules/count-one-bits-tests (Files): Likewise.
5205         * modules/dprintf-posix-tests (Files): Likewise.
5206         * modules/dup2-tests (Files): Likewise.
5207         * modules/dup3-tests (Files): Likewise.
5208         * modules/duplocale-tests (Files): Likewise.
5209         * modules/fbufmode-tests (Files): Likewise.
5210         * modules/fchdir-tests (Files): Likewise.
5211         * modules/fcntl-safer-tests (Files): Likewise.
5212         * modules/fcntl-tests (Files): Likewise.
5213         * modules/fdopendir-tests (Files): Likewise.
5214         * modules/fdutimensat-tests (Files): Likewise.
5215         * modules/fflush-tests (Files): Likewise.
5216         * modules/filevercmp-tests (Files): Likewise.
5217         * modules/flock-tests (Files): Likewise.
5218         * modules/floorf-tests (Files): Likewise.
5219         * modules/floorl-tests (Files): Likewise.
5220         * modules/fnmatch-tests (Files): Likewise.
5221         * modules/fopen-safer-tests (Files): Likewise.
5222         * modules/fopen-tests (Files): Likewise.
5223         * modules/fpending-tests (Files): Likewise.
5224         * modules/fprintf-posix-tests (Files): Likewise.
5225         * modules/fpurge-tests (Files): Likewise.
5226         * modules/freadable-tests (Files): Likewise.
5227         * modules/freadahead-tests (Files): Likewise.
5228         * modules/freading-tests (Files): Likewise.
5229         * modules/freadptr-tests (Files): Likewise.
5230         * modules/freadseek-tests (Files): Likewise.
5231         * modules/freopen-tests (Files): Likewise.
5232         * modules/frexp-nolibm-tests (Files): Likewise.
5233         * modules/frexp-tests (Files): Likewise.
5234         * modules/frexpl-nolibm-tests (Files): Likewise.
5235         * modules/frexpl-tests (Files): Likewise.
5236         * modules/fseek-tests (Files): Likewise.
5237         * modules/fseeko-tests (Files): Likewise.
5238         * modules/fstrcmp-tests (Files): Likewise.
5239         * modules/fsync-tests (Files): Likewise.
5240         * modules/ftell-tests (Files): Likewise.
5241         * modules/ftello-tests (Files): Likewise.
5242         * modules/func-tests (Files): Likewise.
5243         * modules/futimens-tests (Files): Likewise.
5244         * modules/fwritable-tests (Files): Likewise.
5245         * modules/fwriting-tests (Files): Likewise.
5246         * modules/getcwd-tests (Files): Likewise.
5247         * modules/getdate-tests (Files): Likewise.
5248         * modules/getdelim-tests (Files): Likewise.
5249         * modules/getdtablesize-tests (Files): Likewise.
5250         * modules/getgroups-tests (Files): Likewise.
5251         * modules/getline-tests (Files): Likewise.
5252         * modules/getndelim2-tests (Files): Likewise.
5253         * modules/glob-tests (Files): Likewise.
5254         * modules/hash-tests (Files): Likewise.
5255         * modules/i-ring-tests (Files): Likewise.
5256         * modules/iconv-tests (Files): Likewise.
5257         * modules/iconv_open-utf-tests (Files): Likewise.
5258         * modules/idpriv-drop-tests (Files): Likewise.
5259         * modules/idpriv-droptemp-tests (Files): Likewise.
5260         * modules/inet_ntop-tests (Files): Likewise.
5261         * modules/inet_pton-tests (Files): Likewise.
5262         * modules/isblank-tests (Files): Likewise.
5263         * modules/isfinite-tests (Files): Likewise.
5264         * modules/isinf-tests (Files): Likewise.
5265         * modules/isnan-tests (Files): Likewise.
5266         * modules/isnand-nolibm-tests (Files): Likewise.
5267         * modules/isnand-tests (Files): Likewise.
5268         * modules/isnanf-nolibm-tests (Files): Likewise.
5269         * modules/isnanf-tests (Files): Likewise.
5270         * modules/isnanl-nolibm-tests (Files): Likewise.
5271         * modules/isnanl-tests (Files): Likewise.
5272         * modules/lchown-tests (Files): Likewise.
5273         * modules/ldexpl-tests (Files): Likewise.
5274         * modules/link-tests (Files): Likewise.
5275         * modules/linkat-tests (Files): Likewise.
5276         * modules/linked-list-tests (Files): Likewise.
5277         * modules/linkedhash-list-tests (Files): Likewise.
5278         * modules/localename-tests (Files): Likewise.
5279         * modules/lseek-tests (Files): Likewise.
5280         * modules/lstat-tests (Files): Likewise.
5281         * modules/mbmemcasecmp-tests (Files): Likewise.
5282         * modules/mbmemcasecoll-tests (Files): Likewise.
5283         * modules/mbrtowc-tests (Files): Likewise.
5284         * modules/mbscasecmp-tests (Files): Likewise.
5285         * modules/mbscasestr-tests (Files): Likewise.
5286         * modules/mbschr-tests (Files): Likewise.
5287         * modules/mbscspn-tests (Files): Likewise.
5288         * modules/mbsinit-tests (Files): Likewise.
5289         * modules/mbsncasecmp-tests (Files): Likewise.
5290         * modules/mbsnrtowcs-tests (Files): Likewise.
5291         * modules/mbspbrk-tests (Files): Likewise.
5292         * modules/mbspcasecmp-tests (Files): Likewise.
5293         * modules/mbsrchr-tests (Files): Likewise.
5294         * modules/mbsrtowcs-tests (Files): Likewise.
5295         * modules/mbsspn-tests (Files): Likewise.
5296         * modules/mbsstr-tests (Files): Likewise.
5297         * modules/memchr-tests (Files): Likewise.
5298         * modules/memchr2-tests (Files): Likewise.
5299         * modules/memcmp-tests (Files): Likewise.
5300         * modules/memmem-tests (Files): Likewise.
5301         * modules/memrchr-tests (Files): Likewise.
5302         * modules/mkdir-tests (Files): Likewise.
5303         * modules/mkfifo-tests (Files): Likewise.
5304         * modules/mkfifoat-tests (Files): Likewise.
5305         * modules/mknod-tests (Files): Likewise.
5306         * modules/nanosleep-tests (Files): Likewise.
5307         * modules/nl_langinfo-tests (Files): Likewise.
5308         * modules/obstack-printf-tests (Files): Likewise.
5309         * modules/open-tests (Files): Likewise.
5310         * modules/openat-tests (Files): Likewise.
5311         * modules/pipe-filter-gi-tests (Files): Likewise.
5312         * modules/pipe-filter-ii-tests (Files): Likewise.
5313         * modules/pipe2-tests (Files): Likewise.
5314         * modules/popen-safer-tests (Files): Likewise.
5315         * modules/popen-tests (Files): Likewise.
5316         * modules/posixtm-tests (Files): Likewise.
5317         * modules/pread-tests (Files): Likewise.
5318         * modules/printf-frexp-tests (Files): Likewise.
5319         * modules/printf-frexpl-tests (Files): Likewise.
5320         * modules/printf-posix-tests (Files): Likewise.
5321         * modules/priv-set-tests (Files): Likewise.
5322         * modules/quotearg-tests (Files): Likewise.
5323         * modules/random_r-tests (Files): Likewise.
5324         * modules/rawmemchr-tests (Files): Likewise.
5325         * modules/rbtree-list-tests (Files): Likewise.
5326         * modules/rbtree-oset-tests (Files): Likewise.
5327         * modules/rbtreehash-list-tests (Files): Likewise.
5328         * modules/readlink-tests (Files): Likewise.
5329         * modules/remove-tests (Files): Likewise.
5330         * modules/rename-tests (Files): Likewise.
5331         * modules/renameat-tests (Files): Likewise.
5332         * modules/rmdir-tests (Files): Likewise.
5333         * modules/round-tests (Files): Likewise.
5334         * modules/roundf-tests (Files): Likewise.
5335         * modules/roundl-tests (Files): Likewise.
5336         * modules/safe-alloc-tests (Files): Likewise.
5337         * modules/setenv-tests (Files): Likewise.
5338         * modules/sigaction-tests (Files): Likewise.
5339         * modules/signbit-tests (Files): Likewise.
5340         * modules/sleep-tests (Files): Likewise.
5341         * modules/snprintf-posix-tests (Files): Likewise.
5342         * modules/snprintf-tests (Files): Likewise.
5343         * modules/sprintf-posix-tests (Files): Likewise.
5344         * modules/stat-tests (Files): Likewise.
5345         * modules/stat-time-tests (Files): Likewise.
5346         * modules/strcasestr-tests (Files): Likewise.
5347         * modules/strchrnul-tests (Files): Likewise.
5348         * modules/strerror-tests (Files): Likewise.
5349         * modules/striconv-tests (Files): Likewise.
5350         * modules/striconveh-tests (Files): Likewise.
5351         * modules/striconveha-tests (Files): Likewise.
5352         * modules/strsignal-tests (Files): Likewise.
5353         * modules/strstr-tests (Files): Likewise.
5354         * modules/strtod-tests (Files): Likewise.
5355         * modules/strverscmp-tests (Files): Likewise.
5356         * modules/symlink-tests (Files): Likewise.
5357         * modules/symlinkat-tests (Files): Likewise.
5358         * modules/trunc-tests (Files): Likewise.
5359         * modules/truncf-tests (Files): Likewise.
5360         * modules/truncl-tests (Files): Likewise.
5361         * modules/uname-tests (Files): Likewise.
5362         * modules/unicase/cased-tests (Files): Likewise.
5363         * modules/unicase/ignorable-tests (Files): Likewise.
5364         * modules/unicase/locale-language-tests (Files): Likewise.
5365         * modules/unicase/tolower-tests (Files): Likewise.
5366         * modules/unicase/totitle-tests (Files): Likewise.
5367         * modules/unicase/toupper-tests (Files): Likewise.
5368         * modules/unicase/u8-casecmp-tests (Files): Likewise.
5369         * modules/unicase/u8-casecoll-tests (Files): Likewise.
5370         * modules/unicase/u8-casefold-tests (Files): Likewise.
5371         * modules/unicase/u8-is-cased-tests (Files): Likewise.
5372         * modules/unicase/u8-is-casefolded-tests (Files): Likewise.
5373         * modules/unicase/u8-is-lowercase-tests (Files): Likewise.
5374         * modules/unicase/u8-is-titlecase-tests (Files): Likewise.
5375         * modules/unicase/u8-is-uppercase-tests (Files): Likewise.
5376         * modules/unicase/u8-tolower-tests (Files): Likewise.
5377         * modules/unicase/u8-totitle-tests (Files): Likewise.
5378         * modules/unicase/u8-toupper-tests (Files): Likewise.
5379         * modules/unicase/u16-casecmp-tests (Files): Likewise.
5380         * modules/unicase/u16-casecoll-tests (Files): Likewise.
5381         * modules/unicase/u16-casefold-tests (Files): Likewise.
5382         * modules/unicase/u16-is-cased-tests (Files): Likewise.
5383         * modules/unicase/u16-is-casefolded-tests (Files): Likewise.
5384         * modules/unicase/u16-is-lowercase-tests (Files): Likewise.
5385         * modules/unicase/u16-is-titlecase-tests (Files): Likewise.
5386         * modules/unicase/u16-is-uppercase-tests (Files): Likewise.
5387         * modules/unicase/u16-tolower-tests (Files): Likewise.
5388         * modules/unicase/u16-totitle-tests (Files): Likewise.
5389         * modules/unicase/u16-toupper-tests (Files): Likewise.
5390         * modules/unicase/u32-casecmp-tests (Files): Likewise.
5391         * modules/unicase/u32-casecoll-tests (Files): Likewise.
5392         * modules/unicase/u32-casefold-tests (Files): Likewise.
5393         * modules/unicase/u32-is-cased-tests (Files): Likewise.
5394         * modules/unicase/u32-is-casefolded-tests (Files): Likewise.
5395         * modules/unicase/u32-is-lowercase-tests (Files): Likewise.
5396         * modules/unicase/u32-is-titlecase-tests (Files): Likewise.
5397         * modules/unicase/u32-is-uppercase-tests (Files): Likewise.
5398         * modules/unicase/u32-tolower-tests (Files): Likewise.
5399         * modules/unicase/u32-totitle-tests (Files): Likewise.
5400         * modules/unicase/u32-toupper-tests (Files): Likewise.
5401         * modules/unicase/ulc-casecmp-tests (Files): Likewise.
5402         * modules/unicase/ulc-casecoll-tests (Files): Likewise.
5403         * modules/uniconv/u8-conv-from-enc-tests (Files): Likewise.
5404         * modules/uniconv/u8-conv-to-enc-tests (Files): Likewise.
5405         * modules/uniconv/u8-strconv-from-enc-tests (Files): Likewise.
5406         * modules/uniconv/u8-strconv-to-enc-tests (Files): Likewise.
5407         * modules/uniconv/u16-conv-from-enc-tests (Files): Likewise.
5408         * modules/uniconv/u16-conv-to-enc-tests (Files): Likewise.
5409         * modules/uniconv/u16-strconv-from-enc-tests (Files): Likewise.
5410         * modules/uniconv/u16-strconv-to-enc-tests (Files): Likewise.
5411         * modules/uniconv/u32-conv-from-enc-tests (Files): Likewise.
5412         * modules/uniconv/u32-conv-to-enc-tests (Files): Likewise.
5413         * modules/uniconv/u32-strconv-from-enc-tests (Files): Likewise.
5414         * modules/uniconv/u32-strconv-to-enc-tests (Files): Likewise.
5415         * modules/unictype/bidicategory-byname-tests (Files): Likewise.
5416         * modules/unictype/bidicategory-name-tests (Files): Likewise.
5417         * modules/unictype/bidicategory-of-tests (Files): Likewise.
5418         * modules/unictype/bidicategory-test-tests (Files): Likewise.
5419         * modules/unictype/block-list-tests (Files): Likewise.
5420         * modules/unictype/block-of-tests (Files): Likewise.
5421         * modules/unictype/block-test-tests (Files): Likewise.
5422         * modules/unictype/category-C-tests (Files): Likewise.
5423         * modules/unictype/category-Cc-tests (Files): Likewise.
5424         * modules/unictype/category-Cf-tests (Files): Likewise.
5425         * modules/unictype/category-Cn-tests (Files): Likewise.
5426         * modules/unictype/category-Co-tests (Files): Likewise.
5427         * modules/unictype/category-Cs-tests (Files): Likewise.
5428         * modules/unictype/category-L-tests (Files): Likewise.
5429         * modules/unictype/category-Ll-tests (Files): Likewise.
5430         * modules/unictype/category-Lm-tests (Files): Likewise.
5431         * modules/unictype/category-Lo-tests (Files): Likewise.
5432         * modules/unictype/category-Lt-tests (Files): Likewise.
5433         * modules/unictype/category-Lu-tests (Files): Likewise.
5434         * modules/unictype/category-M-tests (Files): Likewise.
5435         * modules/unictype/category-Mc-tests (Files): Likewise.
5436         * modules/unictype/category-Me-tests (Files): Likewise.
5437         * modules/unictype/category-Mn-tests (Files): Likewise.
5438         * modules/unictype/category-N-tests (Files): Likewise.
5439         * modules/unictype/category-Nd-tests (Files): Likewise.
5440         * modules/unictype/category-Nl-tests (Files): Likewise.
5441         * modules/unictype/category-No-tests (Files): Likewise.
5442         * modules/unictype/category-P-tests (Files): Likewise.
5443         * modules/unictype/category-Pc-tests (Files): Likewise.
5444         * modules/unictype/category-Pd-tests (Files): Likewise.
5445         * modules/unictype/category-Pe-tests (Files): Likewise.
5446         * modules/unictype/category-Pf-tests (Files): Likewise.
5447         * modules/unictype/category-Pi-tests (Files): Likewise.
5448         * modules/unictype/category-Po-tests (Files): Likewise.
5449         * modules/unictype/category-Ps-tests (Files): Likewise.
5450         * modules/unictype/category-S-tests (Files): Likewise.
5451         * modules/unictype/category-Sc-tests (Files): Likewise.
5452         * modules/unictype/category-Sk-tests (Files): Likewise.
5453         * modules/unictype/category-Sm-tests (Files): Likewise.
5454         * modules/unictype/category-So-tests (Files): Likewise.
5455         * modules/unictype/category-Z-tests (Files): Likewise.
5456         * modules/unictype/category-Zl-tests (Files): Likewise.
5457         * modules/unictype/category-Zp-tests (Files): Likewise.
5458         * modules/unictype/category-Zs-tests (Files): Likewise.
5459         * modules/unictype/category-and-not-tests (Files): Likewise.
5460         * modules/unictype/category-and-tests (Files): Likewise.
5461         * modules/unictype/category-byname-tests (Files): Likewise.
5462         * modules/unictype/category-name-tests (Files): Likewise.
5463         * modules/unictype/category-none-tests (Files): Likewise.
5464         * modules/unictype/category-of-tests (Files): Likewise.
5465         * modules/unictype/category-or-tests (Files): Likewise.
5466         * modules/unictype/category-test-withtable-tests (Files): Likewise.
5467         * modules/unictype/combining-class-tests (Files): Likewise.
5468         * modules/unictype/ctype-alnum-tests (Files): Likewise.
5469         * modules/unictype/ctype-alpha-tests (Files): Likewise.
5470         * modules/unictype/ctype-blank-tests (Files): Likewise.
5471         * modules/unictype/ctype-cntrl-tests (Files): Likewise.
5472         * modules/unictype/ctype-digit-tests (Files): Likewise.
5473         * modules/unictype/ctype-graph-tests (Files): Likewise.
5474         * modules/unictype/ctype-lower-tests (Files): Likewise.
5475         * modules/unictype/ctype-print-tests (Files): Likewise.
5476         * modules/unictype/ctype-punct-tests (Files): Likewise.
5477         * modules/unictype/ctype-space-tests (Files): Likewise.
5478         * modules/unictype/ctype-upper-tests (Files): Likewise.
5479         * modules/unictype/ctype-xdigit-tests (Files): Likewise.
5480         * modules/unictype/decimal-digit-tests (Files): Likewise.
5481         * modules/unictype/digit-tests (Files): Likewise.
5482         * modules/unictype/mirror-tests (Files): Likewise.
5483         * modules/unictype/numeric-tests (Files): Likewise.
5484         * modules/unictype/property-alphabetic-tests (Files): Likewise.
5485         * modules/unictype/property-ascii-hex-digit-tests (Files): Likewise.
5486         * modules/unictype/property-bidi-arabic-digit-tests (Files): Likewise.
5487         * modules/unictype/property-bidi-arabic-right-to-left-tests (Files):
5488         Likewise.
5489         * modules/unictype/property-bidi-block-separator-tests (Files):
5490         Likewise.
5491         * modules/unictype/property-bidi-boundary-neutral-tests (Files):
5492         Likewise.
5493         * modules/unictype/property-bidi-common-separator-tests (Files):
5494         Likewise.
5495         * modules/unictype/property-bidi-control-tests (Files): Likewise.
5496         * modules/unictype/property-bidi-embedding-or-override-tests (Files):
5497         Likewise.
5498         * modules/unictype/property-bidi-eur-num-separator-tests (Files):
5499         Likewise.
5500         * modules/unictype/property-bidi-eur-num-terminator-tests (Files):
5501         Likewise.
5502         * modules/unictype/property-bidi-european-digit-tests (Files): Likewise.
5503         * modules/unictype/property-bidi-hebrew-right-to-left-tests (Files):
5504         Likewise.
5505         * modules/unictype/property-bidi-left-to-right-tests (Files): Likewise.
5506         * modules/unictype/property-bidi-non-spacing-mark-tests (Files):
5507         Likewise.
5508         * modules/unictype/property-bidi-other-neutral-tests (Files): Likewise.
5509         * modules/unictype/property-bidi-pdf-tests (Files): Likewise.
5510         * modules/unictype/property-bidi-segment-separator-tests (Files):
5511         Likewise.
5512         * modules/unictype/property-bidi-whitespace-tests (Files): Likewise.
5513         * modules/unictype/property-byname-tests (Files): Likewise.
5514         * modules/unictype/property-combining-tests (Files): Likewise.
5515         * modules/unictype/property-composite-tests (Files): Likewise.
5516         * modules/unictype/property-currency-symbol-tests (Files): Likewise.
5517         * modules/unictype/property-dash-tests (Files): Likewise.
5518         * modules/unictype/property-decimal-digit-tests (Files): Likewise.
5519         * modules/unictype/property-default-ignorable-code-point-tests (Files):
5520         Likewise.
5521         * modules/unictype/property-deprecated-tests (Files): Likewise.
5522         * modules/unictype/property-diacritic-tests (Files): Likewise.
5523         * modules/unictype/property-extender-tests (Files): Likewise.
5524         * modules/unictype/property-format-control-tests (Files): Likewise.
5525         * modules/unictype/property-grapheme-base-tests (Files): Likewise.
5526         * modules/unictype/property-grapheme-extend-tests (Files): Likewise.
5527         * modules/unictype/property-grapheme-link-tests (Files): Likewise.
5528         * modules/unictype/property-hex-digit-tests (Files): Likewise.
5529         * modules/unictype/property-hyphen-tests (Files): Likewise.
5530         * modules/unictype/property-id-continue-tests (Files): Likewise.
5531         * modules/unictype/property-id-start-tests (Files): Likewise.
5532         * modules/unictype/property-ideographic-tests (Files): Likewise.
5533         * modules/unictype/property-ids-binary-operator-tests (Files): Likewise.
5534         * modules/unictype/property-ids-trinary-operator-tests (Files):
5535         Likewise.
5536         * modules/unictype/property-ignorable-control-tests (Files): Likewise.
5537         * modules/unictype/property-iso-control-tests (Files): Likewise.
5538         * modules/unictype/property-join-control-tests (Files): Likewise.
5539         * modules/unictype/property-left-of-pair-tests (Files): Likewise.
5540         * modules/unictype/property-line-separator-tests (Files): Likewise.
5541         * modules/unictype/property-logical-order-exception-tests (Files):
5542         Likewise.
5543         * modules/unictype/property-lowercase-tests (Files): Likewise.
5544         * modules/unictype/property-math-tests (Files): Likewise.
5545         * modules/unictype/property-non-break-tests (Files): Likewise.
5546         * modules/unictype/property-not-a-character-tests (Files): Likewise.
5547         * modules/unictype/property-numeric-tests (Files): Likewise.
5548         * modules/unictype/property-other-alphabetic-tests (Files): Likewise.
5549         * modules/unictype/property-other-default-ignorable-code-point-tests
5550         (Files): Likewise.
5551         * modules/unictype/property-other-grapheme-extend-tests (Files):
5552         Likewise.
5553         * modules/unictype/property-other-id-continue-tests (Files): Likewise.
5554         * modules/unictype/property-other-id-start-tests (Files): Likewise.
5555         * modules/unictype/property-other-lowercase-tests (Files): Likewise.
5556         * modules/unictype/property-other-math-tests (Files): Likewise.
5557         * modules/unictype/property-other-uppercase-tests (Files): Likewise.
5558         * modules/unictype/property-paired-punctuation-tests (Files): Likewise.
5559         * modules/unictype/property-paragraph-separator-tests (Files): Likewise.
5560         * modules/unictype/property-pattern-syntax-tests (Files): Likewise.
5561         * modules/unictype/property-pattern-white-space-tests (Files): Likewise.
5562         * modules/unictype/property-private-use-tests (Files): Likewise.
5563         * modules/unictype/property-punctuation-tests (Files): Likewise.
5564         * modules/unictype/property-quotation-mark-tests (Files): Likewise.
5565         * modules/unictype/property-radical-tests (Files): Likewise.
5566         * modules/unictype/property-sentence-terminal-tests (Files): Likewise.
5567         * modules/unictype/property-soft-dotted-tests (Files): Likewise.
5568         * modules/unictype/property-space-tests (Files): Likewise.
5569         * modules/unictype/property-terminal-punctuation-tests (Files):
5570         Likewise.
5571         * modules/unictype/property-test-tests (Files): Likewise.
5572         * modules/unictype/property-titlecase-tests (Files): Likewise.
5573         * modules/unictype/property-unassigned-code-value-tests (Files):
5574         Likewise.
5575         * modules/unictype/property-unified-ideograph-tests (Files): Likewise.
5576         * modules/unictype/property-uppercase-tests (Files): Likewise.
5577         * modules/unictype/property-variation-selector-tests (Files): Likewise.
5578         * modules/unictype/property-white-space-tests (Files): Likewise.
5579         * modules/unictype/property-xid-continue-tests (Files): Likewise.
5580         * modules/unictype/property-xid-start-tests (Files): Likewise.
5581         * modules/unictype/property-zero-width-tests (Files): Likewise.
5582         * modules/unictype/scripts-tests (Files): Likewise.
5583         * modules/unictype/syntax-c-ident-tests (Files): Likewise.
5584         * modules/unictype/syntax-c-whitespace-tests (Files): Likewise.
5585         * modules/unictype/syntax-java-ident-tests (Files): Likewise.
5586         * modules/unictype/syntax-java-whitespace-tests (Files): Likewise.
5587         * modules/unilbrk/u8-possible-linebreaks-tests (Files): Likewise.
5588         * modules/unilbrk/u8-width-linebreaks-tests (Files): Likewise.
5589         * modules/unilbrk/u16-possible-linebreaks-tests (Files): Likewise.
5590         * modules/unilbrk/u16-width-linebreaks-tests (Files): Likewise.
5591         * modules/unilbrk/u32-possible-linebreaks-tests (Files): Likewise.
5592         * modules/unilbrk/u32-width-linebreaks-tests (Files): Likewise.
5593         * modules/unilbrk/ulc-possible-linebreaks-tests (Files): Likewise.
5594         * modules/unilbrk/ulc-width-linebreaks-tests (Files): Likewise.
5595         * modules/uninorm/canonical-decomposition-tests (Files): Likewise.
5596         * modules/uninorm/compat-decomposition-tests (Files): Likewise.
5597         * modules/uninorm/composition-tests (Files): Likewise.
5598         * modules/uninorm/decomposing-form-tests (Files): Likewise.
5599         * modules/uninorm/decomposition-tests (Files): Likewise.
5600         * modules/uninorm/filter-tests (Files): Likewise.
5601         * modules/uninorm/nfc-tests (Files): Likewise.
5602         * modules/uninorm/nfd-tests (Files): Likewise.
5603         * modules/uninorm/nfkc-tests (Files): Likewise.
5604         * modules/uninorm/nfkd-tests (Files): Likewise.
5605         * modules/uninorm/u8-normcmp-tests (Files): Likewise.
5606         * modules/uninorm/u8-normcoll-tests (Files): Likewise.
5607         * modules/uninorm/u16-normcmp-tests (Files): Likewise.
5608         * modules/uninorm/u16-normcoll-tests (Files): Likewise.
5609         * modules/uninorm/u32-normcmp-tests (Files): Likewise.
5610         * modules/uninorm/u32-normcoll-tests (Files): Likewise.
5611         * modules/unistdio/u8-asnprintf-tests (Files): Likewise.
5612         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
5613         * modules/unistdio/u8-vasprintf-tests (Files): Likewise.
5614         * modules/unistdio/u8-vsnprintf-tests (Files): Likewise.
5615         * modules/unistdio/u8-vsprintf-tests (Files): Likewise.
5616         * modules/unistdio/u16-asnprintf-tests (Files): Likewise.
5617         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
5618         * modules/unistdio/u16-vasprintf-tests (Files): Likewise.
5619         * modules/unistdio/u16-vsnprintf-tests (Files): Likewise.
5620         * modules/unistdio/u16-vsprintf-tests (Files): Likewise.
5621         * modules/unistdio/u32-asnprintf-tests (Files): Likewise.
5622         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
5623         * modules/unistdio/u32-vasprintf-tests (Files): Likewise.
5624         * modules/unistdio/u32-vsnprintf-tests (Files): Likewise.
5625         * modules/unistdio/u32-vsprintf-tests (Files): Likewise.
5626         * modules/unistdio/ulc-asnprintf-tests (Files): Likewise.
5627         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
5628         * modules/unistdio/ulc-vasprintf-tests (Files): Likewise.
5629         * modules/unistdio/ulc-vsnprintf-tests (Files): Likewise.
5630         * modules/unistdio/ulc-vsprintf-tests (Files): Likewise.
5631         * modules/uniwbrk/u8-wordbreaks-tests (Files): Likewise.
5632         * modules/uniwbrk/u16-wordbreaks-tests (Files): Likewise.
5633         * modules/uniwbrk/u32-wordbreaks-tests (Files): Likewise.
5634         * modules/uniwbrk/ulc-wordbreaks-tests (Files): Likewise.
5635         * modules/uniwidth/u8-strwidth-tests (Files): Likewise.
5636         * modules/uniwidth/u8-width-tests (Files): Likewise.
5637         * modules/uniwidth/u16-strwidth-tests (Files): Likewise.
5638         * modules/uniwidth/u16-width-tests (Files): Likewise.
5639         * modules/uniwidth/u32-strwidth-tests (Files): Likewise.
5640         * modules/uniwidth/u32-width-tests (Files): Likewise.
5641         * modules/uniwidth/width-tests (Files): Likewise.
5642         * modules/unlink-tests (Files): Likewise.
5643         * modules/unsetenv-tests (Files): Likewise.
5644         * modules/usleep-tests (Files): Likewise.
5645         * modules/utimens-tests (Files): Likewise.
5646         * modules/utimensat-tests (Files): Likewise.
5647         * modules/vasnprintf-posix-tests (Files): Likewise.
5648         * modules/vasnprintf-tests (Files): Likewise.
5649         * modules/vasprintf-posix-tests (Files): Likewise.
5650         * modules/vasprintf-tests (Files): Likewise.
5651         * modules/vdprintf-posix-tests (Files): Likewise.
5652         * modules/vfprintf-posix-tests (Files): Likewise.
5653         * modules/vprintf-posix-tests (Files): Likewise.
5654         * modules/vsnprintf-posix-tests (Files): Likewise.
5655         * modules/vsnprintf-tests (Files): Likewise.
5656         * modules/vsprintf-posix-tests (Files): Likewise.
5657         * modules/wcrtomb-tests (Files): Likewise.
5658         * modules/wcsnrtombs-tests (Files): Likewise.
5659         * modules/wcsrtombs-tests (Files): Likewise.
5660         * modules/wctype-tests (Files): Likewise.
5661         * modules/wcwidth-tests (Files): Likewise.
5662         * modules/xmemdup0-tests (Files): Likewise.
5663         * modules/xprintf-posix-tests (Files): Likewise.
5664         * modules/xvasprintf-tests (Files): Likewise.
5665
5666 2009-12-24  Eric Blake  <ebb9@byu.net>
5667
5668         test-nanosleep: fix typo
5669         * tests/test-nanosleep.c (SIGNATURE_CHECK): Fix typo in previous
5670         patch.
5671         Reported by Bruno Haible.
5672
5673 2009-12-24  Bruno Haible  <bruno@clisp.org>
5674
5675         Reduce namespace pollution on glibc systems.
5676         * lib/inttypes.in.h: Don't include <stdint.h> on glibc systems.
5677         * lib/stdlib.in.h: Don't include <stdint.h>, <unistd.h> on glibc
5678         systems.
5679         * lib/unistd.in.h: Don't include <stdio.h>, <fcntl.h>, <stdlib.h>,
5680         <getopt.h> on glibc systems.
5681         * lib/fcntl.in.h: Don't include <sys/stat.h>, <unistd.h> on glibc
5682         systems.
5683         * lib/fcntl.c: Include <unistd.h> here instead.
5684
5685 2009-12-24  Bruno Haible  <bruno@clisp.org>
5686
5687         * lib/stdlib.in.h (includes): Fix typo in today's commit.
5688
5689 2009-12-24  Eric Blake  <ebb9@byu.net>
5690
5691         tests: add signature checks
5692         * tests/signature.h (SIGNATURE_CHECK): New file.
5693         * modules/atexit-tests (Files): Use it.
5694         * modules/btowc-tests (Files): Likewise.
5695         * modules/canonicalize-lgpl-tests (Files): Likewise.
5696         * modules/ceilf-tests (Files): Likewise.
5697         * modules/ceill-tests (Files): Likewise.
5698         * modules/chown-tests (Files): Likewise.
5699         * modules/dprintf-posix-tests (Files): Likewise.
5700         * modules/dup2-tests (Files): Likewise.
5701         * modules/dup3-tests (Files): Likewise.
5702         * modules/duplocale-tests (Files): Likewise.
5703         * modules/fchdir-tests (Files): Likewise.
5704         * modules/fcntl-tests (Files): Likewise.
5705         * modules/fdopendir-tests (Files): Likewise.
5706         * modules/fflush-tests (Files): Likewise.
5707         * modules/flock-tests (Files): Likewise.
5708         * modules/floorf-tests (Files): Likewise.
5709         * modules/floorl-tests (Files): Likewise.
5710         * modules/fnmatch-tests (Files): Likewise.
5711         * modules/fopen-tests (Files): Likewise.
5712         * modules/fprintf-posix-tests (Files): Likewise.
5713         * modules/freopen-tests (Files): Likewise.
5714         * modules/frexp-nolibm-tests (Files): Likewise.
5715         * modules/frexp-tests (Files): Likewise.
5716         * modules/frexpl-nolibm-tests (Files): Likewise.
5717         * modules/frexpl-tests (Files): Likewise.
5718         * modules/fseek-tests (Files): Likewise.
5719         * modules/fseeko-tests (Files): Likewise.
5720         * modules/fsync-tests (Files): Likewise.
5721         * modules/ftell-tests (Files): Likewise.
5722         * modules/ftello-tests (Files): Likewise.
5723         * modules/futimens-tests (Files): Likewise.
5724         * modules/getaddrinfo-tests (Files): Likewise.
5725         * modules/getcwd-tests (Files): Likewise.
5726         * modules/getdelim-tests (Files): Likewise.
5727         * modules/getdtablesize-tests (Files): Likewise.
5728         * modules/getgroups-tests (Files): Likewise.
5729         * modules/gethostname-tests (Files): Likewise.
5730         * modules/getline-tests (Files): Likewise.
5731         * modules/getopt-posix-tests (Files): Likewise.
5732         * modules/gettimeofday-tests (Files): Likewise.
5733         * modules/glob-tests (Files): Likewise.
5734         * modules/iconv-tests (Files): Likewise.
5735         * modules/inet_ntop-tests (Files): Likewise.
5736         * modules/inet_pton-tests (Files): Likewise.
5737         * modules/isblank-tests (Files): Likewise.
5738         * modules/lchown-tests (Files): Likewise.
5739         * modules/ldexpl-tests (Files): Likewise.
5740         * modules/link-tests (Files): Likewise.
5741         * modules/linkat-tests (Files): Likewise.
5742         * modules/lseek-tests (Files): Likewise.
5743         * modules/lstat-tests (Files): Likewise.
5744         * modules/mbrtowc-tests (Files): Likewise.
5745         * modules/mbsinit-tests (Files): Likewise.
5746         * modules/mbsnrtowcs-tests (Files): Likewise.
5747         * modules/mbsrtowcs-tests (Files): Likewise.
5748         * modules/memchr-tests (Files): Likewise.
5749         * modules/memcmp-tests (Files): Likewise.
5750         * modules/memmem-tests (Files): Likewise.
5751         * modules/memrchr-tests (Files): Likewise.
5752         * modules/mkdir-tests (Files): Likewise.
5753         * modules/mkfifo-tests (Files): Likewise.
5754         * modules/mkfifoat-tests (Files): Likewise.
5755         * modules/mknod-tests (Files): Likewise.
5756         * modules/nanosleep-tests (Files): Likewise.
5757         * modules/nl_langinfo-tests (Files): Likewise.
5758         * modules/obstack-printf-tests (Files): Likewise.
5759         * modules/open-tests (Files): Likewise.
5760         * modules/openat-tests (Files): Likewise.
5761         * modules/perror-tests (Files): Likewise.
5762         * modules/pipe2-tests (Files): Likewise.
5763         * modules/poll-tests (Files): Likewise.
5764         * modules/popen-tests (Files): Likewise.
5765         * modules/posix_spawn-tests (Files): Likewise.
5766         * modules/posix_spawnp-tests (Files): Likewise.
5767         * modules/pread-tests (Files): Likewise.
5768         * modules/printf-posix-tests (Files): Likewise.
5769         * modules/pty-tests (Files): Likewise.
5770         * modules/random_r-tests (Files): Likewise.
5771         * modules/rawmemchr-tests (Files): Likewise.
5772         * modules/readlink-tests (Files): Likewise.
5773         * modules/remove-tests (Files): Likewise.
5774         * modules/rename-tests (Files): Likewise.
5775         * modules/renameat-tests (Files): Likewise.
5776         * modules/rmdir-tests (Files): Likewise.
5777         * modules/round-tests (Files): Likewise.
5778         * modules/roundf-tests (Files): Likewise.
5779         * modules/roundl-tests (Files): Likewise.
5780         * modules/select-tests (Files): Likewise.
5781         * modules/setenv-tests (Files): Likewise.
5782         * modules/sigaction-tests (Files): Likewise.
5783         * modules/sleep-tests (Files): Likewise.
5784         * modules/snprintf-posix-tests (Files): Likewise.
5785         * modules/snprintf-tests (Files): Likewise.
5786         * modules/sprintf-posix-tests (Files): Likewise.
5787         * modules/stat-tests (Files): Likewise.
5788         * modules/strcasestr-tests (Files): Likewise.
5789         * modules/strchrnul-tests (Files): Likewise.
5790         * modules/strerror-tests (Files): Likewise.
5791         * modules/strsignal-tests (Files): Likewise.
5792         * modules/strstr-tests (Files): Likewise.
5793         * modules/strtod-tests (Files): Likewise.
5794         * modules/strverscmp-tests (Files): Likewise.
5795         * modules/symlink-tests (Files): Likewise.
5796         * modules/symlinkat-tests (Files): Likewise.
5797         * modules/times-tests (Files): Likewise.
5798         * modules/trunc-tests (Files): Likewise.
5799         * modules/truncf-tests (Files): Likewise.
5800         * modules/truncl-tests (Files): Likewise.
5801         * modules/tsearch-tests (Files): Likewise.
5802         * modules/uname-tests (Files): Likewise.
5803         * modules/unlink-tests (Files): Likewise.
5804         * modules/unsetenv-tests (Files): Likewise.
5805         * modules/usleep-tests (Files): Likewise.
5806         * modules/utimensat-tests (Files): Likewise.
5807         * modules/vasprintf-tests (Files): Likewise.
5808         * modules/vdprintf-posix-tests (Files): Likewise.
5809         * modules/vfprintf-posix-tests (Files): Likewise.
5810         * modules/vprintf-posix-tests (Files): Likewise.
5811         * modules/vsnprintf-posix-tests (Files): Likewise.
5812         * modules/vsnprintf-tests (Files): Likewise.
5813         * modules/vsprintf-posix-tests (Files): Likewise.
5814         * modules/wcrtomb-tests (Files): Likewise.
5815         * modules/wcsnrtombs-tests (Files): Likewise.
5816         * modules/wcsrtombs-tests (Files): Likewise.
5817         * modules/wcwidth-tests (Files): Likewise.
5818         * tests/test-isfinite.c (isfinite): Ensure macro declaration.
5819         * tests/test-isinf.c (isinf): Likewise.
5820         * tests/test-isnan.c (isnan): Likewise.
5821         * tests/test-signbit.c (signbit): Likewise.
5822         * tests/test-select.c (FD_CLR, FD_ISSET, FD_SET, FD_ZERO): Ensure
5823         declaration, either as macro or with correct signature.
5824         (select): Ensure function under test is declared with correct
5825         signature in correct header.
5826         * tests/test-atexit.c (atexit): Likewise.
5827         * tests/test-btowc.c (btowc): Likewise.
5828         * tests/test-canonicalize-lgpl.c (realpath)
5829         (canonicalize_file_name): Likewise.
5830         * tests/test-ceilf1.c (ceilf): Likewise.
5831         * tests/test-ceill.c (ceill): Likewise.
5832         * tests/test-chown.c (chown): Likewise.
5833         * tests/test-dprintf-posix.c (dprintf): Likewise.
5834         * tests/test-dup2.c (dup2): Likewise.
5835         * tests/test-dup3.c (dup3): Likewise.
5836         * tests/test-duplocale.c (duplocale): Likewise.
5837         * tests/test-fchdir.c (fchdir): Likewise.
5838         * tests/test-fchownat.c (fchownat): Likewise.
5839         * tests/test-fcntl.c (fcntl): Likewise.
5840         * tests/test-fdopendir.c (fdopendir): Likewise.
5841         * tests/test-fflush.c (fflush): Likewise.
5842         * tests/test-flock.c (flock): Likewise.
5843         * tests/test-floorf1.c (floorf): Likewise.
5844         * tests/test-floorl.c (floorl): Likewise.
5845         * tests/test-fnmatch.c (fnmatch): Likewise.
5846         * tests/test-fopen.c (fopen): Likewise.
5847         * tests/test-fprintf-posix.c (fprintf): Likewise.
5848         * tests/test-freopen.c (freopen): Likewise.
5849         * tests/test-frexp.c (frexp): Likewise.
5850         * tests/test-frexpl.c (frexpl): Likewise.
5851         * tests/test-fseek.c (fseek): Likewise.
5852         * tests/test-fseeko.c (fseeko): Likewise.
5853         * tests/test-fstatat.c (fstatat): Likewise.
5854         * tests/test-fsync.c (fsync): Likewise.
5855         * tests/test-ftell.c (ftell): Likewise.
5856         * tests/test-ftello.c (ftello): Likewise.
5857         * tests/test-futimens.c (futimens): Likewise.
5858         * tests/test-getaddrinfo.c (getaddrinfo, freeaddrinfo)
5859         (gai_strerror): Likewise.
5860         * tests/test-getcwd.c (getcwd): Likewise.
5861         * tests/test-getdelim.c (getdelim): Likewise.
5862         * tests/test-getdtablesize.c (getdtablesize): Likewise.
5863         * tests/test-getgroups.c (getgroups): Likewise.
5864         * tests/test-gethostname.c (gethostname): Likewise.
5865         * tests/test-getline.c (getline): Likewise.
5866         * tests/test-getopt.c (getopt, getopt_long, getopt_long_only):
5867         Likewise.
5868         * tests/test-gettimeofday.c (gettimeofday): Likewise.
5869         * tests/test-glob.c (glob, globfree): Likewise.
5870         * tests/test-iconv.c (iconv, iconv_open, iconv_close): Likewise.
5871         * tests/test-inet_ntop.c (inet_ntop): Likewise.
5872         * tests/test-inet_pton.c (inet_pton): Likewise.
5873         * tests/test-isblank.c (isblank): Likewise.
5874         * tests/test-lchown.c (lchown): Likewise.
5875         * tests/test-ldexpl.c (ldexpl): Likewise.
5876         * tests/test-link.c (link): Likewise.
5877         * tests/test-linkat.c (linkat): Likewise.
5878         * tests/test-lseek.c (lseek): Likewise.
5879         * tests/test-lstat.c (lstat): Likewise.
5880         * tests/test-mbrtowc.c (mbrtowc): Likewise.
5881         * tests/test-mbsinit.c (mbsinit): Likewise.
5882         * tests/test-mbsnrtowcs.c (mbsnrtowcs): Likewise.
5883         * tests/test-mbsrtowcs.c (mbsrtowcs): Likewise.
5884         * tests/test-memchr.c (memchr): Likewise.
5885         * tests/test-memcmp.c (memcmp): Likewise.
5886         * tests/test-memmem.c (memmem): Likewise.
5887         * tests/test-memrchr.c (memrchr): Likewise.
5888         * tests/test-mkdir.c (mkdir): Likewise.
5889         * tests/test-mkdirat.c (mkdirat): Likewise.
5890         * tests/test-mkfifo.c (mkfifo): Likewise.
5891         * tests/test-mkfifoat.c (mkfifoat, mknodat): Likewise.
5892         * tests/test-mknod.c (mknod): Likewise.
5893         * tests/test-nanosleep.c (nanosleep): Likewise.
5894         * tests/test-nl_langinfo.c (nl_langinfo): Likewise.
5895         * tests/test-obstack-printf.c (obstack_printf, obstack_vprintf):
5896         Likewise.
5897         * tests/test-open.c (open): Likewise.
5898         * tests/test-openat.c (openat): Likewise.
5899         * tests/test-perror.c (perror): Likewise.
5900         * tests/test-pipe2.c (pipe2): Likewise.
5901         * tests/test-poll.c (poll): Likewise.
5902         * tests/test-popen.c (popen, pclose): Likewise.
5903         * tests/test-posix_spawn1.c (posix_spawnp, posix_spawnattr_init)
5904         (posix_spawnattr_destroy, posix_spawnattr_setsigmask)
5905         (posix_spawnattr_setflags, posix_spawn_file_actions_init)
5906         (posix_spawn_file_actions_destroy)
5907         (posix_spawn_file_actions_addclose)
5908         (posix_spawn_file_actions_addopen)
5909         (posix_spawn_file_actions_adddup2): Likewise.
5910         * tests/test-posix_spawn3.c (posix_spawn): Likewise.
5911         * tests/test-pread.c (pread): Likewise.
5912         * tests/test-printf-posix.c (printf): Likewise.
5913         * tests/test-pty.c (openpty, forkpty): Likewise.
5914         * tests/test-random_r.c (srandom_r, initstate_r, setstate_r)
5915         (random_r): Likewise.
5916         * tests/test-rawmemchr.c (rawmemchr): Likewise.
5917         * tests/test-readlink.c (readlink): Likewise.
5918         * tests/test-remove.c (remove): Likewise.
5919         * tests/test-rename.c (rename): Likewise.
5920         * tests/test-renameat.c (renameat): Likewise.
5921         * tests/test-rmdir.c (rmdir): Likewise.
5922         * tests/test-round1.c (round): Likewise.
5923         * tests/test-roundf1.c (roundf): Likewise.
5924         * tests/test-roundl.c (roundl): Likewise.
5925         * tests/test-setenv.c (setenv): Likewise.
5926         * tests/test-sigaction.c (sigaction): Likewise.
5927         * tests/test-sleep.c (sleep): Likewise.
5928         * tests/test-snprintf.c (snprintf): Likewise.
5929         * tests/test-sprintf-posix.c (sprintf): Likewise.
5930         * tests/test-stat.c (stat): Likewise.
5931         * tests/test-stpncpy.c (stpncpy): Likewise.
5932         * tests/test-strcasestr.c (strcasestr): Likewise.
5933         * tests/test-strchrnul.c (strchrnul): Likewise.
5934         * tests/test-strerror.c (strerror): Likewise.
5935         * tests/test-strsignal.c (strsignal): Likewise.
5936         * tests/test-strstr.c (strstr): Likewise.
5937         * tests/test-strtod.c (strtod): Likewise.
5938         * tests/test-strverscmp.c (strverscmp): Likewise.
5939         * tests/test-symlink.c (symlink): Likewise.
5940         * tests/test-symlinkat.c (symlinkat, readlinkat): Likewise.
5941         * tests/test-times.c (times): Likewise.
5942         * tests/test-trunc1.c (trunc): Likewise.
5943         * tests/test-truncf1.c (truncf): Likewise.
5944         * tests/test-truncl.c (truncl): Likewise.
5945         * tests/test-tsearch.c (tdelete, tfind, tsearch, twalk):
5946         Likewise.
5947         * tests/test-uname.c (uname): Likewise.
5948         * tests/test-unlink.c (unlink): Likewise.
5949         * tests/test-unlinkat.c (unlinkat): Likewise.
5950         * tests/test-unsetenv.c (unsetenv): Likewise.
5951         * tests/test-usleep.c (usleep): Likewise.
5952         * tests/test-utimensat.c (utimensat): Likewise.
5953         * tests/test-vasprintf.c (asprintf, vasprintf): Likewise.
5954         * tests/test-vdprintf-posix.c (vdprintf): Likewise.
5955         * tests/test-vfprintf-posix.c (vfprintf): Likewise.
5956         * tests/test-vprintf-posix.c (vprintf): Likewise.
5957         * tests/test-vsnprintf.c (vsnprintf): Likewise.
5958         * tests/test-vsprintf-posix.c (vsprintf): Likewise.
5959         * tests/test-wcrtomb.c (wcrtomb): Likewise.
5960         * tests/test-wcsnrtombs.c (wcsnrtombs): Likewise.
5961         * tests/test-wcsrtombs.c (wcsrtombs): Likewise.
5962         * tests/test-wcwidth.c (wcwidth): Likewise.
5963
5964         build: pull in conditional headers during GNULIB_POSIXCHECK
5965         * lib/stdio.in.h (includes): Using GNULIB_POSIXCHECK also requires
5966         definitions from any conditionally-included headers.
5967         * lib/stdlib.in.h (includes): Likewise.
5968         * lib/unistd.in.h (includes): Likewise.
5969
5970 2009-12-24  Bruno Haible  <bruno@clisp.org>
5971
5972         * tests/test-argv-iter.c: Include header file being tested immediately
5973         after config.h.
5974         * tests/test-base64.c: Likewise.
5975         * tests/test-flock.c: Likewise.
5976         * tests/test-fsync.c: Likewise.
5977         * tests/test-getdate.c: Likewise.
5978         * tests/test-getndelim2.c: Likewise.
5979         * tests/test-isfinite.c: Likewise.
5980         * tests/test-isinf.c: Likewise.
5981         * tests/test-strerror.c: Likewise.
5982         * tests/test-strsignal.c: Likewise.
5983
5984 2009-12-23  Eric Blake  <ebb9@byu.net>
5985
5986         unistd: work around cygwin bug
5987         * lib/unistd.in.h (includes): Pick up headers needed for cygwin.
5988         * doc/posix-functions/unlinkat.texi (unlinkat): Document the bug.
5989         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
5990
5991 2009-12-23  Bruno Haible  <bruno@clisp.org>
5992
5993         localename: More tests.
5994         * tests/test-localename.c (SIZEOF): New macro.
5995         (categories): New variable.
5996         (test_locale_name, test_locale_name_posix, test_locale_name_environ,
5997         test_locale_name_default): Add test w.r.t. thread locale.
5998         (test_locale_name_thread): New function.
5999         (main): Invoke it.
6000
6001         localename: Make aware of thread locale.
6002         * lib/localename.h (gl_locale_name_thread): New declaration.
6003         (gl_locale_name, gl_locale_name_posix, gl_locale_name_default): Clarify
6004         behaviour with respect to thread locale.
6005         * lib/localename.c: Include <limits.h>, <stddef.h>, <xlocale.h>,
6006         <langinfo.h>, glthread/lock.h.
6007         (SIZE_BITS): New macro.
6008         (string_hash): New function.
6009         (struct hash_node): New type.
6010         (HASH_TABLE_SIZE): New macro.
6011         (struniq_hash_table, struniq_lock): New variables.
6012         (struniq): New function.
6013         (gl_locale_name_thread): New function.
6014         (gl_locale_name): Invoke it.
6015         * m4/localename.m4 (gl_LOCALENAME): Test for uselocale function.
6016         * modules/localename (Depends-on): Add lock.
6017         Reported by Mike Gran <spk121@yahoo.com>.
6018
6019 2009-12-23  Eric Blake  <ebb9@byu.net>
6020
6021         va-args: new module
6022         * modules/va-args: New file.
6023         * m4/va-args.m4 (gl_VA_ARGS): Likewise.
6024         * MODULES.html.sh (Core language properties): Mention it.
6025
6026         gnulib-common: prefer _GL_UNUSED over _UNUSED_PARAMETER_
6027         * m4/gnulib-common.m4 (gl_COMMON): Create a more-appropriately
6028         named alias for __attribute__((__unused__)).
6029         * lib/chown.c: Update client.
6030         * lib/fchmodat.c: Likewise.
6031         * lib/fts.c: Likewise.
6032         * lib/getdate.y: Likewise.
6033         * lib/getgroups.c: Likewise.
6034         * lib/getopt.c: Likewise.
6035         * lib/getugroups.c: Likewise.
6036         * lib/mkdir.c: Likewise.
6037         * lib/mkfifo.c: Likewise.
6038         * lib/mkfifoat.c: Likewise.
6039         * lib/mknod.c: Likewise.
6040         * lib/mknodat.c: Likewise.
6041         * lib/readlink.c: Likewise.
6042         * lib/se-context.in.h: Likewise.
6043         * lib/se-selinux.in.h: Likewise.
6044         * lib/sockets.c: Likewise.
6045         * lib/symlink.c: Likewise.
6046         * lib/symlinkat.c: Likewise.
6047         * lib/unicodeio.c: Likewise.
6048         * lib/unistr.h: Likewise.
6049         * tests/test-areadlink.c: Likewise.
6050         * tests/test-areadlinkat.c: Likewise.
6051         * tests/test-filenamecat.c: Likewise.
6052         * tests/test-fseeko.c: Likewise.
6053         * tests/test-ftello.c: Likewise.
6054         * tests/test-getdate.c: Likewise.
6055         * tests/test-getgroups.c: Likewise.
6056         * tests/test-gethostname.c: Likewise.
6057         * tests/test-quotearg.c: Likewise.
6058         * tests/test-version-etc.c: Likewise.
6059         * tests/test-xalloc-die.c: Likewise.
6060         * tests/test-xfprintf-posix.c: Likewise.
6061         * tests/test-xprintf-posix.c: Likewise.
6062         * tests/test-xvasprintf.c: Likewise.
6063
6064         tests: avoid compiler warnings
6065         * tests/test-fcntl.c (main): Delete unused parameters.
6066         * tests/test-freopen-safer.c (main): Likewise.
6067         * tests/test-xalloc-die.c (main): Mark unused parameters.
6068         * tests/test-fseeko.c (main): Likewise.
6069         * tests/test-ftello.c (main): Likewise.
6070         * tests/test-nanosleep.c (main): Avoid declaration warning.
6071         * tests/test-sleep.c (main): Likewise.
6072         * tests/test-unsetenv.c (main): Silence warning about string
6073         literal.
6074         * m4/setenv.m4 (gl_FUNC_UNSETENV): Likewise.
6075
6076 2009-12-23  Bruno Haible  <bruno@clisp.org>
6077
6078         * tests/test-localename.c (test_locale_name): New function, extracted
6079         from main. Also test mixed situations.
6080         (test_locale_name_posix, test_locale_name_environ,
6081         test_locale_name_default): New functions.
6082         (main): Invoke them all.
6083         * modules/localename-tests (configure.ac): Test for newlocale.
6084
6085 2009-12-23  Bruno Haible  <bruno@clisp.org>
6086
6087         unistd: Ensure getcwd gets declared before being overridden.
6088         * lib/unistd.in.h: Conditionally include <io.h>.
6089
6090 2009-12-22  Bruno Haible  <bruno@clisp.org>
6091
6092         wchar: Diagnose broken combination of glibc and gcc versions and flags.
6093         * m4/wchar.m4 (gl_WCHAR_H_INLINE_OK): New macro.
6094         (gl_WCHAR_H): Invoke it.
6095         * m4/btowc.m4 (gl_FUNC_BTOWC): Require it.
6096         * doc/posix-headers/wchar.texi: Mention the interoperability problem.
6097         Reported by Karl Berry <karl@freefriends.org>.
6098
6099 2009-12-22  Eric Blake  <ebb9@byu.net>
6100
6101         math, unistd: avoid redundant includes
6102         * lib/math.in.h (isnan): No need to re-include <math.h>.
6103         * lib/unistd.in.h (getcwd): Likewise, for <stdlib.h>.
6104
6105         getsubopt: work around cygwin bug
6106         * lib/stdlib.in.h (includes): Move unistd inclusion sooner, to
6107         avoid conflicting with system getsubopt.
6108         * doc/posix-functions/getsubopt.texi (getsubopt): Document the
6109         bug.
6110
6111         getopt: synchronize from glibc
6112         * lib/getopt.c (_getopt_initialize, _getopt_internal_r): Swap
6113         parameter order.  Adjust all callers.
6114         (_getopt_internal_r, main): Adjust quoting in error messages.
6115         Drop considerations for outdated POSIX 1003.2 error message.
6116         * lib/getopt1.c (_getopt_long_r, _getopt_long_only_r): Adjust
6117         callers.
6118         * lib/getopt_int.h (_getopt_internal_r): Adjust prototype.
6119
6120         test-getopt: test stderr behavior
6121         * modules/getopt-posix-tests (Depends-on): Add dup2.
6122         * tests/test-getopt.c (ASSERT): Avoid stderr.
6123         (main): Move stderr to a temporary file.
6124         * tests/test-getopt.h (getopt_loop): No longer manipulate opterr.
6125         Instead, add parameter to inform caller if output occurred.
6126         (test_getopt): Adjust all existing tests to expect silence, and
6127         add new tests of leading ":".
6128         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
6129         glibc shortcomings with leading "-:" or "+:" in optstring.
6130         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
6131         Likewise.
6132         * doc/posix-functions/getopt.texi (getopt): Likewise.
6133
6134         test-getopt: enhance test
6135         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require that getopt_long
6136         supports optind=0.
6137         * tests/test-getopt.c (OPTIND_MIN): Move...
6138         * tests/test-getopt.h (OPTIND_MIN): ...here.
6139         * tests/test-getopt_long.h (test_getopt_long): Add more coverage.
6140         Require that optind=0 works, since modern BSD supports it in
6141         addition to optreset, and since coreutils expects it.
6142         (test_getopt_long_only): New test.
6143         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
6144         glibc shortcomings with 'W;', and enforcement of optind=0.
6145         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
6146         Likewise.
6147
6148 2009-12-21  Bruno Haible  <bruno@clisp.org>
6149
6150         localename: Improvements for MacOS X and Cygwin.
6151         * lib/localename.h (gl_locale_name_environ): New declaration.
6152         * lib/localename.c (gl_locale_name_environ): New function, extracted from
6153         gl_locale_name_posix. Ignore dummy LANG values on MacOS X and Cygwin.
6154         (gl_locale_name_posix): Invoke it.
6155         (gl_locale_name_default): Add comments. Use Windows native API also on
6156         Cygwin.
6157
6158 2009-12-21  Bruno Haible  <bruno@clisp.org>
6159
6160         Update list of Win32 locale ids.
6161         * lib/localename.c (LANG_ROMANSH): Renamed from LANG_RHAETO_ROMANCE.
6162         (LANG_SAMI): Renamed from LANG_SAAMI.
6163         (LANG_BASHKIR, LANG_LUXEMBOURGISH, LANG_GREENLANDIC,
6164         LANG_MAPUDUNGUN, LANG_MOHAWK, LANG_BRETON, LANG_OCCITAN, LANG_CORSICAN,
6165         LANG_ALSATIAN, LANG_YAKUT, LANG_KICHE, LANG_KINYARWANDA, LANG_WOLOF,
6166         LANG_DARI, LANG_SCOTTISH_GAELIC): New macros.
6167         (SUBLANG_AFRIKAANS_SOUTH_AFRICA, SUBLANG_ALBANIAN_ALBANIA,
6168         SUBLANG_ALSATIAN_FRANCE, SUBLANG_AMHARIC_ETHIOPIA,
6169         SUBLANG_ARMENIAN_ARMENIA, SUBLANG_ASSAMESE_INDIA,
6170         SUBLANG_BASHKIR_RUSSIA, SUBLANG_BASQUE_BASQUE,
6171         SUBLANG_BELARUSIAN_BELARUS, SUBLANG_BRETON_FRANCE,
6172         SUBLANG_BULGARIAN_BULGARIA, SUBLANG_CAMBODIAN_CAMBODIA,
6173         SUBLANG_CATALAN_SPAIN, SUBLANG_CORSICAN_FRANCE,
6174         SUBLANG_CZECH_CZECH_REPUBLIC, SUBLANG_DANISH_DENMARK,
6175         SUBLANG_DARI_AFGHANISTAN, SUBLANG_DIVEHI_MALDIVES,
6176         SUBLANG_DUTCH_SURINAM, SUBLANG_ESTONIAN_ESTONIA,
6177         SUBLANG_FAEROESE_FAROE_ISLANDS, SUBLANG_FARSI_IRAN,
6178         SUBLANG_FINNISH_FINLAND, SUBLANG_FRISIAN_NETHERLANDS,
6179         SUBLANG_GALICIAN_SPAIN, SUBLANG_GEORGIAN_GEORGIA,
6180         SUBLANG_GREEK_GREECE, SUBLANG_GREENLANDIC_GREENLAND,
6181         SUBLANG_GUJARATI_INDIA, SUBLANG_HAUSA_NIGERIA_LATIN,
6182         SUBLANG_HEBREW_ISRAEL, SUBLANG_HINDI_INDIA, SUBLANG_HUNGARIAN_HUNGARY,
6183         SUBLANG_ICELANDIC_ICELAND, SUBLANG_IGBO_NIGERIA,
6184         SUBLANG_INDONESIAN_INDONESIA, SUBLANG_INUKTITUT_CANADA,
6185         SUBLANG_INUKTITUT_CANADA_LATIN, SUBLANG_IRISH_IRELAND,
6186         SUBLANG_JAPANESE_JAPAN, SUBLANG_KANNADA_INDIA,
6187         SUBLANG_KAZAK_KAZAKHSTAN, SUBLANG_KICHE_GUATEMALA,
6188         SUBLANG_KINYARWANDA_RWANDA, SUBLANG_KONKANI_INDIA,
6189         SUBLANG_KYRGYZ_KYRGYZSTAN, SUBLANG_LAO_LAOS, SUBLANG_LATVIAN_LATVIA,
6190         SUBLANG_LITHUANIAN_LITHUANIA, SUBLANG_LOWER_SORBIAN_GERMANY,
6191         SUBLANG_LUXEMBOURGISH_LUXEMBOURG, SUBLANG_MACEDONIAN_MACEDONIA,
6192         SUBLANG_MALAYALAM_INDIA, SUBLANG_MALTESE_MALTA,
6193         SUBLANG_MAORI_NEW_ZEALAND, SUBLANG_MAPUDUNGUN_CHILE,
6194         SUBLANG_MARATHI_INDIA, SUBLANG_MOHAWK_CANADA, SUBLANG_NEPALI_NEPAL,
6195         SUBLANG_OCCITAN_FRANCE, SUBLANG_ORIYA_INDIA,
6196         SUBLANG_PASHTO_AFGHANISTAN, SUBLANG_POLISH_POLAND,
6197         SUBLANG_ROMANSH_SWITZERLAND, SUBLANG_SAMI_NORTHERN_NORWAY,
6198         SUBLANG_SAMI_NORTHERN_SWEDEN, SUBLANG_SAMI_NORTHERN_FINLAND,
6199         SUBLANG_SAMI_LULE_NORWAY, SUBLANG_SAMI_LULE_SWEDEN,
6200         SUBLANG_SAMI_SOUTHERN_NORWAY, SUBLANG_SAMI_SOUTHERN_SWEDEN,
6201         SUBLANG_SAMI_SKOLT_FINLAND, SUBLANG_SAMI_INARI_FINLAND,
6202         SUBLANG_SANSKRIT_INDIA, SUBLANG_SINHALESE_SRI_LANKA,
6203         SUBLANG_SLOVAK_SLOVAKIA, SUBLANG_SLOVENIAN_SLOVENIA,
6204         SUBLANG_SOTHO_SOUTH_AFRICA, SUBLANG_SWAHILI_KENYA,
6205         SUBLANG_SWEDISH_SWEDEN, SUBLANG_SYRIAC_SYRIA,
6206         SUBLANG_TAGALOG_PHILIPPINES, SUBLANG_TAJIK_TAJIKISTAN,
6207         SUBLANG_TAMIL_INDIA, SUBLANG_TATAR_RUSSIA, SUBLANG_TELUGU_INDIA,
6208         SUBLANG_THAI_THAILAND, SUBLANG_TSWANA_SOUTH_AFRICA,
6209         SUBLANG_TURKISH_TURKEY, SUBLANG_TURKMEN_TURKMENISTAN,
6210         SUBLANG_UKRAINIAN_UKRAINE, SUBLANG_UPPER_SORBIAN_GERMANY,
6211         SUBLANG_VIETNAMESE_VIETNAM, SUBLANG_WELSH_UNITED_KINGDOM,
6212         SUBLANG_WOLOF_SENEGAL, SUBLANG_XHOSA_SOUTH_AFRICA,
6213         SUBLANG_YAKUT_RUSSIA, SUBLANG_YI_PRC, SUBLANG_YORUBA_NIGERIA,
6214         SUBLANG_ZULU_SOUTH_AFRICA): New macros.
6215         (gl_locale_name_from_win32_LANGID): Handle also the territory neutral
6216         locale ids. Add support for Alsatian, Bashkir, Breton, Corsican, Dari,
6217         Greenlandic, K'iche', Kinyarwanda, Luxembourgish, Mapudungun, Mohawk,
6218         Occitan, Scottish Gaelic, Wolof, Yakut. Change language code for Yi.
6219         Add more languages and countries for Sami, Sorbian. Add more countries
6220         for Serbian, Dutch. Add more scripts for Inuktitut. Be more precise
6221         for Pashto. Change country for Syriac, Tswana.
6222
6223 2009-12-21  Eric Blake  <ebb9@byu.net>
6224
6225         test-utimens: avoid spurious failure
6226         * tests/test-chown.h (nap): Factor...
6227         * tests/nap.h: ...into new file.
6228         * tests/test-lchown.h (nap): Avoid duplication.
6229         * tests/test-utimens-common.h (nap): Use shared implementation,
6230         necessary on file systems with 1-second resolution.
6231         * modules/chown-tests (Files): Include new file.
6232         * modules/fdutimensat-tests (Files): Likewise.
6233         * modules/futimens-tests (Files): Likewise.
6234         * modules/lchown-tests (Files): Likewise.
6235         * modules/openat-tests (Files): Likewise.
6236         * modules/utimens-tests (Files): Likewise.
6237         * modules/utimensat-tests (Files): Likewise.
6238
6239 2009-12-19  Eric Blake  <ebb9@byu.net>
6240
6241         futimens, utimensat: work around Linux bug
6242         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Detect ctime bug.
6243         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
6244         * lib/utimensat.c (rpl_utimensat): Work around it.
6245         * lib/futimens.c (rpl_futimens): Adjust comment.
6246
6247         utimens: work around Linux ctime bug
6248         * lib/utimens.c (detect_ctime_bug): New helper function.
6249         (update_timespec): Differentiate between workaround needed for
6250         this bug vs. what is needed for systems that lack utimensat.
6251         (fdutimens, lutimens): Work around bug.
6252
6253         utimens: check for ctime update
6254         * tests/test-utimens-common.h (check_ctime): Define.
6255         * tests/test-utimens.h (test_utimens): Expose the Linux bug.
6256         * tests/test-futimens.h (test_futimens): Likewise.
6257         * tests/test-lutimens.h (test_lutimens): Likewise.
6258         * doc/posix-functions/futimens.texi (futimens): Document the bug.
6259         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
6260
6261 2009-12-19  Bruno Haible  <bruno@clisp.org>
6262
6263         dprintf-posix: Check against memory leak fixed on 2009-12-15.
6264         * tests/test-dprintf-posix2.sh: New file.
6265         * tests/test-dprintf-posix2.c: New file.
6266         * modules/dprintf-posix-tests (Files): Add them.
6267         (configure.ac): Check for getrlimit and setrlimit.
6268         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
6269
6270 2009-12-19  Bruno Haible  <bruno@clisp.org>
6271
6272         fprintf-posix: Check against memory leak fixed on 2009-12-15.
6273         * tests/test-fprintf-posix3.sh: New file.
6274         * tests/test-fprintf-posix3.c: New file.
6275         * modules/fprintf-posix-tests (Files): Add them.
6276         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
6277
6278 2009-12-19  Eric Blake  <ebb9@byu.net>
6279
6280         dirfd: fix prototype
6281         * lib/dirent.in.h (dirfd): Argument is not const, per POSIX.
6282         * lib/dirfd.c (dirfd): Likewise.
6283
6284         canonicalize: reduce memory usage
6285         * lib/canonicalize.c (canonicalize_filename_mode): Trim the
6286         allocation to size.
6287         Reported by Solar Designer <solar@openwall.com>.
6288
6289 2009-12-19  Bruno Haible  <bruno@clisp.org>
6290
6291         New module attribute 'Applicability'.
6292         * modules/TEMPLATE-EXTENDED: New field 'Applicability'.
6293         * gnulib-tool: New option --extract-applicability.
6294         (func_usage): Document it.
6295         (sed_extract_prog): Recognize it.
6296         (func_get_applicability): New function.
6297         (func_import): Generalize handling of 'link-warning' module.
6298         * modules/link-warning (Applicability): New section.
6299         * modules/arg-nonnull (Applicability): New section.
6300         Repoted by Simon Josefsson <simon@josefsson.org>.
6301
6302 2009-12-19  Bruno Haible  <bruno@clisp.org>
6303
6304         fflush: tweak
6305         * lib/fflush.c (update_fpos_cache): Don't use fpos_t on Cygwin.
6306         * lib/fseeko.c (rpl_fseeko): Likewise.
6307
6308 2009-12-16  José E. Marchesi  <jemarch@gnu.org>  (tiny change)
6309
6310         * lib/gl_list.h: Fix typo in comment.
6311
6312 2009-12-16  Eric Blake  <ebb9@byu.net>
6313
6314         fcntl: use to simplify other modules
6315         * modules/cloexec (Depends-on): Add fcntl.
6316         * modules/fchdir (Depends-on): Likewise.
6317         * modules/fd-safer-flag (Depends-on): Likewise.
6318         * modules/unistd-safer (Depends-on): Likewise.
6319         * modules/dup3 (configure.ac): Set module indicator.
6320         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Replace fcntl if fchdir is
6321         missing.
6322         * lib/fchdir.c (_gl_register_dup): Fix comment.
6323         * lib/cloexec.c (dup_cloexec): Simplify, by relying on fcntl.
6324         * lib/dup-safer.c (dup_safer): Likewise.
6325         * lib/dup-safer-flag.c (dup_safer_flag): Likewise.
6326         * lib/dup3.c (dup3): Likewise.
6327         * tests/test-fchdir.c (main): Enhance test.
6328         Fixes a dup_cloexec bug reported by Ondřej Vašík.
6329
6330         fcntl: port portions of fcntl to mingw
6331         * m4/fcntl.m4 (gl_FUNC_FCNTL): Also build fcntl.c on mingw.
6332         * lib/fcntl.c (fcntl) <F_DUPFD, F_DUPFD_CLOEXEC, F_GETFD>: Provide
6333         replacement for mingw.
6334         * modules/fcntl (Description): Update.
6335         (Depends-on): Add dup2.
6336         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness.
6337         * modules/fcntl-h (Makefile.am): Substitute it.
6338         * lib/fcntl.in.h (fcntl): Update declaration.
6339         (F_DUPFD, F_GETFD): New macros, when needed.
6340         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
6341         * doc/posix-functions/fcntl.texi (fcntl): Likewise.
6342         * tests/test-fcntl.c (check_flags, main): Enhance test for items
6343         we now guarantee.
6344
6345         fcntl: work around cygwin bug in F_DUPFD
6346         * m4/fcntl.m4 (gl_REPLACE_FCNTL): New macro.
6347         (gl_FUNC_FCNTL): Use it.  Test for F_DUPFD bug.
6348         * lib/fcntl.c (rpl_fcntl) <F_DUPFD>: Work around it.
6349         <F_DUPFD_CLOEXEC>: Reduce calls to _gl_register_dup.
6350         * doc/posix-functions/fcntl.texi (fcntl): Document it.
6351
6352         fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
6353         * modules/fcntl (Files): List new files.
6354         (configure.ac): Run a test.
6355         * m4/fcntl.m4 (gl_FUNC_FCNTL): New file.
6356         * lib/fcntl.c (rpl_fcntl): Likewise.
6357         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness defaults.
6358         (gl_FCNTL_H): Always replace fcntl.h.
6359         * modules/fcntl-h (Makefile.am): Substitute witnesses.
6360         * lib/fcntl.in.h (fcntl): Declare replacement.
6361         (F_DUPFD_CLOEXEC, GNULIB_defined_F_DUPFD_CLOEXEC): New macro when
6362         needed, plus a witness.
6363         * doc/posix-functions/fcntl.texi (fcntl): Document this.
6364         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
6365         * tests/test-fcntl.c: New file.
6366         * modules/fcntl-tests: Likewise.
6367
6368         binary-io: avoid potential compilation warning
6369         * lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
6370         directives.
6371
6372         fflush: avoid compilation error on NetBSD
6373         * lib/fflush.c (update_fpos_cache): Use a union to safely convert
6374         between off_t and fpos_t, since the latter is sometimes a struct.
6375         * lib/fseeko.c (rpl_fseeko): Likewise.
6376         Reported by Alexander Nasonov <alnsn@yandex.ru>.
6377
6378 2009-12-15  Eric Blake  <ebb9@byu.net>
6379
6380         fcntl-h, stdio, sys_ioctl: fix declarations
6381         * lib/stdio.in.h (dprintf): Use of link warning on a variadic
6382         function must not take arguments.
6383         * lib/sys_ioctl.in.h (ioctl): Likewise.
6384         * lib/fcntl.in.h (openat): Likewise.  Declare extern.
6385         (open): Add a link warning.
6386
6387 2009-12-15  Jim Meyering  <meyering@redhat.com>
6388
6389         areadlink, areadlink-with-size: relax license to LGPLv2+
6390         * modules/areadlink (License): Relax to LGPLv2+.
6391         * modules/areadlink-with-size (License): Likewise.
6392
6393 2009-12-15  Joel E. Denny  <jdenny@clemson.edu>
6394             Bruno Haible  <bruno@clisp.org>
6395
6396         *printf: Fix memory leak.
6397         * lib/fprintf.c (fprintf): Free memory allocated by vasnprintf.
6398         * lib/vfprintf.c (vfprintf): Likewise.
6399         * lib/dprintf.c (dprintf): Likewise.
6400         * lib/vdprintf.c (vdprintf): Likewise.
6401
6402 2009-12-14  Eric Blake  <ebb9@byu.net>
6403
6404         accept4: adjust module dependencies
6405         * modules/accept4 (Depends-on): Use fcntl-h, not fcntl.
6406
6407         utimens: one more try at avoiding compiler warning
6408         * lib/utimens.c (lutimens): Lower scope of result.
6409
6410 2009-12-13  Bruno Haible  <bruno@clisp.org>
6411
6412         Move the malloc checking from module 'list' to new module 'xlist'.
6413         * modules/xlist: New file.
6414         * lib/gl_xlist.h: New file.
6415         * lib/gl_xlist.c: New file.
6416         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
6417         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
6418         gl_list_add_last, gl_list_add_before, gl_list_add_after,
6419         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
6420         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
6421         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
6422         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
6423         gl_sortedlist_nx_add): New declarations.
6424         (struct gl_list_implementation): Rename and change methods accordingly.
6425         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
6426         (gl_list_nx_create): Renamed from gl_list_create.
6427         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
6428         (gl_list_nx_set_at): Renamed from gl_list_set_at.
6429         (gl_list_nx_add_first): Renamed from gl_list_add_first.
6430         (gl_list_nx_add_last): Renamed from gl_list_add_last.
6431         (gl_list_nx_add_before): Renamed from gl_list_add_before.
6432         (gl_list_nx_add_after): Renamed from gl_list_add_after.
6433         (gl_list_nx_add_at): Renamed from gl_list_add_at.
6434         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
6435         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
6436         gl_list_create_empty.
6437         (gl_list_nx_create): Renamed from gl_list_create.
6438         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
6439         (gl_list_nx_set_at): Renamed from gl_list_set_at.
6440         (gl_list_nx_add_first): Renamed from gl_list_add_first.
6441         (gl_list_nx_add_last): Renamed from gl_list_add_last.
6442         (gl_list_nx_add_before): Renamed from gl_list_add_before.
6443         (gl_list_nx_add_after): Renamed from gl_list_add_after.
6444         (gl_list_nx_add_at): Renamed from gl_list_add_at.
6445         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
6446         * lib/gl_array_list.c: Don't include xalloc.h.
6447         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
6448         NULL upon out-of-memory.
6449         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
6450         out-of-memory.
6451         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
6452         Change return type to 'int'.
6453         (gl_array_nx_set_at): Renamed from gl_array_set_at.
6454         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
6455         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
6456         upon out-of-memory.
6457         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
6458         upon out-of-memory.
6459         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
6460         upon out-of-memory.
6461         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
6462         upon out-of-memory.
6463         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
6464         out-of-memory.
6465         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
6466         Update.
6467         (gl_array_list_implementation): Update.
6468         * lib/gl_carray_list.c: Don't include xalloc.h.
6469         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
6470         Return NULL upon out-of-memory.
6471         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
6472         out-of-memory.
6473         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
6474         Change return type to 'int'.
6475         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
6476         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
6477         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
6478         upon out-of-memory.
6479         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
6480         upon out-of-memory.
6481         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
6482         out-of-memory.
6483         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
6484         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
6485         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
6486         Update.
6487         (gl_carray_list_implementation): Update.
6488         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
6489         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
6490         gl_linked_create_empty. Return NULL upon out-of-memory.
6491         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
6492         out-of-memory.
6493         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
6494         Change return type to 'int'. Return -1 upon out-of-memory.
6495         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
6496         out-of-memory.
6497         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
6498         upon out-of-memory.
6499         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
6500         upon out-of-memory.
6501         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
6502         NULL upon out-of-memory.
6503         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
6504         upon out-of-memory.
6505         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
6506         out-of-memory.
6507         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
6508         Update.
6509         * lib/gl_linked_list.c: Don't include xalloc.h.
6510         (gl_linked_list_implementation): Update.
6511         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
6512         (add_to_bucket): Change return type to 'int'.
6513         (gl_linkedhash_list_implementation): Update.
6514         * lib/gl_anytree_list1.h (free_subtree): New function.
6515         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
6516         gl_tree_create_empty. Return NULL upon out-of-memory.
6517         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
6518         Change return type to 'int'. Return -1 upon out-of-memory.
6519         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
6520         out-of-memory.
6521         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
6522         (gl_tree_remove_node): New function, moved here from
6523         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
6524         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
6525         Update.
6526         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
6527         malloc, not xmalloc. Return NULL upon out-of-memory.
6528         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
6529         out-of-memory.
6530         (gl_tree_remove_node_from_tree): New function, extracted from
6531         gl_tree_remove_node.
6532         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
6533         upon out-of-memory.
6534         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
6535         out-of-memory.
6536         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
6537         upon out-of-memory.
6538         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
6539         upon out-of-memory.
6540         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
6541         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
6542         not xmalloc. Return NULL upon out-of-memory.
6543         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
6544         out-of-memory.
6545         (gl_tree_remove_node_from_tree): New function, extracted from
6546         gl_tree_remove_node.
6547         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
6548         upon out-of-memory.
6549         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
6550         out-of-memory.
6551         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
6552         upon out-of-memory.
6553         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
6554         upon out-of-memory.
6555         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
6556         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
6557         gl_anytree_list1.h before gl_anyavltree_list2.h.
6558         (gl_avltree_list_implementation): Update.
6559         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
6560         gl_anytree_list1.h before gl_anyavltree_list2.h.
6561         (gl_rbtree_list_implementation): Update.
6562         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
6563         Change return type to 'int'. Return -1 upon out-of-memory. Use
6564         __builtin_expect.
6565         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
6566         (gl_avltreehash_list_implementation): Update.
6567         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
6568         (gl_rbtreehash_list_implementation): Update.
6569         * modules/array-list (Depends-on): Remove xalloc.
6570         * modules/carray-list (Depends-on): Likewise.
6571         * modules/linked-list (Depends-on): Likewise.
6572         * modules/linkedhash-list (Depends-on): Likewise.
6573         * modules/avltree-list (Depends-on): Likewise.
6574         * modules/rbtree-list (Depends-on): Likewise.
6575         * modules/avltreehash-list (Depends-on): Likewise.
6576         * modules/rbtreehash-list (Depends-on): Likewise.
6577
6578         * modules/xsublist: New file.
6579         * lib/gl_xsublist.h: New file.
6580         * lib/gl_xsublist.c: New file.
6581         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
6582         (gl_sublist_nx_create): New declaration.
6583         * lib/gl_sublist.c: Don't include xalloc.h.
6584         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
6585         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
6586         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
6587         Change return type to 'int'. Return -1 upon out-of-memory.
6588         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
6589         upon out-of-memory.
6590         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
6591         NULL upon out-of-memory.
6592         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
6593         upon out-of-memory.
6594         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
6595         NULL upon out-of-memory.
6596         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
6597         NULL upon out-of-memory.
6598         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
6599         upon out-of-memory.
6600         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
6601         (gl_sublist_list_implementation): Update.
6602         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
6603         upon out-of-memory.
6604         * modules/sublist (Depends-on): Remove xalloc.
6605
6606         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
6607         * tests/test-carray_list.c: Likewise.
6608         * tests/test-linked_list.c: Likewise.
6609         * tests/test-linkedhash_list.c: Likewise.
6610         * tests/test-avltree_list.c: Likewise.
6611         * tests/test-rbtree_list.c: Likewise.
6612         * tests/test-avltreehash_list.c: Likewise.
6613         * tests/test-rbtreehash_list.c: Likewise.
6614         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
6615         * modules/carray-list-tests (Makefile.am): Likewise.
6616         * modules/linked-list-tests (Makefile.am): Likewise.
6617         * modules/linkedhash-list-tests (Makefile.am): Likewise.
6618         * modules/avltree-list-tests (Makefile.am): Likewise.
6619         * modules/rbtree-list-tests (Makefile.am): Likewise.
6620         * modules/avltreehash-list-tests (Makefile.am): Likewise.
6621         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
6622
6623         * NEWS: Mention the changes.
6624
6625         * lib/clean-temp.c: Include gl_xlist.h.
6626         * modules/clean-temp (Depends-on): Add xlist.
6627
6628         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
6629         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
6630
6631         * tests/test-array_oset.c: Include gl_xlist.h.
6632         * modules/array-oset-tests (Depends-on): Add xlist.
6633
6634         Reported by José E. Marchesi <jemarch@gnu.org>.
6635
6636 2009-12-13  Bruno Haible  <bruno@clisp.org>
6637
6638         Move the malloc checking from module 'oset' to new module 'xoset'.
6639         * modules/xoset: New file.
6640         * lib/gl_xoset.h: New file.
6641         * lib/gl_xoset.c: New file.
6642         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
6643         declarations.
6644         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
6645         (struct gl_oset_implementation): Rename and change methods accordingly.
6646         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
6647         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
6648         'int'. Mark as __warn_unused_result__.
6649         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
6650         gl_oset_create_empty.
6651         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
6652         'int'.
6653         * lib/gl_array_oset.c: Don't include xalloc.h.
6654         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
6655         malloc, not xmalloc.
6656         (grow): Change return type to 'int'. Don't call xalloc_die.
6657         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
6658         to 'int'.
6659         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
6660         'int'.
6661         (gl_array_oset_implementation): Update.
6662         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
6663         gl_tree_create_empty.
6664         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
6665         'int'.
6666         * lib/gl_avltree_oset.c: Don't include xalloc.h.
6667         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
6668         xmalloc.
6669         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
6670         not xmalloc.
6671         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
6672         xmalloc.
6673         (gl_avltree_oset_implementation): Update.
6674         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
6675         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
6676         xmalloc.
6677         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
6678         not xmalloc.
6679         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
6680         xmalloc.
6681         (gl_rbtree_oset_implementation): Update.
6682         * modules/array-oset (Depends-on): Remove xalloc.
6683         * modules/avltree-oset (Depends-on): Likewise.
6684         * modules/rbtree-oset (Depends-on): Likewise.
6685         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
6686         * tests/test-avltree_oset.c: Likewise.
6687         * tests/test-rbtree_oset.c: Likewise.
6688         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
6689         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
6690         * modules/rbtree-oset-tests (Makefile.am): Likewise.
6691         * NEWS: Mention the change.
6692
6693 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
6694
6695         maint.mk: allow a project to override release-prep commands
6696         * top/maint.mk (alpha, beta, stable): Move release-preparatory
6697         commands into a new rule.
6698         (release-prep): New rule.
6699         (release-prep-hook): New overridable variable.
6700
6701 2009-12-13  Bruno Haible  <bruno@clisp.org>
6702
6703         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
6704
6705 2009-12-13  Jim Meyering  <meyering@redhat.com>
6706
6707         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
6708         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
6709
6710 2009-12-12  Bruno Haible  <bruno@clisp.org>
6711
6712         duplocale: Tweak.
6713         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
6714
6715 2009-12-12  Karl Berry  <karl@gnu.org>
6716
6717         * config/srclist.txt (strtoll.c): tab changes, no more sync.
6718
6719 2009-12-12  Bruno Haible  <bruno@clisp.org>
6720
6721         * m4/po.m4: Undo incorrect untabification.
6722
6723 2009-12-12  Bruno Haible  <bruno@clisp.org>
6724
6725         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
6726         * modules/c-strtod (Depends-on): Add locale.
6727         * modules/c-strtold (Depends-on): Likewise.
6728
6729 2009-12-12  Bruno Haible  <bruno@clisp.org>
6730
6731         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
6732
6733 2009-12-11  Eric Blake  <ebb9@byu.net>
6734
6735         setenv: relax requirement in light of POSIX ruling
6736         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
6737         not NULL.
6738         * tests/test-setenv.c (main): Relax test.
6739         * tests/test-unsetenv.c (main): Likewise.
6740         * doc/posix-functions/setenv.texi (setenv): Document this.
6741         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
6742
6743 2009-12-11  Bruno Haible  <bruno@clisp.org>
6744
6745         New module 'fd-safer-flag'.
6746         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
6747         * lib/dup-safer.c (dup_safer_flag): Remove function.
6748         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
6749         * lib/fd-safer.c (fd_safer_flag): Remove function.
6750         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
6751         * modules/cloexec (configure.ac): Drop indicator macro.
6752         * modules/fd-safer-flag: New file.
6753         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
6754         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
6755         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
6756
6757 2009-12-11  Bruno Haible  <bruno@clisp.org>
6758
6759         Tests for module 'nl_langinfo'.
6760         * modules/nl_langinfo-tests: New file.
6761         * tests/test-nl_langinfo.sh: New file.
6762         * tests/test-nl_langinfo.c: New file.
6763
6764         New module 'nl_langinfo'.
6765         * lib/nl_langinfo.c: New file.
6766         * m4/nl_langinfo.m4: New file.
6767         * modules/nl_langinfo: New file.
6768         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
6769
6770 2009-12-11  Bruno Haible  <bruno@clisp.org>
6771
6772         Tests for module 'langinfo'.
6773         * modules/langinfo-tests: New file.
6774         * tests/test-langinfo.c: New file.
6775
6776         New module 'langinfo'.
6777         * lib/langinfo.in.h: New file.
6778         * m4/langinfo_h.m4: New file.
6779         * modules/langinfo: New file.
6780         * doc/posix-headers/langinfo.texi: Mention the new module.
6781
6782 2009-12-11  Bruno Haible  <bruno@clisp.org>
6783
6784         * lib/config.charset: Untabify.
6785
6786 2009-12-11  Bruno Haible  <bruno@clisp.org>
6787
6788         * modules/unistd-safer (configure.ac): Drop indicator macro.
6789
6790 2009-12-11  Bruno Haible  <bruno@clisp.org>
6791
6792         Move pipe2-safer code to its own file.
6793         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
6794         * lib/pipe-safer.c (pipe2_safer): Remove function.
6795         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
6796         (Makefile.am): Add it to lib_SOURCES.
6797
6798 2009-12-10  Bruno Haible  <bruno@clisp.org>
6799
6800         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
6801
6802 2009-12-10  Bruno Haible  <bruno@clisp.org>
6803
6804         Declare which arguments expect non-NULL values, for GCC and clang.
6805         * build-aux/arg-nonnull.h: New file.
6806         * modules/arg-nonnull: New file.
6807         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
6808         (inet_ntop, inet_pton): Use it.
6809         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
6810         (closedir, dirfd, opendir, scandir, alphasort): Use it.
6811         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
6812         (open, openat): Use it.
6813         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
6814         (fnmatch): Use it.
6815         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
6816         (getopt, getopt_long, getopt_long_only): Use it.
6817         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
6818         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
6819         Use it.
6820         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
6821         (iconv_open): Use it.
6822         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
6823         (strtoimax, strtoumax): Use it.
6824         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
6825         (duplocale): Use it.
6826         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
6827         (frexp, frexpl): Use it.
6828         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
6829         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
6830         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
6831         (tsearch, tfind, tdelete, twalk): Use it.
6832         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
6833         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
6834         sigpending): Use it.
6835         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
6836         (posix_spawn, posix_spawnp, posix_spawnattr_init,
6837         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
6838         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
6839         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
6840         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
6841         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
6842         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
6843         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
6844         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
6845         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
6846         Use it.
6847         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
6848         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
6849         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
6850         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
6851         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
6852         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
6853         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
6854         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
6855         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
6856         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
6857         strtoull, unsetenv): Use it.
6858         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
6859         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
6860         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
6861         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
6862         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
6863         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
6864         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
6865         (strcasecmp, strncasecmp): Use it.
6866         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
6867         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
6868         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
6869         rpl_setsockopt): Use it.
6870         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
6871         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
6872         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
6873         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
6874         (gettimeofday): Use it.
6875         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
6876         (times): Use it.
6877         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
6878         (uname): Use it.
6879         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
6880         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
6881         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
6882         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
6883         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
6884         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
6885         unlinkat, write): Use it.
6886         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
6887         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
6888         * lib/argv-iter.h: Include arg-nonnull.h.
6889         (_ATTRIBUTE_NONNULL_): Remove macro.
6890         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
6891         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
6892         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
6893         optimization.
6894         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
6895         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
6896         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
6897         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
6898         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
6899         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
6900         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
6901         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
6902         * modules/arpa_inet (Depends-on): Add arg-nonnull.
6903         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
6904         * modules/dirent (Depends-on): Add arg-nonnull.
6905         (Makefile.am): Insert arg-nonnull.h into dirent.h.
6906         * modules/fcntl-h (Depends-on): Add arg-nonnull.
6907         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
6908         * modules/fnmatch (Depends-on): Add arg-nonnull.
6909         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
6910         * modules/getopt-posix (Depends-on): Add arg-nonnull.
6911         (Makefile.am): Insert arg-nonnull.h into getopt.h.
6912         * modules/glob (Depends-on): Add arg-nonnull.
6913         (Makefile.am): Insert arg-nonnull.h into glob.h.
6914         * modules/iconv_open (Depends-on): Add arg-nonnull.
6915         (Makefile.am): Insert arg-nonnull.h into iconv.h.
6916         * modules/inttypes (Depends-on): Add arg-nonnull.
6917         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
6918         * modules/locale (Depends-on): Add arg-nonnull.
6919         (Makefile.am): Insert arg-nonnull.h into locale.h.
6920         * modules/math (Depends-on): Add arg-nonnull.
6921         (Makefile.am): Insert arg-nonnull.h into math.h.
6922         * modules/netdb (Depends-on): Add arg-nonnull.
6923         (Makefile.am): Insert arg-nonnull.h into netdb.h.
6924         * modules/search (Depends-on): Add arg-nonnull.
6925         (Makefile.am): Insert arg-nonnull.h into search.h.
6926         * modules/signal (Depends-on): Add arg-nonnull.
6927         (Makefile.am): Insert arg-nonnull.h into signal.h.
6928         * modules/spawn (Depends-on): Add arg-nonnull.
6929         (Makefile.am): Insert arg-nonnull.h into spawn.h.
6930         * modules/stdio (Depends-on): Add arg-nonnull.
6931         (Makefile.am): Insert arg-nonnull.h into stdio.h.
6932         * modules/stdlib (Depends-on): Add arg-nonnull.
6933         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
6934         * modules/string (Depends-on): Add arg-nonnull.
6935         (Makefile.am): Insert arg-nonnull.h into string.h.
6936         * modules/strings (Depends-on): Add arg-nonnull.
6937         (Makefile.am): Insert arg-nonnull.h into strings.h.
6938         * modules/sys_socket (Depends-on): Add arg-nonnull.
6939         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
6940         * modules/sys_stat (Depends-on): Add arg-nonnull.
6941         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
6942         * modules/sys_time (Depends-on): Add arg-nonnull.
6943         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
6944         * modules/sys_times (Depends-on): Add arg-nonnull.
6945         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
6946         * modules/sys_utsname (Depends-on): Add arg-nonnull.
6947         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
6948         * modules/time (Depends-on): Add arg-nonnull.
6949         (Makefile.am): Insert arg-nonnull.h into time.h.
6950         * modules/unistd (Depends-on): Add arg-nonnull.
6951         (Makefile.am): Insert arg-nonnull.h into unistd.h.
6952         * modules/wchar (Depends-on): Add arg-nonnull.
6953         (Makefile.am): Insert arg-nonnull.h into wchar.h.
6954         * modules/argv-iter (Depends-on): Add arg-nonnull.
6955         * tests/test-canonicalize.c (null_ptr): New function.
6956         (main): Use it.
6957         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
6958         (main): Use it.
6959         * tests/test-memmem.c (null_ptr): New function.
6960         (main): Use it.
6961         Reported by Jim Meyering.
6962
6963 2009-12-10  Bruno Haible  <bruno@clisp.org>
6964
6965         Use spaces for indentation, not tabs.
6966         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
6967         * m4/*.m4: Untabify.
6968         * build-aux/*.h: Untabify.
6969         * tests/**/*.[hc]: Untabify.
6970         * README: New section "Indent with spaces, not TABs", based on
6971         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
6972         * NEWS: Mention the change.
6973
6974 2009-12-10  Bruno Haible  <bruno@clisp.org>
6975
6976         pty test: Fix link error.
6977         * modules/pty-tests (Makefile.am): Add the default LDADD value to
6978         test_pty_LDADD.
6979
6980 2009-12-07  Simon Josefsson  <simon@josefsson.org>
6981
6982         * modules/pty: New file.
6983         * modules/pty-tests: New file.
6984         * m4/pty.m4: New file.
6985         * tests/test-pty.c: New file.
6986         * doc/glibc-headers/pty.texi: Modified.
6987         * doc/glibc-functions/forkpty.texi: Modified.
6988         * doc/glibc-functions/openpty.texi: Modified.
6989
6990 2009-12-10  Bruno Haible  <bruno@clisp.org>
6991
6992         Avoid syntax error in C++ mode.
6993         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
6994
6995 2009-12-10  Bruno Haible  <bruno@clisp.org>
6996
6997         Use sed with option -e.
6998         * gnulib-tool (func_version, func_emit_copyright_notice,
6999         func_emit_initmacro_end, func_import, func_create_testdir): Pass
7000         option -e to sed.
7001         * modules/link-warning (Makefile.am): Likewise.
7002
7003 2009-12-10  Jim Meyering  <meyering@redhat.com>
7004
7005         mgetgroups: do not write bytes beyond end of malloc'd buffer
7006         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
7007         username, we call getgroups with a one-element-shorter buffer,
7008         but still told it the length was original, max_n_groups.
7009
7010 2009-12-09  Eric Blake  <ebb9@byu.net>
7011
7012         cloexec: relax license
7013         * modules/cloexec (Maintainer): Add myself.
7014         (License): Use LGPL, not GPL.
7015
7016         link-warning: optimize generation
7017         * modules/link-warning (Makefile.am): Reduce process usage.
7018
7019 2009-12-09  Bruno Haible  <bruno@clisp.org>
7020
7021         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
7022         workaround was added on 2009-11-17.
7023
7024 2009-12-09  Jim Meyering  <meyering@redhat.com>
7025             Bruno Haible  <bruno@clisp.org>
7026
7027         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
7028         * modules/link-warning (Makefile.am): Make the comment-removing sed
7029         command more robust in the face of bootstrap-prepended comment lines.
7030
7031 2009-12-09  Bruno Haible  <bruno@clisp.org>
7032
7033         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
7034         most one group.
7035
7036 2009-12-09  Simon Josefsson <simon@josefsson.org>
7037             Bruno Haible  <bruno@clisp.org>
7038
7039         * build-aux/link-warning.h: Add copyright notice.
7040         * modules/link-warning (Makefile.am): Generate link-warning.h from
7041         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
7042         * NEWS: Mention change in link-warning module.
7043         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
7044         * modules/dirent (Makefile.am): Add dependency to dirent.h.
7045         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
7046         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
7047         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
7048         * modules/math (Makefile.am): Add dependency to math.h.
7049         * modules/search (Makefile.am): Add dependency to search.h.
7050         * modules/signal (Makefile.am): Add dependency to signal.h.
7051         * modules/spawn (Makefile.am): Add dependency to spawn.h.
7052         * modules/stdio (Makefile.am): Add dependency to stdio.h.
7053         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
7054         * modules/string (Makefile.am): Add dependency to string.h.
7055         * modules/strings (Makefile.am): Add dependency to strings.h.
7056         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
7057         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
7058         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
7059         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
7060         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
7061         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
7062         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
7063         * modules/unistd (Makefile.am): Add dependency to unistd.h.
7064         * modules/wchar (Makefile.am): Add dependency to wchar.h.
7065
7066 2009-12-09  Bruno Haible  <bruno@clisp.org>
7067
7068         fchdir: Optimize away rpl_fstat when possible.
7069         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
7070         REPLACE_OPEN_DIRECTORY.
7071         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
7072
7073 2009-12-09  Bruno Haible  <bruno@clisp.org>
7074
7075         * lib/fchdir.c: Update comment.
7076
7077 2009-12-09  Bruno Haible  <bruno@clisp.org>
7078
7079         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
7080
7081 2009-12-08  Eric Blake  <ebb9@byu.net>
7082
7083         fchdir: avoid memory leak on re-registration.
7084         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
7085
7086 2009-12-08  Jim Meyering  <meyering@redhat.com>
7087
7088         init.sh: avoid Solaris 10 /bin/sh portability problem
7089         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
7090         sourced script:
7091           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
7092           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
7093           bar
7094         tests/init.sh relied on that, accepting a --set-path=DIR argument,
7095         and two tests used that idiom.
7096         * tests/init.sh: Update suggested usage comments.
7097         (path_prepend_): New function, to be used in place
7098         of the --src-path=DIR option.
7099         (setup_): Move PATH-prepending code into path_prepend_.
7100         * tests/test-pread.sh: Adapt to new usage.
7101         * tests/test-xalloc-die.sh: Likewise.
7102
7103 2009-12-08  Simon Josefsson  <simon@josefsson.org>
7104
7105         * doc/gnulib.texi (Glibc pty.h): Add.
7106         * doc/glibc-functions/forkpty.texi: Add.
7107         * doc/glibc-functions/openpty.texi: Add.
7108         Suggested by Bruno Haible.
7109
7110 2009-12-08  Eric Blake  <ebb9@byu.net>
7111
7112         fchdir: fix logic bugs
7113         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
7114         * tests/test-fchdir.c (main): Enhance test.
7115         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
7116         is in use.
7117
7118         dup2: fix logic bugs
7119         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
7120         REPLACE_DUP2 to decide when rpl_dup2 is needed.
7121         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
7122         exists.
7123         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
7124
7125 2009-12-07  Eric Blake  <ebb9@byu.net>
7126
7127         unlink: fix m4 detection
7128         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
7129
7130         unistd-safer: add unit test
7131         * modules/unistd-safer-tests: New file.
7132         * tests/test-dup-safer.c: Likewise.
7133         * tests/test-cloexec.c (setmode): Avoid compiler warning.
7134         * tests/test-dup2.c (setmode): Likewise.
7135         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
7136
7137         cloexec: preserve text vs. binary across dup_cloexec
7138         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
7139         mode.
7140         * modules/dup2-tests (Depends-on): Add binary-io.
7141         * modules/cloexec-tests (Depends-on): Likewise.
7142         * tests/test-dup2.c (setmode, is_mode): New helpers.
7143         (main): Add tests that translation mode is preserved.
7144         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
7145         Reported by Bruno Haible.
7146
7147         mgetgroups: reduce duplicate listings
7148         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
7149         resulting array.
7150         * tests/test-chown.h (test_chown): Simplify client.
7151         * tests/test-lchown.h (test_lchown): Likewise.
7152
7153 2009-12-06  Bruno Haible  <bruno@clisp.org>
7154
7155         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
7156         value.
7157
7158 2009-12-06  Bruno Haible  <bruno@clisp.org>
7159
7160         * lib/progname.c: Include stdio.h, stdlib.h.
7161         (set_program_name): Reject a NULL argument.
7162
7163 2009-12-05  Eric Blake  <ebb9@byu.net>
7164
7165         pipe2-safer: new module
7166         * modules/pipe2-safer: New file.
7167         * lib/unistd-safer.h (pipe2_safer): New prototype.
7168         * lib/unistd--.h (pipe2): New wrapper.
7169         * lib/pipe-safer.c (pipe2_safer): New function.
7170         * modules/pipe (Depends-on): Add pipe2-safer.
7171         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
7172
7173         stdlib-safer: preserve cloexec flag for mkostemp[s]
7174         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
7175         fd_safer_flag.
7176
7177         unistd-safer: allow preservation of cloexec status via flag
7178         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
7179         prototypes.
7180         * lib/dup-safer.c (dup_safer_flag): New function.
7181         * lib/fd-safer.c (fd_safer_flag): Likewise.
7182         * modules/cloexec (configure.ac): Set witness.
7183
7184         test-dup2: enhance test
7185         * modules/dup2-tests (Depends-on): Add cloexec.
7186         * tests/test-dup2.c (main): Enhance test.
7187
7188         cloexec: add dup_cloexec
7189         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
7190         header and comments.
7191         * lib/cloexec.c (set_cloexec_flag): Add comments.
7192         (dup_cloexec): New function, with mingw implementation borrowed
7193         from...
7194         * lib/w32spawn.h (dup_noinherit): ...here.
7195         * modules/execute (Depends-on): Add cloexec.
7196         * modules/pipe (Depends-on): Likewise.
7197         * modules/cloexec (Depends-on): Add dup2.
7198         * modules/cloexec-tests (Files): New file.
7199         * tests/test-cloexec.c: Likewise.
7200
7201         test-xalloc-die: fix test for mingw
7202         * modules/xalloc-die-tests (Files): Add tests/init.sh.
7203         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
7204         directory and .exe suffix off argv[0] output.
7205
7206         test-fseeko: fix test for mingw
7207         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
7208         than undefining fseek, so test will pass on mingw.
7209
7210 2009-12-05  Bruno Haible  <bruno@clisp.org>
7211
7212         * lib/progname.h (set_program_name): Clarify specification.
7213         * lib/progname.c (set_program_name): Likewise.
7214         Reported by Jim Meyering.
7215
7216 2009-12-05  Jim Meyering  <meyering@redhat.com>
7217
7218         maint.mk: backslash-escape parens in default regexp
7219         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
7220         backslash-escape the literal parentheses.
7221
7222         maint.mk: news-date-check: use grep -E
7223         * top/maint.mk (today): Define a Make variable, not a...
7224         (news-date-check): ...shell variable.
7225         (news-date-regexp): Use the Make variable.
7226         Use grep's -E option.  Change the failing diagnostic to mention
7227         the variable, $(news-date-regexp).
7228
7229 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
7230
7231         maintainer-makefile: allow customization of NEWS entry format
7232         * top/maint.mk (news-date-regexp): New overridable variable.
7233         (news-date-check): Use it.
7234
7235 2009-12-04  Eric Blake  <ebb9@byu.net>
7236
7237         mgetgroups: add xgetgroups, and avoid ENOSYS failures
7238         * lib/mgetgroups.h (xgetgroups): New prototype.
7239         * lib/mgetgroups.c (xgetgroups): New wrapper.
7240         (mgetgroups): Handle ENOSYS.
7241         * modules/mgetgroups (Depends-on): Add realloc.
7242         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
7243
7244         mgetgroups: avoid argument promotion issues with -1
7245         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
7246         for invalid gid_t.
7247         * tests/test-chown.h (getegid, test_chown): Likewise.
7248         * tests/test-lchown.h (getegid, test_lchown): Likewise.
7249
7250 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
7251
7252         exclude: Fix header file problems.
7253         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
7254
7255 2009-12-01  Jim Meyering  <meyering@redhat.com>
7256
7257         fts: fts_open: do not let an empty string cause immediate failure
7258         This is required in support of GNU rm, for which the command
7259         "rm A '' B" must process and remove both A and B, in spite of
7260         the empty string argument.
7261         * lib/fts.c (fts_open): Do not let the presence of an empty string
7262         cause fts_open to fail immediately.  Most fts-using tools must be
7263         able to process all arguments, in order, and can be expected to
7264         diagnose such arguments themselves.
7265
7266 2009-11-30  Eric Blake  <ebb9@byu.net>
7267
7268         utimens: fix compilation error
7269         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
7270         Declare variable at right scope.
7271
7272 2009-11-29  Jim Meyering  <meyering@redhat.com>
7273
7274         bootstrap: handle perl-5.11's changed --version output
7275         * build-aux/bootstrap (get_version): Handle perl separately,
7276         since perl-5.11's --version output is different.
7277
7278 2009-11-28  Jim Meyering  <meyering@redhat.com>
7279
7280         userspec: depend on the inttostr module, too
7281         * modules/userspec (Depends-on): Add inttostr.
7282
7283         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
7284         * lib/userspec.c (parse_with_separator): Do not accept a user ID
7285         number of MAXUID when it evaluates to (uid_t) -1.
7286         Likewise for group ID.  Reported by Matt McCutchen in
7287         <http://savannah.gnu.org/bugs/?28113>
7288
7289         userspec: reformat to use spaces, not TABs
7290         * lib/userspec.c: Expand TABs to spaces.
7291         Add Emacs' "indent-tabs-mode: nil" hint.
7292
7293 2009-11-27  Eric Blake  <ebb9@byu.net>
7294
7295         getopt-gnu: flush out another BSD bug
7296         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
7297         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
7298         flush out BSD bug.
7299         * tests/test-getopt.h (test_getopt): End lists with NULL.
7300         * tests/test-getopt_long.h (test_getopt_long): Likewise.
7301         (test_getopt_long_posix): Enhance test.
7302         * modules/getopt-posix-tests (Depends-on): Add stdbool.
7303         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
7304         getopt-gnu.
7305         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
7306         Likewise.
7307
7308 2009-11-27  Simon Josefsson  <simon@josefsson.org>
7309
7310         * modules/idpriv-droptemp-tests (Notice): Fix text.
7311
7312 2009-11-27  Jim Meyering  <meyering@redhat.com>
7313
7314         test-xalloc-die: avoid spurious failure due to libtool argv difference
7315         In a libtool-enabled project, this test would fail due to a difference
7316         in the emitted program name, e.g.,
7317         -test-xalloc-die: memory exhausted
7318         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
7319         Use program to avoid that.
7320         * modules/xalloc-die-tests (Depends-on): Add progname.
7321         * tests/test-xalloc-die.c: Include progname.h".
7322         (program_name): Remove decl.
7323         (main): Call set_program_name.
7324         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
7325
7326 2009-11-26  Richard Jones  <rjones@redhat.com>
7327
7328         w32sock: leave win32 error in place.
7329         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
7330
7331 2009-11-26  Eric Blake  <ebb9@byu.net>
7332
7333         init.sh: suggest to use skip_ and fail_ functions in comments
7334         * tests/init.sh: Add a sentence.
7335
7336 2009-11-25  Bruno Haible  <bruno@clisp.org>
7337
7338         init.sh: add documentation in comments
7339         * tests/init.sh: Add some developer and user documentation.
7340
7341 2009-11-26  Jim Meyering  <meyering@redhat.com>
7342
7343         init.sh: accommodate even those who specify bogus srcdir manually
7344         * tests/init.sh: Normally, srcdir is guaranteed by automake and
7345         configure-time tests to be sanitized, so that there is no need to
7346         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
7347         (with no double quotes) suffices.  However, since tests may be
7348         invoked manually, and since you may explicitly set srcdir to the
7349         name of a directory containing spaces, do quote its uses here.
7350         * tests/test-pread.sh: Likewise.
7351         Suggested by Bruno Haible.
7352
7353         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
7354         * tests/test-pread.sh: Write no data into the pipe, because
7355         test-pread actually reads none.  This avoids a diagnostic,
7356         "bash: echo: write error: Broken pipe", that arises in the unusual
7357         event something is ignoring SIGPIPE, and might be interpreted
7358         as some sort of failure.  Reported by Bruno Haible.
7359
7360 2009-11-25  Jim Meyering  <meyering@redhat.com>
7361
7362         test-pread: cover failure with ESPIPE and EINVAL
7363         * tests/test-pread.c (main): Test for failure, too.
7364         * tests/test-pread.sh: Invoke with stdin on a pipe.
7365         Suggested by Eric Blake.
7366
7367         pread: improvement and fix
7368         * modules/pread (Depends-on): Depend on lseek, for portability to
7369         e.g., mingw.  Suggested by Eric Blake.
7370         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
7371
7372         unistd.in.h: correct declaration of pread
7373         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
7374         Reported by Richard W.M. Jones.
7375
7376         test-pread.sh: distribute the test script
7377         * modules/pread-tests (Files): Include test-pread.sh.
7378
7379         test-pread.sh: clean up
7380         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
7381         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
7382         That is unnecessary, since it's always ".".
7383         Suggestion from Eric Blake.
7384
7385         test-pread.sh: make executable
7386         * tests/test-pread.sh: Set executable bit.
7387         Reported by Eric Blake.
7388
7389         correct typo in test-pread.sh
7390         * tests/test-pread.sh: Add #! line.
7391
7392         test pread
7393         * tests/test-pread.c: New file.
7394         * tests/test-pread.sh: Likewise.
7395         * modules/pread-tests: Likewise.
7396
7397         pread: new module
7398         * modules/pread: New file.
7399         * lib/unistd.in.h (pread): Define/declare.
7400         * lib/pread.c (pread): New file.
7401         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
7402         * modules/unistd (Makefile.am): Substitute witnesses.
7403         * doc/posix-functions/pread.texi (pread): Update.
7404         * MODULES.html.sh: Add pread.
7405
7406 2009-11-25  Jim Meyering  <meyering@redhat.com>
7407
7408         tests/init.sh: new file to be used via most *.sh tests
7409         * tests/init.sh: New file.
7410
7411 2009-11-25  Eric Blake  <ebb9@byu.net>
7412
7413         utimens: work around older Linux failure with symlinks
7414         * lib/utimens.c (lutimensat_works_really): New variable.
7415         (fdutimens, lutimens): Use it to manage kernels that support
7416         nanosecond times on files, but not on symlinks.
7417         Reported by Ondřej Vašík.
7418
7419         utimes: fix configure grammar
7420         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
7421
7422 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
7423
7424         regex: Fix fastmap for multibyte character ranges.
7425         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
7426         characters when a multibyte character range is included.
7427
7428 2009-11-22  Andy Wingo  <wingo@pobox.com>
7429
7430         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
7431         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
7432
7433 2009-11-24  Bruno Haible  <bruno@clisp.org>
7434
7435         doc: Most *_l functions exist in MacOS X 10.5.
7436         * doc/posix-functions/duplocale.texi: Update platforms list.
7437         * doc/posix-functions/freelocale.texi: Likewise.
7438         * doc/posix-functions/newlocale.texi: Likewise.
7439         * doc/posix-functions/uselocale.texi: Likewise.
7440         * doc/posix-functions/isalnum_l.texi: Likewise.
7441         * doc/posix-functions/isalpha_l.texi: Likewise.
7442         * doc/posix-functions/isblank_l.texi: Likewise.
7443         * doc/posix-functions/iscntrl_l.texi: Likewise.
7444         * doc/posix-functions/isdigit_l.texi: Likewise.
7445         * doc/posix-functions/isgraph_l.texi: Likewise.
7446         * doc/posix-functions/islower_l.texi: Likewise.
7447         * doc/posix-functions/isprint_l.texi: Likewise.
7448         * doc/posix-functions/ispunct_l.texi: Likewise.
7449         * doc/posix-functions/isspace_l.texi: Likewise.
7450         * doc/posix-functions/isupper_l.texi: Likewise.
7451         * doc/posix-functions/iswalnum_l.texi: Likewise.
7452         * doc/posix-functions/iswalpha_l.texi: Likewise.
7453         * doc/posix-functions/iswblank_l.texi: Likewise.
7454         * doc/posix-functions/iswcntrl_l.texi: Likewise.
7455         * doc/posix-functions/iswctype_l.texi: Likewise.
7456         * doc/posix-functions/iswdigit_l.texi: Likewise.
7457         * doc/posix-functions/iswgraph_l.texi: Likewise.
7458         * doc/posix-functions/iswlower_l.texi: Likewise.
7459         * doc/posix-functions/iswprint_l.texi: Likewise.
7460         * doc/posix-functions/iswpunct_l.texi: Likewise.
7461         * doc/posix-functions/iswspace_l.texi: Likewise.
7462         * doc/posix-functions/iswupper_l.texi: Likewise.
7463         * doc/posix-functions/iswxdigit_l.texi: Likewise.
7464         * doc/posix-functions/isxdigit_l.texi: Likewise.
7465         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
7466         * doc/posix-functions/strcasecmp_l.texi: Likewise.
7467         * doc/posix-functions/strcoll_l.texi: Likewise.
7468         * doc/posix-functions/strfmon_l.texi: Likewise.
7469         * doc/posix-functions/strftime_l.texi: Likewise.
7470         * doc/posix-functions/strncasecmp_l.texi: Likewise.
7471         * doc/posix-functions/strxfrm_l.texi: Likewise.
7472         * doc/posix-functions/tolower_l.texi: Likewise.
7473         * doc/posix-functions/toupper_l.texi: Likewise.
7474         * doc/posix-functions/towctrans_l.texi: Likewise.
7475         * doc/posix-functions/towlower_l.texi: Likewise.
7476         * doc/posix-functions/towupper_l.texi: Likewise.
7477         * doc/posix-functions/wcscoll_l.texi: Likewise.
7478         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
7479         * doc/posix-functions/wctrans_l.texi: Likewise.
7480         * doc/posix-functions/wctype_l.texi: Likewise.
7481         * doc/glibc-functions/strptime_l.texi: Likewise.
7482         * doc/glibc-functions/strtod_l.texi: Likewise.
7483         * doc/glibc-functions/strtof_l.texi: Likewise.
7484         * doc/glibc-functions/strtol_l.texi: Likewise.
7485         * doc/glibc-functions/strtold_l.texi: Likewise.
7486         * doc/glibc-functions/strtoll_l.texi: Likewise.
7487         * doc/glibc-functions/strtoul_l.texi: Likewise.
7488         * doc/glibc-functions/strtoull_l.texi: Likewise.
7489         * doc/glibc-functions/wcsftime_l.texi: Likewise.
7490         * doc/glibc-functions/wcstod_l.texi: Likewise.
7491         * doc/glibc-functions/wcstof_l.texi: Likewise.
7492         * doc/glibc-functions/wcstol_l.texi: Likewise.
7493         * doc/glibc-functions/wcstold_l.texi: Likewise.
7494         * doc/glibc-functions/wcstoll_l.texi: Likewise.
7495         * doc/glibc-functions/wcstoul_l.texi: Likewise.
7496         * doc/glibc-functions/wcstoull_l.texi: Likewise.
7497
7498 2009-11-24  Bruno Haible  <bruno@clisp.org>
7499
7500         duplocale: Fix logic bug.
7501         * lib/duplocale.c: Don't include <langinfo.h>.
7502         (_NL_LOCALE_NAME): Remove macro.
7503         (rpl_duplocale): Use setlocale instead of nl_langinfo.
7504         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
7505
7506 2009-11-23  Jim Meyering  <meyering@redhat.com>
7507
7508         test-update-copyright: don't hard-code /usr/bin/perl
7509         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
7510         perl to print the current year.  Gilles Espinasse reported that
7511         the replaced use of perl was hard-coded as /usr/bin/perl.
7512
7513 2009-11-23  Bruno Haible  <bruno@clisp.org>
7514
7515         duplocale: Add support for glibc 2.3.x.
7516         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
7517
7518 2009-11-22  Bruno Haible  <bruno@clisp.org>
7519
7520         vasnprintf: Tiny optimization.
7521         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
7522         MacOS X.
7523
7524 2009-11-22  Bruno Haible  <bruno@clisp.org>
7525
7526         Tests for module 'duplocale'.
7527         * modules/duplocale-tests: New file.
7528         * tests/test-duplocale.c: New file.
7529
7530         New module 'duplocale'.
7531         * m4/duplocale.m4: New file.
7532         * lib/locale.in.h (duplocale): New declaration.
7533         * lib/duplocale.c: New file.
7534         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
7535         gl_LOCALE_H_DEFAULTS): New macros.
7536         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
7537         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
7538         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
7539         REPLACE_DUPLOCALE.
7540         * modules/duplocale: New file.
7541         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
7542
7543 2009-11-22  Bruno Haible  <bruno@clisp.org>
7544
7545         * modules/locale-tests (configure.ac): Test for newlocale function.
7546         * tests/test-locale.c: When the system has extended locale functions,
7547         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
7548
7549         locale: Make locale_t available when possible.
7550         * lib/locale.in.h: Include <xlocale.h> when it exists.
7551         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
7552         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
7553         * modules/locale (Depends-on): Add extensions.
7554         (Makefile.am): Also substitute HAVE_XLOCALE_H.
7555         * doc/posix-headers/locale.texi: Document the problem with locale_t.
7556
7557 2009-11-22  Bruno Haible  <bruno@clisp.org>
7558
7559         Add comments.
7560         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
7561         invocation.
7562         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
7563         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
7564         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
7565
7566 2009-11-22  Bruno Haible  <bruno@clisp.org>
7567
7568         error: account for the possibility of freopen (stdout).
7569         * lib/error.c: Include <unistd.h>.
7570         (flush_stdout): New function, extracted from error and error_at_line.
7571         Determine stdout's fd dynamically.
7572         (error, error_at_line): Invoke flush_stdout.
7573         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
7574         * modules/error (Depends-on): Add unistd.
7575
7576 2009-11-22  Bruno Haible  <bruno@clisp.org>
7577
7578         diffseq: Add comment.
7579         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
7580
7581 2009-11-22  Jim Meyering  <meyering@redhat.com>
7582
7583         c-stack: avoid defining an unused static function
7584         * lib/c-stack.c (find_stack_direction): Do not define this function
7585         when it will not be used.
7586
7587         diffseq: avoid spurious gcc warnings
7588         * lib/diffseq.h (IF_LINT2): Define.
7589         (compareseq): Use it to initialize two members of "part".
7590         This avoids two used-uninitialized warnings.
7591
7592 2009-11-21  Jim Meyering  <meyering@redhat.com>
7593
7594         c-stack: avoid "ignoring return value of `write'" warning
7595         * lib/c-stack.c: Include "ignore-value.h".
7596         (die): Explicitly ignore each write return value.
7597         * modules/c-stack (Depends-on): Add ignore-value.
7598
7599 2009-11-21  Bruno Haible  <bruno@clisp.org>
7600
7601         diffseq: reduce scope of variable 'best'.
7602         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
7603         variable, earlier used for two different purposes.
7604
7605 2009-11-21  Jim Meyering  <meyering@redhat.com>
7606
7607         diffseq: remove useless assignment to "best"
7608         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
7609         assignment.  At that point "best" is already guaranteed to be zero.
7610
7611 2009-11-20  Eric Blake  <ebb9@byu.net>
7612
7613         build: mention ftp redirector in release announcements
7614         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
7615         values that used to come from cfg.mk; mention FTP redirect URL.
7616         * build-aux/announce-gen: Mention the mirror list.
7617         Suggested by Karl Berry.
7618
7619         nanosleep: improve port to mingw
7620         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
7621         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
7622         LIB_NANOSLEEP, but only when needed.
7623         * modules/select (Link): Document LIBSOCKET.
7624         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
7625         enough.
7626
7627         nanosleep: work around cygwin bug
7628         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
7629         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
7630         bug.
7631         (getnow): Delete, not needed.
7632         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
7633         LIB_CLOCK_GETTIME.
7634         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
7635         clock-time, gettime.
7636         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
7637         bug.
7638         * modules/nanosleep-tests: New test.
7639         * tests/test-nanosleep.c: New file.
7640
7641         sleep: work around cygwin bug
7642         * lib/sleep.c (rpl_sleep): Work around the bug.
7643         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
7644         (gl_PREREQ_SLEEP): Delete unused macro.
7645         * modules/sleep (Depends-on): Add verify.
7646         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
7647         * modules/unistd (Makefile.am): Substitute witness.
7648         * lib/unistd.in.h (sleep): Update prototype.
7649         * doc/posix-functions/sleep.texi (sleep): Document the bug.
7650         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
7651         * modules/sleep-tests (Depends-on): Check for alarm.
7652
7653 2009-11-20  Jim Meyering  <meyering@redhat.com>
7654
7655         maint.mk: improve sc_prohibit_magic_number_exit
7656         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
7657         so it does not match uses like System.exit(1).
7658         Add comments showing how to correct all offenders.
7659
7660 2009-11-19  Eric Blake  <ebb9@byu.net>
7661
7662         xalloc-die-tests: add missing library
7663         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
7664
7665         test-xvasprintf: silence compiler warnings
7666         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
7667         empty string from gcc.
7668
7669 2009-11-19  Jim Meyering  <meyering@redhat.com>
7670
7671         xfreopen: new module, from coreutils
7672         * modules/xfreopen: New module.
7673         * lib/xfreopen.c: New file.
7674         * lib/xfreopen.h: New file.
7675         * MODULES.html.sh (File stream based Input/Output"): Add it.
7676
7677 2009-11-19  Eric Blake  <ebb9@byu.net>
7678
7679         manywarnings: depend on warnings
7680         * modules/manywarnings (Depends-on): Add warnings.
7681
7682         build: avoid compiler warnings
7683         * lib/select.c (rpl_select): Delete unused variable.
7684         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
7685
7686 2009-11-18  Eric Blake  <ebb9@byu.net>
7687
7688         tests: avoid false negative with --with-packager
7689         * tests/test-version-etc.sh: Discard packager information.
7690         * tests/test-argp-version-etc-1.sh: Likewise.
7691         Reported by Mike Frysinger.
7692
7693         utimens: fix regression on Solaris
7694         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
7695         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
7696         can only change fd timestamps via futimesat.  Instead, use an
7697         additional witness macro to avoid BSD bug.
7698         Reported by Jim Meyering.
7699
7700 2009-11-17  Eric Blake  <ebb9@byu.net>
7701
7702         usleep: use it to simplify tests
7703         * modules/stat-time-tests (Depends-on): Add usleep.
7704         (configure.ac): Drop usleep check.
7705         * modules/chown-tests (Depends-on, configure.ac): Likewise.
7706         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
7707         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
7708         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
7709         * modules/openat-tests (Depends-on, configure.ac): Likewise.
7710         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
7711         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
7712         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
7713         Likewise.
7714         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
7715         * tests/test-lchown.h (nap): Likewise.
7716         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
7717         * tests/test-stat-time.c (nap): Likewise.
7718         * tests/test-utimens-common.h (nap): Update comments.
7719
7720         usleep: new module
7721         * modules/usleep: New file.
7722         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
7723         * lib/usleep.c (usleep): Likewise.
7724         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
7725         * modules/unistd (Makefile.am): Substitute witnesses.
7726         * lib/unistd.in.h (usleep): Add declaration.
7727         * doc/pastposix-functions/usleep.texi (usleep): Document this.
7728         * MODULES.html.sh (Date and time): Likewise.
7729         * modules/usleep-tests (Depends-on): New test.
7730         * tests/test-usleep.c: New file.
7731
7732         chown: work around OpenBSD bug
7733         * lib/chown.c (rpl_chown): Work around the bug.
7734         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
7735         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
7736         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
7737         * modules/chown (Depends-on): Add stdbool.
7738         * modules/lchown (Depends-on): Likewise.
7739         * doc/posix-functions/chown.texi (chown): Document the bug.
7740         * doc/posix-functions/lchown.texi (lchown): Likewise.
7741         * tests/test-lchown.h (test_chown): Relax test.
7742
7743         mkstemp: avoid conflict with C++ keyword template
7744         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
7745         * lib/mkostemp.c (mkostemp): Likewise.
7746         * lib/mkostemps.c (mkostemps): Likewise.
7747         * lib/mkstemp.c (mkstemp): Likewise.
7748         * lib/mkstemps.c (mkstemps): Likewise.
7749
7750         xalloc-die-tests: optimize
7751         * tests/test-xalloc-die.sh: Reduce number of processes.
7752
7753 2009-11-17  Simon Josefsson  <simon@josefsson.org>
7754
7755         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
7756         patch from ludo@gnu.org (Ludovic Courtès).
7757
7758 2009-11-17  Jim Meyering  <meyering@redhat.com>
7759
7760         version-etc: use proper license string
7761         * modules/version-etc (License): Use LGPL, not LGPLv3+.
7762         * modules/version-etc-fsf: Likewise.
7763
7764 2009-11-17  Simon Josefsson  <simon@josefsson.org>
7765
7766         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
7767         printed to stdout.  Deal with EOL differences.
7768
7769 2009-11-17  Eric Blake  <ebb9@byu.net>
7770
7771         unsetenv: work around Solaris bug
7772         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
7773         * lib/unsetenv.c (rpl_unsetenv): Work around it.
7774         Reported by Jim Meyering.
7775
7776         vasnprintf: avoid compiler warnings
7777         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
7778         variables.
7779         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
7780
7781 2009-11-17  Simon Josefsson  <simon@josefsson.org>
7782
7783         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
7784         settings since xalloc-die is no longer the self test,
7785         xalloc-die.sh is.
7786
7787 2009-11-17  Jim Meyering  <meyering@redhat.com>
7788
7789         test-xalloc-die.sh: make the code agree with the commit log
7790         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
7791         at the end, just in case you happen to have a test-xalloc-die
7792         program in some other PATH directory.
7793
7794         test-xalloc-die.sh: fix a portability bug
7795         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
7796         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
7797         Otherwise, argv[0] (as often seen in diagnostics) would be too
7798         system-dependent, sometimes with, and sometimes without the leading "./".
7799
7800         version-etc-fsf: relax license to LGPLv3+
7801         * modules/version-etc-fsf (License): Relax license.
7802
7803 2009-11-16  Eric Blake  <ebb9@byu.net>
7804
7805         xalloc-die-tests: avoid printing null pointer
7806         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
7807         shell script.
7808         * tests/test-xalloc-die.c (program_name): Declare.
7809         * tests/test-xalloc-die.sh (tmpfiles): New file.
7810
7811         setenv, unsetenv: work around various bugs
7812         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
7813         (setenv) [HAVE_SETENV]: Work around bugs.
7814         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
7815         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
7816         for bugs.
7817         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
7818         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
7819         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
7820         * modules/stdlib (Makefile.am): Update substitutions.
7821         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
7822         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
7823         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
7824         * modules/setenv-tests: New test.
7825         * modules/unsetenv-tests: Likewise.
7826         * tests/test-setenv.c: New file.
7827         * tests/test-unsetenv.c: Likewise.
7828
7829 2009-11-16  Jim Meyering  <meyering@redhat.com>
7830
7831         version-etc: relax license to LGPLv3+
7832         * modules/version-etc (License): Relax license.
7833
7834         better AC_REQUIRE expanded-before-required-warning avoidance
7835         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
7836         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
7837         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
7838         which is no longer needed.
7839
7840 2009-11-16  Eric Blake  <ebb9@byu.net>
7841
7842         test-freading: clean up temporary file
7843         * tests/test-freading.c (main): Remove file on success, and use
7844         ASSERT more liberally.
7845         Reported by Jim Meyering.
7846
7847 2009-11-16  Jim Meyering  <meyering@redhat.com>
7848
7849         avoid new AC_REQUIRE expanded-before-required warnings
7850         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
7851         merely using it.
7852         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
7853         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
7854
7855 2009-11-15  Simon Josefsson  <simon@josefsson.org>
7856
7857         * tests/test-xalloc-die.c: New file.
7858         * modules/xalloc-die-tests: New file.
7859         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
7860         XFAIL_TESTS so it can be appended by modules.
7861
7862 2009-11-15  Simon Josefsson  <simon@josefsson.org>
7863
7864         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
7865         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
7866
7867 2009-11-14  Eric Blake  <ebb9@byu.net>
7868
7869         fnmatch: avoid compiler warning
7870         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
7871         to silence compiler warning about mismatch signedness in ?:.
7872         Reported by Robert Millan.
7873
7874         intprops: add double-inclusion guard
7875         * lib/intprops.h: Allow idempotent includes.
7876         Suggested by Bruce Korb.
7877
7878         openat: detect Solaris fchownat bug
7879         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
7880         penalizing glibc chownat when only lchownat is broken.
7881         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
7882         trailing slash bugs.
7883         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
7884         * modules/openat-tests (Files): Include more files.
7885         (Depends-on): Add mgetgroups, sleep, stat-time.
7886         (configure.ac): Add additional checks.
7887         (Makefile.am): Build new test.
7888         * tests/test-fchownat.c: New file.
7889
7890         lchown: detect Solaris and FreeBSD bug
7891         * lib/lchown.c (rpl_lchown): Work around bug.
7892         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
7893         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
7894         * modules/unistd (Makefile.am): Populate it.
7895         * lib/unistd.in.h (lchown): Update declaration.
7896         * doc/posix-functions/lchown.texi (lchown): Document the bug.
7897         * modules/lchown-tests: New file.
7898         * tests/test-lchown.h (test_lchown): Likewise.
7899         * tests/test-lchown.c (main): Likewise.
7900
7901         chown: detect Solaris and FreeBSD bug
7902         * lib/chown.c (rpl_chown): Work around bug.
7903         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
7904         (gl_PREREQ_CHOWN): Delete.
7905         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
7906         * modules/unistd (Makefile.am): Populate it.
7907         * lib/unistd.in.h (chown): Update declaration.
7908         * lib/lchown.c (chown): Update client.
7909         * modules/lchown (Depends-on): Add lstat.
7910         * doc/posix-functions/chown.texi (chown): Document the bug.
7911         * doc/posix-functions/getgroups.texi (getgroups): Document
7912         getgroups pitfall.
7913         * modules/chown-tests: New file.
7914         * tests/test-chown.h (test_chown): Likewise.
7915         * tests/test-chown.c (main): Likewise.
7916
7917 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
7918
7919         gnulib-tool: correctly detect absence of m4 directories
7920         * gnulib-tool: Avoid extra newline on data passed to wc -l.
7921
7922 2009-11-14  Jim Meyering  <meyering@redhat.com>
7923
7924         maint.mk: Prohibit inclusion of "xalloc.h" without use.
7925         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
7926
7927 2009-11-14  John W. Eaton  <jwe@gnu.org>
7928
7929         strftime.h: wrap funtion declaration in extern "C" block
7930         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
7931
7932 2009-11-13  Eric Blake  <ebb9@byu.net>
7933
7934         getgroups: avoid compiler warning
7935         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
7936
7937         getgroups: work around FreeBSD bug
7938         * lib/getgroups.c (rpl_getgroups): Work around the bug.
7939         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
7940         * doc/posix-functions/getgroups.texi (getgroups): Document it.
7941         * tests/test-getgroups.c (main): Fix buffer overrun.
7942
7943         getgroups: avoid compilation failure
7944         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
7945         * modules/getgroups (Depends-on): Add stdint.
7946
7947 2009-11-13  Jim Meyering  <meyering@redhat.com>
7948
7949         test-getgroups: avoid compilation failure
7950         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
7951
7952 2009-11-13  Eric Blake  <ebb9@byu.net>
7953
7954         mgetgroups: new module, taken from coreutils
7955         * modules/mgetgroups: New file.
7956         * lib/mgetgroups.h: Likewise.
7957         * lib/mgetgroups.c (mgetgroups): Likewise.
7958         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
7959         * MODULES.html.sh (Users and groups): Mention it.
7960
7961         getgroups: don't expose GETGROUPS_T to user
7962         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
7963         an element at a time if GETGROUPS_T is wrong size.
7964         * lib/getugroups.h (getugroups): Change signature.
7965         * lib/unistd.in.h (getgroups): Likewise.
7966         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
7967         signature needs fixing.
7968         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
7969         AC_TYPE_GETGROUPS.
7970         * modules/group-member (Depends-on): Add getgroups.
7971         * lib/group-member.c (group_info, get_group_info): Use gid_t.
7972         (group_member): Rely on getgroups replacement.
7973         * lib/getugroups.c (getugroups): Use gid_t.
7974         * tests/test-getgroups.c (main): Likewise.
7975         * NEWS: Mention the signature change.
7976         * doc/posix-functions/getgroups.texi (getgroups): Mention the
7977         problem with signature.
7978         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
7979         GETGROUPS_T is still useful for setgroups.
7980
7981         getgroups, getugroups: provide stubs for mingw
7982         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
7983         * lib/getugroups.c (getugroups): Likewise.
7984         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
7985         function.  Modernize replacement scheme.
7986         (gl_PREREQ_GETGROUPS): Delete.
7987         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
7988         * modules/getgroups (configure.ac): Declare witness.
7989         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
7990         * modules/unistd (Depends-on): Substitute witness.
7991         * lib/unistd.in.h (getgroups): Declare replacement.
7992
7993         getgroups: avoid calling exit
7994         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
7995         drop xalloc.
7996         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
7997         dependencies.
7998         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
7999         exiting, in the rare case of malloc failure.
8000
8001         getgroups: fix logic error
8002         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
8003         has more than 20 groups.
8004         * modules/getgroups-tests: New test.
8005         * tests/test-getgroups.c: New file.
8006
8007 2009-11-13  Simon Josefsson  <simon@josefsson.org>
8008
8009         * tests/test-base64.c: Improve.
8010
8011 2009-11-13  Simon Josefsson  <simon@josefsson.org>
8012
8013         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
8014         Blake <ebb9@byu.net>.
8015
8016 2009-11-13  Simon Josefsson  <simon@josefsson.org>
8017
8018         * tests/test-xvasprintf.c: Add %s%s related checks.
8019
8020 2009-11-12  Eric Blake  <ebb9@byu.net>
8021
8022         version-etc: match standards.texi style
8023         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
8024         and use <> only for URLs.
8025
8026 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
8027
8028         fts: do not fail on a submount during traversal
8029         * lib/fts.c (fts_build): Read the stat info again after opening
8030         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
8031         Original report at http://bugzilla.redhat.com/501848.
8032
8033 2009-11-12  Jim Meyering  <meyering@redhat.com>
8034
8035         bootstrap: sync from coreutils
8036         * build-aux/bootstrap (bootstrap_epilogue): New function.
8037         Use git_modules_config in one more place.  This make bootstrap's
8038         --gnulib-srcdir option more useful for testing.
8039
8040         bootstrap: generalize autoheader check
8041         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
8042         AC_CONFIG_HEADERS.
8043
8044 2009-11-11  Eric Blake  <ebb9@byu.net>
8045
8046         mkfifoat: use new modules for Solaris and BSD bugs
8047         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
8048         * lib/mkfifoat.c (mknodat): Split...
8049         * lib/mknodat.c (mknodat): ...into new file.
8050         * modules/mkfifoat (Files): Ship new file.
8051         (Depends-on): Add mkfifo, mknod.
8052         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
8053         (Depends-on): Add symlink.
8054         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
8055         redundant with test_mkfifo.h.
8056         (do_mkfifoat, do_mknodat): New helpers.
8057
8058         mknod: new module
8059         * modules/mknod: New file.
8060         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
8061         * lib/mknod.c (mknod): Likewise.
8062         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
8063         defaults.
8064         * modules/sys_stat (Makefile.am): Substitute them.
8065         * lib/sys_stat.in.h (mknod): Declare replacement.
8066         * MODULES.html.sh (Support for systems lacking POSIX:2008):
8067         Document it.
8068         * doc/posix-functions/mknod.texi (mknod): Likewise.
8069         * modules/mknod-tests: New test.
8070         * tests/test-mknod.c: Likewise.
8071
8072         mkfifo: new module
8073         * modules/mkfifo: New file.
8074         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
8075         * lib/mkfifo.c (mkfifo): Likewise.
8076         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
8077         defaults.
8078         * modules/sys_stat (Makefile.am): Substitute them.
8079         * lib/sys_stat.in.h (mkfifo): Declare replacement.
8080         * MODULES.html.sh (Support for systems lacking POSIX:2008):
8081         Document it.
8082         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
8083         * modules/mkfifo-tests: New test.
8084         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
8085         from test-mkfifoat.c.
8086         * tests/test-mkfifo.c: New file.
8087
8088         readlink: detect FreeBSD bug
8089         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
8090         slash on symlink.
8091         * doc/posix-functions/readlink.texi (readlink): Document the bug.
8092         * tests/test-readlink.h (test_readlink): Enhance test.
8093
8094         symlink: detect FreeBSD bug
8095         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
8096         slash on symlink.
8097         * doc/posix-functions/symlink.texi (symlink): Document the bug.
8098         * tests/test-symlink.h (test_symlink): Enhance test.
8099
8100 2009-11-10  Eric Blake  <ebb9@byu.net>
8101
8102         link: detect FreeBSD bug
8103         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
8104         symlink.
8105         * doc/posix-functions/link.texi (link): Document the bug.
8106         * tests/test-link.h (test_link): Enhance test.
8107         * tests/test-linkat.c (main): Update caller.
8108
8109         unlink, remove: detect FreeBSD bug
8110         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
8111         slash on symlink.
8112         * doc/posix-functions/unlink.texi (unlink): Document the bug.
8113         * doc/posix-functions/remove.texi (remove): Likewise.
8114         * tests/test-unlink.h (test_unlink): Enhance test.
8115         * tests/test-remove.c (main): Likewise.
8116
8117 2009-11-09  Eric Blake  <ebb9@byu.net>
8118
8119         rename: detect FreeBSD bug
8120         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
8121         slash on symlink.
8122         * modules/renameat-tests (Depends-on): Add filenamecat.
8123         * tests/test-rename.h (test_rename): Allow one more errno.
8124         * tests/test-renameat.c (main): Likewise.
8125         * doc/posix-functions/rename.texi (rename): Document the bug.
8126
8127         open: detect FreeBSD bug
8128         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
8129         symlink.
8130         * doc/posix-functions/open.texi (open): Document the bug.
8131         * doc/posix-functions/utimes.texi (utimes): Likewise.
8132         * tests/test-open.h (test_open): Add parameters, and test symlink
8133         handling.
8134         * tests/test-open.c (main): Adjust caller.
8135         * tests/test-fcntl-safer.c (main): Likewise.
8136         * modules/open-tests (Depends-on): Add stdbool, symlink.
8137         * modules/fcntl-safer-tests (Depends-on): Likewise.
8138         * tests/test-openat.c (main): Add test-open tests.
8139
8140         stat: detect FreeBSD bug
8141         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
8142         symlink.
8143         * doc/posix-functions/stat.texi (stat): Document the bug.
8144         * tests/test-stat.h (test_stat_func): Add argument.
8145         * tests/test-stat.c (main): Adjust caller.
8146         * tests/test-fstatat.c (main): Likewise.
8147         * modules/stat-tests (Depends-on): Add stdbool, symlink.
8148         Reported by Jim Meyering.
8149
8150 2009-11-09  James Youngman  <jay@gnu.org>
8151
8152         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
8153         * lib/strftime.c: Correct placement of #include "ignore-value.h".
8154
8155 2009-11-08  Jim Meyering  <meyering@redhat.com>
8156
8157         utimens: remove invalid futimesat call
8158         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
8159         It used the file descriptor of the target file as the DIR_FD
8160         parameter and NULL as the file name.  That caused failure with
8161         errno == EFAULT on FreeBSD-8.0-rc2
8162
8163 2009-11-07  Eric Blake  <ebb9@byu.net>
8164
8165         fflush, freadseek: use fseeko, not fseek
8166         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
8167         (clear_ungetc_buffer): Avoid potential problems on large files.
8168         * lib/freadseek.c (freadseek): Likewise.
8169         * modules/freadseek (Depends-on): Add fseeko.
8170         * modules/fseek (configure.ac): Set a witness.
8171         * tests/test-fflush.c (main): Use fseeko.
8172         * tests/test-fpurge.c (fseek): Disable link warning.
8173         * tests/test-freadable.c (fseek): Likewise.
8174         * tests/test-freading.c (fseek): Likewise.
8175         * tests/test-fseeko.c (fseek): Likewise.
8176         * tests/test-ftell.c (fseek): Likewise.
8177         * tests/test-ftello.c (fseek): Likewise.
8178         * tests/test-fwritable.c (fseek): Likewise.
8179         * tests/test-fwriting.c (fseek): Likewise.
8180
8181 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8182
8183         * modules/memchr (Depends-on): Drop getpagesize dependency.
8184
8185 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8186
8187         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
8188         Reported by Ludovic Courtès.
8189         * build-aux/pmccabe2html: Improve example usage.
8190         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
8191
8192 2009-11-06  Jim Meyering  <meyering@redhat.com>
8193
8194         do-release-commit-and-tag: New module.
8195         Automate the release-commit and tag process.
8196         * build-aux/do-release-commit-and-tag: New script, from coreutils.
8197         * modules/do-release-commit-and-tag: New file.
8198         * MODULES.html.sh (Support for maintaining and releasing): Add it.
8199
8200 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8201
8202         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
8203         because test-select.c uses inet_pton.
8204
8205 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8206
8207         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
8208         GETADDRINFO_LIB.  Bump serial number.
8209         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
8210         Suggested by Eric Blake <ebb9@byu.net>.
8211
8212 2009-11-05  Eric Blake  <ebb9@byu.net>
8213
8214         strtod: detect darwin bug
8215         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
8216         Reported by Leo Davis.
8217
8218         freopen-safer: new module
8219         * modules/freopen-safer: New module.
8220         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
8221         * lib/freopen-safer.c (freopen_safer): New file.
8222         * lib/stdio-safer.h (freopen_safer): New declaration.
8223         * lib/stdio--.h (freopen): New override.
8224         * MODULES.html.sh (File stream based Input/Output): Mention it.
8225         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
8226         freopen-safer module.
8227         * doc/posix-functions/stderr.texi (stderr): Likewise.
8228         * doc/posix-functions/stdin.texi (stdin): Likewise.
8229         * doc/posix-functions/stdout.texi (stdout): Likewise.
8230         * modules/freopen-safer-tests: New test.
8231         * tests/test-reopen-safer.c: New file.
8232
8233 2009-11-05  Jim Meyering  <meyering@redhat.com>
8234
8235         maint.mk: Prohibit inclusion of "close-stream.h" without use.
8236         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
8237
8238 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8239
8240         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
8241
8242 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8243
8244         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
8245
8246 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8247
8248         Fix link error.
8249         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
8250         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
8251
8252 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8253
8254         * tests/test-func.c: Also test value of __func__.
8255
8256 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8257
8258         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
8259         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
8260
8261 2009-11-05  Bruno Haible  <bruno@clisp.org>
8262
8263         Fix link error.
8264         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
8265         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
8266         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
8267
8268 2009-11-05  Bruno Haible  <bruno@clisp.org>
8269
8270         Tests for module 'inet_pton'.
8271         * modules/inet_pton-tests: New file.
8272         * tests/test-inet_pton.c: New file.
8273
8274 2009-11-05  Bruno Haible  <bruno@clisp.org>
8275
8276         Tests for module 'inet_ntop'.
8277         * modules/inet_ntop-tests: New file.
8278         * tests/test-inet_ntop.c: New file.
8279
8280 2009-11-04  Eric Blake  <ebb9@byu.net>
8281
8282         stdlib-safer: wrap all mkstemp variants
8283         * modules/mkostemp (configure.ac): Set witness.
8284         * modules/mkostemps (configure.ac): Likewise.
8285         * modules/mkstemps (configure.ac): Likewise.
8286         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
8287         (mkstemps_safer): Wrap more functions.
8288         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
8289         wrapping.
8290         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
8291         (mkstemps_safer): Implement the wrappers.
8292
8293         mkstemps, mkostemps: new modules
8294         * modules/mkostemps: New module.
8295         * modules/mkstemps: Likewise.
8296         * lib/mkostemps.c (mkostemps): New file.
8297         * lib/mkstemps.c (mkstemps): Likewise.
8298         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
8299         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
8300         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
8301         * modules/stdlib (Makefile.am): Substitute them.
8302         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
8303         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
8304         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
8305         * doc/gnulib.texi (Glibc stdlib.h): Include them.
8306         * MODULES.html.sh (File system functions): Mention them.
8307
8308         tempname: resync from glibc
8309         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
8310         same values for __GT_FILE as glibc.  Abort even when assertions
8311         are disabled.
8312         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
8313         match its value otherwise.  Allow idempotent inclusion.
8314         * lib/mkdtemp.c (mkdtemp): Adjust caller.
8315         * lib/mkostemp.c (mkostemp): Likewise.
8316         * lib/mkstemp.c (mkstemp): Likewise.
8317         * lib/tmpfile.c (tmpfile): Likewise.
8318         * NEWS: Document this.
8319
8320         utimens: fix use of futimens on older Linux
8321         * lib/utimens.c (fdutimens): Use updated, rather than original,
8322         timespec to avoid bug in older Linux kernel.
8323         Reported by Simon Josefsson.
8324
8325 2009-11-04  Bruno Haible  <bruno@clisp.org>
8326
8327         Make num_processors more flexible and consistent.
8328         * lib/nproc.h (enum nproc_query): New type.
8329         (num_processors): Add a 'query' argument.
8330         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
8331         (num_processors): Add a 'query' argument. Test the value of the
8332         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
8333         mingw, count the number of CPUs available for the current process.
8334         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
8335         Check for sched_getaffinity and sched_getaffinity_np.
8336         * modules/nproc (Depends-on): Add c-ctype, extensions.
8337         * NEWS: Mention the change.
8338
8339 2009-11-03  Bruno Haible  <bruno@clisp.org>
8340
8341         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
8342
8343 2009-11-03  Jim Meyering  <meyering@redhat.com>
8344
8345         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
8346         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
8347         if it is defined.
8348
8349 2009-11-02  Eric Blake  <ebb9@byu.net>
8350
8351         mktime, timegm: share common declaration
8352         * lib/mktime-internal.h: New file.
8353         * lib/mktime.c: Use it rather than open-coding a declaration.
8354         * lib/timegm.c: Likewise.
8355         * modules/mktime (Files): Ship it.
8356         * modules/timegm (Files): Likewise.
8357         Suggested by Bruno Haible.
8358
8359         test-update-copyright: update test to match script changes
8360         * tests/test-update-copyright.sh: Avoid hard-coding perl
8361         location.  Don't update *.bak created by earlier runs.
8362
8363 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
8364             Simon Josefsson  <simon@josefsson.org>
8365             Bruno Haible  <bruno@clisp.org>
8366
8367         Fix link error on Solaris 8.
8368         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
8369         also in libnsl. Define also INET_PTON_LIB.
8370         * modules/inet_pton (Link): New section.
8371
8372 2009-11-02  Simon Josefsson  <simon@josefsson.org>
8373             Bruno Haible  <bruno@clisp.org>
8374
8375         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
8376         * modules/inet_ntop (Link): New section.
8377         Reported by Boyan Kasarov <bkasarov@gmail.com>.
8378
8379 2009-11-02  Eric Blake  <ebb9@byu.net>
8380
8381         maint: avoid compiler warnings in m4 macros
8382         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
8383         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
8384
8385 2009-11-02  Simon Josefsson  <simon@josefsson.org>
8386
8387         * m4/pmccabe2html.m4: Remove file.
8388         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
8389         function.  Change maintainer.
8390         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
8391         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
8392         Courtès).
8393
8394 2009-10-31  Eric Blake  <ebb9@byu.net>
8395
8396         fseeko: fix m4 regression
8397         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
8398         regression from 2009-10-27.
8399         Reported by Ralf Wildenhues.
8400
8401 2009-10-31  Jim Meyering  <meyering@redhat.com>
8402
8403         inttostr: aesthetics and improved (compile-time) safety
8404         Define inttype_is_signed rather than inttype_is_unsigned,
8405         since the sole use is via "#if inttype_is_signed".
8406         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
8407         inttype_is_unsigned.
8408         * lib/offtostr.c (inttype_is_signed): Likewise.
8409         * lib/uinttostr.c (inttype_is_signed): Likewise.
8410         * lib/umaxtostr.c (inttype_is_signed): Likewise.
8411         * lib/inttostr.c (inttostr): Use verify to cross-check the
8412         inttype_is_signed value and the signedness of the actual type.
8413         * modules/inttostr (Depends-on): Add verify.
8414
8415 2009-10-30  Eric Blake  <ebb9@byu.net>
8416
8417         build: avoid compiler warnings
8418         * lib/fchmodat.c (lchmod): Mark unused variables.
8419         * lib/getopt.c (_getopt_initialize): Likewise.
8420         * lib/mktime.c (__mktime_internal): Provide prototype.
8421         * lib/inttostr.c (inttostr): Avoid compiler warning even with
8422         older gcc that do not understand #pragma GCC diagnostic.
8423         * lib/uinttostr.c (inttype_is_unsigned): Define.
8424         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
8425
8426 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
8427
8428         stat: fix compilation on AIX
8429         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
8430         only see struct stat64.
8431
8432 2009-10-30  Eric Blake  <ebb9@byu.net>
8433
8434         exclude: make more robust
8435         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
8436         rather than masking a coding bug.
8437         Suggested by Bruno Haible.
8438
8439 2009-10-30  Jim Meyering  <meyering@redhat.com>
8440
8441         perl scripts: remove #!/usr/bin/perl in favor of more portable...
8442         Rather than putting #!/usr/bin/perl on the first line,
8443         start with a variant of what's recommended by "man perlrun" that
8444         invokes the first "perl" program from your shell's search path.
8445         * build-aux/gitlog-to-changelog: Replace #!... as above.
8446         Add a "Local Variables" perl mode setting.
8447         Prompted by a patch from Ludovic Courtès.
8448         Improved by Eric Blake.
8449         * build-aux/useless-if-before-free: Likewise.
8450         * build-aux/announce-gen: Likewise.
8451         * build-aux/update-copyright: Likewise.
8452
8453 2009-10-29  Eric Blake  <ebb9@byu.net>
8454
8455         filenamecat-lgpl: adjust clients
8456         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
8457         filenamecat.
8458         * modules/renameat (Depends-on): Likewise.
8459
8460         filenamecat: split into filenamecat-lgpl
8461         * modules/filenamecat-lgpl: New module.
8462         * modules/filenamecat (Files): Move library-safe files into
8463         filenamecat-lgpl.
8464         (Depends-on): Add filenamecat-lgpl.
8465         (configure.ac): Declare witness.
8466         * lib/filenamecat.h (file_name_concat): Only declare when using
8467         GPL module.
8468         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
8469         Move...
8470         * lib/filenamecat-lgpl.c: ...into new file.
8471         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
8472         (gl_FILE_NAME_CONCAT): Use it.
8473         * MODULES.html.sh (File system functions): Mention new module.
8474
8475         argp: avoid memory leak
8476         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
8477         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
8478         base_name, since the latter malloc()s and can call exit().
8479         Leak introduced 2006-07-03.
8480
8481         dirname-lgpl: adjust clients that don't need full dirname
8482         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
8483         * modules/filenamecat (Depends-on): Likewise.
8484         * modules/linkat (Depends-on): Likewise.
8485         * modules/mkancesdirs (Depends-on): Likewise.
8486         * modules/mkdir (Depends-on): Likewise.
8487         * modules/openat (Depends-on): Likewise.
8488         * modules/savewd (Depends-on): Likewise.
8489         * modules/rename (Depends-on): Likewise.
8490         (License): Relax license.
8491         * modules/mkdir-tests (Depends-on): Drop progname.
8492         (Makefile.am): Delete unneeded LDADD.
8493         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
8494
8495         dirname: split into dirname-lgpl
8496         * modules/dirname-lgpl: New module.
8497         * modules/dirname (Files): Move library-safe files into
8498         dirname-lgpl.
8499         (Depends-on): Add dirname-lgpl.
8500         (configure.ac): Declare witness.
8501         * modules/double-slash-root (License): Relax license.
8502         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
8503         module.
8504         * lib/dirname.c (dir_len, mdir_name): Move...
8505         * lib/dirname-lgpl.c: ...into new file.
8506         * lib/basename.c (last_component, base_len): Move...
8507         * lib/basename-lgpl.c: ...into new file.
8508         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
8509         (gl_DIRNAME): Use it.
8510         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
8511         Mention new module.
8512         * modules/dirname-tests (Depends-on): Add progname.
8513         * tests/test-dirname.c (program_name): Delete.
8514
8515         mkdir: make safe for libraries
8516         * modules/mkdir (Depends-on): Drop xalloc.
8517         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
8518         exit.
8519
8520         tests: avoid some compiler warnings
8521         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
8522         literals.
8523         * tests/test-memchr.c (main): Avoid type mismatch.
8524         * tests/test-arpa_inet.c (main): Avoid unused parameters.
8525         * tests/test-base64.c (main): Likewise.
8526         * tests/test-getdelim.c (main): Likewise.
8527         * tests/test-gethostname.c (main): Likewise.
8528         * tests/test-getline.c (main): Likewise.
8529         * tests/test-netinet_in.c (main): Likewise.
8530         * tests/test-select.c (open_server_socket, main): Likewise.
8531         * tests/test-select-stdin.c (main): Likewise.
8532         * tests/test-sockets.c (main): Likewise.
8533         * tests/test-strsignal.c (main): Likewise.
8534         * tests/test-sys_select.c (main): Likewise.
8535         * tests/test-sys_socket.c (main): Likewise.
8536         * tests/test-u64.c (main): Likewise.
8537         * tests/test-xfprintf-posix.c (main): Likewise.
8538         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
8539
8540         sockets: avoid compiler warning
8541         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
8542
8543         maint: detect usage(1) and other suspicious exits
8544         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
8545
8546 2009-10-29  Jim Meyering  <meyering@redhat.com>
8547
8548         timespec: long-to-int truncation could make timespec_cmp malfunction
8549         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
8550         a multiple of 2^32 nanoseconds as no difference.
8551
8552 2009-10-28  Jim Meyering  <meyering@redhat.com>
8553
8554         fprintftime: wrap macro code argument in "do {...} while(0)"
8555         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
8556         cpy macro must be a statement that can be followed by a semicolon.
8557         Now that the else clause contains a comment and is hence longer
8558         than one line, I require curly braces.  That in turn requires
8559         that we wrap this code block in the standard do...while(0).
8560
8561         fprintftime: remove stray semicolon from previous change
8562         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
8563
8564         fprintftime: avoid a warning about ignored fwrite return value
8565         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
8566         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
8567         that is unsafe.
8568         * modules/fprintftime (Depends-on): Add ignore-value.
8569
8570         exclude: avoid an unwarranted warning
8571         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
8572
8573 2009-10-27  Eric Blake  <ebb9@byu.net>
8574
8575         fseek: avoid compilation failure when fflush is replaced
8576         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
8577         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
8578         module is in use.
8579         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
8580         module is not in use; since REPLACE_FSEEK worked otherwise.
8581         (GNULIB_FTELLO): Likewise for ftell.
8582         Reported by Ian Beckwith and others.
8583
8584 2009-10-27  Bruno Haible  <bruno@clisp.org>
8585
8586         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
8587         Reported by Jim Meyering.
8588
8589 2009-10-27  Jim Meyering  <jim@meyering.net>
8590             Bruno Haible  <bruno@clisp.org>
8591
8592         Avoid warning despite dropping the return value of fwrite.
8593         * lib/unicodeio.c: Include ignore-value.h.
8594         (fwrite_success_callback): Explicitly ignore fwrite's return value.
8595         * modules/unicodeio (Depends-on): Add ignore-value.
8596
8597 2009-10-26  Eric Blake  <ebb9@byu.net>
8598
8599         areadlinkat: fix fallback path
8600         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
8601         pointer and zero.
8602
8603 2009-10-22  Pádraig Brady  <P@draigBrady.com>
8604
8605         Use a better IO block size for modern systems
8606         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
8607         * lib/md2.c: Likewise.
8608         * lib/md4.c: Likewise.
8609         * lib/md5.c: Likewise.
8610         * lib/sha1.c: Likewise.
8611         * lib/sha256.c: Likewise.
8612         * lib/sha512.c: Likewise.
8613
8614 2009-10-22  Eric Blake  <ebb9@byu.net>
8615
8616         tests: avoid several compiler warnings
8617         * tests/test-getcwd.c (main): Avoid buffer underflow.
8618         * tests/test-getdate.c (main): String literals are not safe with
8619         putenv, so use setenv.  Declare unused argument.
8620         * modules/getdate-tests (Depends-on): Add setenv.
8621         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
8622         problems with string literals in char *.
8623         * tests/test-hash.c (main): Avoid shadowing declaration.
8624         (insert_new): Treat string literals as char const *.
8625         * tests/test-getopt.h (test_getopt): Likewise.
8626         (getopt_loop): Alter types to minimize casting elsewhere.
8627         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
8628         (test_getopt_long_posix): Likewise.
8629         (do_getopt_long): Add wrapper to minimize casting.
8630         * tests/test-atexit.c (clear_temp_file): Use void.
8631         * tests/test-areadlink-with-size.c (main): Declare unused
8632         arguments.
8633         * tests/test-areadlink.c (main): Likewise.
8634         * tests/test-areadlinkat-with-size.c (main): Likewise.
8635         * tests/test-areadlinkat.c (main): Likewise.
8636         * tests/test-canonicalize-lgpl.c (main): Likewise.
8637         * tests/test-canonicalize.c (main): Likewise.
8638         * tests/test-dirent-safer.c (main): Likewise.
8639         * tests/test-dirname.c (main): Likewise.
8640         * tests/test-dup2.c (main): Likewise.
8641         * tests/test-fchdir.c (main): Likewise.
8642         * tests/test-fcntl-h.c (main): Likewise.
8643         * tests/test-fcntl-safer.c (main): Likewise.
8644         * tests/test-fdopendir.c (main): Likewise.
8645         * tests/test-fdutimensat.c (main): Likewise.
8646         * tests/test-fflush.c (main): Likewise.
8647         * tests/test-filenamecat.c (main): Likewise.
8648         * tests/test-filevercmp.c (main): Likewise.
8649         * tests/test-fopen-safer.c (main): Likewise.
8650         * tests/test-fopen.c (main): Likewise.
8651         * tests/test-fpending.c (main): Likewise.
8652         * tests/test-fpurge.c (main): Likewise.
8653         * tests/test-freading.c (main): Likewise.
8654         * tests/test-fstatat.c (main): Likewise.
8655         * tests/test-fsync.c (main): Likewise.
8656         * tests/test-futimens.c (main): Likewise.
8657         * tests/test-getndelim2.c (main): Likewise.
8658         * tests/test-gettimeofday.c (main): Likewise.
8659         * tests/test-getopt.c (main): Likewise.
8660         * tests/test-i-ring.c (main): Likewise.
8661         * tests/test-inttypes.c (main): Likewise.
8662         * tests/test-link.c (main): Likewise.
8663         * tests/test-lstat.c (main): Likewise.
8664         * tests/test-math.c (main): Likewise.
8665         * tests/test-md5.c (main): Likewise.
8666         * tests/test-memchr2.c (main): Likewise.
8667         * tests/test-memrchr.c (main): Likewise.
8668         * tests/test-mkdir.c (main): Likewise.
8669         * tests/test-mkdirat.c (main): Likewise.
8670         * tests/test-mkfifoat.c (main): Likewise.
8671         * tests/test-open.c (main): Likewise.
8672         * tests/test-openat-safer.c (main): Likewise.
8673         * tests/test-openat.c (main): Likewise.
8674         * tests/test-quotearg.c (main): Likewise.
8675         * tests/test-rawmemchr.c (main): Likewise.
8676         * tests/test-readlink.c (main): Likewise.
8677         * tests/test-remove.c (main): Likewise.
8678         * tests/test-rename.c (main): Likewise.
8679         * tests/test-renameat.c (main): Likewise.
8680         * tests/test-rmdir.c (main): Likewise.
8681         * tests/test-sha1.c (main): Likewise.
8682         * tests/test-signal.c (main): Likewise.
8683         * tests/test-sigaction.c (main): Likewise.
8684         * tests/test-stat.c (main): Likewise.
8685         * tests/test-stat-time.c (main): Likewise.
8686         * tests/test-stddef.c (main): Likewise.
8687         * tests/test-stdint.c (main): Likewise.
8688         * tests/test-stdio.c (main): Likewise.
8689         * tests/test-stdlib.c (main): Likewise.
8690         * tests/test-strchrnul.c (main): Likewise.
8691         * tests/test-strerror.c (main): Likewise.
8692         * tests/test-string.c (main): Likewise.
8693         * tests/test-strtod.c (main): Likewise.
8694         * tests/test-strverscmp.c (main): Likewise.
8695         * tests/test-symlink.c (main): Likewise.
8696         * tests/test-symlinkat.c (main): Likewise.
8697         * tests/test-sys_stat.c (main): Likewise.
8698         * tests/test-sys_time.c (main): Likewise.
8699         * tests/test-time.c (main): Likewise.
8700         * tests/test-unistd.c (main): Likewise.
8701         * tests/test-unlink.c (main): Likewise.
8702         * tests/test-unlinkat.c (main): Likewise.
8703         * tests/test-utimens.c (main): Likewise.
8704         * tests/test-utimensat.c (main): Likewise.
8705         * tests/test-version-etc.c (main): Likewise.
8706         * tests/test-wchar.c (main): Likewise.
8707         * tests/test-wctype.c (main): Likewise.
8708         * tests/test-xprintf-posix.c (main): Likewise.
8709         * tests/test-posixtm.c (main): Likewise.
8710         (STREQ): Delete unused macro.
8711         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
8712         shadowed variables.
8713         * tests/test-memchr.c (main): Likewise.
8714
8715 2009-10-21  Eric Blake  <ebb9@byu.net>
8716
8717         areadlinkat: avoid failure on older glibc
8718         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
8719         rather than mis-comparing 0 against FUNC_RESULT of char*.
8720
8721 2009-10-21  Bruno Haible  <bruno@clisp.org>
8722
8723         * modules/stpncpy (License): Relicense under LGPLv2+.
8724         Reported by David Lutterkort <lutter@redhat.com>.
8725
8726 2009-10-20  Eric Blake  <ebb9@byu.net>
8727
8728         utimensat: work around Solaris 9 bug
8729         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
8730         has trailing slash bugs.
8731         * tests/test-lutimens.h (test_lutimens): Enhance test.
8732         * tests/test-utimens.h (test_utimens): Likewise.
8733         * doc/posix-functions/utime.texi (utime): Enhance documentation.
8734         * doc/posix-functions/utimes.texi (utimes): Likewise.
8735         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
8736         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
8737         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
8738         * doc/posix-functions/futimens.texi (futimens): Likewise.
8739
8740         fdutimensat: new module
8741         * modules/fdutimensat: New file.
8742         * lib/fdutimensat.c (fdutimensat): Likewise.
8743         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
8744         * MODULES.html.sh (File system functions): Mention module.
8745         * modules/fdutimensat-tests: New test.
8746         * tests/test-fdutimensat.c: Likewise.
8747
8748         doc: regenerate INSTALL
8749         * doc/INSTALL: Reflect recent autoconf update.
8750         * doc/INSTALL.ISO: Likewise.
8751         * doc/INSTALL.UTF-8: Likewise.
8752
8753 2009-10-20  Pádraig Brady  <P@draigBrady.com>
8754
8755         acl: warn if ACL support is not detected
8756         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
8757
8758 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
8759
8760         * lib/nproc.h: Add extern "C" block for C++.
8761
8762 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
8763             Bruno Haible  <bruno@clisp.org>
8764
8765         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
8766         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
8767         * doc/posix-functions/isalpha.texi: Likewise.
8768         * doc/posix-functions/isblank.texi: Likewise.
8769         * doc/posix-functions/iscntrl.texi: Likewise.
8770         * doc/posix-functions/isdigit.texi: Likewise.
8771         * doc/posix-functions/isgraph.texi: Likewise.
8772         * doc/posix-functions/islower.texi: Likewise.
8773         * doc/posix-functions/isprint.texi: Likewise.
8774         * doc/posix-functions/ispunct.texi: Likewise.
8775         * doc/posix-functions/isspace.texi: Likewise.
8776         * doc/posix-functions/isupper.texi: Likewise.
8777         * doc/posix-functions/isxdigit.texi: Likewise.
8778
8779 2009-10-18  Bruno Haible  <bruno@clisp.org>
8780
8781         Tests for module 'isblank'.
8782         * modules/isblank-tests: New file.
8783         * tests/test-isblank.c: New file.
8784
8785         New module 'isblank'.
8786         * lib/isblank.c: New file.
8787         * m4/isblank.m4: New file.
8788         * modules/isblank: New file.
8789         * doc/posix-functions/isblank.texi: Mention the new module.
8790
8791 2009-10-18  Bruno Haible  <bruno@clisp.org>
8792
8793         New module 'ctype'.
8794         * lib/ctype.in.h: New file.
8795         * m4/ctype.m4: New file.
8796         * modules/ctype: New file.
8797         * doc/posix-headers/ctype.texi: Mention the new module.
8798
8799 2009-10-18  Jim Meyering  <meyering@redhat.com>
8800
8801         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
8802         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
8803         right after its initialization, rather than farther down.
8804         Keeping these in close proximity makes it easier to ensure
8805         that each such variable is initialized.  E.g.,
8806
8807             LIB_CLOCK_GETTIME=
8808             AC_SUBST([LIB_CLOCK_GETTIME])
8809
8810         This change also increments these serial numbers.
8811         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
8812         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
8813         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8814
8815 2009-10-18  Bruno Haible  <bruno@clisp.org>
8816
8817         Don't let environment variables perturb build.
8818         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
8819         (gl_PREREQ_GETHRXTIME): ... not here.
8820
8821 2009-10-18  Bruno Haible  <bruno@clisp.org>
8822
8823         Avoid symlink attack in localcharset module.
8824         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
8825         (O_NOFOLLOW): Define fallback.
8826         (get_charset_aliases): Don't open the file if it is a symbolic link.
8827         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
8828         gl_FCNTL_H.
8829         (gl_FCNTL_H): Require it.
8830         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
8831         * modules/localcharset (Files): Add m4/fcntl_h.m4.
8832         Reported by Fergal Glynn <fglynn@veracode.com>.
8833
8834 2009-10-18  Bruno Haible  <bruno@clisp.org>
8835
8836         Implement nproc for mingw.
8837         * lib/nproc.c: Include <windows.h>
8838         (num_processors): On native Windows platforms, try GetSystemInfo.
8839
8840 2009-10-18  Bruno Haible  <bruno@clisp.org>
8841
8842         Implement nproc for IRIX.
8843         * lib/nproc.c: Include <sys/sysmp.h>.
8844         (num_processors): On IRIX systems, try sysmp.
8845         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
8846
8847 2009-10-18  Bruno Haible  <bruno@clisp.org>
8848
8849         Implement nproc for HP-UX.
8850         * lib/nproc.c: Include <sys/pstat.h>
8851         (num_processors): On HP-UX systems, try pstat_getdynamic.
8852         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
8853         pstat_getdynamic.
8854
8855 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
8856             Bruno Haible  <bruno@clisp.org>
8857
8858         Implement nproc for NetBSD, OpenBSD.
8859         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
8860         (ARRAY_SIZE): New macro.
8861         (num_processors): On BSD systems, try sysctl of HW_NCPU.
8862         * m4/nproc.m4: New file.
8863         * modules/nproc (Files): Add m4/nproc.m4.
8864         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
8865         (Makefile.am): Instead, augment lib_SOURCES.
8866
8867 2009-10-18  Bruno Haible  <bruno@clisp.org>
8868
8869         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
8870         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
8871         sys/param.h.
8872
8873 2009-10-16  Eric Blake  <ebb9@byu.net>
8874
8875         utimensat: new module
8876         * modules/utimensat: New file.
8877         * lib/utimensat.c (utimensat): Likewise.
8878         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
8879         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
8880         so we can work around Linux bugs.
8881         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
8882         * modules/sys_stat (Makefile.am): Substitute them.
8883         * lib/sys_stat.in.h (utimensat): Declare it.
8884         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
8885         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
8886         * modules/utimensat-tests: New test.
8887         * tests/test-utimensat.c: Likewise.
8888
8889         utimens: let lutimens work on non-symlinks
8890         * lib/utimens.c (lutimens): Fall back to utimens rather than
8891         failing with ENOSYS, when file is not a symlink.
8892         (utimens): Reduce redirection.
8893         * tests/test-lutimens.h (test_lutimens): Update test to cover
8894         non-symlinks.
8895         * tests/test-utimens.h (test_utimens): Update test to cover
8896         symlinks.
8897         * tests/test-utimens.c (main): Update caller.
8898
8899         utimens: cache whether utimensat syscall works
8900         * lib/utimens.c (utimensat_works_really): New cache variable.
8901         (fdutimens, lutimens): Use it to avoid failing syscall.
8902
8903         test-stat-time, test-utimens: improve portability
8904         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
8905         ext4 on alpha, and for cygwin.
8906         * tests/test-utimens-common.h: New file.
8907         (nap): Factor delays into single function.
8908         * tests/test-lutimens.h (test_lutimens): Use new header.
8909         * tests/test-futimens.h (test_futimens): Likewise.
8910         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
8911         timestamps to occur from same machine, as was done previously for
8912         test_utimens.
8913         * modules/utimens-tests (Files): Ship new file.
8914         * modules/futimens-tests (Files): Likewise.
8915         Reported in part by Jim Meyering.
8916
8917         sys_stat: sort replacement declarations
8918         * lib/sys_stat.in.h: Sort declarations.
8919         * lib/futimens.c (futimens): Fix typo.
8920
8921 2009-10-15  Jim Meyering  <meyering@redhat.com>
8922
8923         don't let environment settings perturb build
8924         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
8925         could cause a configure-time and/or build-time malfunction.
8926         Typically, a configure-time function-in-library test is performed
8927         via code like this:
8928
8929           LIB_VAR=
8930           AC_SUBST([LIB_VAR])
8931           prefix_saved_LIBS=$LIBS
8932             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
8933                        [test "$ac_cv_search_FUNC" = "none required" ||
8934                         LIB_VAR=$ac_cv_search_FUNC])
8935           LIBS=$prefix_saved_LIBS
8936
8937         However, in each of the files affected by this change, the LIB_VAR=
8938         initialization was omitted.  Thus, when set in the environment, its
8939         value would propagate into generated Makefiles when FUNC is not found
8940         in LIB_NAME.
8941         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
8942         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
8943         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8944
8945 2009-10-14  Eric Blake  <ebb9@byu.net>
8946
8947         fchdir: avoid infinite recursion in mingw
8948         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
8949         recursing.
8950
8951         test-stat-time: port to mingw
8952         * tests/test-stat-time.c (force_unlink): Return a value.
8953         (test_ctime) [W32]: Fix compilation error.
8954         (nap): Don't call usleep with too large an argument.  Use
8955         force_unlink.
8956         * doc/pastposix-functions/usleep.texi (usleep): Document the
8957         portability issue.
8958
8959 2009-10-13  Jim Meyering  <meyering@redhat.com>
8960
8961         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
8962         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
8963         * modules/pipe-filter-ii: Likewise.
8964         * modules/sys_socket-tests: Likewise.
8965         * modules/tsearch-tests: Likewise.
8966         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
8967         (check): Depend on it.
8968
8969 2009-10-12  Eric Blake  <ebb9@byu.net>
8970
8971         utimens-tests: port to NFS file systems
8972         * tests/test-utimens.h (test_utimens): Refactor utimecmp
8973         comparisons to avoid spurious failures from timestamp drift
8974         between NFS machines.
8975
8976 2009-10-12  Eric Blake  <ebb9@byu.net>
8977
8978         stat-time-tests: minor cleanups
8979         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
8980         * tests/test-stat-time.c (nap): Separate assignment from call.
8981         Suggested by Paolo Bonzini and Bruno Haible.
8982
8983         sys_stat: guarantee struct timespec
8984         * lib/sys_stat.in.h (includes): Always include <time.h>
8985         * modules/sys_stat (Depends-on): Add time.
8986         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
8987         mode_t permission values.
8988         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
8989         get at subsecond timestamps.
8990
8991 2009-10-10  Eric Blake  <ebb9@byu.net>
8992
8993         futimens: new module
8994         * modules/futimens: New file.
8995         * lib/futimens.c (futimens): Likewise.
8996         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
8997         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
8998         we can work around Linux bugs.
8999         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
9000         * modules/sys_stat (Makefile.am): Substitute them.
9001         * lib/sys_stat.in.h (futimens): Declare it.
9002         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9003         * doc/posix-functions/futimens.texi (futimens): Likewise.
9004         * modules/futimens-tests: New test.
9005         * tests/test-futimens.c: Likewise.
9006
9007         utimens: introduce fdutimens
9008         * lib/utimens.h (fdutimens): New prototype.
9009         * lib/utimens.c (gl_futimens): Move guts...
9010         (fdutimens): ...to new interface.
9011         * tests/test-utimens.c (do_fdutimens): Use it.
9012
9013         utimens: add UTIME_NOW and UTIME_OMIT support
9014         * lib/utimens.c (validate_timespec, update_timespec): New helper
9015         functions.
9016         (gl_futimens, lutimens): Use them.
9017         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
9018         stdbool, sys_stat.
9019         (Link): Mention resulting library dependency.
9020         * modules/utimecmp (Link): Likewise.
9021         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
9022         (Makefile.am): Pick up library dependency.
9023         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
9024         definition.
9025         * tests/test-sys_stat.c: Test the definitions.
9026         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
9027         * NEWS: Document library dependency.
9028
9029         utimecmp: support symlink timestamps
9030         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
9031         hashing when possible.  Use pathconf when available.
9032         (SYSCALL_RESOLUTION): Recognize tighter resolution.
9033         * modules/utimecmp (Depends-on): Add lstat.
9034
9035         utimens: add lutimens interface
9036         * lib/utimens.c (lutimens): New function.
9037         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
9038         * lib/utimens.h (lutimens): Declare new interface.
9039         * tests/test-utimens.c (main): Enhance test.
9040         * tests/test-lutimens.h (test_lutimens): New file.
9041         * modules/utimens-tests (Files): Distribute it.
9042         (Depends-on): Add symlink.
9043         (configure.ac): Check for usleep.
9044
9045         utimens: validate futimens usage
9046         * lib/utimens.c (gl_futimens): Require valid fd up front, using
9047         fewer syscalls on failure later on.  Avoid compiler warning on
9048         mingw.
9049         * modules/utimens (Depends-on): Add dup2.
9050
9051         utimens: add test
9052         * modules/utimens-tests: New test.
9053         * tests/test-utimens.h: New file.
9054         * tests/test-futimens.h: Likewise.
9055         * tests/test-utimens.c: Likewise.
9056
9057         doc: mention timestamp portability issues
9058         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
9059         instead.
9060         * doc/posix-functions/utime.texi (utime): Likewise.
9061         * doc/posix-functions/utimes.texi (utimes): Likewise.
9062         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
9063         instead.
9064         * doc/posix-functions/futimens.texi (futimens): Mention utimens
9065         module.
9066         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
9067         Mention weakness with symlink timestamps.
9068         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
9069         to utimensat/futimens instead.
9070         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
9071
9072         test-dup2: enhance test
9073         * tests/test-dup2.c (main): Also check AT_FDCWD.
9074
9075         test-stat-time: avoid more spurious failures
9076         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
9077         xfs; and avoid race if the two timestamps cross quantization edge.
9078
9079         relocatable: prefer 'file system' over 'filesystem'
9080         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
9081         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
9082         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
9083         * doc/relocatable.texi (Enabling Relocatability): Likewise.
9084         * lib/relocatable.c (compute_curr_prefix): Likewise.
9085
9086 2009-10-10  Jim Meyering  <meyering@redhat.com>
9087
9088         stat-time-tests: check for the usleep function
9089         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
9090
9091 2009-10-10  Bruno Haible  <bruno@clisp.org>
9092
9093         * modules/xnanosleep: Put the Link section after the Include section.
9094
9095 2009-10-09  Eric Blake  <ebb9@byu.net>
9096
9097         dup2: work around FreeBSD 6.1 bug
9098         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
9099         * doc/posix-functions/dup2.texi (dup2): Document it.
9100         Reported by Nelson H. F. Beebe and Jim Meyering.
9101
9102         test-stat-time: port to buggy NFS clients
9103         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
9104         (test_ctime): Also skip test if mtime and ctime are skewed.
9105
9106         maint: prefer 'file system' over 'filesystem'
9107         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
9108         * doc/posix-functions/lstat.texi (lstat): Likewise.
9109         * lib/file-has-acl.c (file_has_acl): Likewise.
9110         * lib/fwriteerror.c [TEST]: Likewise.
9111         * tests/test-areadlink.h (test_areadlink): Likewise.
9112         * tests/test-areadlinkat-with-size.c (main): Likewise.
9113         * tests/test-areadlinkat.c (main): Likewise.
9114         * tests/test-canonicalize-lgpl.c (main): Likewise.
9115         * tests/test-canonicalize.c (main): Likewise.
9116         * tests/test-fstatat.c (main): Likewise.
9117         * tests/test-linkat.c (main): Likewise.
9118         * tests/test-lstat.h (test_lstat_func): Likewise.
9119         * tests/test-mkdir.h (test_mkdir): Likewise.
9120         * tests/test-readlink.h (test_readlink): Likewise.
9121         * tests/test-remove.c (main): Likewise.
9122         * tests/test-rename.h (test_rename): Likewise.
9123         * tests/test-renameat.c (main): Likewise.
9124         * tests/test-rmdir.h (test_rmdir_func): Likewise.
9125         * tests/test-symlink.h (test_symlink): Likewise.
9126         * tests/test-symlinkat.c (main): Likewise.
9127         * tests/test-unlink.h (test_unlink_func): Likewise.
9128         * tests/test-unlinkat.c (main): Likewise.
9129
9130         maint: make realtime library usage explicit
9131         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
9132         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
9133         * modules/settime (Link): Likewise.
9134         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
9135
9136         test-stat-time: speed up execution
9137         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
9138         warning on mingw.
9139         (nap): New helper function.
9140         (prepare_test): Use it to reduce sleep time.
9141         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
9142         execution.
9143         * modules/stat-time-tests (configure.ac): Check for usleep.
9144
9145 2009-10-09  Jim Meyering  <meyering@redhat.com>
9146
9147         selinux-h: always use getfilecon wrappers
9148         * lib/getfilecon.c: New file.
9149         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
9150         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
9151         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
9152         (fgetfilecon): Provide a stub.
9153         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
9154         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
9155         file unconditionally.
9156         When <selinux/selinux.h> is found, arrange to use wrappers.
9157         * modules/selinux-h (Files): Add getfilecon.c.
9158         (Makefile.am): Substitute include-next-related bits
9159         into the now-always-generated selinux/selinux.h file.
9160         * doc/glibc-functions/lgetfilecon.texi: New file.
9161         * doc/glibc-functions/fgetfilecon.texi: New file.
9162         * doc/glibc-functions/getfilecon.texi: New file.
9163         * doc/glibc-functions/getfilecon-desc.texi: New file.
9164         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
9165         which to pull in the new files.
9166         * MODULES.html.sh (Misc): Add selinux-h.
9167
9168 2009-10-08  Jim Meyering  <meyering@redhat.com>
9169
9170         unistd: fix comment typo
9171         * lib/unistd.in.h (euidaccess): Fix a comment typo.
9172
9173 2009-10-08  Eric Blake  <ebb9@byu.net>
9174
9175         areadlink: use SIZE_MAX consistently
9176         * modules/areadlink (Depends-on): Add stdint.
9177         * modules/areadlink-with-size (Depends-on): Likewise.
9178         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
9179         gives NULL; drop sys/types, since unistd gives size_t; and add
9180         stdint for SIZE_MAX.
9181         (SIZE_MAX): Rely on headers.
9182         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
9183         and add stdint.
9184         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
9185         (SIZE_MAX): Likewise.
9186         (INITIAL_BUF_SIZE): Turn into enum.
9187         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
9188
9189 2009-10-08  Jim Meyering  <meyering@redhat.com>
9190
9191         areadlinkat: avoid compilation failure
9192         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
9193         Fix typo in comment.
9194
9195 2009-10-07  Eric Blake  <ebb9@byu.net>
9196
9197         areadlinkat-with-size: new module
9198         * modules/areadlinkat-with-size: New module.
9199         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
9200         * lib/areadlink.h (areadlinkat): Declare it.
9201         * MODULES.html.sh (File system functions): Mention it.
9202         * modules/areadlinkat-with-size-tests: New test.
9203         * tests/test-areadlinkat-with-size.c: New file.
9204
9205         xreadlinkat: new module
9206         * modules/xreadlinkat: New module.
9207         * lib/xreadlinkat.c (xreadlinkat): New file.
9208         * lib/xreadlink.h (xreadlinkat): Declare it.
9209         * MODULES.html.sh (File system functions): Mention it.
9210
9211         areadlinkat: new module
9212         * lib/at-func.c (FUNC_FAIL): New define.
9213         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
9214         * modules/areadlinkat: New module.
9215         * lib/linkat.c (areadlinkat): Move...
9216         * lib/areadlinkat.c (areadlinkat): ...to new file.
9217         * lib/areadlink.h (areadlinkat): Declare it.
9218         * modules/linkat (Depends-on): Add areadlinkat.
9219         * MODULES.html.sh (File system functions): Mention it.
9220         * modules/areadlinkat-tests: New test.
9221         * tests/test-areadlinkat.c: New file.
9222
9223         areadlink, areadlink-with-size: add tests
9224         * modules/areadlink-tests: New test.
9225         * modules/areadlink-with-size-tests: Likewise.
9226         * tests/test-areadlink.h: New file.
9227         * tests/test-areadlink.c: Likewise.
9228         * tests/test-areadlink-with-size.c: Likewise.
9229
9230         maint: minor cleanups
9231         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
9232         _UNUSED_PARAMETER_ instead.
9233         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
9234         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
9235         * modules/linkat-tests (Files): Distribute test-link.h.
9236
9237         openat, utimens: whitespace cleanup
9238         * lib/openat.c: Prefer space throughout, rather than mix of 8
9239         spaces vs. tabs.
9240         * lib/at-func.c: Likewise.
9241         * lib/utimens.c: Likewise.
9242
9243         openat: avoid using wrong fd
9244         * lib/openat.c (openat_permissive): Reject user's fd if saving the
9245         working directory chooses same fd.
9246         * lib/at-func.c (AT_FUNC_NAME): Likewise.
9247
9248         mkdir, mkdirat: fix cygwin 1.5.x bug
9249         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
9250         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
9251         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
9252         bug.
9253         (gl_PREREQ_MKDIR): Delete unused macro.
9254         * modules/mkdir (Files): Track file rename.
9255         (configure.ac): Update macro name.
9256         * modules/openat (Depends-on): Add mkdir.
9257         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
9258
9259         mkdir, mkdirat: add tests
9260         * modules/mkdir-tests: New test.
9261         * tests/test-mkdir.h: New file.
9262         * tests/test-mkdir.c: Likewise.
9263         * tests/test-mkdirat.c: Likewise.
9264         * modules/openat-tests (Files): Add new files.
9265         (Makefile.am): Run new test.
9266
9267 2009-10-06  Eric Blake  <ebb9@byu.net>
9268
9269         doc: tweak *at function documentation
9270         * doc/posix-functions/faccessat.texi (faccessat): Mention
9271         known issue with replacement.
9272         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
9273         * doc/posix-functions/linkat.texi (linkat): Likewise.
9274         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
9275         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
9276         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
9277         * doc/posix-functions/renameat.texi (renameat): Likewise.
9278         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
9279
9280         openat: fix GNU/Hurd bug in unlinkat
9281         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
9282         broken.
9283         * doc/posix-functions/unlink.texi (unlink): Document this.
9284         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
9285
9286         fdopendir: fix GNU/Hurd bug
9287         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
9288         allowing non-directory fds.
9289         * lib/fdopendir.c (rpl_fdopendir): Work around it.
9290         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
9291         * modules/dirent (Makefile.am): Substitute it.
9292         * lib/dirent.in.h (fdopendir): Declare replacement.
9293         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
9294         * tests/test-fdopendir.c (main): Test something other than
9295         /dev/null, since on Hurd that behaves like a directory.
9296
9297         test-symlink: port to GNU/Hurd
9298         * tests/test-symlink.h (test_symlink): Relax expected errno.
9299
9300         doc: tweak more cygwin information
9301         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
9302         now compatible with glibc.
9303         * doc/posix-functions/getopt.texi (getopt): Likewise.
9304
9305         getopt-gnu: add another test
9306         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
9307         guarantee behavior relied on by m4.
9308         * tests/test-getopt.c (main): Use it.
9309         * modules/getopt-posix-tests (Depends-on): Add setenv.
9310         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
9311
9312         getopt: fix compilation on darwin
9313         * lib/getopt.in.h (includes): Leave breadcrumbs during system
9314         include.
9315         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
9316         Reported by Ludovic Courtès.
9317
9318 2009-10-06  Bruno Haible  <bruno@clisp.org>
9319
9320         * modules/size_max (Description): Discourage its use.
9321         Reported by Simon Josefsson.
9322
9323 2009-10-06  Jim Meyering  <meyering@redhat.com>
9324
9325         linkat: avoid compilation failure
9326         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
9327
9328 2009-10-05  Eric Blake  <ebb9@byu.net>
9329
9330         linkat: support Linux 2.6.17
9331         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
9332         linkat on Linux, but allow cache variable override.
9333         * lib/linkat.c (rpl_linkat): Define override.
9334         * modules/linkat (Depends-on): Add symlinkat.
9335         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
9336         * modules/unistd (Makefile.am): Substitute it.
9337         * lib/unistd.in.h (linkat): Declare replacement.
9338         Reported by Pádraig Brady.
9339
9340         quotearg: port test to systems with C.UTF-8 locale
9341         * tests/test-quotearg.c (struct result_strings): Add another
9342         member, differentiating between C.ASCII and C.UTF-8 handling.
9343         (compare_strings): Add parameter.
9344         (main): Adjust all callers.
9345
9346         getopt: avoid clash with FreeBSD _getopt_internal
9347         * lib/getopt.in.h (_getopt_internal): Override the name.
9348         * lib/getopt_int.h (includes): Pick up any overrides.
9349         Reported by Reuben Thomas.
9350
9351         hash: allow C89 compilation
9352         * lib/hash.c (check_tuning): Move declaration before statement.
9353         Reported by Reuben Thomas.
9354
9355 2009-10-05  Karl Berry  <karl@gnu.org>
9356
9357         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
9358
9359 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
9360             Bruno Haible  <bruno@clisp.org>
9361
9362         * lib/uname.c (uname): Use a table-driven algorithm to compute
9363         Windows NT versions.
9364
9365 2009-10-04  Bruno Haible  <bruno@clisp.org>
9366
9367         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
9368         program_invocation_short_name.
9369         * modules/progname (configure.ac): Test for presence of
9370         program_invocation_short_name.
9371         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
9372
9373 2009-10-04  Bruno Haible  <bruno@clisp.org>
9374
9375         * lib/progname.c (set_program_name): Fix comment.
9376         Reported by Jim Meyering.
9377
9378 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
9379             Bruno Haible  <bruno@clisp.org>
9380
9381         * lib/uname.c: Include <string.h>.
9382         (uname): Do only one call to GetVersionEx in the common case.
9383
9384 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
9385             Bruno Haible  <bruno@clisp.org>
9386
9387         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
9388         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
9389         (uname): Add support for Windows CE and various non-x86 CPU types.
9390
9391 2009-10-03  Bruno Haible  <bruno@clisp.org>
9392
9393         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
9394         invocation to tests/configure.ac.
9395         Reported by Ian Beckwith <ianb@erislabs.net>.
9396
9397 2009-10-02  Eric Blake  <ebb9@byu.net>
9398
9399         fchdir: avoid compiler warning
9400         * lib/fchdir.c (canonicalize_file_name)
9401         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
9402
9403         test-open: support mingw errno values
9404         * tests/test-open.h (test_open): Relax test.
9405         * tests/test-fopen.h (test_fopen): Likewise.
9406         * tests/test-openat-safer.c (main): Likewise.
9407
9408         open: fix opening directory on mingw
9409         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
9410
9411         test-open: on GNU/Hurd, /dev/null is a directory
9412         * tests/test-fopen.h (main): Rename...
9413         (test_fopen): ...to this.  Use a guaranteed non-directory when
9414         confirming open behavior on trailing slash.
9415         * tests/test-openat-safer.c (main): Likewise.
9416         * tests/test-open.h (main): Likewise....
9417         (test_open): ...to this.
9418         * tests/test-fopen.c (main): Adjust caller.
9419         * tests/test-fopen-safer.c (main): Likewise.
9420         * tests/test-open.c (main): Likewise.
9421         * tests/test-fcntl-safer.c (main): Likewise.
9422         Reported by Samuel Thibault.
9423
9424         rename, fchdir: don't ignore chdir failure
9425         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
9426         * lib/rename.c (rpl_rename) [W32]: Likewise.
9427         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
9428         an empty destination directory if source cannot be renamed,
9429         although there is still possibility for failure.
9430         * doc/posix-functions/rename.texi (rename): Document the race.
9431         Reported by Jim Meyering.
9432
9433         maint: cleanup whitespace in recent commits
9434         * lib/rename.c (rpl_rename): Remove tabs.
9435         * tests/test-link.h (test_link): Likewise.
9436         * lib/fchdir.c (get_name): Likewise.
9437         Reported by Jim Meyering.
9438
9439 2009-10-02  Ben Pfaff  <blp@gnu.org>
9440
9441         relocatable-prog-wrapper: Add missing dependency on
9442         double-slash-root.
9443         * modules/relocatable-prog-wrapper: Add dependency.
9444         Reported by Ian Beckwith <ianb@erislabs.net>.
9445
9446 2009-10-02  Eric Blake  <ebb9@byu.net>
9447
9448         renameat: fix Solaris bugs
9449         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
9450         needed fixing.
9451         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
9452         * modules/stdio (Makefile.am): Substitute it.
9453         * lib/stdio.in.h (renameat): Declare replacement.
9454         * lib/renameat.c (rpl_renameat): Implement fix.
9455
9456         renameat: new module
9457         * modules/renameat: New file.
9458         * lib/renameat.c (renameat): Likewise.
9459         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
9460         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
9461         * modules/stdio (Makefile.am): Substitute them.
9462         * lib/stdio.in.h (renameat): Declare it.
9463         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9464         * doc/posix-functions/renameat.texi (renameat): Likewise.
9465         * modules/renameat-tests: New test.
9466         * tests/test-renameat.c: Likewise.
9467
9468         rename: fix mingw bugs
9469         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
9470         directory overwrite bugs.
9471
9472         rename: fix another cygwin 1.5 bug
9473         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
9474         checks.
9475         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
9476         unnecessary cygwin workarounds.  Also work around bug with moving
9477         full directory onto an empty one.
9478         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
9479
9480         rename-dest-slash: merge into rename module
9481         * modules/rename-dest-slash (Status): Mark obsolete.
9482         (Depends-on): Add rename.
9483         (Files): Let rename do it all.
9484         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
9485         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
9486         * m4/rename-dest-slash.m4: ...so this file can be deleted.
9487         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
9488         * lib/rename.c (rpl_rename): Update comments.
9489
9490         rename: fix cygwin 1.5.x bugs
9491         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
9492         * lib/rename.c (rpl_rename): Work around them.
9493         * modules/rename (Depends-on): Add same-inode.
9494
9495         rename: fix Solaris 10 bug
9496         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
9497         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
9498         was the only bug.
9499
9500         rename: fix Solaris 9 bug
9501         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
9502         on non-directory.  Avoid calling exit.
9503         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
9504         strdup.
9505         * modules/rename-tests (Depends-on): Drop lstat.
9506         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
9507         (gl_PREREQ_RENAME): Delete unused macro.
9508
9509         rename-dest-slash: fix NetBSD bug
9510         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
9511         links.
9512         * modules/rename-dest-slash (Depends-on): Add same-inode.
9513
9514         rename-tests: new test, exposes several platform bugs
9515         * modules/rename-tests: New file.
9516         * tests/test-rename.h: Likewise.
9517         * tests/test-rename.c: Likewise.
9518         * doc/posix-functions/rename.texi (rename): Improve documentation,
9519         including bugs that will eventually be fixed in gnulib.
9520
9521 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
9522
9523         * lib/uname.c: Include <stdlib.h>
9524         (uname): Assume version info is available.
9525
9526 2009-10-02  Jim Meyering  <meyering@redhat.com>
9527
9528         gnu-web-doc-update: correct --help output
9529         * build-aux/gnu-web-doc-update: Make --help output relevant.
9530
9531         gnu-web-doc-update: add standard options
9532         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
9533
9534         gnu-web-doc-update: New module.
9535         Use this script to automatically update the on-line web documentation
9536         for your GNU project at http://www.gnu.org/software/$pkg/manual/
9537         * modules/gnu-web-doc-update: New file, from coreutils.
9538         * build-aux/gnu-web-doc-update: New script.
9539
9540 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
9541
9542         link: LoadLibrary is not needed.
9543         * lib/link.c: Use GetModuleHandle.
9544
9545 2009-10-01  Eric Blake  <ebb9@byu.net>
9546
9547         getopt: bump serial number
9548         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
9549         change.
9550
9551         tests: tighten link, rmdir, and remove tests
9552         * tests/test-link.h (includes): No need to use <config.h> here.
9553         Clean up if directory hard link was created, otherwise test for
9554         trailing '.'.
9555         * tests/test-linkat.c (main): Simplify.
9556         * tests/test-remove.c (main): Enhance test for trailing '.'.
9557         * tests/test-rmdir.h (test_rmdir_func): Likewise.
9558
9559 2009-10-01  Jim Meyering  <meyering@redhat.com>
9560
9561         maint.mk: requiring "make major" was annoying, for a "minor" release.
9562         What is intended is "stable", to contrast with alpha and beta,
9563         so require "make stable", not "make major".
9564         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
9565         (get_tool_versions): Likewise.
9566         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
9567
9568 2009-09-30  Ben Pfaff  <blp@gnu.org>
9569
9570         Fix broken build of replacement for Windows tmpfile().
9571         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
9572         flags argument added along with the 'mkostemp' module.
9573
9574 2009-09-28  Bruno Haible  <bruno@clisp.org>
9575
9576         Avoid identifier clash with POSIX function 'remove' defined as a macro.
9577         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
9578         to 'remove_elt'.
9579         (gl_list_remove): Update.
9580         * lib/gl_list.c (gl_list_remove): Update.
9581         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
9582         to 'remove_elt'.
9583         (gl_oset_remove): Update.
9584         * lib/gl_list.c (gl_oset_remove): Update.
9585         Reported by Eric Blake.
9586
9587 2009-09-28  Eric Blake  <ebb9@byu.net>
9588
9589         doc: mention yet more cygwin 1.7 status
9590         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
9591         cygwin.
9592         * doc/glibc-functions/execvpe.texi (execvpe): New file.
9593         * doc/gnulib.texi (Glibc unistd.h): Mention it.
9594
9595         argp: fix test failure
9596         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
9597         that are not upper-case.  Pass correct range to tolower.
9598
9599 2009-09-27  Jim Meyering  <meyering@redhat.com>
9600
9601         test-yesno: work around sparc-dash here-document infelicity
9602         Without this change, the literal \177 byte in a here document
9603         would make dash 0.5.5.1-3 access uninitialized memory.
9604         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
9605         Instead, use a marker, "@", and filter through tr to create the desired
9606         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
9607
9608 2009-09-27  Bruno Haible  <bruno@clisp.org>
9609
9610         Disable untested support for new flavours of ACLs on AIX.
9611         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
9612         progress.
9613         * lib/set-mode-acl.c (qset_acl): Likewise.
9614
9615 2008-12-07  Bruno Haible  <bruno@clisp.org>
9616
9617         Add support for new flavours of ACLs on AIX. (Untested.)
9618         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
9619         (file_has_acl): Add support for newer AIX.
9620         * lib/set-mode-acl.c (qset_acl): Likewise.
9621         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
9622         Rainer Tammer <tammer@tammer.net>.
9623
9624 2009-09-26  Eric Blake  <ebb9@byu.net>
9625
9626         argp: fix compilation of getopt
9627         * lib/getopt.in.h (includes): Use different guard than glibc.
9628         Reported by Sergey Poznyakoff.
9629
9630         doc: mention more cygwin 1.7 status
9631         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
9632         bug.
9633         * doc/posix-functions/execl.texi (execl): Likewise.
9634         * doc/posix-functions/execle.texi (execle): Likewise.
9635         * doc/posix-functions/execlp.texi (execlp): Likewise.
9636         * doc/posix-functions/execv.texi (execv): Likewise.
9637         * doc/posix-functions/execve.texi (execve): Likewise.
9638         * doc/posix-functions/execvp.texi (execvp): Likewise.
9639         * doc/glibc-functions/canonicalize_file_name.texi
9640         (canonicalize_file_name): Cygwin 1.7 now provides this.
9641         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
9642         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
9643         on AT_SYMLINK_NOFOLLOW.
9644
9645 2009-09-24  Eric Blake  <ebb9@byu.net>
9646
9647         test-linkat: make test more robust
9648         * tests/test-linkat.c (main): Avoid collision with EEXIST.
9649
9650         getopt: fix inclusion guards for cygwin
9651         * modules/getopt-posix (Depends-on): Add include-next.
9652         (Makefile.am): Substitute more items in replacement header.
9653         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
9654         <getopt.h>.
9655         * lib/getopt.in.h (includes): Use split inclusion guard, and
9656         prefer <getopt.h> over include <unistd.h> when one is present.
9657         (option): Also override name of 'struct option'.
9658
9659         same-inode: revert prior change; it is not yet ready
9660         * NEWS: Undo mention of this change.
9661         * lib/same-inode.h (same-inode.h): Undo tri-state change.
9662         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
9663         * lib/cycle-check.c (cycle_check): Likewise.
9664         * lib/same.c (same_name): Likewise.
9665         * lib/at-func2.c (at_func2): Likewise.
9666
9667 2009-09-23  Eric Blake  <ebb9@byu.net>
9668
9669         linkat: new module
9670         * modules/linkat: New file.
9671         * lib/at-func2.c (at_func2): Likewise.
9672         * lib/linkat.c (linkat): Likewise.
9673         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
9674         * lib/openat-priv.h (at_func2): Add declaration.
9675         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
9676         * modules/unistd (Makefile.am): Substitute them.
9677         * lib/unistd.in.h (linkat): Declare it.
9678         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9679         * doc/posix-functions/linkat.texi (linkat): Likewise.
9680         * doc/posix-functions/link.texi (link): Tweak wording.
9681         * tests/test-link.c (main): Move guts...
9682         * tests/test-link.h (test_link): ...into new file.
9683         * modules/linkat-tests: New test.
9684         * tests/test-linkat.c: Likewise.
9685         * modules/link-tests (Files): Ship new file.
9686         (Depends-on): Add stdbool.
9687
9688         dirname: add library-safe mdir_name
9689         * lib/dirname.h (mdir_name): New prototype.
9690         * lib/dirname.c (dir_name): Move guts...
9691         (mdir_name): ...to new function that avoids xalloc_die.
9692
9693         fchdir: another mingw fix
9694         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
9695         * lib/fchdir.c (get_name): New helper method; skips canonicalize
9696         on mingw (where it has not yet been ported), and make it optional
9697         elsewhere.
9698         (_gl_register_fd): Use it.
9699
9700         same-inode: make SAME_INODE tri-state, to port to mingw
9701         * NEWS: Mention this change.
9702         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
9703         st_ino always being 0.
9704         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
9705         * lib/cycle-check.c (cycle_check): Likewise.
9706         * lib/same.c (same_name): Likewise.
9707
9708         lstat: avoid mingw compilation error
9709         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
9710         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
9711         lstat ourselves.
9712         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
9713         was adequate.
9714         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
9715         the checks for lstat.
9716         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
9717
9718         link: fix test failure on Solaris 9
9719         * lib/link.c (rpl_link): Don't assume link will catch bogus
9720         trailing slash on source.
9721
9722         test-symlinkat: enhance test
9723         * tests/test-readlink.c (main): Move guts...
9724         * tests/test-readlink.h (test_readlink): ...into new file.
9725         * tests/test-symlink.c (main): Move guts...
9726         * tests/test-symlink.h (test_symlink): ...into new file.
9727         * tests/test-symlinkat.c (main): Use new files for further
9728         coverage.
9729         (do_symlink, do_readlink): New helper functions.
9730         * modules/symlink-tests (Files): Ship new file.
9731         (Depends-on): Add stdbool.
9732         * modules/readlink-tests (Files): Ship new file.
9733         (Depends-on): Add stdbool.
9734         * modules/symlinkat-tests (Files): Use new files.
9735
9736 2009-09-23  Eric Blake  <ebb9@byu.net>
9737
9738         readlink: document portability issue with symlink length
9739         * doc/posix-functions/lstat.texi (lstat): Mention that some file
9740         systems have bogus st_size on symlinks, and mention the
9741         areadlink-with-size module.
9742         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
9743         * doc/posix-functions/readlink.texi (readlink): Mention the
9744         areadlink module, and ERANGE failure.
9745         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
9746         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
9747
9748         readlink: fix Solaris 9 bug with trailing slash
9749         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
9750         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
9751         * doc/posix-functions/readlink.texi (readlink): Document this.
9752         * modules/readlink-tests: New test.
9753         * tests/test-readlink.c: Likewise.
9754
9755         readlink: fix cygwin 1.5.x bug with return type
9756         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
9757         * lib/unistd.in.h (readlink): Use ssize_t.
9758         * lib/readlink.c (readlink): Likewise.
9759         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
9760         * modules/unistd (Makefile.am): Substitute it.
9761         * lib/unistd.in.h (readlink): Declare replacement.
9762         * doc/posix-functions/readlink.texi (readlink): Document this.
9763
9764         symlink: use throughout gnulib
9765         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
9766         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
9767         symlink is not used.
9768         * modules/symlinkat (Depends-on): Add symlink.
9769         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
9770         * modules/canonicalize-tests (Depends-on): Likewise.
9771         * modules/lstat-tests (Depends-on): Likewise.
9772         * modules/openat-tests (Depends-on): Likewise.
9773         * modules/remove-tests (Depends-on): Likewise.
9774         * modules/rmdir-tests (Depends-on): Likewise.
9775         * modules/unlink-tests (Depends-on): Likewise.
9776         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
9777         * tests/test-canonicalize.c (symlink): Likewise.
9778         * tests/test-fstatat.c (symlink): Likewise.
9779         * tests/test-lstat.c (symlink): Likewise.
9780         * tests/test-remove.c (symlink): Likewise.
9781         * tests/test-rmdir.c (symlink): Likewise.
9782         * tests/test-unlink.c (symlink): Likewise.
9783         * tests/test-unlinkat.c (symlink): Likewise.
9784
9785         symlink: new module, for Solaris 9 bug
9786         * modules/symlink: New file.
9787         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
9788         * lib/symlink.c: Likewise.
9789         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
9790         * modules/unistd (Makefile.am): Substitute them.
9791         * lib/unistd.in.h (symlink): Declare replacement.
9792         * MODULES.html.sh (File system functions): Mention it.
9793         * doc/posix-functions/symlink.texi (symlink): Likewise.
9794         * modules/symlink-tests: New test.
9795         * tests/test-symlink.c: Likewise.
9796
9797 2009-09-23  Bruno Haible  <bruno@clisp.org>
9798
9799         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
9800         when needed.
9801         Test case: gnulib-tool --import --with-tests atexit inttypes.
9802         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
9803
9804 2009-09-23  Bruno Haible  <bruno@clisp.org>
9805
9806         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
9807         subcommand, not in a subshell.
9808
9809 2009-09-22  Eric Blake  <ebb9@byu.net>
9810
9811         unistd: sort replacement declarations
9812         * lib/unistd.in.h: Sort declarations.
9813
9814         open, openat: minor optimization
9815         * lib/open.c (open): If open succeeded, len is non-zero.
9816         * lib/openat.c (rpl_openat): Likewise.
9817
9818         link-follow: ensure correct result
9819         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
9820         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
9821         distinguish between possible failures.
9822
9823 2009-09-21  Eric Blake  <ebb9@byu.net>
9824
9825         fts: avoid compiler warning
9826         * lib/fts.c (dirent_inode_sort_may_be_useful)
9827         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
9828
9829 2009-09-19  Bruno Haible  <bruno@clisp.org>
9830
9831         * lib/progreloc.c (canonicalize_file_name): New declaration.
9832
9833 2009-09-19  Eric Blake  <ebb9@byu.net>
9834
9835         link: fix quoting
9836         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
9837
9838         openat: fix openat bugs on Solaris 9
9839         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
9840         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
9841         * modules/openat (Depends-on): Add open.
9842         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
9843         * modules/fcntl-h (Makefile.am): Substitute it.
9844         * lib/fcntl.in.h (openat): Declare replacement.
9845         * doc/posix-functions/openat.texi (openat): Document this.
9846
9847         openat: move fstatat and unlinkat into correct files
9848         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
9849         compiled.
9850         * lib/openat.c (fstatat, unlinkat): Move...
9851         * lib/fstatat.c (fstatat): ...into correct files.
9852         * lib/unlinkat.c (unlinkat): Likewise.
9853
9854         openat: fix unlinkat bugs on Solaris 9
9855         * lib/unlinkat.c (unlinkat): New file.
9856         * modules/openat (Depends-on): Add unlink.
9857         (Files): Distribute it.
9858         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
9859         trailing slash behavior is broken.
9860         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
9861         * modules/unistd (Makefile.am): Substitute it.
9862         * lib/unistd.in.h (unlinkat): Declare replacement.
9863         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
9864
9865         openat: fix fstatat bugs on Solaris 9
9866         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
9867         stat.
9868         * doc/posix-functions/fstatat.texi (fstatat): Document this.
9869
9870         test-unlinkat: enhance test, to expose Solaris 9 bug
9871         * tests/test-unlink.c (main): Factor guts...
9872         * tests/test-unlink.h (test_rmdir_func): ...into new file.
9873         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
9874         * tests/test-rmdir.c (main): Adjust caller.
9875         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
9876         (unlinker): New helper function.
9877         (rmdirat): Enhance check.
9878         * modules/rmdir-tests (Depends-on): Add stdbool.
9879         * modules/unlink-tests (Depends-on): Likewise.
9880         (Files): Add test-unlink.h.
9881         * modules/openat-tests (Files): Likewise.
9882         (Depends-on): Add unlinkdir.
9883
9884         test-fstatat: new test, to expose Solaris 9 bugs
9885         * tests/test-stat.c (main): Factor guts...
9886         * tests/test-stat.h (test_stat_func): ...into new file.
9887         * tests/test-lstat.c (main): Factor guts...
9888         * tests/test-lstat.h (test_lstat_func): ...into new file.
9889         * tests/test-fstatat.c: New file.
9890         * modules/stat-tests (Files): Add test-stat.h.
9891         * modules/lstat-tests (Files): Add test-lstat.h.
9892         (Depends-on): Add stdbool.
9893         * modules/openat-tests (Depends-on): Add pathmax.
9894         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
9895         (Makefile.am): Run new test.
9896
9897         remove: new module, for mingw and Solaris 9 bugs
9898         * modules/remove: New file.
9899         * lib/remove.c: Likewise.
9900         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
9901         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
9902         * modules/stdio (Makefile.am): Use them.
9903         * lib/stdio.in.h (remove): Declare replacement.
9904         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9905         * doc/posix-functions/remove.texi (remove): Likewise.
9906         * modules/remove-tests: New test.
9907         * tests/test-remove.c: Likewise.
9908
9909         unlink: new module, for Solaris 9 bug
9910         * modules/unlink: New file.
9911         * lib/unlink.c: Likewise.
9912         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
9913         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
9914         * modules/unistd (Makefile.am): Use them.
9915         * lib/unistd.in.h (stat): Declare replacement.
9916         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9917         * doc/posix-functions/unlink.texi (unlink): Likewise.
9918         * modules/unlink-tests: New test.
9919         * tests/test-unlink.c: Likewise.
9920
9921         lstat: fix Solaris 9 bug
9922         * lib/lstat.c (lstat): Also check for trailing slash on
9923         non-symlink, non-directories.  Use stat module to simplify logic.
9924         * doc/posix-functions/lstat.texi (lstat): Document it.
9925         * modules/lstat-tests (Depends-on): Add errno, same-inode.
9926         (configure.ac): Check for symlink.
9927         * tests/test-lstat.c (main): Add more tests.
9928
9929         stat: add as dependency to other modules
9930         * modules/chown (Depends-on): Add stat.
9931         * modules/euidaccess (Depends-on): Likewise.
9932         * modules/fchdir (Depends-on): Likewise.
9933         * modules/isdir (Depends-on): Likewise.
9934         * modules/link (Depends-on): Likewise.
9935         * modules/lstat (Depends-on): Likewise.
9936         * modules/mkdir-p (Depends-on): Likewise.
9937         * modules/modechange (Depends-on): Likewise.
9938         * modules/open (Depends-on): Likewise.
9939         * modules/readlink (Depends-on): Likewise.
9940         * modules/same (Depends-on): Likewise.
9941
9942         stat: fix Solaris 9 bug
9943         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
9944         slash.
9945         * lib/stat.c (rpl_stat): Work around it.
9946         * doc/posix-functions/stat.texi (stat): Update documentation.
9947
9948         stat: new module, for mingw bug
9949         * modules/stat: New file.
9950         * lib/stat.c: Likewise.
9951         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
9952         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
9953         * modules/sys_stat (Makefile.am): Use them.
9954         * lib/sys_stat.in.h (stat): Declare replacement.
9955         * lib/openat.c (fstatat): Deal with lstat and stat being function
9956         macros.
9957         * modules/openat (Depends-on): Add inline.
9958         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9959         * doc/posix-functions/stat.texi (stat): Likewise.
9960         * modules/stat-tests: New test.
9961         * tests/test-stat.c: Likewise.
9962
9963 2009-09-19  Jim Meyering  <meyering@redhat.com>
9964
9965         syntax-check: detect unnecessary inclusion of canonicalize.h
9966         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
9967
9968 2009-09-19  Eric Blake  <ebb9@byu.net>
9969
9970         canonicalize-lgpl: adjust clients to use correct header
9971         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
9972         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
9973         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
9974         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
9975         * lib/progreloc.c (includes): Likewise.
9976
9977 2009-09-19  Jim Meyering  <meyering@redhat.com>
9978
9979         test-posixtm.c: correct a comment
9980         * tests/test-posixtm.c: Correct first-line comment.
9981         Spotted by Eric Blake.
9982
9983 2009-09-16  Jim Meyering  <meyering@redhat.com>
9984
9985         posixtm-tests: make T const-correct; add a test case
9986         * tests/test-posixtm.c (T): Declare const.
9987         Add a test for -(2^31+1).
9988         Remove useless can-succeed-only-in-2002 test.
9989
9990         posixtm-tests: adjust the sole failing test
9991         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
9992         expected output matches what mktime now produces.  Cross-checked via
9993         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
9994
9995         posixtm: move #ifdef'd tests into a new module
9996         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
9997         * tests/test-posixtm.c: ... this new file.
9998         * modules/posixtm-tests: New module.
9999
10000 2009-09-19  Eric Blake  <ebb9@byu.net>
10001
10002         openat: simplify use of at-func.c
10003         * lib/at-func.c (includes): Include prerequisites here, to
10004         simplify requirements on client files.
10005         * lib/openat-priv.h: Add double-inclusion guard.
10006         * lib/faccessat.c (includes): Simplify.
10007         * lib/fchmodat.c (includes): Likewise.
10008         * lib/fchownat.c (includes): Likewise.
10009         * lib/mkdirat.c (includes): Likewise.
10010         * lib/mkfifoat.c (includes): Likewise.
10011         * lib/symlinkat.c (includes): Likewise.
10012
10013         openat: allow return of fd 0
10014         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
10015         * modules/save-cwd (Depends-on): Replace fcntl-safer with
10016         unistd-safer.
10017         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
10018         <fcntl.h>; this module does not leak fds.
10019         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
10020         must be allowed to return 0, leaving openat_safer to add the
10021         safety.
10022         (openat_permissive): Avoid writing to just-opened fd 2 if
10023         restoring the current directory fails.
10024         * lib/openat-die.c (openat_restore_fail): Add comment.
10025         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
10026         (save_cwd): Guarantee safe fd, but without use of open_safer.
10027         * tests/test-openat.c: New test.
10028         * modules/openat-tests (Files, Makefile.am): Distribute and build
10029         new file.
10030
10031         relocatable-prog-wrapper: fix build
10032         * modules/relocatable-prog-wrapper (Files): Update name of
10033         canonicalize m4 file, broken on 2009-09-17.
10034         Reported by emad hajjar <aleppos@hotmail.com>.
10035
10036 2009-09-19  Bruno Haible  <bruno@clisp.org>
10037
10038         * lib/safe-alloc.h: Use the standard header with GPL copyright.
10039         * lib/safe-alloc.c: Likewise.
10040         Reported by Ian Beckwith <ianb@erislabs.net>.
10041
10042 2009-09-18  Bruno Haible  <bruno@clisp.org>
10043
10044         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
10045         Reported by <erobles@sensacd.com.mx>.
10046
10047 2009-09-17  Eric Blake  <ebb9@byu.net>
10048
10049         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
10050         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
10051         slashes when checking if last component is missing.
10052         * tests/test-canonicalize.c (main): Test this.
10053
10054         canonicalize, canonicalize-lgpl: honor // if distinct from /
10055         * modules/canonicalize (Files): Add double-slash-root.m4.
10056         * modules/canonicalize-lgpl (Files): Likewise.
10057         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
10058         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
10059         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
10060         fallback definition.
10061         (canonicalize_filename_mode): Use it to protect //.
10062         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
10063         (__realpath): Likewise.
10064         * tests/test-canonicalize.c (main): Test this.
10065         * tests/test-canonicalize-lgpl.c (main): Likewise.
10066         * modules/canonicalize-tests (Depends-on): Add same-inode.
10067         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
10068
10069         canonicalize-lgpl: fix glibc bug with trailing slash
10070         * m4/canonicalize-lgpl.m4: Move contents...
10071         * m4/canonicalize.m4: ...here.
10072         (gl_CANONICALIZE_LGPL): Factor realpath check...
10073         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
10074         glibc 2.3.5 bug, fixed 2005-04-27.
10075         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
10076         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
10077         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
10078         * modules/canonicalize-lgpl (Files): Manage file rename.
10079         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
10080         * modules/stdlib (Makefile.am): Substitute witness.
10081         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
10082         is needed.
10083         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
10084         replacement is required.
10085         * lib/canonicalize.c (canonicalize_file_name): Likewise.
10086         * doc/glibc-functions/canonicalize_file_name.texi
10087         (canonicalize_file_name): Document this.
10088         * doc/posix-functions/realpath.texi (realpath): Likewise.
10089
10090         canonicalize-lgpl: reject non-directory with trailing slash
10091         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
10092         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
10093         catches failures in glibc 2.3.5.
10094         * tests/test-canonicalize.c (main): Likewise.
10095
10096         canonicalize-lgpl: use native realpath if it works
10097         * lib/canonicalize-lgpl.c (realpath): Guard with
10098         FUNC_REALPATH_WORKS.
10099         * lib/stdlib.in.h (realpath): Make declaration optional based on
10100         HAVE_REALPATH.
10101         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
10102         native realpath works.
10103         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
10104         * modules/stdlib (Makefile.am): Substitute witness.
10105
10106         canonicalize, canonicalize-lgpl: use <stdlib.h>
10107         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
10108         (Include): Mention <stdlib.h>.
10109         (configure.ac): Mention functions we provide.
10110         * modules/canonicalize (configure.ac): Likewise.
10111         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
10112         realpath if canonicalize_file_name is missing.
10113         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
10114         * modules/stdlib (Makefile.am): Substitute witnesses.
10115         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
10116         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
10117         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
10118         * NEWS: Document this.
10119         * doc/glibc-functions/canonicalize_file_name.texi
10120         (canonicalize_file_name): Likewise.
10121         * doc/posix-functions/realpath.texi (realpath): Likewise.
10122         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
10123
10124         test-canonicalize: consolidate into single C program
10125         * tests/test-canonicalize.sh: Delete; move setup into...
10126         * tests/test-canonicalize.c (main): ...the program, making it
10127         easier to run in debugger.  Add some tests.
10128         * modules/canonicalize-tests (Files): Remove unused file.
10129         (Depends-on): Add progname.
10130         (configure.ac, Makefile.am): Simplify.
10131
10132         test-canonicalize-lgpl: consolidate into single C program
10133         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
10134         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
10135         easier to run in debugger.  Add some tests.
10136         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
10137         (configure.ac, Makefile.am): Simplify.
10138
10139         canonicalize: avoid resolvepath
10140         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
10141         unnecessary checks.
10142         * lib/canonicalize.c (includes): Simplify.
10143         (canonicalize_file_name): Drop resolvepath implementation.
10144         * modules/canonicalize (Depends-on): Drop filenamecat.
10145
10146         canonicalize: don't lose errno
10147         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
10148         over calls to free.
10149
10150         canonicalize: simplify errno handling
10151         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
10152         assignment.
10153
10154         canonicalize, canonicalize-lgpl: update module dependencies
10155         * modules/canonicalize (Depends-on): Add extensions, lstat,
10156         pathmax, stdlib.
10157         (Files): Drop pathmax.h.
10158         (configure.ac): Adjust macro name.
10159         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
10160         lstat, stdlib, sys_stat.
10161         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
10162         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
10163         extensions.
10164         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
10165         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
10166         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
10167         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
10168         declaration, if available.
10169         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
10170         we can rely on the readlink module.
10171         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
10172         (includes): Use <unistd.h> unconditionally.
10173
10174 2009-09-17  Eric Blake  <ebb9@byu.net>
10175
10176         maint: make Include sections of modules consistent
10177         * modules/alloca: Use only header name; no need to list #include.
10178         * modules/alloca-opt: Likewise.
10179         * modules/arpa_inet: Likewise.
10180         * modules/canon-host: Likewise.
10181         * modules/configmake: Likewise.
10182         * modules/dirent: Likewise.
10183         * modules/eealloc: Likewise.
10184         * modules/environ: Likewise.
10185         * modules/fchdir: Likewise.
10186         * modules/fcntl: Likewise.
10187         * modules/fcntl-h: Likewise.
10188         * modules/gethrxtime: Likewise.
10189         * modules/gettime: Likewise.
10190         * modules/ignore-value: Likewise.
10191         * modules/inet_ntop: Likewise.
10192         * modules/inet_pton: Likewise.
10193         * modules/inttypes: Likewise.
10194         * modules/isnand-nolibm: Likewise.
10195         * modules/isnanf-nolibm: Likewise.
10196         * modules/mbchar: Likewise.
10197         * modules/mbfile: Likewise.
10198         * modules/mbiter: Likewise.
10199         * modules/mbuiter: Likewise.
10200         * modules/netdb: Likewise.
10201         * modules/netinet_in: Likewise.
10202         * modules/nproc: Likewise.
10203         * modules/pagealign_alloc: Likewise.
10204         * modules/poll: Likewise.
10205         * modules/printf-frexp: Likewise.
10206         * modules/pthread: Likewise.
10207         * modules/putenv: Likewise.
10208         * modules/random_r: Likewise.
10209         * modules/relocatable-prog: Likewise.
10210         * modules/search: Likewise.
10211         * modules/select: Likewise.
10212         * modules/selinux-h: Likewise.
10213         * modules/settime: Likewise.
10214         * modules/signal: Likewise.
10215         * modules/size_max: Likewise.
10216         * modules/socklen: Likewise.
10217         * modules/ssize_t: Likewise.
10218         * modules/stdarg: Likewise.
10219         * modules/stdbool: Likewise.
10220         * modules/stddef: Likewise.
10221         * modules/stdint: Likewise.
10222         * modules/stdio: Likewise.
10223         * modules/stdlib: Likewise.
10224         * modules/string: Likewise.
10225         * modules/strings: Likewise.
10226         * modules/sys_file: Likewise.
10227         * modules/sys_ioctl: Likewise.
10228         * modules/sys_select: Likewise.
10229         * modules/sys_socket: Likewise.
10230         * modules/sys_stat: Likewise.
10231         * modules/sys_time: Likewise.
10232         * modules/sys_times: Likewise.
10233         * modules/sys_utsname: Likewise.
10234         * modules/sys_wait: Likewise.
10235         * modules/sysexits: Likewise.
10236         * modules/time: Likewise.
10237         * modules/times: Likewise.
10238         * modules/tmpfile: Likewise.
10239         * modules/trim: Likewise.
10240         * modules/unistd: Likewise.
10241         * modules/wchar: Likewise.
10242         * modules/wctype: Likewise.
10243
10244 2009-09-17  Bruno Haible  <bruno@clisp.org>
10245
10246         Make getdate.y compile on QNX and NetBSD 5 / i386.
10247         * m4/getdate.m4 (gl_GETDATE): Conditionally define
10248         TIME_T_FITS_IN_LONG_INT.
10249         * lib/getdate.y (long_time_t): New type.
10250         (relative_time): Change type of 'seconds' field to long_time_t.
10251         (get_date): Update types of local variables. Check against overflow
10252         during conversion from long_time_t to time_t.
10253         Reported by Matt Kraai <kraai@ftbfs.org>
10254         and Hasso Tepper <hasso@netbsd.org>.
10255
10256 2009-09-17  Bruno Haible  <bruno@clisp.org>
10257
10258         * modules/COPYING: Update copyright years.
10259         * modules/README: Likeiwse.
10260         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
10261         Reported by Ian Beckwith <ianb@erislabs.net>.
10262
10263 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
10264
10265         * users.txt: Update references for gnuit package.
10266
10267 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
10268
10269         * m4/getdelim.m4: Fix typo in copyright line.
10270
10271 2009-09-17  Bruno Haible  <bruno@clisp.org>
10272
10273         * lib/atoll.c: Use the standard header with GPL copyright.
10274         * lib/argz.in.h: Likewise.
10275         * lib/glob.c: Likewise.
10276         * lib/glob-libc.h: Likewise.
10277         * lib/random_r.c: Likewise.
10278         * lib/siglist.h: Likewise.
10279         * lib/strsignal.c: Likewise.
10280         Reported by Ian Beckwith <ianb@erislabs.net>.
10281
10282 2009-09-17  Eric Blake  <ebb9@byu.net>
10283
10284         rmdir: ensure correct dependency order
10285         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
10286
10287 2009-09-17  Bruno Haible  <bruno@clisp.org>
10288
10289         Disable assertion that fails on NetBSD 5 / i386.
10290         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
10291         Reported by Sam Steingold <sds@gnu.org>
10292         and Hasso Tepper <hasso@netbsd.org>.
10293
10294 2009-09-16  Eric Blake  <ebb9@byu.net>
10295
10296         unlinkdir: port to mingw
10297         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
10298         on which no one can unlink a directory.
10299
10300         stdlib: sort witness names
10301         * modules/stdlib (Makefile.am): Sort replacements.
10302         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
10303         * lib/stdlib.in.h: Likewise.
10304
10305         parse-duration-tests: avoid link failure
10306         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
10307         LIBINTL.
10308         Reported by Tom G. Christensen.
10309
10310         openat-tests: ensure unlinkat behaves like rmdir
10311         * tests/test-rmdir.c (main): Factor guts...
10312         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
10313         * modules/rmdir-tests (Files): Ship new file.
10314         * modules/openat-tests: New test.
10315         * tests/test-unlinkat.c: Likewise.
10316
10317         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
10318         * modules/rmdir-errno (Status, Notice): Now obsolete.
10319
10320         rmdir: work around cygwin 1.5.x and mingw bugs
10321         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
10322         * lib/rmdir.c (rmdir): Work around it.
10323         * modules/rmdir (Status, Notice): No longer obsolete.
10324         (Files): Add dos.m4.
10325         (Depends-on): Add unistd.
10326         (configure.ac): Set witnesses.
10327         (License): Relax to LGPLv2+.
10328         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
10329         * modules/unistd (Makefile.am): Substitute witnesses.
10330         * lib/unistd.in.h (rmdir): Declare replacement.
10331         * doc/posix-functions/rmdir.texi (rmdir): Document this.
10332         * modules/rmdir-tests: New tests.
10333         * tests/test-rmdir.c: Likewise.
10334
10335 2009-09-15  Eric Blake  <ebb9@byu.net>
10336
10337         fchdir: improve use of replacement functions
10338         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
10339         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
10340         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
10341         REPLACE_CLOSEDIR.
10342         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
10343         * modules/sys_stat (Makefile.am): Substitute correct witness.
10344         * modules/dirent (Makefile.am): Likewise.
10345         * modules/unistd (Makefile.am): Likewise.
10346         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
10347         * lib/unistd.in.h (dup): Likewise.
10348         * lib/sys_stat.in.h (fstat): Likewise.
10349
10350         maint: ignore gnulib-tool temp files
10351         * .gitignore: Ignore files created during gnulib-tool --test.
10352
10353 2009-09-13  Jim Meyering  <meyering@redhat.com>
10354
10355         posixtm: don't reject a time that specify "60" as the number of seconds
10356         * lib/posixtm.c (posixtime): The code to reject invalid dates
10357         would also reject a time specified with the .60 suffix.
10358         But POSIX allows that, in order to accommodate leap seconds.
10359         So don't reject it.
10360         (main): Adjust tests accordingly.
10361         * modules/posixtm (Depends-on): Add stpcpy.
10362
10363 2009-09-11  Jim Meyering  <meyering@redhat.com>
10364
10365         announce-gen: include [$release_type] in emitted Subject:
10366         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
10367         e.g., [stable] in the emitted Subject: line.
10368
10369 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10370
10371         Remove obsolete macros from several modules.
10372         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
10373         obsolete Autoconf macros with their modern counterparts.
10374         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
10375         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
10376         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
10377         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
10378         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
10379         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
10380         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
10381         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
10382         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
10383         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
10384         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
10385         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
10386         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
10387         * m4/sockets.m4 (gl_SOCKETS): Likewise.
10388         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
10389         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
10390         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
10391         * m4/time_r.m4 (gl_TIME_R): Likewise.
10392         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
10393         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
10394         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
10395
10396         Fix copyright header in build-aux scripts.
10397         * build-aux/git-version-gen: Fix copyright header to match GPLv3
10398         recommendation.
10399         * build-aux/ncftpput-ftp: Likewise.
10400         * build-aux/update-copyright: Likewise.
10401
10402 2009-09-09  Eric Blake  <ebb9@byu.net>
10403
10404         test-link: allow Linux choice of errno
10405         * tests/test-link.c (main): Relax test for alternate error.
10406
10407         strndup: fix improper m4 caching
10408         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
10409         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
10410         (gl_PREREQ_STRNDUP): Delete.
10411         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
10412         * modules/string (Makefile.am): Substitute it.
10413         * lib/string.in.h (strndup): Modernize prototype.
10414
10415         getcwd: port to mingw
10416         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
10417         different from the POSIX assumptions made throughout the getcwd
10418         module; fortunately, the mingw getcwd does not need replacement.
10419         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
10420         * modules/getcwd-tests: New test.
10421         * tests/test-getcwd.c: Likewise.
10422
10423         link: fix platform bugs
10424         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
10425         * lib/link.c (link): Work around them.  Fix related mingw bug.
10426         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
10427         * modules/unistd (Makefile.am): Substitute it.
10428         * lib/unistd.in.h (link): Declare replacement.
10429         * doc/posix-functions/link.texi (link): Document this.
10430         * modules/link (Depends-on): Add strdup-posix, sys_stat.
10431
10432         test-link: consolidate into single C program, test more cases
10433         * tests/test-link.sh: Delete.
10434         * tests/test-link.c: Test more error conditions.  Exposes bugs on
10435         at least Cygwin and Solaris.
10436         * modules/link-tests (Files): Remove unused file.
10437         (Depends-on): Add errno, sys_stat.
10438         (Makefile.am): Simplify.
10439
10440 2009-09-08  Bruno Haible  <bruno@clisp.org>
10441
10442         Work around towlower, towupper bug on mingw.
10443         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
10444         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
10445         * doc/posix-functions/towlower.texi: Mention the mingw bug.
10446         * doc/posix-functions/towupper.texi: Likewise.
10447         Reported by Eric Blake.
10448
10449 2009-09-08  Jim Meyering  <meyering@redhat.com>
10450
10451         build: don't try to run autoheader if we don't use it
10452         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
10453         is not used in configure.ac.
10454
10455 2009-09-08  Eric Blake  <ebb9@byu.net>
10456
10457         euidaccess: fix compilation error
10458         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
10459
10460         rawmemchr: relax license
10461         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
10462         okay.
10463         Reported by Jim Meyering.
10464
10465         mkfifoat: new module
10466         * modules/mkfifoat: New file.
10467         * lib/mkfifoat.c: Likewise.
10468         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
10469         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
10470         * modules/sys_stat (Makefile.am): Use them.
10471         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
10472         * MODULES.html.sh (File system functions): Mention module.
10473         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
10474         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
10475         * modules/mkfifoat-tests: New test.
10476         * tests/test-mkfifoat.c: Likewise.
10477
10478         strchrnul: relax license
10479         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
10480         okay.
10481         Reported by Jim Meyering.
10482
10483 2009-09-08  Eric Blake  <ebb9@byu.net>
10484
10485         fstatat: fix compilation on Solaris
10486         * lib/fstatat.c (includes): Add fcntl.h.
10487         Reported by Pádraig Brady.
10488
10489 2009-09-07  Eric Blake  <ebb9@byu.net>
10490
10491         rename: modernize replacement
10492         * modules/rename (Depends-on): Add stdio.
10493         (configure.ac): Declare witness.
10494         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
10495         stdio take care of replacement.
10496         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
10497         * modules/stdio (Makefile.am): Substitute them.
10498         * lib/stdio.in.h (rename): Declare replacement.
10499         * lib/rename.c (includes): Allow cross-compilation to non-windows
10500         machines.
10501         * doc/posix-functions/rename.texi (rename): Improve
10502         documentation.
10503
10504         stdio: sort witness names
10505         * modules/stdio (Makefile.am): Sort replacements.
10506         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
10507         * lib/stdio.in.h: Likewise.
10508
10509         getcwd: minor cleanups
10510         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
10511         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
10512
10513         openat: provide more convenience names
10514         * modules/faccessat (configure.ac): Add C witness.
10515         * lib/unistd.in.h (readlinkat): Fix typo.
10516         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
10517         convenience wrappers.
10518         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
10519         wrappers in syntax checks.
10520
10521 2009-09-06  Eric Blake  <ebb9@byu.net>
10522
10523         doc: fix comments in recent patches
10524         * lib/faccessat.c: Mention correct function.
10525         * lib/fchmodat.c: Likewise.
10526         * lib/fchownat.c: Likewise.
10527         * lib/symlinkat.c: Likewise.
10528         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
10529         constants.
10530
10531         faccessat, symlinkat: continue cleanup of previous patch
10532         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
10533         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
10534         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
10535         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
10536         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
10537         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
10538         set.
10539
10540 2009-09-06  Bruno Haible  <bruno@clisp.org>
10541
10542         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
10543         (fstatat): Declare if GNULIB_FSTATAT is set.
10544         (mkdirat): Declare if GNULIB_MKDIRAT is set.
10545         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
10546         (unlinkat): Declare if GNULIB_UNLINKAT is set.
10547         * modules/fcntl-h (Files): Remove m4/openat.m4.
10548         * modules/sys_stat (Files): Remove m4/openat.m4.
10549         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
10550         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
10551         * modules/unistd (Files): Remove m4/openat.m4.
10552         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
10553         GNULIB_OPENAT.
10554         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
10555         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
10556         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
10557         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
10558         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
10559         gl_OPENAT_DEFAULTS.
10560         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
10561         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
10562         Don't require gl_OPENAT_DEFAULTS.
10563         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
10564         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
10565         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
10566         (gl_OPENAT_DEFAULTS): Remove macro.
10567
10568 2009-09-06  Bruno Haible  <bruno@clisp.org>
10569
10570         * modules/openat (configure.ac): Remove unneeded witness.
10571
10572 2009-09-06  Bruno Haible  <bruno@clisp.org>
10573
10574         Set errno to ENOSYS when a function is entirely unsupported.
10575         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
10576         EOPNOTSUPP.
10577         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
10578         * modules/chown (Depends-on): Remove errno.
10579
10580 2009-09-06  Bruno Haible  <bruno@clisp.org>
10581
10582         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
10583
10584 2009-09-06  Bruno Haible  <bruno@clisp.org>
10585
10586         * lib/sys_stat.in.h: Fix preprocessor command indentation.
10587
10588 2009-09-06  Ben Pfaff  <blp@gnu.org>
10589             Bruno Haible  <bruno@clisp.org>
10590
10591         Work around a glibc bug in strtok_r.
10592         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
10593         Undefine if UNDEFINE_STRTOK_R is set.
10594         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
10595         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
10596         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
10597         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
10598         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
10599         UNDEFINE_STRTOK_R.
10600         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
10601
10602 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
10603
10604         exclude: minor fix
10605         * lib/exclude.c: Include wctype.h
10606
10607 2009-09-06  Akim Demaille  <demaille@gostai.com>
10608
10609         bootstrap: improve error message
10610         * build-aux/bootstrap (find_tool): Upon failure, report the list
10611         of candidates.
10612         Honor the initial value of the envvar.
10613
10614 2009-09-05  Eric Blake  <ebb9@byu.net>
10615
10616         symlinkat: new module
10617         * modules/symlinkat: New file.
10618         * lib/symlinkat.c: Likewise.
10619         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
10620         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
10621         * modules/unistd (Makefile.am): Use them.
10622         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
10623         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
10624         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
10625         * MODULES.html.sh (File system functions): Mention module.
10626         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
10627         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
10628         * modules/symlinkat-tests: New test.
10629         * tests/test-symlinkat.c: Likewise.
10630
10631         test-openat-safer: add more checks
10632         * tests/test-openat-safer.c (main): Check more code paths.
10633
10634 2009-09-05  Jim Meyering  <meyering@redhat.com>
10635
10636         syntax-check: detect unnecessary inclusion of openat.h
10637         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
10638
10639 2009-09-05  Bruno Haible  <bruno@clisp.org>
10640
10641         Support towlower, towupper.
10642         * doc/posix-functions/towlower.texi: Mention module wctype.
10643         * doc/posix-functions/towupper.texi: Likewise.
10644         * lib/wctype.in.h (towlower, towupper): New functions.
10645         * tests/test-wctype.c: Include stdio.h, stdlib.h.
10646         (ASSERT): New macro.
10647         (e): New variable.
10648         (main): Test also towlower, towupper. Test WEOF argument.
10649         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
10650
10651 2009-09-05  Bruno Haible  <bruno@clisp.org>
10652
10653         Fix conversion behaviour when the input is invalid.
10654         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
10655         mark occurring in first pass of indirect conversion.
10656         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
10657         input.
10658         Found by clang's static analyzer.
10659
10660 2009-09-05  Bruno Haible  <bruno@clisp.org>
10661
10662         * tests/test-striconveh.c (main): Test indirect conversion on platforms
10663         where direct conversion is possible.
10664
10665 2009-09-04  Eric Blake  <ebb9@byu.net>
10666
10667         openat: fail with ENOENT on empty name
10668         * lib/openat-proc.c (openat_proc_name): Special-case the empty
10669         buffer.
10670
10671         link-follow: fix logic bug in prior patch
10672         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
10673         reversed sense of yes and no in prior patch.  Avoid confusing
10674         compilation failure with desired semantics.
10675
10676         link-follow: accomodate mingw and cross-compilation
10677         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
10678         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
10679         cross-compilation results to -1, to make linkat easier to
10680         implement when cross-compiling.  Trivially support mingw.
10681         * modules/link-follow (configure.ac): Call new name.
10682         * NEWS: Mention this.
10683
10684 2009-09-03  Eric Blake  <ebb9@byu.net>
10685
10686         faccessat: compile replacement
10687         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
10688         needed.
10689
10690         fts: fix compilation error
10691         * lib/fts.c (includes): Re-add "openat.h", for
10692         openat_needs_fchdir.
10693
10694         faccessat: new module
10695         * modules/faccessat: New file.
10696         * lib/faccessat.c: Likewise.
10697         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
10698         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
10699         * modules/unistd (Makefile.am): Use it.
10700         * lib/unistd.in.h (faccessat): Declare it.
10701         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
10702         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
10703         * MODULES.html.sh (File system functions): Mention it.
10704         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
10705         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
10706
10707         euidaccess: prefer POSIX over non-standard implementation
10708         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
10709         * lib/euidaccess.c (euidaccess): Use it if available.
10710
10711         openat: make template easier to use
10712         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
10713         AT_FUNC_F2 to be undefined.
10714         (VALIDATE_FLAG): New macro; use it to reject bad flags.
10715         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
10716         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
10717         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
10718         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
10719         Likewise.
10720         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
10721         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
10722         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
10723         Likewise.
10724
10725         openat: declare in POSIX headers
10726         * NEWS: Mention this.
10727         * modules/openat (configure.ac): Declare witnesses.
10728         (Depends-on): Add fcntl-h, sys_stat, unistd.
10729         (Include): Mention correct headers.
10730         * modules/fcntl-h (Depends-on): Add link-warning.
10731         (Files): Add openat.m4.
10732         (Makefile.am): Substitute witnesses.
10733         * modules/sys_stat (Files, Makefile.am): Likewise.
10734         * modules/unistd (Files, Makefile.am): Likewise.
10735         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
10736         (gl_OPENAT_DEFAULTS): New macro.
10737         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
10738         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
10739         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
10740         (SYS_STAT_H): Remove unused variable.
10741         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
10742         * lib/fcntl--.h (includes): Remove unneeded header.
10743         * lib/openat-safer.c (includes): Likewise.
10744         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
10745         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
10746         appropriate headers.
10747         (__OPENAT_PREFIX): Delete.
10748         * lib/fcntl.in.h (openat): Provide declaration.
10749         (AT_FDCWD): Fix Solaris bug.
10750         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
10751         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
10752         * lib/fchmodat.c (includes):  Adjust to find declaration.
10753         * lib/fchownat.c (includes): Likewise.
10754         * lib/mkdirat.c (includes): Likewise.
10755         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
10756         still visible.
10757
10758 2009-09-02  Eric Blake  <ebb9@byu.net>
10759
10760         errno: use consistently
10761         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
10762         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
10763         * lib/canonicalize.c (ELOOP): Likewise.
10764         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
10765         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
10766         * lib/lchown.c (EOPNOTSUPP): Likewise.
10767         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
10768         * lib/savewd.c (ESTALE): Likewise.
10769         * lib/settime.c (ENOSYS): Likewise.
10770         * lib/utimens.c (ENOSYS): Likewise.
10771         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
10772         * lib/chdir-safer.c (ELOOP): Likewise.
10773         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
10774         * modules/c-stack (Depends-on): Add errno.
10775         * modules/canonicalize (Depends-on): Likewise.
10776         * modules/chdir-safer (Depends-on): Likewise.
10777         * modules/fdopendir (Depends-on): Likewise.
10778         * modules/inet_ntop (Depends-on): Likewise.
10779         * modules/inet_pton (Depends-on): Likewise.
10780         * modules/lchown (Depends-on): Likewise.
10781         * modules/openat (Depends-on): Likewise.
10782         * modules/savewd (Depends-on): Likewise.
10783         * modules/settime (Depends-on): Likewise.
10784         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
10785
10786         fts: avoid leaking fds
10787         * modules/fts (Depends-on): Add cloexec.
10788         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
10789         flag.
10790
10791         fts: make directory fds more robust
10792         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
10793         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
10794
10795         backupfile, chdir-long, fts, savedir: make safer
10796         * lib/backupfile.c (includes): Use "dirent--.h", since
10797         numbered_backup can write to stderr during readdir.
10798         * lib/savedir.c (includes): Likewise.
10799         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
10800         emulation can write to stderr on failure.
10801         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
10802         * lib/getcwd.c: Document why opendir_safer is unused.
10803         * lib/glob.c: Likewise.
10804         * lib/scandir.c: Likewise.
10805         * lib/openat-proc.c: Likewise, for open_safer.
10806         * modules/backupfile (Depends-on): Add dirent-safer.
10807         * modules/savedir (Depends-on): Likewise.
10808         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
10809         * modules/chdir-long (Depends-on): Add openat-safer.
10810
10811         openat-safer: new module
10812         * modules/openat-safer: New file.
10813         * lib/openat-safer.c: Likewise.
10814         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
10815         * lib/fcntl-safer.h (openat_safer): Declare.
10816         * lib/fcntl--.h (openat): Override.
10817         * MODULES.html.sh (File descriptor based I/O): Mention it.
10818         * lib/openat.h: Add double-inclusion guards.
10819         * lib/openat.c (includes): Only include "fcntl-safer.h", not
10820         "fcntl--.h", so we can implement openat.
10821         * modules/openat-safer-tests: New test.
10822         * tests/test-openat-safer.c: New file.
10823
10824         dirent-safer: new module
10825         * modules/dirent-safer: New file.
10826         * lib/dirent--.h: Likewise.
10827         * lib/dirent-safer.h: Likewise.
10828         * lib/opendir-safer.c: Likewise.
10829         * m4/dirent-safer.m4: Likewise.
10830         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
10831         * modules/dirent-safer-tests: New test.
10832         * tests/test-dirent-safer.c: New file.
10833         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
10834
10835         fdopendir: optimize on mingw
10836         * lib/unistd.in.h (_gl_directory_name): New prototype.
10837         * lib/fchdir.c (_gl_directory_name): Implement it.
10838         (fchdir): Use it to simplify implementation.
10839         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
10840         fchdir, when available, to avoid calling [f]chdir().
10841
10842         fdopendir: split into its own module
10843         * lib/openat.c (fdopendir): Move...
10844         * lib/fdopendir.c: ...into new file.
10845         * modules/fdopendir: New module.
10846         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
10847         * modules/openat (Depends-on): Add fdopendir.
10848         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
10849         fdopendir here.
10850         * modules/savedir (Depends-on): Only need fdopendir, not full
10851         openat.
10852         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
10853         * lib/openat.h (fdopendir): Drop prototype.
10854         * lib/dirent.in.h (fdopendir): Provide prototype.
10855         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
10856         * modules/dirent (Makefile.am): Substitute them.
10857         * MODULES.html.sh (File system functions): Mention it.
10858         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
10859         * modules/fdopendir-tests: New file.
10860         * tests/test-fdopendir.c: Likewise.
10861
10862         fchdir: use more consistent macro convention
10863         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
10864         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
10865         REPLACE_FCHDIR, rather than relying on config.h macros.
10866         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
10867         inside a single make-time REPLACE_FCHDIR block, rather than using
10868         the config.h FCHDIR_REPLACEMENT.
10869         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
10870         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
10871         Manage fstat replacement.
10872         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
10873         REPLACE_FCHDIR.
10874         * modules/sys_stat (Files): Add m4/unistd_h.m4.
10875         (Makefile.am): Substitute REPLACE_FCHDIR.
10876         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
10877         FCHDIR_REPLACEMENT.
10878         * lib/dup-safer.c (dup_safer): Likewise.
10879         * lib/dup2.c (rpl_dup2): Likewise.
10880         * lib/dup3.c (rpl_dup3): Likewise.
10881         * lib/open.c (rpl_open): Likewise.
10882
10883         fchdir: simplify error handling, and support dup3
10884         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
10885         stdbool, malloc-posix, realloc-posix.
10886         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
10887         (ensure_dirs_slot): Return false on allocation failure.
10888         (rpl_dup2): Delete.
10889         (_gl_register_dup): New function.
10890         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
10891         (_gl_register_fd): Close fd on allocation failure.
10892         * lib/fcntl.in.h (_gl_register_fd): Update signature.
10893         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
10894         prototype.
10895         (rpl_dup2_fchdir): Delete prototype.
10896         * lib/open.c (open): Update caller.
10897         * lib/dup2.c (dup2): Track fchdir metadata.
10898         * lib/dup3.c (dup3): Likewise.
10899         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
10900         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
10901
10902 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10903
10904         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
10905         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
10906         don't pass arguments to AC_OUTPUT.
10907
10908 2009-09-02  Bruno Haible  <bruno@clisp.org>
10909
10910         * modules/mkdtemp (License): Relicense under LGPLv2+.
10911         Reported by Paolo Bonzini.
10912
10913 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10914
10915         Replace uses of obsolete autoconf macros in Jim's modules.
10916         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
10917         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
10918         can evoke a warning from autoconf when run with -Wobsolete
10919         enabled.  They were declared obsolete for good reasons (see
10920         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
10921         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
10922         should not continue using the deprecated macros.
10923         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
10924         obsolete Autoconf macros with modern counterparts.
10925         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
10926         * m4/dos.m4 (gl_AC_DOS): Likewise.
10927         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
10928         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
10929         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
10930         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
10931         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
10932         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
10933         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
10934         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
10935         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
10936         Likewise.
10937         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
10938         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
10939         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
10940         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
10941         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
10942         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
10943
10944 2009-09-01  Eric Blake  <ebb9@byu.net>
10945
10946         fchdir: fix off-by-one bug in previous patch
10947         * lib/fchdir.c (rpl_fstat): Use correct bounds.
10948         (_gl_unregister_fd): Delete useless if.
10949
10950 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
10951
10952         maint.mk: sort the list of syntax-check rules
10953         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
10954         easier to get a sense of progress when the rules are run sequentially
10955         and take a long time.
10956
10957 2009-09-01  Simon Josefsson  <simon@josefsson.org>
10958
10959         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
10960         * modules/netinet_in: Likewise.
10961         * modules/sys_file: Likewise.
10962         * modules/sys_ioctl: Likewise.
10963         * modules/sys_select: Likewise.
10964         * modules/sys_socket: Likewise.
10965         * modules/sys_stat: Likewise.
10966         * modules/sys_time: Likewise.
10967         * modules/sys_times: Likewise.
10968         * modules/sys_utsname: Likewise.
10969         * modules/sys_wait: Likewise.
10970
10971 2009-09-01  Jim Meyering  <meyering@redhat.com>
10972
10973         fts: help ensure that return values are not ignored
10974         * lib/fts_.h (__GNUC_PREREQ): Define.
10975         (__attribute_warn_unused_result__): Define.
10976         (fts_children, fts_close, fts_open, fts_read): Declare with
10977         __attribute_warn_unused_result__.
10978
10979         fts: fts_close now fails also when closing a dir file descriptor fails
10980         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
10981         and propagate to caller, along with errno.
10982
10983         announce-gen: correct formatting in --help output
10984         * build-aux/announce-gen (usage): Move the one-line description in
10985         --help output "up", to where it belongs, just after Usage:.
10986
10987 2009-08-31  Eric Blake  <ebb9@byu.net>
10988
10989         fchdir: port to mingw
10990         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
10991         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
10992         opened, then use a substitute.
10993         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
10994         replacement.
10995         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
10996         (_gl_register_fd): No need to check stat if open already filters
10997         all directories.
10998         (fchdir): Fix error condition to match POSIX.
10999         * modules/fchdir (Depends-on): Add sys_stat.
11000         * doc/posix-functions/open.texi (open): Document the limitation.
11001         * modules/fchdir-tests: New file.
11002         * tests/test-fchdir.c: Likewise.
11003
11004         canonicalize: allow cross-testing from cygwin to mingw
11005         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
11006         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
11007         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
11008         Likewise.
11009         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
11010         target does not support symlinks.
11011         * tests/test-canonicalize-lgpl.sh: Likewise.
11012
11013         chown: avoid compilation warning on mingw
11014         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
11015         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
11016         mingw.
11017         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
11018         * modules/chown (Depends-on): Add errno.
11019
11020 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
11021
11022         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
11023         command.
11024
11025 2009-08-31  Jim Meyering  <meyering@redhat.com>
11026
11027         canonicalize: remove useless initialization
11028         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
11029         initialization of local, "end".
11030
11031 2009-08-30  Bruno Haible  <bruno@clisp.org>
11032
11033         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
11034         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
11035         ENOSYS.
11036
11037 2009-08-30  Bruno Haible  <bruno@clisp.org>
11038
11039         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
11040         /usr/xpg4/bin/tr when it exists.
11041         * tests/test-pipe-filter-gi1.sh: Likewise.
11042
11043 2009-08-30  Bruno Haible  <bruno@clisp.org>
11044
11045         Work around deficient /usr/bin/id program on Solaris.
11046         * tests/test-file-has-acl.sh (ID): New variable.
11047         * tests/test-set-mode-acl.sh (ID): Likewise.
11048         * tests/test-copy-acl.sh (ID): Likewise.
11049         * tests/test-copy-file.sh (ID): Likewise.
11050
11051 2009-08-30  Bruno Haible  <bruno@clisp.org>
11052
11053         New module 'xstriconveh'.
11054         * lib/xstriconveh.h: New file.
11055         * lib/xstriconveh.c: New file.
11056         * modules/xstriconveh: New file.
11057
11058 2009-08-30  Bruno Haible  <bruno@clisp.org>
11059
11060         Make it easier to use mem_cd_iconveh.
11061         * lib/striconveh.h (iconveh_t): New type.
11062         (iconveh_open, iconveh_close): New declarations.
11063         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
11064         with a single 'const iconveh_t *' argument.
11065         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
11066         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
11067         with a single 'const iconveh_t *' argument.
11068         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
11069         * tests/test-striconveh.c (main): Update.
11070         * NEWS: Mention the change.
11071
11072 2009-08-30  Bruno Haible  <bruno@clisp.org>
11073
11074         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
11075         problem.
11076
11077 2009-08-30  Bruno Haible  <bruno@clisp.org>
11078
11079         Work around iconv_open problem on Solaris.
11080         * lib/iconv_open-solaris.gperf: New file.
11081         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
11082         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
11083         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
11084         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
11085         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
11086         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
11087
11088 2009-08-29  Jim Meyering  <meyering@redhat.com>
11089
11090         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
11091         * top/maint.mk (cvs-check): Remove target; it was just an alias
11092         to the better-named vc-diff-check.
11093         (maintainer-distcheck): Remove rule.  It was used only from
11094         the (alpha/beta/major) target, and all of its commands but one
11095         were coreutils-specific.
11096         (vc-dist): Remove rule.
11097         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
11098         Run vc-diff-check, not vc-dist.
11099         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
11100
11101 2009-08-27  Bruno Haible  <bruno@clisp.org>
11102
11103         * tests/test-bitrotate.c (main): Remove test that uses a shift count
11104         of 0.
11105
11106 2009-08-27  Bruno Haible  <bruno@clisp.org>
11107
11108         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
11109         compilers.
11110         * doc/func.texi: Document the SunPRO C bug.
11111
11112 2009-08-27  Bruno Haible  <bruno@clisp.org>
11113
11114         Fix link error on Solaris.
11115         * tests/test-parse-duration.c (xstrdup): Remove function.
11116
11117 2009-08-26  Pádraig Brady  <P@draigbrady.com>
11118
11119         ignore-value: handle pointer types, too
11120         * lib/ignore-value.h (__attribute__): Remove definition.
11121         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
11122         of a more concise and more-often effective "(void) i" statement.
11123         (ignore_ptr): New function to suppress warnings from functions that
11124         return pointers, and to make it explicit that one function doesn't
11125         handle all cases.
11126
11127 2009-08-25  Bruno Haible  <bruno@clisp.org>
11128
11129         dup2: work around a Linux bug.
11130         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
11131         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
11132         * doc/posix-functions/dup2.texi: Mention the Linux bug.
11133         Reported by Simon Josefsson.
11134
11135 2009-08-25  Jim Meyering  <meyering@redhat.com>
11136
11137         libguestfs uses gnulib
11138         * users.txt: Add libguestfs.
11139
11140 2009-08-24  Eric Blake  <ebb9@byu.net>
11141
11142         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
11143         * lib/pipe2.c (includes): Add binary-io.h.
11144         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
11145
11146 2009-08-24  Bruno Haible  <bruno@clisp.org>
11147
11148         Tolerate declared but missing accept4 syscall.
11149         * lib/accept4.c (accept4): Invoke original accept4 function first, if
11150         available.
11151         * lib/sys_socket.in.h (accept4): If the function is already present,
11152         override it.
11153         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
11154         * modules/accept4 (Makefile.am): Compile accept4.c always.
11155         Reported by Paolo Bonzini and Eric Blake.
11156
11157 2009-08-23  Bruno Haible  <bruno@clisp.org>
11158
11159         New module 'accept4'.
11160         * lib/sys_socket.in.h (accept4): New declaration.
11161         * lib/accept4.c: New file.
11162         * m4/accept4.m4: New file.
11163         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
11164         GNULIB_ACCEPT4, HAVE_ACCEPT4.
11165         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
11166         HAVE_ACCEPT4.
11167         * modules/accept4: New file.
11168         * doc/glibc-functions/accept4.texi: Mention the new module.
11169
11170 2009-08-24  Jim Meyering  <meyering@redhat.com>
11171
11172         progname: also set global program_invocation_name, when possible
11173         Before this change, a libtool-enabled program that calls glibc's
11174         error function would report the program name as
11175         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
11176         * modules/progname (configure.ac): Check for a declaration of
11177         program_invocation_name.
11178         * lib/progname.c:  Include <errno.h>.
11179         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
11180         Set program_invocation_name.
11181
11182 2009-08-23  Bruno Haible  <bruno@clisp.org>
11183
11184         * lib/dup3.c: Include <string.h>.
11185
11186 2009-08-23  Bruno Haible  <bruno@clisp.org>
11187
11188         * lib/dup3.c (dup3): Test only once whether the system actually exists.
11189         * lib/pipe2.c (pipe2): Likewise.
11190         Suggested by Eric Blake.
11191
11192 2009-08-23  Bruno Haible  <bruno@clisp.org>
11193
11194         Tolerate declared but missing dup3 syscall.
11195         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
11196         * lib/unistd.in.h (dup3): If the function is already present,
11197         override it.
11198         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
11199         * modules/dup3 (Makefile.am): Compile dup3.c always.
11200         Reported by Paolo Bonzini.
11201
11202 2009-08-23  Bruno Haible  <bruno@clisp.org>
11203
11204         Tolerate declared but missing pipe2 syscall.
11205         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
11206         available.
11207         * lib/unistd.in.h (pipe2): If the function is already present,
11208         override it.
11209         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
11210         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
11211         Reported by Paolo Bonzini.
11212
11213 2009-08-23  Bruno Haible  <bruno@clisp.org>
11214
11215         * lib/pipe2.c (pipe2): Move #ifs inside function.
11216
11217 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11218
11219         quotearg: document limitations of quote_these_too
11220         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
11221         those limitations are created.
11222         * lib/quotearg.h (set_char_quoting): Document that digits and
11223         letters that are special after backslash are not permitted.
11224         (quotearg_char): Cross-reference set_char_quoting documentation.
11225
11226 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
11227
11228         quotearg: implement custom_quoting_style
11229         * lib/quotearg.c: (struct quoting_options): Add left_quote and
11230         right_quote fields.
11231         (set_custom_quoting): New public function.
11232         (quotearg_buffer_restyled): Add left_quote and right_quote
11233         arguments, handle them very much like locale quoting, and update
11234         all uses.
11235         (quotearg_n_custom): New public function.
11236         (quotearg_n_custom_mem): New public function.
11237         (quotearg_custom): New public function.
11238         (quotearg_custom_mem): New public function.
11239         * lib/quotearg.h: Prototype and document new public functions.
11240         (enum quoting_style): For escape_quoting_style and
11241         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
11242         ignored even though they're otherwise like c_quoting_style.
11243         Add custom_quoting_style member and document with comparison to
11244         clocale_quoting_style.
11245         * tests/test-quotearg.c (custom_quotes): New array.
11246         (custom_results): New array.
11247         (main): Extend to test custom quoting.
11248
11249 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11250
11251         quotearg: fix right quote escaping when it's in quote_these_too
11252         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
11253         quote, be sure to prepend only one backslash.
11254         * tests/test-quotearg.c (use_quote_double_quotes): New function.
11255         (main): Test it.
11256
11257 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11258
11259         quotearg-tests: test escaping of embedded locale quotes
11260         * tests/test-quotearg.c (struct result_strings): Add member for
11261         new input.
11262         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
11263         (inputs): Add new input.
11264         (results_g): Add expected results.
11265         (flag_results): Likewise.
11266         (locale_results): Likewise.
11267         (compare_strings): Check those.
11268
11269 2009-08-23  Bruno Haible  <bruno@clisp.org>
11270
11271         Tests for module 'dup3'.
11272         * modules/dup3-tests: New file.
11273         * tests/test-dup3.c: New file.
11274
11275         New module 'dup3'.
11276         * lib/unistd.in.h (dup3): New declaration.
11277         * lib/dup3.c: New file.
11278         * m4/dup3.m4: New file.
11279         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
11280         HAVE_DUP3.
11281         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
11282         * modules/dup3: New file.
11283         * doc/glibc-functions/dup3.texi: Mention the new module.
11284
11285 2009-08-23  Bruno Haible  <bruno@clisp.org>
11286
11287         Tweak the dup2 test.
11288         * tests/test-dup2.c (main): Create the test file empty. Verify that an
11289         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
11290         the test file is still empty. Fix argument order of lseek.
11291
11292 2009-08-23  Bruno Haible  <bruno@clisp.org>
11293
11294         Avoid test link errors when the modules getopt-gnu, gettext are used.
11295         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
11296         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11297
11298 2009-08-23  Bruno Haible  <bruno@clisp.org>
11299
11300         Fix getdtablesize() on mingw.
11301         * lib/getdtablesize.c (getdtablesize): Implement differently.
11302         * lib/unistd.in.h (getdtablesize): Improve comment.
11303
11304 2009-08-23  Bruno Haible  <bruno@clisp.org>
11305
11306         New module 'mkostemp'.
11307         Based on Ulrich Drepper's 2007-08-10 change in glibc.
11308         * lib/stdlib.in.h (mksotemp): New declaration.
11309         * lib/mkostemp.c: New file, from glibc with modifications.
11310         * lib/tempname.h (GT_FILE): Remove outdated comment.
11311         (gen_tempname): Add flags argument.
11312         * lib/tempname.c (__GT_BIGFILE): Remove macro.
11313         (__GT_FILE): Map to 1.
11314         (small_open, large_open): Remove macros.
11315         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
11316         * lib/mkstemp.c (mkstemp): Update.
11317         * lib/mkdtemp.c (mkdtemp): Likewise.
11318         * m4/mkostemp.m4: New file.
11319         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
11320         HAVE_MKOSTEMP.
11321         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
11322         HAVE_MKOSTEMP.
11323         * modules/mkostemp: New file, based on modules/mkstemp.
11324         * doc/glibc-functions/mkostemp.texi: Mention the new module.
11325         * NEWS: Mention the change.
11326
11327 2009-08-23  Bruno Haible  <bruno@clisp.org>
11328
11329         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
11330         Reported by Eric Blake.
11331
11332 2009-08-23  Bruno Haible  <bruno@clisp.org>
11333
11334         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
11335         Reported by Eric Blake.
11336
11337 2009-08-23  Bruno Haible  <bruno@clisp.org>
11338
11339         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
11340         * modules/pipe2 (Depends-on): Likewise.
11341
11342 2009-08-23  Eric Blake  <ebb9@byu.net>
11343
11344         fcntl-h: add O_TTY_INIT support
11345         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
11346         * tests/test-fcntl-h.c (o): Test it.
11347         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
11348
11349         fcntl-h: rename from fcntl, in preparation for fcntl(2)
11350         * modules/fcntl: Move <fcntl.h> header replacement...
11351         * modules/fcntl-h: ...to new name, so as not to collide with
11352         like-named function.
11353         * tests/test-fcntl.c: Rename...
11354         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
11355         * modules/fcntl-tests: Rename...
11356         * modules/fcntl-h-tests: ...to this.  Update test file name.
11357         * modules/chdir-long (Depends-on): Update clients.
11358         * modules/chdir-safer (Depends-on): Likewise.
11359         * modules/fcntl-safer (Depends-on): Likewise.
11360         * modules/fts (Depends-on): Likewise.
11361         * modules/mkancesdirs (Depends-on): Likewise.
11362         * modules/mkdir-p (Depends-on): Likewise.
11363         * modules/open (Depends-on): Likewise.
11364         * modules/savewd (Depends-on): Likewise.
11365         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
11366         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
11367
11368 2009-08-22  Bruno Haible  <bruno@clisp.org>
11369
11370         * modules/binary-io (License): Relicense under LGPL.
11371         * modules/pipe2 (License): Likewise.
11372
11373 2009-08-22  Bruno Haible  <bruno@clisp.org>
11374
11375         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
11376         return value.
11377         * lib/pipe-filter-gi.c (filter_init): Likewise.
11378         Reported by Eric Blake.
11379
11380 2009-08-22  Bruno Haible  <bruno@clisp.org>
11381
11382         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
11383         * modules/pipe (Depends-on): Add pipe2.
11384
11385 2009-08-22  Bruno Haible  <bruno@clisp.org>
11386
11387         Tests for module 'pipe2'.
11388         * modules/pipe2-tests: New file.
11389         * tests/test-pipe2.c: New file.
11390
11391         New module 'pipe2'.
11392         * lib/unistd.in.h (pipe2): New declaration.
11393         * lib/pipe2.c: New file.
11394         * m4/pipe2.m4: New file.
11395         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
11396         HAVE_PIPE2.
11397         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
11398         * modules/pipe2: New file.
11399         * doc/glibc-functions/pipe2.texi: Mention the new module.
11400
11401 2009-08-22  Bruno Haible  <bruno@clisp.org>
11402
11403         Reference some new glibc functions.
11404         * doc/glibc-functions/accept4.texi: New file.
11405         * doc/glibc-functions/dup3.texi: New file.
11406         * doc/glibc-functions/mkostemp.texi: New file.
11407         * doc/glibc-functions/pipe2.texi: New file.
11408         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
11409         (Glibc sys/socket.h): Refer to accept4.
11410         (Glibc unistd.h): Refer to dup3, pipe2.
11411         Reported by Eric Blake.
11412
11413 2009-08-22  Jim Meyering  <meyering@redhat.com>
11414             Bruno Haible  <bruno@clisp.org>
11415
11416         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
11417         This makes it so packages using automake-1.11's silent-rules option
11418         can print e.g., a single "GEN    configmake.h" line, rather than
11419         the 30+ statements that perform the job.  If you want to see the
11420         actual commands, you can still run "make V=1".
11421         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
11422         so that make output is abbreviated when those variables are defined
11423         appropriately.
11424         * modules/argz: Likewise.
11425         * modules/arpa_inet: Likewise.
11426         * modules/byteswap: Likewise.
11427         * modules/configmake: Likewise.
11428         * modules/dirent: Likewise.
11429         * modules/errno: Likewise.
11430         * modules/fcntl: Likewise.
11431         * modules/float: Likewise.
11432         * modules/fnmatch: Likewise.
11433         * modules/getopt-posix: Likewise.
11434         * modules/glob: Likewise.
11435         * modules/iconv_open: Likewise.
11436         * modules/inttypes: Likewise.
11437         * modules/localcharset: Likewise.
11438         * modules/locale: Likewise.
11439         * modules/math: Likewise.
11440         * modules/netdb: Likewise.
11441         * modules/netinet_in: Likewise.
11442         * modules/poll: Likewise.
11443         * modules/posix_spawnp-tests: Likewise.
11444         * modules/sched: Likewise.
11445         * modules/search: Likewise.
11446         * modules/selinux-h: Likewise.
11447         * modules/signal: Likewise.
11448         * modules/spawn: Likewise.
11449         * modules/stdarg: Likewise.
11450         * modules/stdbool: Likewise.
11451         * modules/stddef: Likewise.
11452         * modules/stdint: Likewise.
11453         * modules/stdio: Likewise.
11454         * modules/stdlib: Likewise.
11455         * modules/string: Likewise.
11456         * modules/strings: Likewise.
11457         * modules/sys_file: Likewise.
11458         * modules/sys_ioctl: Likewise.
11459         * modules/sys_select: Likewise.
11460         * modules/sys_socket: Likewise.
11461         * modules/sys_stat: Likewise.
11462         * modules/sys_time: Likewise.
11463         * modules/sys_times: Likewise.
11464         * modules/sys_utsname: Likewise.
11465         * modules/sys_wait: Likewise.
11466         * modules/sysexits: Likewise.
11467         * modules/time: Likewise.
11468         * modules/unistd: Likewise.
11469         * modules/wchar: Likewise.
11470         * modules/wctype: Likewise.
11471
11472 2009-08-22  Jim Meyering  <meyering@redhat.com>
11473
11474         announce-gen: detect write failure
11475         * build-aux/announce-gen: Add Coda at end.
11476         Remove equivalent-but-more-verbose block at top.
11477
11478 2009-08-19  Akim Demaille  <demaille@gostai.com>
11479
11480         bootstrap: --help to stdout.
11481         * bootstrap (usage): Don't send --help to stderr.
11482         Use a here doc instead of a long string.
11483
11484 2009-08-21  Eric Blake  <ebb9@byu.net>
11485
11486         test-popen-safer: split from test-popen
11487         * tests/test-popen.c (main): Move...
11488         * tests/test-popen.h: ...into new file.
11489         * tests/test-popen-safer2.c: New file.
11490         * modules/popen-tests (Files): Add test-popen.h.
11491         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
11492         Suggested by Bruno Haible.
11493
11494         test-fcntl-safer: split from test-open
11495         * tests/test-open.c (main): Move...
11496         * tests/test-open.h: ...into new file.
11497         * tests/test-fcntl-safer.c: New file.
11498         * modules/open-tests (Files): Add test-open.h.
11499         * modules/fcntl-safer-tests: New file.
11500         Suggested by Bruno Haible.
11501
11502         test-fopen-safer: split from test-fopen
11503         * tests/test-fopen.c (main): Move...
11504         * tests/test-fopen.h: ...into new file.
11505         * tests/test-fopen-safer.c: New file.
11506         * modules/fopen-tests (Files): Add test-fopen.h.
11507         * modules/fopen-safer-tests: New file.
11508         Suggested by Bruno Haible.
11509
11510 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
11511
11512         popen-safer: test O_CLOEXEC at run-time.
11513         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
11514
11515 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
11516
11517         fcntl: move more flags to the header
11518         * lib/cloexec.c: Do not define FD_CLOEXEC here.
11519         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
11520         * lib/fcntl.in.h: Do both things here.
11521
11522 2009-08-21  Jim Meyering  <meyering@redhat.com>
11523
11524         consistently remove $@-t before redirecting to it
11525         * modules/argz: Remove $@-t and $@ before redirecting to the former.
11526         * modules/alloca-opt: Likewise.
11527         * modules/byteswap: Likewise.
11528         * modules/fnmatch: Likewise.
11529         * modules/getopt-posix: Likewise.
11530         * modules/glob: Likewise.
11531         * modules/poll: Likewise.
11532         * modules/posix_spawnp-tests: Likewise.
11533         * modules/sys_socket: Likewise.
11534         * modules/sysexits: Likewise.
11535
11536 2009-08-21  Eric Blake  <ebb9@byu.net>
11537
11538         popen: simplify access to original popen
11539         * lib/popen.c (rpl_popen): No need to worry about popen being a
11540         macro.
11541         Reported by Bruno Haible.
11542
11543 2009-08-20  Eric Blake  <ebb9@byu.net>
11544
11545         build: avoid some compiler warnings
11546         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
11547         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
11548         type.
11549         (new_exclude_segment, excluded_file_pattern_p)
11550         (excluded_file_name_p): Reduce scope.
11551         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
11552         old-style declaration.
11553
11554 2009-08-20  Simon Josefsson  <simon@josefsson.org>
11555
11556         * tests/test-exclude1.sh: Handle Windows EOL.
11557         * tests/test-exclude2.sh: Likewise.
11558         * tests/test-exclude3.sh: Likewise.
11559         * tests/test-exclude4.sh: Likewise.
11560         * tests/test-exclude5.sh: Likewise.
11561         * tests/test-exclude6.sh: Likewise.
11562         * tests/test-exclude7.sh: Likewise.
11563
11564 2009-08-19  Akim Demaille  <demaille@gostai.com>
11565
11566         bootstrap: find sha1sum when named gsha1sum.
11567         * bootstrap (find_tool): New.
11568         ($SHA1SUM): New.
11569         Use it.
11570
11571 2009-08-20  Jim Meyering  <meyering@redhat.com>
11572
11573         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
11574         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
11575         expression that converts "." in a file name to "\." in the resulting
11576         regexp.  Start with a dummy statement, so that prior shell variable
11577         definitions are expanded portably.  Reported by Simon Josefsson.
11578
11579 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
11580
11581         Fix polling for writeability of a screen buffer.
11582         * lib/poll.c: Distinguish input and screen buffers for the
11583         Win32 implementation.
11584         * lib/select.c: Likewise.
11585
11586 2009-08-19  Eric Blake  <ebb9@byu.net>
11587
11588         popen-safer: prevent popen from clobbering std descriptors
11589         * modules/popen-safer: New file.
11590         * lib/popen-safer.c: Likewise.
11591         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
11592         * lib/stdio--.h (popen): Provide override.
11593         * lib/stdio-safer.h (popen_safer): Provide declaration.
11594         * tests/test-popen.c (includes): Partially test this.
11595         * modules/popen-safer-tests: New file, for more tests.
11596         * tests/test-popen-safer.c: Likewise.
11597         * MODULES.html.sh (file stream based Input/Output): Mention it.
11598
11599         tests: test some of the *-safer modules
11600         * modules/fopen-safer (Depends-on): Add fopen.
11601         * modules/fcntl-safer (Depends-on): Add fcntl.
11602         * modules/stdlib-safer (Depends-on): Add stdlib.
11603         (configure.ac): Set indicator.
11604         * modules/unistd-safer (configure.ac): Likewise.
11605         * modules/tmpfile-safer (configure.ac): Likewise.
11606         (Depends-on): Add tmpfile.
11607         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
11608         active.
11609         * tests/test-fopen.c (includes): Test safer versions when they are
11610         in use.
11611         * tests/test-open.c (includes): Likewise.
11612
11613         popen: fix cygwin 1.5 bug when stdin closed
11614         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
11615         * modules/popen: New file.
11616         * modules/popen-tests: Likewise.
11617         * tests/test-popen.c: Likewise.
11618         * m4/popen.m4: Likewise.
11619         * lib/popen.c: Likewise.
11620         * lib/stdio.in.h (popen): New declaration.
11621         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
11622         * modules/stdio (Makefile.am): Likewise.
11623         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
11624
11625 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
11626
11627         maint.mk: give full control over update-copyright exclusions
11628         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
11629         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
11630         (update-copyright): Don't force inclusion of top-level
11631         ChangeLog.  Don't force exclusion of all COPYING files, but make
11632         them the default exclusion instead.
11633
11634 2009-08-16  Bruno Haible  <bruno@clisp.org>
11635
11636         Fix test failures on Solaris 10.
11637         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
11638         tests when Solaris iconv() is used.
11639         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
11640         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
11641         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
11642         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
11643         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
11644
11645 2009-08-16  Bruno Haible  <bruno@clisp.org>
11646
11647         Fix test failures on Solaris 10.
11648         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
11649         'tr' program and pass it as first argument.
11650         * tests/test-pipe-filter-gi1.sh: Likewise.
11651         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
11652         program as first argument.
11653         * tests/test-pipe-filter-gi1.c (main): Likewise.
11654
11655 2009-08-16  Eric Blake  <ebb9@byu.net>
11656
11657         fpurge: fix previous commits
11658         * modules/fpurge (Makefile.am): Make replacement conditional,
11659         partially reverting 2007-04-29 change; missed in previous
11660         attempt.
11661         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
11662         is missing.
11663
11664 2009-08-16  Bruno Haible  <bruno@clisp.org>
11665
11666         Clarify fpurge's effect on the file position.
11667         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
11668         * tests/test-fpurge.c (main): Make a second pass for checking the file
11669         position.
11670
11671 2009-08-16  Bruno Haible  <bruno@clisp.org>
11672
11673         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
11674         declaration of fpurge is missing.
11675         * tests/test-fpurge.c (main): Check that the file has not more contents
11676         than expected. Close the file before removing it.
11677
11678 2009-08-15  Eric Blake  <ebb9@byu.net>
11679
11680         fpurge: don't wrap working cygwin implementation
11681         * lib/fpurge.c (fpurge): Fix comment typo.
11682         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
11683         1.7 to avoid replacement.
11684         * tests/test-fpurge.c (main): Enhance test.
11685
11686 2009-08-15  Eric Blake  <ebb9@byu.net>
11687         and Jim Meyering  <meyering@redhat.com>
11688
11689         test-update-copyright: skip if perl is insufficient
11690         * tests/test-update-copyright.sh: Failure to run maintainer tool
11691         should not cause testsuite failure on cygwin 1.5.
11692
11693 2009-08-14  Eric Blake  <ebb9@byu.net>
11694
11695         doc: mention more functions added in cygwin 1.7.0
11696         * doc/posix-headers/limits.texi (limits.h): Update for recent
11697         cygwin additions.
11698         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
11699         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
11700         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
11701         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
11702         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
11703
11704 2009-08-14  Eric Blake  <ebb9@byu.net>
11705
11706         maint.mk: simplify update-copyright rule
11707         * top/maint.mk (update-copyright-local): Delete, and document how
11708         to do it in cfg.mk instead.
11709         (update-copyright-exclude-regexp): Delete, and document how to do
11710         it in .x-update-copyright instead.
11711         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
11712         exclude ChangeLog.
11713
11714 2009-08-14  Bruno Haible  <bruno@clisp.org>
11715
11716         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
11717
11718 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
11719
11720         maint.mk: support update-copyright-env
11721         * top/maint.mk (update-copyright-env): Define place-holder.
11722         (update-copyright): Expand $(update-copyright-env) before
11723         invoking update-copyright.
11724
11725 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
11726
11727         update-copyright: implement forced reformatting
11728         * build-aux/update-copyright: Implement and document
11729         UPDATE_COPYRIGHT_FORCE.
11730         * tests/test-update-copyright.sh: Test it.
11731
11732 2009-08-14  Eric Blake  <ebb9@byu.net>
11733         and Bruno Haible  <bruno@clisp.org>
11734
11735         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
11736         * tests/test-locale.c: Revert previous patch related to NULL.
11737         * tests/test-stdio.c: Likewise.
11738         * tests/test-stdlib.c: Likewise.
11739         * tests/test-string.c: Likewise.
11740         * tests/test-unistd.c: Likewise.
11741         * modules/time-tests (Depends-on): Add verify.
11742         * modules/wchar-tests (Depends-on): Likewise.
11743         * tests/test-time.c: Test for NULL compliance.
11744         * tests/test-wchar.c: Likewise.
11745         * modules/locale (Depends-on): Add stddef.
11746         * modules/stdio (Depends-on): Likewise.
11747         * modules/stdlib (Depends-on): Likewise.
11748         * modules/string (Depends-on): Likewise.
11749         * modules/time (Depends-on): Likewise.
11750         * modules/unistd (Depends-on): Likewise.
11751         * modules/wchar (Depends-on): Likewise.
11752         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
11753         * lib/stdlib.in.h (includes): Likewise.
11754         * lib/string.in.h (includes): Likewise.
11755         * lib/time.in.h (includes): Likewise.
11756         * lib/unistd.in.h (includes): Likewise.
11757         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
11758         replaced.
11759         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
11760         * m4/stddef_h.m4: New file.
11761         * modules/stddef: Likewise.
11762         * lib/stddef.in.h: Likewise.
11763         * modules/stddef-tests: Likewise.
11764         * tests/test-stddef.c: Likewise.
11765         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
11766         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
11767         * doc/posix-headers/locale.texi (locale.h): Likewise.
11768         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
11769         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
11770         * doc/posix-headers/string.texi (string.h): Likewise.
11771         * doc/posix-headers/time.texi (time.h): Likewise.
11772         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
11773         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
11774
11775 2009-08-14  Eric Blake  <ebb9@byu.net>
11776
11777         doc: improve git diff of texinfo files
11778         * .gitattributes: Add rule for *.texi files, with hint on how to
11779         use it.
11780         Copied from m4, and based on a report by Bruno Haible.
11781
11782 2009-08-14  Bruno Haible  <bruno@clisp.org>
11783
11784         Disable multithread support by default on Cygwin 1.5.x for real.
11785         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
11786
11787 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
11788
11789         update-copyright: much ado about intervals
11790         * build-aux/update-copyright: Implement and document
11791         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
11792         of copyright year intervals.
11793         Also, document UPDATE_COPYRIGHT_YEAR.
11794         * tests/test-update-copyright.sh: Test it.
11795
11796         update-copyright: convert 2-digit to 4-digit years
11797         * build-aux/update-copyright: Implement and document.
11798         * tests/test-update-copyright.sh: Update.
11799
11800 2009-08-14  Jim Meyering  <meyering@redhat.com>
11801
11802         test-exclude: avoid coreutils "make check" failure
11803         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
11804         just as in test-argmatch.c.
11805
11806 2009-08-13  Eric Blake  <ebb9@byu.net>
11807
11808         test-dup2: fix bad assumption
11809         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
11810         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
11811
11812         test-version-etc: fix CRLF portability issue
11813         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
11814         recognize \r.
11815         * tests/test-argp-version-etc-1.sh: Likewise.
11816
11817         getopt: update client modules
11818         * modules/argp (Depends-on): Use getopt-gnu.
11819         * modules/git-merge-changelog (Depends-on): Likewise.
11820         * modules/long-options (Depends-on): Likewise.
11821         * modules/xstrtol (Depends-on): Likewise.
11822
11823 2009-08-13  Simon Josefsson  <simon@josefsson.org>
11824
11825         * tests/test-version-etc.sh: Don't fail on different
11826         project/version.  Don't fail on CRLF differences.  Rewrite to use
11827         multiple -e instead of multiple sed forks, suggested by Eric Blake
11828         <ebb9@byu.net>.
11829         * tests/test-argp-version-etc-1.sh: Likewise.
11830
11831 2009-08-13  Simon Josefsson  <simon@josefsson.org>
11832
11833         * tests/test-version-etc.sh: Don't fail on different
11834         project/version.
11835
11836 2009-08-12  Bruno Haible  <bruno@clisp.org>
11837
11838         Tests for modules 'getopt-posix', 'getopt-gnu'.
11839         * modules/getopt-posix-tests: New file.
11840         * tests/test-getopt.c: New file.
11841         * tests/test-getopt.h: New file.
11842         * tests/test-getopt_long.h: New file.
11843
11844         New modules 'getopt-posix', 'getopt-gnu'.
11845         * modules/getopt-gnu: New file, renamed from modules/getopt.
11846         * modules/getopt-posix: New file.
11847         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
11848         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
11849         (gl_GETOPT): Remove macro.
11850         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
11851         Disable the test against BSD systems that declare optreset. Test
11852         against mingw bug. Test against lack of support of optional arguments
11853         on many platforms.
11854         * doc/glibc-headers/getopt.texi: Update module name and list of
11855         relevant platforms.
11856         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
11857         'getopt-gnu' and more portability problems.
11858         * NEWS: Mention the changes.
11859
11860 2009-08-12  Bruno Haible  <bruno@clisp.org>
11861
11862         Ensure that optarg etc. get declared by <unistd.h>.
11863         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
11864         AC_USE_SYSTEM_EXTENSIONS.
11865         * modules/getopt (Depends-on): Add 'extensions'.
11866
11867 2009-08-12  Bruno Haible  <bruno@clisp.org>
11868
11869         Avoid test link errors.
11870         * modules/pipe-filter-ii-tests (Makefile.am): Define
11871         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
11872         * modules/pipe-filter-gi-tests (Makefile.am): Define
11873         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
11874         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11875
11876 2009-08-12  Bruno Haible  <bruno@clisp.org>
11877
11878         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
11879         gl_GETOPT_SUBSTITUTE before.
11880         (gl_GETOPT): Use it.
11881         * m4/argp.m4 (gl_ARGP): Update.
11882         Reported by Sergey Poznyakoff.
11883
11884         * m4/getopt.m4: Reorder macros.
11885         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
11886         (gl_GETOPT_SUBSTITUTE): Remove macro.
11887
11888 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
11889
11890         Minor improvement in gitlog-to-changelog
11891
11892         * build-aux/gitlog-to-changelog: New option `--format' makes
11893         output format string configurable.
11894
11895 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
11896
11897         Optimize exclude: use hash tables for non-wildcard patterns.
11898
11899         * lib/exclude.c: Include hash.h and mbuiter.h
11900         (struct exclude_pattern, exclude_segment): New data types.
11901         (struct exclude): Rewrite.
11902         (fnmatch_pattern_has_wildcards): New function.
11903         (new_exclude_segment, free_exclude_segment): New functions.
11904         (excluded_file_pattern_p, excluded_file_name_p): New functions.
11905         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
11906         * lib/exclude.h (is_fnmatch_pattern): New prototype.
11907         * modules/exclude: Depend on hash and mbuiter.
11908
11909         * modules/exclude-tests: New file.
11910         * tests/test-exclude.c: New file.
11911         * tests/test-exclude1.sh: New file.
11912         * tests/test-exclude2.sh: New file.
11913         * tests/test-exclude3.sh: New file.
11914         * tests/test-exclude4.sh: New file.
11915         * tests/test-exclude5.sh: New file.
11916         * tests/test-exclude6.sh: New file.
11917         * tests/test-exclude7.sh: New file.
11918
11919 2009-08-12  Bruno Haible  <bruno@clisp.org>
11920
11921         Ensure that getopt() gets declared by <unistd.h>.
11922         * lib/unistd.in.h: Conditionally include getopt.h.
11923         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
11924         Set GNULIB_UNISTD_H_GETOPT.
11925         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
11926         GNULIB_UNISTD_H_GETOPT.
11927         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
11928
11929 2009-08-12  Bruno Haible  <bruno@clisp.org>
11930
11931         Clarify logic.
11932         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
11933         gl_replace_getopt instead of GETOPT_H.
11934
11935 2009-08-12  Bruno Haible  <bruno@clisp.org>
11936
11937         * m4/getopt.m4: Add comments.
11938
11939 2009-08-12  Bruno Haible  <bruno@clisp.org>
11940
11941         Disable multithread support by default on Cygwin 1.5.x.
11942         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
11943         set gl_use_threads=no if not specified otherwise.
11944
11945 2009-08-11  Bruno Haible  <bruno@clisp.org>
11946
11947         Avoid compilation error on NetBSD 5.0.
11948         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
11949         * tests/test-stdio.c: Likewise.
11950         * tests/test-stdlib.c: Likewise.
11951         * tests/test-string.c: Likewise.
11952         * tests/test-unistd.c: Likewise.
11953         Reported by Greg Troxel <gdt@ir.bbn.com>
11954         at <https://savannah.gnu.org/support/?106973>.
11955
11956 2009-08-11  Bruno Haible  <bruno@clisp.org>
11957
11958         * modules/dup2-tests (Depends-on): Remove close.
11959
11960         Undo 2009-07-19 commit.
11961         * modules/acl-tests (Depends-on): Remove close.
11962         * modules/binary-io-tests (Depends-on): Likewise.
11963         * modules/closein-tests (Depends-on): Likewise.
11964         * modules/flock-tests (Depends-on): Likewise.
11965         * modules/fsync-tests (Depends-on): Likewise.
11966         * modules/lseek-tests (Depends-on): Likewise.
11967         * modules/pipe-tests (Depends-on): Likewise.
11968         * modules/posix_spawn-tests (Depends-on): Likewise.
11969         * modules/posix_spawnp-tests (Depends-on): Likewise.
11970         * modules/stat-time-tests (Depends-on): Likewise.
11971         * modules/yesno-tests (Depends-on): Likewise.
11972
11973 2009-08-10  Bruno Haible  <bruno@clisp.org>
11974
11975         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
11976
11977 2009-08-10  Bruno Haible  <bruno@clisp.org>
11978
11979         Fix a gcc warning.
11980         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
11981
11982 2009-08-10  Bruno Haible  <bruno@clisp.org>
11983
11984         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
11985         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
11986         not only the first time.
11987         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
11988         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
11989         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
11990         is 1, not only the the first time.
11991
11992 2009-08-10  Bruno Haible  <bruno@clisp.org>
11993
11994         Make it possible to use module 'gethostname' without module 'close'.
11995         * lib/unistd.in.h (close): Evoke a link error only if
11996         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
11997         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
11998         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
11999         * modules/unistd (Makefile.am): Substitute
12000         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12001         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
12002         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
12003         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
12004         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12005         * modules/sys_ioctl (Makefile.am): Substitute
12006         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12007         * modules/socket (configure.ac): On native Windows, set
12008         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
12009         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12010         Reported by Sam Steingold <sds@gnu.org>.
12011
12012 2009-08-10  Bruno Haible  <bruno@clisp.org>
12013
12014         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
12015         * modules/ioctl (configure.ac): Likewise.
12016
12017 2009-08-10  Bruno Haible  <bruno@clisp.org>
12018
12019         Avoid collision between gnulib wrapper and libintl wrapper.
12020         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
12021         already defined in intl/printf.c.
12022         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
12023         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
12024
12025 2009-08-09  Bruno Haible  <bruno@clisp.org>
12026
12027         Make <sys/select.h> really self-contained, also on Solaris 10.
12028         * lib/sys_select.in.h: Include <string.h>.
12029         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
12030         Solaris 10 problem.
12031         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
12032         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
12033         Reported by Jim Meyering.
12034
12035 2009-08-09  Bruno Haible  <bruno@clisp.org>
12036
12037         Avoid warnings from 'aclocal' that are due to a use of macro name
12038         AM_XGETTEXT_OPTION that is not defined in automake.
12039         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
12040         automake.
12041         * modules/error (configure.ac): Likewise.
12042         * modules/propername (configure.ac): Likewise.
12043         * modules/vasprintf (configure.ac): Likewise.
12044         * modules/verror (configure.ac): Likewise.
12045         * modules/xprintf (configure.ac): Likewise.
12046         * modules/xvasprintf (configure.ac): Likewise.
12047
12048 2009-08-08  Bruno Haible  <bruno@clisp.org>
12049
12050         Avoid compilation error in C++ mode.
12051         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
12052         Reported by Sam Steingold <sds@gnu.org>.
12053
12054 2009-08-08  Bruno Haible  <bruno@clisp.org>
12055
12056         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
12057         for the various Unix platforms.
12058         * doc/posix-headers/limits.texi: Update platforms list regarding
12059         HOST_NAME_MAX.
12060         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
12061
12062 2009-08-07  Jim Meyering  <meyering@redhat.com>
12063
12064         selinux-at: fix typo in a comment
12065         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
12066         Spotted by Paolo Bonzini.
12067
12068         selinux-at: remove redundant m4 code, add documentation
12069         * modules/selinux-at (configure.ac): Remove redundant code.
12070         LIB_SELINUX is already set via the dependent module, selinux-h.
12071         (Include): Add quotes around selinux-at.h.
12072         * lib/selinux-at.h: Add documentation.
12073         Reported by Bruno Haible in
12074         http://marc.info/?l=gnulib-bug&m=124958988300749
12075
12076 2009-08-07  Bruno Haible  <bruno@clisp.org>
12077
12078         Avoid link error on MacOS X 10.3 and 10.4.
12079         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
12080         on non-ELF systems.
12081         * lib/argp-pv.c (argp_program_version): Likewise.
12082         Reported by Simon Josefsson.
12083
12084 2009-08-07  Simon Josefsson  <simon@josefsson.org>
12085
12086         * tests/test-version-etc.sh: Use $EXEEXT.
12087
12088 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
12089
12090         update-copyright: update documentation to point to maint.mk
12091         * build-aux/update-copyright: Here.
12092
12093 2009-08-06  Jim Meyering  <meyering@redhat.com>
12094
12095         maint.mk: support update-copyright-local
12096         * top/maint.mk (update-copyright-local): Define place-holder.
12097         (update-copyright): Depend on $(update-copyright-local).
12098
12099 2009-08-06  Jim Meyering  <meyering@redhat.com>
12100
12101         selinux-at: new module
12102         Initially written for coreutils, this module will soon be
12103         used by findutils, too.
12104         * MODULES.html.sh [Misc]: Add selinux-at.
12105         * lib/selinux-at.h: New file, from coreutils.
12106         * lib/selinux-at.c: Likewise.
12107         * modules/selinux-at: Likewise.
12108         (License): Change from LGPL to GPL, since it depends
12109         on the GPL'd openat module.
12110
12111         doc: update README
12112         * README: Remove references to cogito.
12113         Remove cvs-repo-updating instructions from 2007.
12114         Don't imply that CVS is better if you have limited disk space.
12115
12116 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12117
12118         update-copyright: support C-style comments
12119         * build-aux/update-copyright: Implement and document.
12120         * tests/test-update-copyright.sh: Test.
12121
12122 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12123
12124         update-copyright: support omitted "(C)"
12125         * build-aux/update-copyright: Implement and document.  Also,
12126         allow variable whitespace before "(C)".
12127         * tests/test-update-copyright.sh: Test.
12128
12129 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12130
12131         update-copyright: don't trip on non-FSF copyright statements
12132         * build-aux/update-copyright: Fix so that the first correctly
12133         formatted FSF copyright statement is recognized no matter what
12134         appears before it.  Update documentation.
12135         * tests/test-update-copyright.sh: Test that.
12136
12137 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12138
12139         update-copyright: clean up code a little
12140         * build-aux/update-copyright: Append "_re" to the name of any
12141         variable holding a regular expression.
12142         Replace "old" and "new" with "stmt" in variable names.
12143         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
12144         handled correctly.
12145         Format code more consistently.
12146
12147 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12148
12149         update-copyright-tests: improve portability
12150         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
12151         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
12152
12153 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
12154
12155         update-copyright: support @copyright{} and &copy;
12156         * build-aux/update-copyright: Implement and document.
12157         * tests/test-update-copyright.sh: Test.
12158
12159 2009-08-04  Jim Meyering  <meyering@redhat.com>
12160
12161         update-copyright-tests: correctly test EOL=\r\n handling
12162         * tests/test-update-copyright.sh: Put \r at the end of some lines
12163         for the dos-eol tests.  Based on a patch by Joel E. Denny.
12164
12165         maint.mk: make update-copyright exclusion list more configurable
12166         * top/maint.mk (update-copyright): Default to excluding COPYING,
12167         but allow an override, in case someone does want to update that file.
12168
12169         maint.mk: don't update copyright date in COPYING
12170         * top/maint.mk (update-copyright): Exclude COPYING.
12171
12172         maint.mk: add a copyright-updating rule
12173         * top/maint.mk (update-copyright): New rule.
12174         Derived from coreutils/Makefile.am.
12175
12176         update-copyright: rename some variables
12177         * build-aux/update-copyright: Rename a few variables for clarity.
12178         Tweak syntax.  List Joel E. Denny as coauthor.
12179
12180 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
12181
12182         update-copyright: fix bug for 2-digit last year and add tests
12183         * build-aux/update-copyright: Fix bug.
12184         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
12185         specified.
12186         * modules/update-copyright-tests: New
12187         * tests/test-update-copyright.sh: New.
12188
12189 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12190
12191         update-copyright: handle leading tabs in line prefix
12192         * build-aux/update-copyright: Count leading tabs as 8 spaces
12193         when computing margin.  This helps with the formatting of
12194         ChangeLogs, for example.
12195         Fix documentation a little.
12196
12197 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12198
12199         update-copyright: support EOL=\r\n
12200         * build-aux/update-copyright: Implement that.
12201
12202 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12203
12204         update-copyright: automatically format copyright statements
12205         * build-aux/update-copyright: Implement that.
12206         Also, be a little more predictable and safer by always failing
12207         when the full copyright format is not perfectly recognized as an
12208         unbroken whole.  Discussed at
12209         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
12210         Rewrite documentation.
12211
12212 2009-08-03  Bruno Haible  <bruno@clisp.org>
12213
12214         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
12215
12216 2009-08-02  Bruno Haible  <bruno@clisp.org>
12217
12218         Tests for module 'uname'.
12219         * modules/uname-tests: New file.
12220         * tests/test-uname.c: New file.
12221
12222         New module 'uname'.
12223         * lib/uname.c: New file.
12224         * m4/uname.m4: New file.
12225         * modules/uname: New file.
12226         * doc/posix-functions/uname.texi: Mention the new module.
12227
12228 2009-08-02  Bruno Haible  <bruno@clisp.org>
12229
12230         Tests for module 'sys_utsname'.
12231         * modules/sys_utsname-tests: New file.
12232         * tests/test-sys_utsname.c: New file.
12233
12234         New module 'sys_utsname'.
12235         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
12236         * m4/sys_utsname_h.m4: New file.
12237         * modules/sys_utsname: New file.
12238         * doc/posix-headers/sys_utsname.texi: Mention the new module.
12239
12240 2009-08-02  Bruno Haible  <bruno@clisp.org>
12241
12242         Implicitly initialize the sockets library.
12243         * lib/gethostname.c: Include sockets.h.
12244         (rpl_gethostname): Invoke gl_sockets_startup.
12245         * lib/socket.c: Include sockets.h.
12246         (rpl_socket): Invoke gl_sockets_startup.
12247         * modules/gethostname (Depends-on): Add sockets.
12248         * modules/socket (Depends-on): Likewise.
12249         * tests/test-poll.c: Don't include sockets.h.
12250         (main): Don't invoke gl_sockets_startup.
12251         * tests/test-select.c: Don't include sockets.h.
12252         (main): Don't invoke gl_sockets_startup.
12253
12254 2009-08-02  Bruno Haible  <bruno@clisp.org>
12255
12256         Allow multiple calls to gl_sockets_startup.
12257         * lib/sockets.c (initialized_sockets_version): New variable.
12258         (gl_sockets_startup): Do nothing if already called for this or a higher
12259         version.
12260         (gl_sockets_cleanup): Reset initialized_sockets_version.
12261
12262 2009-08-03  Simon Josefsson  <simon@josefsson.org>
12263
12264         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
12265         different project/version.
12266
12267 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
12268             Bruno Haible  <bruno@clisp.org>
12269
12270         Tests for module 'pipe-filter-gi'.
12271         * modules/pipe-filter-gi-tests: New file.
12272         * tests/test-pipe-filter-gi1.sh: New file.
12273         * tests/test-pipe-filter-gi1.c: New file.
12274         * tests/test-pipe-filter-gi2.sh: New file.
12275         * tests/test-pipe-filter-gi2-main.c: New file.
12276         * tests/test-pipe-filter-gi2-child.c: New file.
12277
12278         New module 'pipe-filter-gi'.
12279         * lib/pipe-filter-gi.c: New file.
12280         * modules/pipe-filter-gi: New file.
12281
12282 2009-08-02  Bruno Haible  <bruno@clisp.org>
12283             Paolo Bonzini  <bonzini@gnu.org>
12284
12285         Tests for module 'pipe-filter-ii'.
12286         * modules/pipe-filter-ii-tests: New file.
12287         * tests/test-pipe-filter-ii1.sh: New file.
12288         * tests/test-pipe-filter-ii1.c: New file.
12289         * tests/test-pipe-filter-ii2.sh: New file.
12290         * tests/test-pipe-filter-ii2-main.c: New file.
12291         * tests/test-pipe-filter-ii2-child.c: New file.
12292
12293         New module 'pipe-filter-ii'.
12294         * lib/pipe-filter.h: New file.
12295         * lib/pipe-filter-ii.c: New file.
12296         * lib/pipe-filter-aux.h: New file.
12297         * modules/pipe-filter-ii: New file.
12298
12299 2009-08-02  Simon Josefsson  <simon@josefsson.org>
12300
12301         * lib/gc-libgcrypt.c: Change copyright to FSF.
12302         * lib/gc-gnulib.c: Likewise.
12303
12304 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
12305
12306         * lib/gethostname.c: Include limits.h.
12307
12308 2009-08-02  Simon Josefsson  <simon@josefsson.org>
12309             Bruno Haible  <bruno@clisp.org>
12310
12311         Ensure HOST_NAME_MAX as part of the gethostname module.
12312         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
12313         define also HOST_NAME_MAX.
12314         * tests/test-gethostname.c: Include <limits.h>.
12315         (main): Check also HOST_NAME_MAX.
12316         * doc/posix-headers/limits.texi: Document the mingw problem.
12317
12318 2009-08-02  Bruno Haible  <bruno@clisp.org>
12319
12320         * lib/gethostname.c (gethostname): Fix handling of large len argument.
12321         Add comments.
12322
12323 2009-03-31  Simon Josefsson  <simon@josefsson.org>
12324
12325         * lib/gethostname.c: Add Windows wrapper.
12326         * m4/gethostname.m4: Look for gethostname in -lws2_32.
12327         * modules/gethostname: Depend on sys_socket & errno, for also
12328         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
12329         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
12330
12331 2009-07-31  Jim Meyering  <meyering@redhat.com>
12332
12333         getloadavg: fix symbol name in comment
12334         * lib/getloadavg.c: Correct a typo I introduced when adding
12335         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
12336         Matt Kraai spotted the problem.
12337
12338 2009-07-29  Matt Kraai  <mkraai@beckman.com>
12339
12340         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
12341         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
12342         code also if ! defined N_NAME_POINTER.
12343         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
12344         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
12345         but the n_name member is a 12-byte array.
12346
12347 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
12348
12349         update-copyright: generalize comment handling
12350         * build-aux/update-copyright: Handle copyright statements
12351         within more comment styles.
12352         Document usage.
12353         Report any file with an external copyright holder or parse failure.
12354
12355 2009-07-29  Jim Meyering  <meyering@redhat.com>
12356
12357         mktime: correct setting of REPLACE_MKTIME
12358         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
12359
12360         update-copyright: new module
12361         * modules/update-copyright: New file.
12362         * build-aux/update-copyright: New file.
12363         * MODULES.html.sh (maint+release support): Add update-copyright.
12364
12365 2009-07-27  Bruno Haible  <bruno@clisp.org>
12366
12367         Fix compilation error when <ctime> is used and mktime is replaced.
12368         * lib/time.in.h (mktime): New declaration.
12369         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
12370         REPLACE_MKTIME instead of defining mktime in config.h.
12371         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
12372         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
12373         Reported by Ross McFarland <rwmcfa1@neces.com>.
12374
12375 2009-07-27  Bruno Haible  <bruno@clisp.org>
12376
12377         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
12378         Reported by Matt Kraai <mkraai@beckman.com>.
12379
12380 2009-07-25  Jim Meyering  <meyering@redhat.com>
12381
12382         maint.mk: avoid warnings about missing files
12383         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
12384         diagnostic when .prev-version does not exist.
12385         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
12386         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
12387         nonexistent cfg.mk.
12388         Suggestions from Simon Josefsson.
12389
12390 2009-07-25  Bruno Haible  <bruno@clisp.org>
12391
12392         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
12393         defined as macros. Needed on QNX 6.4.1.
12394         Reported by Matt Kraai <mkraai@beckman.com>.
12395
12396 2009-07-23  Jim Meyering  <meyering@redhat.com>
12397
12398         maint.mk: invoke "make dist" with a working value of XZ_OPT
12399         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
12400
12401 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
12402
12403         Make fseeko.c compile on QNX.
12404         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
12405
12406 2009-07-22  Peter Simons  <simons@cryp.to>
12407
12408         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
12409         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
12410         * lib/md4.h: Likewise.
12411         * lib/md5.h: Likewise.
12412         * lib/sha1.h: Likewise.
12413         * lib/sha256.h: Likewise.
12414         * lib/sha512.h: Likewise.
12415
12416         tests-sha1: don't assign literal string to 'char *' variable
12417         * tests/test-sha1.c (main): Declare locals with "const" to match
12418         attributes of the right hand side.
12419
12420 2009-07-21  Eric Blake  <ebb9@byu.net>
12421
12422         dup2: fix more mingw problems
12423         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
12424         fd to itself.
12425         * doc/posix-functions/dup2.texi (dup2): Document the bug.
12426         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
12427         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
12428         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
12429         care of mingw bugs.
12430
12431 2009-07-21  Jim Meyering  <meyering@redhat.com>
12432
12433         vc-list-files: avoid failure when /bin/sh is dash
12434         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
12435         On some Debian based systems, /bin/sh is a symlink to dash, and running
12436         this command would omit the "/" following each 'tests' prefix:
12437           dash -x build-aux/vc-list-files -C . tests
12438         That is because bash and dash work differently:
12439           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
12440           bash ok
12441           dash odd
12442
12443 2009-07-21  Eric Blake  <ebb9@byu.net>
12444
12445         dup2-tests: test previous patch
12446         * modules/dup2-tests: New file.
12447         * tests/test-dup2.c: Likewise.
12448         * tests/test-open.c (main): Avoid unspecified behavior.
12449         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
12450         test.
12451
12452         dup2: work around mingw and cygwin 1.5 bug
12453         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
12454         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
12455         * modules/unistd (Makefile.am): Substitute it.
12456         * lib/unistd.in.h (dup2): Declare the replacement.
12457         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
12458         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
12459         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
12460         * modules/execute (Depends-on): Add dup2.
12461         * modules/fseterr (Depends-on): Likewise.
12462         * modules/pipe (Depends-on): Likewise.
12463         * modules/posix_spawn-internal (Depends-on): Likewise.
12464
12465 2009-07-21  Bruno Haible  <bruno@clisp.org>
12466
12467         * modules/.gitattributes: New file.
12468
12469 2009-07-20  Bruno Haible  <bruno@clisp.org>
12470
12471         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
12472         (main): Use it.
12473
12474 2009-07-20  Eric Blake  <ebb9@byu.net>
12475
12476         test-pipe: make a bit more robust.
12477         * tests/test-pipe.c (myerr): Allow error messages regardless of
12478         what we do to stderr.
12479         (test_pipe): Rearrange to avoid deadlock.
12480         (child_main): Try a larger read, to ensure we avoided deadlock.
12481         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
12482         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
12483         if misused.
12484
12485 2009-07-19  Jim Meyering  <meyering@redhat.com>
12486
12487         fts: avoid false-positive cycle-detection
12488         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
12489         for each new command line argument.
12490
12491 2009-07-19  Bruno Haible  <bruno@clisp.org>
12492
12493         Fix build error on mingw with the modules sys_select and unistd.
12494         * modules/acl-tests (Depends-on): Add close.
12495         * modules/binary-io-tests (Depends-on): Likewise.
12496         * modules/closein-tests (Depends-on): Likewise.
12497         * modules/flock-tests (Depends-on): Likewise.
12498         * modules/fsync-tests (Depends-on): Likewise.
12499         * modules/lseek-tests (Depends-on): Likewise.
12500         * modules/pipe-tests (Depends-on): Likewise.
12501         * modules/posix_spawn-tests (Depends-on): Likewise.
12502         * modules/posix_spawnp-tests (Depends-on): Likewise.
12503         * modules/stat-time-tests (Depends-on): Likewise.
12504         * modules/yesno-tests (Depends-on): Likewise.
12505
12506 2009-07-19  Bruno Haible  <bruno@clisp.org>
12507
12508         Unify conditionals.
12509         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
12510         macros, not at the compiler macros.
12511         * lib/pipe.c: Likewise.
12512         * lib/execute.c: Likewise.
12513         * lib/spawni.c: Likewise.
12514
12515 2009-07-19  Bruno Haible  <bruno@clisp.org>
12516
12517         Fix handling of closed stdin/stdout/stderr on mingw.
12518         * lib/w32spawn.h: Include unistd.h.
12519         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
12520         file descriptor with O_NOINHERIT flag.
12521         (fd_safer_noinherit): New function, based on fd-safer.c.
12522         (dup_safer_noinherit): New function, based on dup-safer.c.
12523         (undup_safer_noinherit): New function.
12524         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
12525         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
12526         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
12527         instead of fd_safer.
12528         * tests/test-pipe.c: Include <windows.h>.
12529         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
12530
12531         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
12532         from main.
12533         (test_pipe): Pass an extra argument for disambiguation.
12534         (main): Invoke parent_main or child_main.
12535
12536         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
12537         consistently.
12538
12539 2009-07-18  Eric Blake  <ebb9@byu.net>
12540
12541         test-pipe: fix mingw build
12542         * tests/test-pipe.c (main): Avoid fcntl on mingw.
12543
12544 2009-07-18  Bruno Haible  <bruno@clisp.org>
12545
12546         * modules/pipe-tests (Makefile.am): Fix typo.
12547
12548 2009-07-18  Eric Blake  <ebb9@byu.net>
12549
12550         error: fix mingw build
12551         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
12552         Reported by Bruno Haible.
12553
12554         error: avoid undefined use of stdout
12555         * lib/error.c (error, error_at_line): Check that fd 1 is open
12556         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
12557         is handling faults and the close_stdout module wants to report the
12558         detection of closed stdout as an error.
12559
12560 2009-07-17  Eric Blake  <ebb9@byu.net>
12561
12562         pipe: be robust in face of closed fds
12563         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
12564         should cause child to misbehave.
12565         * modules/pipe-tests: New module.
12566         * tests/test-pipe.c: New file.
12567         * tests/test-pipe.sh: New file.
12568         Reported by Akim Demaille.
12569
12570 2009-07-14  Bruno Haible  <bruno@clisp.org>
12571
12572         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
12573         Reported by anonymous kc.
12574
12575 2009-07-07  Jim Meyering  <meyering@redhat.com>
12576
12577         maint.mk: don't look for translatable strings in *.m4 or *.mk
12578         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
12579         when searching for translatable strings.
12580
12581 2009-07-05  Jim Meyering  <meyering@redhat.com>
12582
12583         remove superfluous parentheses in STREQ definition
12584         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
12585         * lib/getugroups.c (STREQ): Likewise.
12586         * lib/fnmatch.c (STREQ): Likewise.
12587         Spotted by Bruno Haible.
12588
12589 2009-07-04  Jim Meyering  <meyering@redhat.com>
12590
12591         argv-iter: new module
12592         * MODULES.html.sh: Add argv-iter.
12593         * lib/argv-iter.c, lib/argv-iter.h: New files.
12594         * modules/argv-iter: New file.
12595         * modules/argv-iter-tests: New file.
12596         * tests/test-argv-iter.c: Test it.
12597
12598 2009-07-04  Bruno Haible  <bruno@clisp.org>
12599
12600         Fix assertion.
12601         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
12602         contains more exact copies of a given entry than file2, leave the extra
12603         copies unpaired rather than aborting.
12604         Reported by Eric Blake.
12605
12606 2009-07-02  Bruno Haible  <bruno@clisp.org>
12607
12608         Speedup git-merge-changelog for git cherry-pick.
12609         * lib/git-merge-changelog.c (struct entries_mapping): New type.
12610         (entries_mapping_get): New function, extracted from compute_mapping.
12611         (entries_mapping_reverse_get): New function.
12612         (compute_mapping): Add a 'full' argument. Return the result in a
12613         'struct entries_mapping'.
12614         (main): Update. Access the mappings through entries_mapping_get.
12615         Reported by Eric Blake.
12616
12617 2009-07-02  Bruno Haible  <bruno@clisp.org>
12618
12619         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
12620         best_i.
12621
12622 2009-07-02  Bruno Haible  <bruno@clisp.org>
12623
12624         Speed up approximate search for matching ChangeLog entries.
12625         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
12626         argument. Call fstrcmp_bounded instead of fstrcmp.
12627         (compute_mapping, try_split_merged_entry, main): Update callers.
12628
12629 2009-07-02  Bruno Haible  <bruno@clisp.org>
12630
12631         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
12632
12633 2009-06-30  Bruno Haible  <bruno@clisp.org>
12634
12635         Reduce the number of uc_is_cased calls.
12636         * lib/unicase.h (casing_suffix_context_t): Add
12637         'first_char_except_ignorable' field.
12638         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
12639         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
12640         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
12641         Update initializer.
12642         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
12643         case-ignorable characters.
12644         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
12645         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
12646         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
12647         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
12648         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
12649
12650 2009-06-30  Bruno Haible  <bruno@clisp.org>
12651
12652         Tests for module 'unicase/ignorable'.
12653         * modules/unicase/ignorable-tests: New file.
12654         * tests/unicase/test-ignorable.c: New file, generated by
12655         gen-uni-tables.
12656
12657         Tests for module 'unicase/cased'.
12658         * modules/unicase/cased-tests: New file.
12659         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
12660         * tests/unicase/test-predicate-part1.h: New file, derived from
12661         tests/unictype/test-predicate-part1.h.
12662         * tests/unicase/test-predicate-part2.h: New file, same as
12663         tests/unictype/test-predicate-part2.h.
12664
12665         Fix evaluation of "Before C" condition of FINAL_SIGMA.
12666         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
12667         (output_casing_properties): New function.
12668         (main): Call it.
12669         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
12670         * lib/unicase/cased.c: Include unictype/bitmap.h.
12671         (uc_is_cased): Define through a bitmap lookup.
12672         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
12673         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
12674         (uc_is_case_ignorable): Define through a bitmap lookup.
12675         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
12676         lib/unictype/bitmap.h.
12677         (Depends-on): Add inline. Clean up.
12678         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
12679         lib/unictype/bitmap.h.
12680         (Depends-on): Add inline. Clean up.
12681         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
12682         recognition.
12683         * tests/unicase/test-u16-tolower.c (main): Likewise.
12684         * tests/unicase/test-u32-tolower.c (main): Likewise.
12685
12686 2009-06-30  Bruno Haible  <bruno@clisp.org>
12687
12688         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
12689         * lib/unicase/u16-casemap.c: Likewise.
12690         * lib/unicase/u32-casemap.c: Likewise.
12691
12692 2009-06-29  Bruno Haible  <bruno@clisp.org>
12693
12694         Define u32_casefold as a wrapper around u32_ct_casefold.
12695         * lib/unicase/u32-casefold.c: Update.
12696         * modules/unicase/u32-casefold (Depends-on): Add
12697         unicase/u32-ct-casefold, unicase/empty-prefix-context,
12698         unicase/empty-suffix-context. Clean up.
12699
12700         Define u16_casefold as a wrapper around u16_ct_casefold.
12701         * lib/unicase/u16-casefold.c: Update.
12702         * modules/unicase/u16-casefold (Depends-on): Add
12703         unicase/u16-ct-casefold, unicase/empty-prefix-context,
12704         unicase/empty-suffix-context. Clean up.
12705
12706         Define u8_casefold as a wrapper around u8_ct_casefold.
12707         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
12708         * lib/unicase/u8-casefold.c: Update.
12709         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
12710         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
12711
12712         Define u32_totitle as a wrapper around u32_ct_totitle.
12713         * lib/unicase/u32-totitle.c: Update.
12714         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
12715         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
12716
12717         Define u16_totitle as a wrapper around u16_ct_totitle.
12718         * lib/unicase/u16-totitle.c: Update.
12719         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
12720         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
12721
12722         Define u8_totitle as a wrapper around u8_ct_totitle.
12723         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
12724         functions.
12725         (FUNC): Delegate to U_CT_TOTITLE.
12726         * lib/unicase/u8-totitle.c: Update.
12727         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
12728         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
12729
12730         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
12731         invocation.
12732         * modules/unicase/u32-tolower (Depends-on): Add
12733         unicase/empty-prefix-context, unicase/empty-suffix-context.
12734
12735         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
12736         invocation.
12737         * modules/unicase/u16-tolower (Depends-on): Add
12738         unicase/empty-prefix-context, unicase/empty-suffix-context.
12739
12740         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
12741         * modules/unicase/u8-tolower (Depends-on): Add
12742         unicase/empty-prefix-context, unicase/empty-suffix-context.
12743
12744         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
12745         invocation.
12746         * modules/unicase/u32-toupper (Depends-on): Add
12747         unicase/empty-prefix-context, unicase/empty-suffix-context.
12748
12749         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
12750         invocation.
12751         * modules/unicase/u16-toupper (Depends-on): Add
12752         unicase/empty-prefix-context, unicase/empty-suffix-context.
12753
12754         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
12755         * modules/unicase/u8-toupper (Depends-on): Add
12756         unicase/empty-prefix-context, unicase/empty-suffix-context.
12757
12758         New module 'unicase/u32-ct-casefold'.
12759         * lib/unicase/u32-ct-casefold.c: New file.
12760         * modules/unicase/u32-ct-casefold: New file.
12761
12762         New module 'unicase/u16-ct-casefold'.
12763         * lib/unicase/u16-ct-casefold.c: New file.
12764         * modules/unicase/u16-ct-casefold: New file.
12765
12766         New module 'unicase/u8-ct-casefold'.
12767         * lib/unicase/u8-ct-casefold.c: New file.
12768         * lib/unicase/u-ct-casefold.h: New file, derived from
12769         lib/unicase/u-casefold.h.
12770         * modules/unicase/u8-ct-casefold: New file.
12771
12772         New module 'unicase/u32-ct-totitle'.
12773         * lib/unicase/u32-ct-totitle.c: New file.
12774         * modules/unicase/u32-ct-totitle: New file.
12775
12776         New module 'unicase/u16-ct-totitle'.
12777         * lib/unicase/u16-ct-totitle.c: New file.
12778         * modules/unicase/u16-ct-totitle: New file.
12779
12780         New module 'unicase/u8-ct-totitle'.
12781         * lib/unicase/u8-ct-totitle.c: New file.
12782         * lib/unicase/u-ct-totitle.h: New file, derived from
12783         lib/unicase/u-totitle.h.
12784         * modules/unicase/u8-ct-totitle: New file.
12785
12786         New module 'unicase/u32-ct-tolower'.
12787         * lib/unicase/u32-ct-tolower.c: New file.
12788         * modules/unicase/u32-ct-tolower: New file.
12789
12790         New module 'unicase/u16-ct-tolower'.
12791         * lib/unicase/u16-ct-tolower.c: New file.
12792         * modules/unicase/u16-ct-tolower: New file.
12793
12794         New module 'unicase/u8-ct-tolower'.
12795         * lib/unicase/u8-ct-tolower.c: New file.
12796         * modules/unicase/u8-ct-tolower: New file.
12797
12798         New module 'unicase/u32-ct-toupper'.
12799         * lib/unicase/u32-ct-toupper.c: New file.
12800         * modules/unicase/u32-ct-toupper: New file.
12801
12802         New module 'unicase/u16-ct-toupper'.
12803         * lib/unicase/u16-ct-toupper.c: New file.
12804         * modules/unicase/u16-ct-toupper: New file.
12805
12806         New module 'unicase/u8-ct-toupper'.
12807         * lib/unicase/u8-ct-toupper.c: New file.
12808         * modules/unicase/u8-ct-toupper: New file.
12809
12810         Add context arguments to u*_casemap functions.
12811         * lib/unicase/unicasemap.h: Include unicase.h.
12812         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
12813         suffix_context arguments.
12814         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
12815         functions.
12816         (FUNC): Add prefix_context and suffix_context arguments. Use
12817         uc_is_cased and uc_is_case_ignorable.
12818         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
12819         * lib/unicase/u16-casemap.c: Likewise.
12820         * lib/unicase/u32-casemap.c: Likewise.
12821         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
12822         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
12823         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
12824         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
12825         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
12826         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
12827
12828         New module 'unicase/u32-suffix-context'.
12829         * lib/unicase/u32-suffix-context.c: New file.
12830         * modules/unicase/u32-suffix-context: New file.
12831
12832         New module 'unicase/u16-suffix-context'.
12833         * lib/unicase/u16-suffix-context.c: New file.
12834         * modules/unicase/u16-suffix-context: New file.
12835
12836         New module 'unicase/u8-suffix-context'.
12837         * lib/unicase/u8-suffix-context.c: New file.
12838         * lib/unicase/u-suffix-context.h: New file.
12839         * modules/unicase/u8-suffix-context: New file.
12840
12841         New module 'unicase/empty-suffix-context'.
12842         * lib/unicase/empty-suffix-context.c: New file.
12843         * modules/unicase/empty-suffix-context: New file.
12844
12845         New module 'unicase/u32-prefix-context'.
12846         * lib/unicase/u32-prefix-context.c: New file.
12847         * modules/unicase/u32-prefix-context: New file.
12848
12849         New module 'unicase/u16-prefix-context'.
12850         * lib/unicase/u16-prefix-context.c: New file.
12851         * modules/unicase/u16-prefix-context: New file.
12852
12853         New module 'unicase/u8-prefix-context'.
12854         * lib/unicase/u8-prefix-context.c: New file.
12855         * lib/unicase/u-prefix-context.h: New file.
12856         * lib/unicase/context.h: New file.
12857         * modules/unicase/u8-prefix-context: New file.
12858
12859         New module 'unicase/empty-prefix-context'.
12860         * lib/unicase/empty-prefix-context.c: New file.
12861         * modules/unicase/empty-prefix-context: New file.
12862
12863         New module 'unicase/ignorable'.
12864         * lib/unicase/ignorable.c: New file.
12865         * modules/unicase/ignorable: New file.
12866
12867         New module 'unicase/cased'.
12868         * lib/unicase/caseprop.h: New file.
12869         * lib/unicase/cased.c: New file.
12870         * modules/unicase/cased: New file.
12871
12872         New functions for case mapping of substrings.
12873         * lib/unicase.h (casing_prefix_context_t): New type.
12874         (unicase_empty_prefix_context): New variable.
12875         (u8_casing_prefix_context, u16_casing_prefix_context,
12876         u32_casing_prefix_context, u8_casing_prefixes_context,
12877         u16_casing_prefixes_context, u32_casing_prefixes_context): New
12878         declarations.
12879         (casing_suffix_context_t): New type.
12880         (unicase_empty_suffix_context): New variable.
12881         (u8_casing_suffix_context, u16_casing_suffix_context,
12882         u32_casing_suffix_context, u8_casing_suffixes_context,
12883         u16_casing_suffixes_context, u32_casing_suffixes_context,
12884         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
12885         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
12886         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
12887         declarations.
12888
12889 2009-06-28  Jim Meyering  <meyering@redhat.com>
12890
12891         boostrap: indent only with spaces
12892         * build-aux/bootstrap: Indent only with spaces, never TABs.
12893
12894         bootstrap: split long lines
12895         * build-aux/bootstrap: Keep line length < 80.
12896
12897         bootstrap: sync from coreutils
12898         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
12899         just as autoreconf does.  Verify a list of prerequisite
12900         package-name,version-number pairs if defined in bootstrap.conf.
12901         Refer to README-prereq, if prerequisites are not satisfied.
12902
12903 2009-06-27  Eric Blake  <ebb9@byu.net>
12904
12905         tests: add test for bogus NULL definition
12906         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
12907         * tests/test-stdlib.c: Likewise.
12908         * tests/test-string.c: Likewise.
12909         * tests/test-locale.c: Likewise.
12910         * tests/test-unistd.c: Likewise.
12911         * modules/stdio-tests (Depends-on): Add verify.
12912         * modules/stdlib-tests (Depends-on): Likewise.
12913         * modules/string-tests (Depends-on): Likewise.
12914         * modules/locale-tests (Depends-on): Likewise.
12915         * modules/unistd-tests (Depends-on): Likewise.
12916
12917 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
12918
12919         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
12920         self-explaining comment.
12921         * m4/selinux-selinux-h: Update serial.
12922         (gl_LIBSELINUX): New macro, adding a warning for missing development
12923         packages to code extracted from...
12924         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
12925         Add warning for missing development packages here, too.
12926
12927 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
12928
12929         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
12930
12931 2009-06-25  Eric Blake  <ebb9@byu.net>
12932
12933         version-etc: fix regression
12934         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
12935         gcc.
12936         (version_etc): Use it, to catch bugs with trailing NULL.
12937         * lib/version-etc.c (version_etc_arn): Delete unused argument.
12938         (version_etc_va): Fix logic bug.
12939         * modules/version-etc-tests: Add test.
12940         * tests/test-version-etc.c: New file.
12941         * tests/test-version-etc.sh: Likewise.
12942
12943 2009-06-25  Sam Steingold  <sds@gnu.org>
12944
12945         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
12946         mbtowc declaration.
12947
12948 2009-06-25  Eric Blake  <ebb9@byu.net>
12949
12950         fpurge: migrate into <stdio.h>
12951         * lib/fpurge.h: Delete...
12952         * lib/stdio.in.h (fpurge): ...and declare here, instead.
12953         * lib/fpurge.c (fpurge): Change declaring header.
12954         * modules/fpurge (Files): Drop deleted file.
12955         (Depends-on): Add stdio.
12956         (configure.ac): Set witness.
12957         * modules/stdio (Makefile.am): Support fpurge macros.
12958         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
12959         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
12960         * lib/fflush.c: Update client.
12961         * tests/test-fpurge.c: Likewise.
12962         * NEWS: Mention the change.
12963
12964 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
12965
12966         * lib/argp-version-etc.c (program_authors): Add const
12967         qualifier.
12968         * lib/version-etc.c: Fix typos in the comments.
12969         * modules/argp-version-etc: Depends on version-etc.
12970
12971 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
12972
12973         argp-version-etc: new module.
12974
12975         * lib/argp-version-etc.c: New file.
12976         * lib/argp-version-etc.h: New file.
12977         * modules/argp-version-etc: New file.
12978         * modules/argp-version-etc-tests: New file.
12979         * tests/test-argp-version-etc.c: New test.
12980         * tests/test-argp-version-etc-1.sh: New test.
12981
12982 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
12983
12984         Provide additional interfaces and documentation for version-etc
12985         module.
12986
12987         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
12988         interfaces.
12989         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
12990         prototypes.
12991
12992 2009-06-24  Bruno Haible  <bruno@clisp.org>
12993
12994         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
12995         HAVE_LIB${NAME} macro.
12996         Reported by Sam Steingold <sds@gnu.org>.
12997
12998 2009-06-23  Simon Josefsson  <simon@josefsson.org>
12999
13000         * modules/hash-tests (test_hash_LDADD): Link to libintl when
13001         needed.
13002
13003 2009-06-21  Bruno Haible  <bruno@clisp.org>
13004
13005         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
13006         work.
13007         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
13008         together with LIB${NAME}, LTLIB${NAME}.
13009         Reported by Sam Steingold <sds@gnu.org>.
13010
13011 2009-06-20  Jim Meyering  <meyering@redhat.com>
13012
13013         tests: make sc_require_test_exit_idiom more generic
13014         * top/maint.mk (Exit_witness_file): New overridable variable.
13015         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
13016         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
13017
13018 2009-06-19  Jim Meyering  <meyering@redhat.com>
13019
13020         hash: reverse order of src/dst parameters in an internal interface
13021         * lib/hash.c (transfer_entries): Reverse order of parameters to
13022         put DST before SRC.  Adjust callers.
13023
13024         tests: test-hash: avoid wholesale duplication
13025         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
13026         Instead, use a loop and add a single conditional.
13027
13028         tests: test-hash: allow seed selection via a command line argument
13029         * tests/test-hash.c (get_seed): New function.
13030         (main): Use it.
13031
13032 2009-06-19  Eric Blake  <ebb9@byu.net>
13033
13034         hash: avoid memory leak on allocation failure
13035         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
13036         failure.  Factor repeated algorithm...
13037         (transfer_entries): ...into new helper routine.
13038         (hash_delete): React to hash_rehash return value.
13039
13040         hash: reduce memory pressure in hash_rehash no-op case
13041         * lib/hash.c (next_prime): Avoid overflow.
13042         (hash_initialize): Factor bucket size computation...
13043         (compute_bucket_size): ...into new helper function.
13044         (hash_rehash): Use new function and open coding to reduce memory
13045         pressure, and avoid a memory leak in USE_OBSTACK code.
13046         Reported by Jim Meyering.
13047
13048 2009-06-18  Eric Blake  <ebb9@byu.net>
13049
13050         hash: make rotation more obvious
13051         * modules/hash (Depends-on): Add bitrotate and stdint.
13052         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
13053         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
13054         (SIZE_MAX): Rely on headers for definition.
13055         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
13056         (raw_hasher): Use rotr_sz.
13057         Suggested by Jim Meyering.
13058
13059         hash: fix memory leak in last patch
13060         * lib/hash.c (hash_rehash): Avoid memory leak.
13061
13062         hash: avoid no-op rehashing
13063         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
13064
13065         hash: provide default callback functions
13066         * lib/hash.c (raw_hasher, raw_comparator): New functions.
13067         (hash_initialize): Use them as defaults.
13068         * tests/test-hash.c (main): Test this.
13069
13070         hash: minor optimization
13071         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
13072         when possible.
13073         (hash_initialize): Document this promise.
13074         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
13075         * tests/test-hash.c (hash_compare_strings): Test this.
13076
13077 2009-06-18  Bruno Haible  <bruno@clisp.org>
13078
13079         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
13080         going to be replaced anyway.
13081
13082 2009-06-18  Bruno Haible  <bruno@clisp.org>
13083
13084         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
13085         in one place.
13086         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
13087         be replaced anyway.
13088
13089 2009-06-18  Eric Blake  <ebb9@byu.net>
13090
13091         hash: check for resize before insertion
13092         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
13093         threshold before insertion, so that a pathological hash_rehash
13094         that fills every bucket can still trigger another rehash.
13095
13096 2009-06-18  Jim Meyering  <meyering@redhat.com>
13097
13098         hash-tests: add a loop around the small tests
13099         * tests/test-hash.c (main): Repeat small tests with selected
13100         small initial table sizes.
13101
13102 2009-06-17  Eric Blake  <ebb9@byu.net>
13103
13104         hash: minor cleanups
13105         * lib/hash.h (hash_entry): Make opaque, by moving...
13106         * lib/hash.c (hash_entry): ...here.
13107         (hash_insert): Clarify restrictions on what can be inserted.
13108         (hash_get_next): Clarify when it is safe to remove an element
13109         during traversal.
13110         (check_tuning): Skip verification when tuning is known safe.
13111         (hash_initialize): Clarify restrictions on tuning.
13112
13113 2009-06-17  Jim Meyering  <jim@meyering.net>
13114         and Eric Blake  <ebb9@byu.net>
13115
13116         hash-tests: new module
13117         * modules/hash-tests: New file.
13118         * tests/test-hash.c: New file.
13119
13120 2009-06-17  Eric Blake  <ebb9@byu.net>
13121
13122         strstr-simple: document new module
13123         * MODULES.html.sh: Document new module.
13124
13125         strstr, strcasestr: replace on platforms with broken memchr
13126         * modules/strstr: Split into...
13127         * modules/strstr-simple: ...new module that does not care about
13128         performance, but does care about glibc bug.
13129         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
13130         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
13131         if platform memchr is broken, per Debian bug 521737.
13132         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
13133         memchr.
13134         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
13135         * doc/posix-functions/strstr.texi (strstr): Document the fix.
13136         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
13137         * modules/mountlist (Depends-on): Add strstr-simple.
13138         * modules/gen-uni-tables (Depends-on): Likewise.
13139         * modules/argz (Depends-on): Add strstr.
13140
13141 2009-06-17  Bruno Haible  <bruno@clisp.org>
13142
13143         * modules/posix_spawn-internal (Depends-on): Add errno.
13144
13145 2009-06-17  Bruno Haible  <bruno@clisp.org>
13146
13147         Define missing ESTALE on Interix 3.5.
13148         * lib/errno.in.h (ESTALE): Assign a value if missing.
13149         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
13150         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
13151         missing.
13152         * doc/posix-headers/errno.texi: Mention the Interix bug.
13153         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
13154
13155 2009-06-15  Eric Blake  <ebb9@byu.net>
13156
13157         memchr, memchr2: add valgrind exception
13158         * lib/memchr.valgrind: New file.
13159         * lib/memchr2.valgrind: New file.
13160         * modules/memchr (Files): Distribute valgrind file.
13161         * modules/memchr2 (Files): Likewise.
13162
13163         docs: memchr is no longer obsolete
13164         * MODULES.html.sh: Move memchr from obsolete to string.h section.
13165         * lib/string.in.h (memchr): Simplify logic.
13166
13167 2009-06-14  Jim Meyering  <meyering@redhat.com>
13168
13169         link-follow: fix the "checking..." message to not mention trailing slash
13170         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
13171         never considered trailing slashes.
13172
13173 2009-06-14  Bruno Haible  <bruno@clisp.org>
13174
13175         * m4/memchr.m4: Mention also the bug on IA-64.
13176         * doc/posix-functions/memchr.texi: Likewise.
13177
13178 2009-06-12  Eric Blake  <ebb9@byu.net>
13179
13180         memchr: detect broken x86_64 and alpha implementations
13181         * modules/memchr-tests (Depends-on): Move mmap detection...
13182         * modules/memchr (Depends-on): ...here.
13183         (configure.ac): Set indicator.
13184         * lib/string.in.h (memchr): Declare replacement.
13185         * modules/string (Makefile.am): Trigger replacement.
13186         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
13187         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
13188         bugs.
13189         * doc/posix-functions/memchr.texi (memchr): Document the bug.
13190         * modules/getpagesize (License): Relax license.
13191
13192 2009-06-11  Bruno Haible  <bruno@clisp.org>
13193
13194         * lib/idpriv.h: Add more references.
13195
13196 2009-06-08  Bruno Haible  <bruno@clisp.org>
13197
13198         Tests for module 'idpriv-droptemp'.
13199         * modules/idpriv-droptemp-tests: New file.
13200         * tests/test-idpriv-droptemp.sh: New file.
13201         * tests/test-idpriv-droptemp.su.sh: New file.
13202         * tests/test-idpriv-droptemp.c: New file.
13203
13204         New module 'idpriv-droptemp'.
13205         * lib/idpriv-droptemp.c: New file.
13206         * modules/idpriv-droptemp: New file.
13207
13208 2009-06-08  Bruno Haible  <bruno@clisp.org>
13209
13210         Tests for module 'idpriv-drop'.
13211         * modules/idpriv-drop-tests: New file.
13212         * tests/test-idpriv-drop.sh: New file.
13213         * tests/test-idpriv-drop.su.sh: New file.
13214         * tests/test-idpriv-drop.c: New file.
13215
13216         New module 'idpriv-drop'.
13217         * lib/idpriv.h: New file.
13218         * lib-idpriv-drop.c: New file.
13219         * m4/idpriv.m4: New file.
13220         * modules/idpriv-drop: New file.
13221
13222 2009-06-08  Bruno Haible  <bruno@clisp.org>
13223
13224         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
13225         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
13226         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
13227         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
13228         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
13229         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
13230         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
13231
13232 2009-06-08  Eric Blake  <ebb9@byu.net>
13233
13234         test-strstr: use memory fence, when possible
13235         * tests/test-strstr.c (main): Use memory fence, in order to be
13236         more likely to trigger Debian bug 521737.
13237         * modules/strstr-tests (Files): Pull in additional files.
13238
13239         memchr: no longer obsolete, for wider field testing
13240         * modules/memchr (Status, Notice): Delete, this module is no
13241         longer obsolete.
13242         * modules/vasnprintf (Depends-on): Add memchr.
13243
13244 2009-06-07  Jim Meyering  <meyering@redhat.com>
13245
13246         hash: declare some functions with the warn_unused_result attribute
13247         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
13248
13249 2009-06-07  Bruno Haible  <bruno@clisp.org>
13250
13251         * tests/test-alignof.c: Don't test int64_t if it does not exist.
13252         Reported by Eric Blake.
13253
13254 2009-06-06  Eric Blake  <ebb9@byu.net>
13255
13256         test-alignof: fix typo with long double
13257         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
13258         compiler error.
13259
13260 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
13261
13262         Escape non-texinfo { and }s.
13263         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
13264         markup error.
13265
13266 2009-06-04  Jim Meyering  <meyering@redhat.com>
13267
13268         gitlog-to-changelog: don't infloop on an empty commit log
13269         * build-aux/gitlog-to-changelog: Warn about an empty log message.
13270         Reported by Boris Petersen <transacid@centerim.org>.
13271
13272 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
13273
13274         version-etc: extend for packagers
13275         Add three new configure options, intended for packagers:
13276           --with-packager="packager name"
13277           --with-packager-version="packager-specific version"
13278           --with-packager-bug-reports="packager bug reporting"
13279         An example with coreutils:
13280           $ ./configure \
13281             --with-packager=Gentoo \
13282             --with-packager-bug-report=http://bugs.gentoo.org/ \
13283             --with-packager-version="patchset 1.6"
13284           $ ./src/ls --version | head -n2
13285           ls (GNU coreutils) 7.1-dirty
13286           Packaged by Gentoo (patchset 1.6)
13287         Note that the bug reporting info via --help doesn't show up because
13288         coreutils uses its own custom emit_bug_reporting_address() implementation
13289         in src/system.h.  If it didn't, it'd look like:
13290           $ ./src/ls --help | tail -n4
13291           Report bugs to <bug-coreutils@gnu.org>.
13292           Report Gentoo bugs to <http://bugs.gentoo.org/>.
13293           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
13294           General help using GNU software: <http://www.gnu.org/gethelp/>.
13295         * lib/version-etc.c: Print new information, if provided.
13296         * m4/version-etc.m4: New file.
13297         * modules/version-etc (Files): Add m4/version-etc.m4.
13298         (configure.ac): Add gl_VERSION_ETC.
13299
13300 2009-05-31  Bruno Haible  <bruno@clisp.org>
13301
13302         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
13303         and 'int64_t'.
13304         * modules/alignof-tests (Dependencies): Add stdint.
13305         Reported by Eric Blake.
13306
13307 2009-05-31  Bruno Haible  <bruno@clisp.org>
13308
13309         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
13310         restriction due to compiler bugs.
13311         Reported by Eric Blake.
13312
13313 2009-05-31  Simon Josefsson  <simon@josefsson.org>
13314             Bruno Haible  <bruno@clisp.org>
13315
13316         Fix test-alignof failure.
13317         * lib/alignof.h (alignof_slot): New macro.
13318         (alignof_type): New macro, with the same semantics as the previous
13319         'alignof'.
13320         (alignof): Alias to alignof_slot.
13321         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
13322         check that the results are usable as constant expressions.
13323
13324 2009-05-31  Bruno Haible  <bruno@clisp.org>
13325
13326         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
13327         * tests/test-memchr.c (main): Check that memchr does not read past the
13328         first occurrence of the byte.
13329         * tests/test-strstr.c (main): Update comment.
13330         Suggested by Eric Blake.
13331
13332 2009-05-30  Bruno Haible  <bruno@clisp.org>
13333
13334         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
13335         detail how to use dumpbin.
13336         Reported by David Byron <dbyron@dbyron.com>.
13337
13338 2009-06-02  Simon Josefsson  <simon@josefsson.org>
13339
13340         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
13341
13342 2009-06-02  Simon Josefsson  <simon@josefsson.org>
13343
13344         * m4/manywarnings.m4: Add GCC 4.4 warnings.
13345
13346 2009-05-28  Bruno Haible  <bruno@clisp.org>
13347
13348         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
13349         build-aux/ files.
13350
13351 2009-05-28  Simon Josefsson  <simon@josefsson.org>
13352
13353         * gnulib-tool (func_import): Transform license on build-aux/ files too.
13354
13355 2009-05-27  Simon Josefsson  <simon@josefsson.org>
13356
13357         * gnulib-tool (sed_transform_main_lib_file)
13358         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
13359         regexps.
13360
13361 2009-05-26  Simon Josefsson  <simon@josefsson.org>
13362
13363         * tests/test-strstr.c: Add another self-test.
13364         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
13365         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
13366
13367 2009-05-23  Bruno Haible  <bruno@clisp.org>
13368
13369         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
13370         change.
13371
13372 2009-05-21  Bruno Haible  <bruno@clisp.org>
13373
13374         Simplify use of mode_t varargs.
13375         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
13376         uses 'mode_t' or 'int'.
13377         * lib/openat.c (openat): Likewise.
13378         * lib/open-safer.c (open_safer): Likewise.
13379         * m4/mode_t.m4: New file.
13380         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
13381         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
13382         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
13383         * modules/open (Files): Add m4/mode_t.m4.
13384         * modules/openat (Files): Likewise.
13385         * modules/fcntl-safer (Files): Likewise.
13386         Suggested by Eric Blake.
13387
13388 2009-05-21  Pádraig Brady  <P@draigbrady.com>
13389
13390         * doc/glibc-functions/fallocate.texi: New file.
13391         * doc/gnulib.texi: Include it.
13392
13393 2009-05-21  Eric Blake  <ebb9@byu.net>
13394             Bruno Haible  <bruno@clisp.org>
13395
13396         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
13397         invocations.
13398         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
13399
13400 2009-05-21  Eric Blake  <ebb9@byu.net>
13401             Bruno Haible  <bruno@clisp.org>
13402
13403         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
13404         include_next. Fix of 2008-11-20 commit.
13405         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
13406         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
13407         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
13408         NEXT_MATH_H.
13409         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
13410         instead of NEXT_MATH_H.
13411
13412 2009-05-21  Bruno Haible  <bruno@clisp.org>
13413
13414         Avoid redefinition warnings for SIZE_MAX.
13415         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
13416         Reported by Simon Josefsson.
13417
13418 2009-05-21  Bruno Haible  <bruno@clisp.org>
13419
13420         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
13421         AC_CACHE_VAL.
13422
13423 2009-05-20  Bruno Haible  <bruno@clisp.org>
13424
13425         Make zeroptr.h work on mingw.
13426         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
13427         mprotect.
13428         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
13429         * modules/memchr2-tests (configure.ac): Likewise.
13430         * modules/memcmp-tests (configure.ac): Likewise.
13431         * modules/memmem-tests (configure.ac): Likewise.
13432         * modules/memrchr-tests (configure.ac): Likewise.
13433         Reported by Simon Josefsson.
13434
13435 2009-05-20  Simon Josefsson  <simon@josefsson.org>
13436
13437         * tests/test-glob.c: Include string.h for strcmp prototype.
13438
13439 2009-05-20  Simon Josefsson  <simon@josefsson.org>
13440
13441         * modules/getdelim (Depends-on): Add explicit stdint, although it
13442         was implicitly already pulled in via realloc-posix.
13443         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
13444
13445 2009-05-20  Simon Josefsson  <simon@josefsson.org>
13446
13447         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
13448         G. Christensen" <tgc@jupiterrise.com>.
13449         * m4/sys_socket_h.m4: Check for sa_family_t.
13450         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
13451         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
13452         * tests/test-sys_socket.c: Check that sa_family_t works.
13453
13454 2009-05-18  Eric Blake  <ebb9@byu.net>
13455
13456         maint.mk: allow gnulib_dir in VPATH build
13457         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
13458
13459 2009-05-15  Jim Meyering  <meyering@redhat.com>
13460
13461         maint.mk: Give gnulib_dir a default definition.
13462         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
13463         Thus, most packages no longer need to specify this variable in cfg.mk
13464
13465 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
13466
13467         rename.m4: fix typos that would make non-mingw cross-configure fail
13468         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
13469
13470 2009-05-13  Eric Blake  <ebb9@byu.net>
13471
13472         mmap-anon: avoid out-of-order autoconf expansion
13473         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
13474         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
13475         * modules/memchr-tests (Depends-on): Add extensions.
13476         * modules/memchr2-tests (Depends-on): Add extensions.
13477         * modules/memcmp-tests (Depends-on): Add extensions.
13478         * modules/memmem-tests (Depends-on): Add extensions.
13479         * modules/memrchr-tests (Depends-on): Add extensions.
13480
13481 2009-05-13  Bruno Haible  <bruno@clisp.org>
13482
13483         Make some tests ISO C 99 compliant.
13484         * tests/zerosize-ptr.h: New file.
13485         * tests/test-memchr.c: Include zerosize-ptr.h.
13486         (main): Use a zero-size object pointer instead of NULL.
13487         * tests/test-memchr2.c: Include zerosize-ptr.h.
13488         (main): Use a zero-size object pointer instead of NULL.
13489         * tests/test-memcmp.c: Include zerosize-ptr.h.
13490         (main): Use a zero-size object pointer instead of NULL.
13491         * tests/test-memmem.c: Include zerosize-ptr.h.
13492         (main): Use a zero-size object pointer instead of NULL.
13493         * tests/test-memrchr.c: Include zerosize-ptr.h.
13494         (main): Use a zero-size object pointer instead of NULL.
13495         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
13496         m4/mmap-anon.m4.
13497         (Depends-on): Add getpagesize.
13498         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
13499         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
13500         m4/mmap-anon.m4.
13501         (Depends-on): Add getpagesize.
13502         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
13503         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
13504         m4/mmap-anon.m4.
13505         (Depends-on): Add getpagesize.
13506         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
13507         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
13508         m4/mmap-anon.m4.
13509         (Depends-on): Add getpagesize.
13510         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
13511         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
13512         m4/mmap-anon.m4.
13513         (Depends-on): Add getpagesize.
13514         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
13515
13516 2009-05-12  Bruno Haible  <bruno@clisp.org>
13517
13518         Tests for module 'alignof'.
13519         * modules/alignof-tests: New file.
13520         * tests/test-alignof.c: New file.
13521
13522 2009-05-12  Bruno Haible  <bruno@clisp.org>
13523
13524         Fix alignof macro.
13525         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
13526         vendor compilers that are always correct.
13527
13528 2009-05-12  Bruno Haible  <bruno@clisp.org>
13529
13530         Make the MAP_ANONYMOUS detection work on HP-UX 11.
13531         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
13532         not whether its fully works.
13533
13534 2009-05-12  Bruno Haible  <bruno@clisp.org>
13535
13536         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
13537
13538 2009-05-12  Jim Meyering  <meyering@redhat.com>
13539
13540         * top/maint.mk: Adjust backslash alignment.
13541
13542 2009-05-11  Simon Josefsson  <simon@josefsson.org>
13543
13544         * top/maint.mk: Make $(srcdir)/build-aux configurable.
13545
13546 2009-05-11  Eric Blake  <ebb9@byu.net>
13547
13548         argp: avoid undefined behavior
13549         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
13550         macros.
13551
13552 2009-05-08  Simon Josefsson  <simon@josefsson.org>
13553
13554         * tests/test-vc-list-files-git.sh: Do git config of user.email and
13555         user.name to prevent git commit from complaining.
13556
13557 2009-05-10  Bruno Haible  <bruno@clisp.org>
13558
13559         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
13560         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
13561         it rewrites every file name only once.
13562         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
13563
13564 2009-05-08  Bruno Haible  <bruno@clisp.org>
13565
13566         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
13567         instead of 'max'.
13568
13569 2009-05-08  Simon Josefsson  <simon@josefsson.org>
13570
13571         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
13572         sockaddr_storage test.
13573
13574 2009-05-07  Simon Josefsson  <simon@josefsson.org>
13575
13576         * modules/sys_socket (Makefile.am): Substitute
13577         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
13578         * m4/sys_socket_h.m4: Check for sockaddr_storage.
13579         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
13580         * tests/test-sys_socket.c: Check sockaddr_storage.
13581
13582 2009-05-08  Bruno Haible  <bruno@clisp.org>
13583
13584         New module 'alignof'.
13585         * lib/alignof.h: New file.
13586         * modules/alignof: New file.
13587
13588 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
13589             Bruno Haible  <bruno@clisp.org>
13590
13591         Fix test-file-has-acl on FreeBSD.
13592         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
13593         mask is implicitly added.
13594         * tests/test-file-has-acl.c: Include <signal.h>.
13595         (main): Terminate the test after 5 seconds.
13596         * modules/acl-tests (configure.ac): Check for alarm function.
13597
13598 2009-05-04  Bruno Haible  <bruno@clisp.org>
13599
13600         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
13601         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
13602         * modules/errno (configure.ac): Drop AC_REQUIRE.
13603         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
13604         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
13605
13606 2009-05-04  Simon Josefsson  <simon@josefsson.org>
13607
13608         * modules/glob-tests: New module.
13609         * tests/test-glob.c: Add.
13610
13611 2009-05-04  Simon Josefsson  <simon@josefsson.org>
13612
13613         * modules/fnmatch-tests: New module.
13614         * tests/test-fnmatch.c: Add.
13615
13616 2009-05-04  Eric Blake  <ebb9@byu.net>
13617
13618         maint: make the new no-submodule-changes rule VPATH-safe
13619         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
13620
13621 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
13622             Bruno Haible  <bruno@clisp.org>
13623
13624         acl: Fix infinite loop on FreeBSD.
13625         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
13626         of return value from acl_get_entry.
13627         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
13628         Likewise.
13629
13630 2009-05-03  Bruno Haible  <bruno@clisp.org>
13631
13632         * lib/acl-internal.h (acl_entries): Clarify return value.
13633         * lib/acl_entries.c (acl_entries): Likewise.
13634
13635 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
13636
13637         Bug fix in acl module.
13638         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
13639
13640 2009-05-03  Bruno Haible  <bruno@clisp.org>
13641
13642         Create gperf-generated file in the source dir, not in the build dir.
13643         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
13644         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
13645         * modules/unicase/locale-language (unicase/locale-languages.h):
13646         Likewise.
13647         * modules/unicase/special-casing (unicase/special-casing-table.h):
13648         Likewise.
13649         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
13650         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
13651         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
13652         Reported by Ralf Wildenhues.
13653
13654 2009-05-03  Bruno Haible  <bruno@clisp.org>
13655
13656         * modules/fnmatch (Description, configure.ac): Taken from
13657         fnmatch-posix.
13658         * modules/fnmatch-posix: Turn into a symbolic reference to the
13659         'fnmatch' module, and deprecate.
13660         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
13661
13662 2009-05-03  Bruno Haible  <bruno@clisp.org>
13663
13664         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
13665         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
13666         Reported by Ralf Wildenhues.
13667
13668 2009-05-04  Simon Josefsson  <simon@josefsson.org>
13669
13670         * m4/fnmatch.m4: Fix fnmatch re-define.
13671
13672 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
13673
13674         priv-set: new module and tests; adapt write-any-file
13675         * lib/priv-set.c: New file.
13676         * lib/priv-set.h: New file.
13677         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
13678         * lib/write-any-file.c: Simplify by using priv-set module.
13679         * m4/priv-set.m4: New file.
13680         * modules/priv-set: New file.
13681         * modules/unlinkdir: Add dependency on priv-set module.
13682         * modules/write-any-file: Likewise.
13683
13684         Tests for module 'priv-set'.
13685         * modules/priv-set-tests: New file.
13686         * tests/test-priv-set.c: New file.
13687
13688 2009-05-03  Jim Meyering  <meyering@redhat.com>
13689             Bruno Haible  <bruno@clisp.org>
13690
13691         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
13692         use the converted UTF-8 variant of the name instead.
13693
13694 2009-05-03  Jim Meyering  <meyering@redhat.com>
13695
13696         tests: tighten some getdate tests
13697         * tests/test-getdate.c (main): Tighten tests: require equality,
13698         not just greater than.  Set TZ envvar to UTC0.
13699
13700 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
13701
13702         getdate: correctly interpret "next monday" when run on a Monday
13703         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
13704         that e.g., "next tues" (when run on a tuesday) results in a date
13705         that is one week in the future, and not today's date.
13706         I.e., add a week when the wday is the same as the current one.
13707         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
13708         and earlier by Martin Bernreuther and Jan Minář.
13709         * tests/test-getdate.c (main): Check that "next DAY" is always in
13710         the future and that "last DAY" is always in the past.
13711
13712 2009-05-02  Jim Meyering  <meyering@redhat.com>
13713
13714         build: ensure that a release build fails when a submodule is unclean
13715         * top/maint.mk (no-submodule-changes): New rule.
13716         (alpha beta major): Depend on it.
13717
13718 2009-05-02  Bruno Haible  <bruno@clisp.org>
13719
13720         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
13721         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
13722         shell variable gl_fnmatch_required to detect which variant is
13723         requested.
13724         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
13725         gl_FUNC_FNMATCH_POSIX.
13726         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
13727         exclude fnmatch-posix.
13728
13729 2009-05-02  Bruno Haible  <bruno@clisp.org>
13730
13731         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
13732         * modules/mbsrtowcs (License): Change to LGPLv2+.
13733         * modules/strnlen1 (License): Likewise.
13734         Reported by Simon Josefsson.
13735
13736 2009-05-02  Bruno Haible  <bruno@clisp.org>
13737
13738         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
13739         "cross".
13740         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
13741         gnulib-tool was called with option --source-base=lib.
13742
13743 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13744
13745         Use automake *-local hooks without commands, for extensibility.
13746         * modules/localcharset (Makefile.am): Rename install-exec-local
13747         rule to install-exec-localcharset, and make it a prerequisite of
13748         install-exec-local.  Likewise, rename the uninstall-local rule to
13749         uninstall-localcharset, and make it a prerequisite of the former.
13750
13751 2009-05-01  Bruno Haible  <bruno@clisp.org>
13752
13753         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
13754         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
13755         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
13756         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
13757         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
13758         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
13759         m4/locale-zh.m4, m4/codeset.m4.
13760
13761         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
13762         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
13763         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
13764         m4/locale-zh.m4.
13765
13766         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
13767         REPLACE_WCRTOMB if mbstate_t must be replaced.
13768         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
13769         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
13770
13771 2009-05-01  Bruno Haible  <bruno@clisp.org>
13772
13773         Avoid compiler warnings when redefining macros defined by <libintl.h>.
13774         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
13775         dngettext, dcngettext, textdomain, bindtextdomain,
13776         bind_textdomain_codeset): Undefine before redefining.
13777
13778 2009-04-30  Bruno Haible  <bruno@clisp.org>
13779
13780         Fix bug introduced on 2009-04-25.
13781         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
13782         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
13783         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
13784         is defined.
13785         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
13786         is defined.
13787         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
13788         is defined.
13789         Reported by Elbert_Pol <elbert.pol@gmail.com>.
13790
13791 2009-04-28  Bruno Haible  <bruno@clisp.org>
13792
13793         Comment tweaks.
13794         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
13795         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
13796         * lib/unicase.h (u*_casexfrm): Likewise.
13797         Reported by Paolo Bonzini.
13798
13799 2009-04-28  Bruno Haible  <bruno@clisp.org>
13800
13801         Fix a compilation error.
13802         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
13803         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
13804         Reported by Jim Meyering.
13805
13806 2009-04-27  Bruno Haible  <bruno@clisp.org>
13807
13808         New module 'libunistring'.
13809         * modules/libunistring: New file.
13810         * m4/libunistring.m4: New file.
13811         * MODULES.html.sh (Unicode string functions): Add it.
13812
13813 2009-04-27  Eric Blake  <ebb9@byu.net>
13814
13815         maint.mk: allow package-specific header to provide <config.h>
13816         * top/maint.mk (sc_require_config_h): New variable.
13817         (sc_require_config_h, sc_require_config_h_first): Use it.
13818
13819 2009-04-27  Simon Josefsson  <simon@josefsson.org>
13820
13821         * top/maint.mk (sc_avoid_if_before_free): Except
13822         useless-if-before-free script.
13823
13824 2009-04-27  Eric Blake  <ebb9@byu.net>
13825
13826         maintainer-makefile: depend on all required helper scripts
13827         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
13828         useless-if-before-free.
13829         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
13830         version, rather than assuming gnulib checkout is available.
13831         Reported by Simen Josefsson.
13832
13833 2009-04-26  Bruno Haible  <bruno@clisp.org>
13834
13835         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
13836         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
13837         "../" or "..".
13838
13839 2009-04-26  Bruno Haible  <bruno@clisp.org>
13840
13841         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
13842         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
13843         AC_LIB_HAVE_LINKFLAGS.
13844
13845 2009-04-26  Bruno Haible  <bruno@clisp.org>
13846
13847         Simplify calling convention of u*_conv_from_encoding.
13848         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
13849         u32_conv_from_encoding): Expect a resultbuf argument and return the
13850         result directly as a pointer.
13851         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
13852         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
13853         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
13854         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
13855         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
13856         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
13857         Update.
13858         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
13859         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
13860         * lib/vasnprintf.c (VASNPRINTF): Update.
13861         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
13862         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
13863         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
13864         * NEWS: Mention the change.
13865
13866 2009-04-26  Bruno Haible  <bruno@clisp.org>
13867
13868         Simplify calling convention of u*_conv_to_encoding.
13869         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
13870         u32_conv_to_encoding): Expect a resultbuf argument and return the
13871         result directly as a pointer.
13872         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
13873         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
13874         freeing scaled_offsets if mem_iconveha failed.
13875         * lib/unicase/u-casexfrm.h (FUNC): Update.
13876         * lib/uninorm/u-normxfrm.h (FUNC): Update.
13877         * lib/vasnprintf.c (VASNPRINTF): Update.
13878         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
13879         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
13880         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
13881         * NEWS: Mention the change.
13882
13883 2009-04-26  Bruno Haible  <bruno@clisp.org>
13884
13885         Avoid test failures on AIX and OSF/1.
13886         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
13887         malloc(0).
13888         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
13889         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
13890         Likewise.
13891         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
13892         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
13893         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
13894         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
13895         * doc/posix-functions/malloc.texi: Document the portability problem
13896         related to malloc(0).
13897
13898 2009-04-26  Bruno Haible  <bruno@clisp.org>
13899
13900         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
13901         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
13902         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
13903
13904 2009-04-25  Bruno Haible  <bruno@clisp.org>
13905
13906         Avoid link error when creating a namespace clean library.
13907         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
13908         as macro with arguments if already defined as an alias.
13909         * lib/signbitf.c (gl_signbitf): Don't undefine.
13910         * lib/signbitd.c (gl_signbitd): Don't undefine.
13911         * lib/signbitl.c (gl_signbitl): Don't undefine.
13912
13913 2009-04-25  Jim Meyering  <meyering@redhat.com>
13914
13915         vc-list-files: fix another quoting bug
13916         * build-aux/vc-list-files: Avoid sed backslash expansion
13917         of pathological directory names.
13918
13919 2009-04-25  Eric Blake  <ebb9@byu.net>
13920
13921         vc-list-files: fix shell quoting error
13922         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
13923         timestamp.
13924
13925 2009-04-25  Jim Meyering  <meyering@redhat.com>
13926
13927         vc-list-files: restore lost functionality with subdir argument
13928         * build-aux/vc-list-files: When given a non-"." sub-directory
13929         argument, substitute the $dir/ prefix back onto each resulting name.
13930         Otherwise, coreutils' root_tests check would fail.
13931
13932 2009-04-24  Eric Blake  <ebb9@byu.net>
13933
13934         vc-list-files: ignore git symlinks
13935         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
13936         than ls-files, to ignore git symlinks.
13937
13938         maint.mk: import improvements from m4
13939         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
13940         (move_if_change): Delete unused macro.
13941         (news-date-check, vc-diff-check): Support VPATH builds.
13942         (announcement): Likewise.  Split --bootstrap-tools list...
13943         (boostrap-tools): ...into separate list, which can be overridden
13944         in cfg.mk.
13945         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
13946         requiring dependency on useless-if-before-free module.
13947         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
13948         Support VPATH builds.
13949
13950 2009-04-24  Jim Meyering  <meyering@redhat.com>
13951
13952         maint.mk: remove coreutils-specific rules and variables
13953         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
13954         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
13955         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
13956
13957         maint.mk: remove obsolete rule
13958         * top/maint.mk (rel-check): Remove rule.
13959         (WGET, WGETFLAGS): Remove now-unused variables.
13960
13961 2009-04-24  Simon Josefsson  <simon@josefsson.org>
13962
13963         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
13964         consistency.
13965
13966         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
13967         '$(PATH_SEPARATOR)' instead of ':'.
13968
13969 2009-04-24  Simon Josefsson  <simon@josefsson.org>
13970
13971         * lib/getopt1.c (main): Use 'const' for static array.
13972
13973 2009-04-24  Simon Josefsson  <simon@josefsson.org>
13974
13975         * top/maint.mk: Sync with coreutils.
13976         * NEWS: Explain incompatibilities.
13977
13978 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13979             Bruno Haible  <bruno@clisp.org>
13980
13981         Fix cross-compilation results.
13982         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
13983         statement, as third argument of AC_TRY_RUN.
13984         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
13985         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
13986         Likewise.
13987         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
13988         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
13989         Likewise.
13990         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
13991         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
13992         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
13993
13994 2009-04-20  Bruno Haible  <bruno@clisp.org>
13995
13996         Avoid test failure on mingw.
13997         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
13998
13999 2009-04-20  Bruno Haible  <bruno@clisp.org>
14000
14001         Avoid compilation error on mingw.
14002         * modules/localename-tests (Depends-on): Add locale.
14003
14004 2009-04-19  Bruno Haible  <bruno@clisp.org>
14005
14006         Support for building a shared library on Windows platforms.
14007         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
14008         (main): Test the presence of UNINORM_NFC here.
14009         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
14010         (main): Test the presence of UNINORM_NFD here.
14011         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
14012         (main): Test the presence of UNINORM_NFKC here.
14013         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
14014         (main): Test the presence of UNINORM_NFKD here.
14015
14016 2009-04-19  Bruno Haible  <bruno@clisp.org>
14017
14018         Avoid a compiler warning.
14019         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
14020         Change type of variable 'sequence'.
14021
14022 2009-04-19  Bruno Haible  <bruno@clisp.org>
14023
14024         * modules/configmake (Makefile.am): When the contents of configmake.h
14025         does not change, arrange to preserve its modification time.
14026
14027 2009-04-17  Simon Josefsson  <simon@josefsson.org>
14028
14029         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
14030         gettext domain.
14031
14032 2009-04-16  Jim Meyering  <meyering@redhat.com>
14033
14034         useless-if-before-free: improve conversion code
14035         * build-aux/useless-if-before-free: Adjust code-in-comment to match
14036         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
14037
14038 2009-04-14  Bruno Haible  <bruno@clisp.org>
14039
14040         * modules/fcntl (Depends-on): Add extensions.
14041         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
14042
14043 2009-04-12  Ben Pfaff  <blp@gnu.org>
14044
14045         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
14046         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
14047
14048 2009-03-20  Ben Pfaff  <blp@gnu.org>
14049
14050         Make rename replace existing destinations on Windows.
14051         * m4/rename.m4: Add test for Mingw.
14052         * lib/rename.c: Add rename replacement that uses MoveFileEx with
14053         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
14054         * doc/posix-functions/rename.texi: Document.
14055
14056 2009-04-10  Bruno Haible  <bruno@clisp.org>
14057
14058         New include file "iconveh.h".
14059         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
14060         * lib/striconveh.h: Include it.
14061         (enum iconv_ilseq_handler): Remove definition.
14062         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
14063         striconveh.h.
14064         * lib/striconveha.c: Include striconveh.h.
14065         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
14066         * modules/striconveh (Files): Add lib/iconveh.h.
14067         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
14068         lib/striconveh.h.
14069
14070 2009-04-10  Bruno Haible  <bruno@clisp.org>
14071
14072         * lib/uniconv.h: Update comment.
14073
14074 2009-04-10  Bruno Haible  <bruno@clisp.org>
14075
14076         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
14077         always.
14078         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
14079         * lib/unistr/u16-mbtouc-aux.c: Likewise.
14080         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
14081         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
14082         "unistring-notinline.h", so that the function gets defined always.
14083         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
14084         * lib/unistr/u8-uctomb.c: Likewise.
14085         * lib/unistr/u16-mbtouc.c: Likewise.
14086         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
14087         * lib/unistr/u16-uctomb.c: Likewise.
14088         * lib/unistr/u32-mbtouc.c: Likewise.
14089         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
14090         * lib/unistr/u32-uctomb.c: Likewise.
14091
14092 2009-04-10  Bruno Haible  <bruno@clisp.org>
14093
14094         Mark 'utime' obsolete.
14095         * modules/utime (Status, Notice): New sections.
14096         Suggested by Jim Meyering.
14097
14098         Fix cross-compile guess for utime test.
14099         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
14100         autoconf.
14101         * doc/posix-functions/utime.texi: Give more precisions.
14102         Reported by Jan <ipif@ymail.com>.
14103
14104 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
14105
14106         filevercmp: correct today's change
14107         * lib/filevercmp.c: Also handle coreutils' test inputs.
14108         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
14109
14110         Fix regression in 'filevercmp' module. Thanks Sven Joachim
14111         for reporting it.
14112         * lib/filevercmp.c: Special handle for "", "." and "..".
14113         * tests/test-filevercmp.c: Enlarge the set suite.
14114
14115 2009-04-07  Jim Meyering  <meyering@redhat.com>
14116
14117         useless-if-before-free: show how to remove braced useless free, too
14118         * build-aux/useless-if-before-free: still only in a comment, though.
14119
14120 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
14121
14122         maint.mk: import changes to syntax-check macros from coreutils
14123         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
14124         Use them in the relevant macros.
14125
14126 2009-04-06  Bruno Haible  <bruno@clisp.org>
14127
14128         Fix unportable use of bit-fields.
14129         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
14130         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
14131         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
14132
14133 2009-04-06  Bruno Haible  <bruno@clisp.org>
14134
14135         Avoid test failures on AIX and OSF/1.
14136         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
14137         that malloc(0) = NULL.
14138         * tests/unicase/test-u8-tolower.c (check): Likewise.
14139         * tests/unicase/test-u8-totitle.c (check): Likewise.
14140         * tests/unicase/test-u8-toupper.c (check): Likewise.
14141         * tests/unicase/test-u16-casefold.c (check): Likewise.
14142         * tests/unicase/test-u16-tolower.c (check): Likewise.
14143         * tests/unicase/test-u16-totitle.c (check): Likewise.
14144         * tests/unicase/test-u16-toupper.c (check): Likewise.
14145         * tests/unicase/test-u32-casefold.c (check): Likewise.
14146         * tests/unicase/test-u32-tolower.c (check): Likewise.
14147         * tests/unicase/test-u32-totitle.c (check): Likewise.
14148         * tests/unicase/test-u32-toupper.c (check): Likewise.
14149         * tests/uninorm/test-u8-nfc.c (check): Likewise.
14150         * tests/uninorm/test-u8-nfd.c (check): Likewise.
14151         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
14152         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
14153         * tests/uninorm/test-u16-nfc.c (check): Likewise.
14154         * tests/uninorm/test-u16-nfd.c (check): Likewise.
14155         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
14156         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
14157         * tests/uninorm/test-u32-nfc.c (check): Likewise.
14158         * tests/uninorm/test-u32-nfd.c (check): Likewise.
14159         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
14160         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
14161
14162 2009-04-05  Bruno Haible  <bruno@clisp.org>
14163
14164         Work around an autoconf limitation.
14165         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
14166         comment line if it would be longer than 3 KB.
14167
14168 2009-04-05  Bruno Haible  <bruno@clisp.org>
14169
14170         Avoid test failure with libiconv-1.13.
14171         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
14172         of the expected test results.
14173
14174 2009-04-05  Bruno Haible  <bruno@clisp.org>
14175
14176         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
14177         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
14178         that it should be installed.
14179
14180 2009-04-05  Bruno Haible  <bruno@clisp.org>
14181
14182         * gnulib-tool: New option --copy-file.
14183         (func_usage): Document it.
14184         (func_dest_tmpfilename): Moved out of func_import.
14185         (func_add_file, func_update_file): New functions, extracted from
14186         func_import.
14187         (func_import): Update.
14188
14189 2009-04-05  Karl Berry  <karl@gnu.org>
14190
14191         * README: prominently mention gnulib-tool.
14192         Rearrange sections so getting the code is near the top.
14193
14194 2009-04-05  Bruno Haible  <bruno@clisp.org>
14195
14196         * lib/unicase.h: Mention u*_cmp2.
14197         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
14198         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
14199         * lib/unicase/ulc-casecmp.c: Likewise.
14200         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
14201         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
14202         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
14203         unistr/u8-cmp.
14204         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
14205         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
14206         unistr/u16-cmp.
14207         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
14208         unistr/u32-cmp.
14209
14210         * lib/uninorm.h: Mention u*_cmp2.
14211         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
14212         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
14213         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
14214         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
14215         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
14216         unistr/u8-cmp.
14217         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
14218         unistr/u16-cmp.
14219         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
14220         unistr/u32-cmp.
14221
14222         New module 'unistr/u32-cmp2'.
14223         * lib/unistr/u32-cmp2.c: New file.
14224         * modules/unistr/u32-cmp2: New file.
14225
14226         New module 'unistr/u16-cmp2'.
14227         * lib/unistr/u16-cmp2.c: New file.
14228         * modules/unistr/u16-cmp2: New file.
14229
14230         New module 'unistr/u8-cmp2'.
14231         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
14232         * lib/unistr/u8-cmp2.c: New file.
14233         * lib/unistr/u-cmp2.h: New file.
14234         * modules/unistr/u8-cmp2: New file.
14235
14236 2009-04-05  Bruno Haible  <bruno@clisp.org>
14237
14238         * lib/unictype.h (uc_property_is_valid): New macro.
14239         * tests/unictype/test-pr_byname.c (main): Use it.
14240
14241         * lib/unistr.h: Doc fixes.
14242         * lib/uniconv.h: Doc fixes.
14243         * lib/unictype.h: Doc fixes.
14244
14245 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
14246
14247         Port coreutils 7.2 to Solaris 8.
14248
14249         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
14250         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
14251         for Solaris 8.  This is a bit of a hack, as it means it's the
14252         caller's responsibility to add -lnsl if needed, but most likely it
14253         won't be needed since only getaddrinfo uses this and getaddrinfo
14254         isn't needed on Solaris 8.
14255
14256         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
14257         problem to Solaris 8 encountered with coreutils 7.2, which
14258         resulted in a message "fnmatch.c:292: warning: passing argument 4
14259         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
14260         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
14261
14262 2009-04-03  Simon Josefsson  <simon@josefsson.org>
14263
14264         * m4/ld-version-script.m4: Add FIXME comment.
14265
14266 2009-04-02  Simon Josefsson  <simon@josefsson.org>
14267
14268         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
14269         SOVERSION variable.
14270
14271 2009-04-02  Bruno Haible  <bruno@clisp.org>
14272
14273         * Makefile (info, html, dvi, pdf): Combine the rules.
14274         Suggested by Jim Meyering.
14275
14276 2009-04-01  Bruno Haible  <bruno@clisp.org>
14277
14278         * Makefile (info, html, dvi, pdf): New targets.
14279         Reported by Reuben Thomas <rrt@sc3d.org>.
14280
14281 2009-04-01  Bruno Haible  <bruno@clisp.org>
14282
14283         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
14284         can be put into PATH.
14285         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
14286
14287 2009-04-01  Bruno Haible  <bruno@clisp.org>
14288
14289         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
14290
14291 2009-04-01  Bruno Haible  <bruno@clisp.org>
14292
14293         Rename module 'visibility'.
14294         * modules/lib-symbol-visibility: Renamed from modules/visibility.
14295         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
14296         * doc/gnulib.texi: Update.
14297         * MODULES.html.sh (Misc): Update.
14298         * NEWS: Mention the change.
14299
14300 2009-04-01  Simon Josefsson  <simon@josefsson.org>
14301
14302         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
14303         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
14304         Eric Blake <ebb9@byu.net> for review.
14305         * MODULES.html.sh: Add lib-msvc-compat.
14306         * doc/gnulib.texi: Link to new section.
14307         * m4/ld-output-def.m4: New file.
14308         * doc/ld-output-def.texi: New file.
14309
14310 2009-04-01  Simon Josefsson  <simon@josefsson.org>
14311
14312         Rename ld-version-script to lib-symbol-versions.  Suggested by
14313         Bruno Haible <bruno@clisp.org>.
14314         * modules/ld-version-script: Renamed to lib-symbol-versions.
14315         * doc/ld-version-script.texi: Fix module name.
14316         * MODULES.html.sh: Add lib-symbol-versions.
14317
14318 2009-03-31  Simon Josefsson  <simon@josefsson.org>
14319
14320         * modules/u64-tests: New file.
14321         * tests/test-u64.c: New file.
14322
14323 2009-03-04  Simon Josefsson  <simon@josefsson.org>
14324
14325         * MODULES.html.sh: Mention u64.
14326         * modules/u64: New module.
14327         * modules/crypto/sha512: Depend on u64 module instead of providing
14328         u64.h.
14329
14330 2009-03-27  Eric Blake  <ebb9@byu.net>
14331
14332         test-strerror: make debugging EAI_SYSTEM easier
14333         * modules/getaddrinfo-tests (Depends-on): Add strerror.
14334         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
14335         failure was EAI_SYSTEM.
14336
14337 2009-03-25  Bruno Haible  <bruno@clisp.org>
14338
14339         Fix a problem with --enable-relocatable on Solaris 7.
14340         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
14341         since 2008-02-24.
14342
14343 2009-03-25  Eric Blake  <ebb9@byu.net>
14344
14345         test-sockets: avoid gcc warning
14346         * tests/test-sockets.c (main): Silence compiler warning.
14347
14348 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
14349
14350         New modules nproc, pthread, contributed by Glen Lenker.
14351
14352         * MODULES.html.sh: Add pthread, nproc.
14353         * lib/nproc.c: New file.
14354         * lib/nproc.h: New file.
14355         * lib/pthread.in.h: New file.
14356         * m4/pthread.m4: New file.
14357         * modules/nproc: New file.
14358         * modules/pthread: New file.
14359
14360 2009-03-24  Simon Josefsson  <simon@josefsson.org>
14361
14362         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
14363         New variable.
14364
14365 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
14366
14367         filevercmp: handle simple~ and numbered.~3~ backup suffixes
14368         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
14369         * tests/test-filevercmp.c: Add tests for backup suffixes.
14370
14371 2009-03-24  Simon Josefsson  <simon@josefsson.org>
14372
14373         * modules/stdlib (Depends-on): Add stdint, needed when defining
14374         struct random_data on, for example, HP-UX 10.20.  Reported by
14375         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
14376
14377 2009-03-24  Simon Josefsson  <simon@josefsson.org>
14378
14379         * lib/readline.c (readline): Call fflush on stdout after printing
14380         prompt.
14381
14382 2009-03-20  Bruno Haible  <bruno@clisp.org>
14383
14384         Remove dependency from 'close' module to -lws2_32 on native Windows.
14385         * lib/close-hook.h: New file.
14386         * lib/close-hook.c: New file.
14387         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
14388         w32sock.h.
14389         (_gl_close_fd_maybe_socket): Remove function.
14390         (rpl_close): Invoke execute_all_close_hooks instead of
14391         _gl_close_fd_maybe_socket.
14392         * lib/sockets.c: Include close-hook.h, w32sock.h.
14393         (close_fd_maybe_socket): New function, essentially from lib/close.c.
14394         (close_sockets_hook): New variable.
14395         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
14396         (gl_sockets_cleanup): Unregister it.
14397         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
14398         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
14399         * modules/close-hook: New file.
14400         * modules/close (Files): Remove lib/w32sock.h.
14401         (Depends-on): Add close-hook.
14402         (Link): Remove section.
14403         * modules/sockets (Files): Add lib/w32sock.h.
14404         (Depends-on): Add close-hook.
14405         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
14406         invocation.
14407         * NEWS: Mention that LIB_CLOSE is gone.
14408
14409 2009-03-23  Eric Blake  <ebb9@byu.net>
14410
14411         signal-tests: test previous patch
14412         * tests/test-signal.c: New file.
14413         * modules/signal-tests: Likewise.
14414
14415         signal.h: always support 'volatile sig_atomic_t'
14416         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
14417         (gl_SIGNAL_H_DEFAULTS): Add a default.
14418         * modules/signal (Makefile.am): Substitute if needed.
14419         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
14420         users can blindly add volatile.
14421         * doc/posix-headers/signal.texi (signal.h): Document it.
14422         Reported by Matthew Woehlke.
14423
14424 2009-03-23  Jim Meyering  <meyering@redhat.com>
14425
14426         pathmax: PATH_MAX: use pathconf only when available
14427         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
14428         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
14429         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
14430         This avoids a link failure in a PSP cross-compilation environment
14431         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
14432
14433         * lib/vasnprintf.c (divide): Fix typo in comment.
14434
14435 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14436
14437         * gnulib-tool (func_filter_filelist): Fix comment.
14438
14439 2009-03-20  Bruno Haible  <bruno@clisp.org>
14440
14441         Make sockets.h self-contained.
14442         * lib/sockets.c: Include sockets.h first.
14443         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
14444
14445 2009-03-19  Eric Blake  <ebb9@byu.net>
14446
14447         doc: mention more functions added in cygwin 1.7.0
14448         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
14449         addition.
14450         * doc/posix-functions/log2f.texi: Likewise.
14451
14452 2009-03-19  Jim Meyering  <meyering@redhat.com>
14453
14454         fsusage: avoid syntax error due to statement-before-declaration
14455         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
14456         after all declarations.  Reported by Matthew Woehlke in
14457         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
14458
14459 2009-03-18  Eric Blake  <ebb9@byu.net>
14460
14461         build-aux/compile: sync from automake
14462         * build-aux/compile: New file, from automake.
14463         * config/srclist.txt: Mention build-aux/compile.
14464
14465 2009-03-17  Bruno Haible  <bruno@clisp.org>
14466
14467         * lib/git-merge-changelog.c: Fix typo in comment.
14468         Reported by Reuben Thomas <rrt@sc3d.org>.
14469
14470 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
14471
14472         * m4/regex.m4: update and improve help for
14473         --without-included-regex.
14474
14475 2009-03-17  Simon Josefsson  <simon@josefsson.org>
14476
14477         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
14478         failure on missing include files.
14479
14480 2009-03-17  Eric Blake  <ebb9@byu.net>
14481
14482         doc: mention more functions added in cygwin 1.7.0
14483         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
14484         addition.
14485         * doc/posix-functions/fwscanf.texi: Likewise.
14486         * doc/posix-functions/swprintf.texi: Likewise.
14487         * doc/posix-functions/swscanf.texi: Likewise.
14488         * doc/posix-functions/vfwprintf.texi: Likewise.
14489         * doc/posix-functions/vfwscanf.texi: Likewise.
14490         * doc/posix-functions/vswprintf.texi: Likewise.
14491         * doc/posix-functions/vswscanf.texi: Likewise.
14492         * doc/posix-functions/vwprintf.texi: Likewise.
14493         * doc/posix-functions/vwscanf.texi: Likewise.
14494         * doc/posix-functions/wcscasecmp.texi: Likewise.
14495         * doc/posix-functions/wcsdup.texi: Likewise.
14496         * doc/posix-functions/wcsftime.texi: Likewise.
14497         * doc/posix-functions/wcsncasecmp.texi: Likewise.
14498         * doc/posix-functions/wprintf.texi: Likewise.
14499         * doc/posix-functions/wscanf.texi: Likewise.
14500         * doc/glibc-functions/gethostbyname2.texi: Likewise.
14501
14502 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14503
14504         maint.mk: really add $(AM_MAKEFLAGS)
14505         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
14506         was inadvertently omitted in the last commit.
14507         Spotted by Bruno Haible.
14508
14509         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
14510         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
14511         $(AM_MAKEFLAGS)' rather than plain `make'.
14512
14513         gnulib-tool: execute $MAKE not make
14514         * gnulib-tool: Default $MAKE to 'make'.
14515         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
14516         than make.  Initialize $MAKE in the do-autobuild script.
14517
14518         gnulib-tool: use $MAKE not make in generated files
14519         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
14520         make, in generated files.  Initialize $MAKE in the do-autobuild
14521         script.
14522
14523         * top/GNUmakefile (_have-git-version-gen): Fix typo.
14524
14525         GNUmakefile: disable parallelism only for multiple, recursive targets
14526         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
14527         additions in the Makefile.
14528         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
14529         by Automake.
14530         (.NOTPARALLEL): Only disable parallel builds if multiple targets
14531         are listed on the command line and at least one of them is
14532         listed in $(ALL_RECURSIVE_TARGETS).
14533
14534 2009-03-14  Bruno Haible  <bruno@clisp.org>
14535
14536         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
14537         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
14538         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
14539         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
14540         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
14541         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
14542         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
14543         unistr/u8-uctomb.
14544         * modules/unistr/u8-strchr (Depends-on): Likewise.
14545         * modules/unistr/u8-strrchr (Depends-on): Likewise.
14546         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
14547         unistr/u16-uctomb.
14548         * modules/unistr/u16-strchr (Depends-on): Likewise.
14549         * modules/unistr/u16-strrchr (Depends-on): Likewise.
14550
14551 2009-03-12  Bruno Haible  <bruno@clisp.org>
14552
14553         Work around select() bug on Interix 3.5.
14554         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
14555         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
14556         * m4/select.m4: New file.
14557         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
14558         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
14559         * modules/select (Files): Add m4/select.m4.
14560         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
14561         * modules/nanosleep (Depends-on): Add select.
14562         * modules/poll (Depends-on): Likewise.
14563         * doc/posix-functions/select.texi: Mention the Interix bug.
14564         Reported by Markus Duft <mduft@gentoo.org>.
14565
14566         * lib/select.c: Renamed from lib/winsock-select.c.
14567         * modules/select (Files): Add lib/select.c, remove
14568         lib/winsock-select.c.
14569         (configure.ac): Update.
14570
14571 2009-03-12  Jim Meyering  <meyering@redhat.com>
14572
14573         avoid gcc warnings about unused macro definitions
14574         * lib/readtokens.c (STREQ): Remove unused definition.
14575         * lib/xmalloc.c (SIZE_MAX): Likewise.
14576         * lib/openat-die.c (N_): Likewise.
14577         * lib/mountlist.c (SIZE_MAX): Remove definition.
14578         Instead, include <stdint.h>.
14579         * lib/readutmp.c: Likewise.
14580         * modules/readutmp (Depends-on): Add stdint.
14581         * modules/mountlist (Depends-on): Add stdint.
14582         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
14583
14584 2009-03-10  Bruno Haible  <bruno@clisp.org>
14585
14586         Tests for module 'mbmemcasecoll'.
14587         * modules/mbmemcasecoll-tests: New file.
14588         * tests/test-mbmemcasecoll1.sh: New file.
14589         * tests/test-mbmemcasecoll2.sh: New file.
14590         * tests/test-mbmemcasecoll3.sh: New file.
14591         * tests/test-mbmemcasecoll.c: New file.
14592
14593         New module 'mbmemcasecoll'.
14594         * lib/mbmemcasecoll.h: New file.
14595         * lib/mbmemcasecoll.c: New file.
14596         * modules/mbmemcasecoll: New file.
14597
14598         * tests/test-mbmemcasecmp.h: New file, extracted from
14599         tests/test-mbmemcasecmp.c.
14600         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
14601         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
14602         (main): Update.
14603         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
14604
14605 2009-03-09  Bruno Haible  <bruno@clisp.org>
14606
14607         Tests for module 'mbmemcasecmp'.
14608         * modules/mbmemcasecmp-tests: New file.
14609         * tests/test-mbmemcasecmp1.sh: New file.
14610         * tests/test-mbmemcasecmp2.sh: New file.
14611         * tests/test-mbmemcasecmp3.sh: New file.
14612         * tests/test-mbmemcasecmp.c: New file.
14613
14614         New module 'mbmemcasecmp'.
14615         * lib/mbmemcasecmp.h: New file.
14616         * lib/mbmemcasecmp.c: New file.
14617         * modules/mbmemcasecmp: New file.
14618
14619 2009-03-09  Bruno Haible  <bruno@clisp.org>
14620
14621         Tests for module 'unicase/ulc-casecoll'.
14622         * modules/unicase/ulc-casecoll-tests: New file.
14623         * tests/unicase/test-ulc-casecoll1.sh: New file.
14624         * tests/unicase/test-ulc-casecoll2.sh: New file.
14625         * tests/unicase/test-ulc-casecoll.c: New file.
14626
14627         New module 'unicase/ulc-casecoll'.
14628         * lib/unicase.h (ulc_casecoll): New declaration.
14629         * lib/unicase/ulc-casecoll.c: New file.
14630         * modules/unicase/ulc-casecoll: New file.
14631
14632         New module 'unicase/ulc-casexfrm'.
14633         * lib/unicase.h (ulc_casexfrm): New declaration.
14634         * lib/unicase/ulc-casexfrm.c: New file.
14635         * modules/unicase/ulc-casexfrm: New file.
14636
14637 2009-03-09  Bruno Haible  <bruno@clisp.org>
14638
14639         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
14640         invocations.
14641
14642         * m4/mbscasecmp.m4: Remove file.
14643         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
14644         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
14645
14646         * m4/mbscasestr.m4: Remove file.
14647         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
14648         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
14649
14650         * m4/mbschr.m4: Remove file.
14651         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
14652         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
14653
14654         * m4/mbscspn.m4: Remove file.
14655         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
14656         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
14657
14658         * m4/mbslen.m4: Remove file.
14659         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
14660         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
14661
14662         * m4/mbsncasecmp.m4: Remove file.
14663         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
14664         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
14665
14666         * m4/mbsnlen.m4: Remove file.
14667         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
14668         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
14669
14670         * m4/mbspbrk.m4: Remove file.
14671         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
14672         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
14673
14674         * m4/mbspcasecmp.m4: Remove file.
14675         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
14676         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
14677
14678         * m4/mbsrchr.m4: Remove file.
14679         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
14680         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
14681
14682         * m4/mbssep.m4: Remove file.
14683         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
14684         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
14685
14686         * m4/mbsspn.m4: Remove file.
14687         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
14688         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
14689
14690         * m4/mbsstr.m4: Remove file.
14691         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
14692         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
14693
14694         * m4/mbstok_r.m4: Remove file.
14695         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
14696         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
14697
14698         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
14699
14700         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
14701         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
14702
14703         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
14704
14705 2009-03-08  Bruno Haible  <bruno@clisp.org>
14706
14707         Tests for module 'unicase/ulc-casecmp'.
14708         * modules/unicase/ulc-casecmp-tests: New file.
14709         * tests/unicase/test-ulc-casecmp1.sh: New file.
14710         * tests/unicase/test-ulc-casecmp2.sh: New file.
14711         * tests/unicase/test-ulc-casecmp.c: New file.
14712
14713         New module 'unicase/ulc-casecmp'.
14714         * lib/unicase.h (ulc_casecmp): New declaration.
14715         * lib/unicase/ulc-casecmp.c: New file.
14716         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
14717         'const SRC_UNIT *'.
14718         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
14719         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
14720         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
14721         * modules/unicase/ulc-casecmp: New file.
14722
14723         Tests for module 'unicase/u32-is-cased'.
14724         * modules/unicase/u32-is-cased-tests: New file.
14725         * tests/unicase/test-u32-is-cased.c: New file.
14726
14727         Tests for module 'unicase/u16-is-cased'.
14728         * modules/unicase/u16-is-cased-tests: New file.
14729         * tests/unicase/test-u16-is-cased.c: New file.
14730
14731         Tests for module 'unicase/u8-is-cased'.
14732         * modules/unicase/u8-is-cased-tests: New file.
14733         * tests/unicase/test-u8-is-cased.c: New file.
14734         * tests/unicase/test-is-cased.h: New file.
14735
14736         New module 'unicase/u32-is-cased'.
14737         * lib/unicase/u32-is-cased.c: New file.
14738         * modules/unicase/u32-is-cased: New file.
14739
14740         New module 'unicase/u16-is-cased'.
14741         * lib/unicase/u16-is-cased.c: New file.
14742         * modules/unicase/u16-is-cased: New file.
14743
14744         New module 'unicase/u8-is-cased'.
14745         * lib/unicase/u8-is-cased.c: New file.
14746         * lib/unicase/u-is-cased.h: New file.
14747         * modules/unicase/u8-is-cased: New file.
14748
14749         Tests for module 'unicase/u32-is-casefolded'.
14750         * modules/unicase/u32-is-casefolded-tests: New file.
14751         * tests/unicase/test-u32-is-casefolded.c: New file.
14752
14753         Tests for module 'unicase/u16-is-casefolded'.
14754         * modules/unicase/u16-is-casefolded-tests: New file.
14755         * tests/unicase/test-u16-is-casefolded.c: New file.
14756
14757         Tests for module 'unicase/u8-is-casefolded'.
14758         * modules/unicase/u8-is-casefolded-tests: New file.
14759         * tests/unicase/test-u8-is-casefolded.c: New file.
14760         * tests/unicase/test-is-casefolded.h: New file.
14761
14762         New module 'unicase/u32-is-casefolded'.
14763         * lib/unicase/u32-is-casefolded.c: New file.
14764         * modules/unicase/u32-is-casefolded: New file.
14765
14766         New module 'unicase/u16-is-casefolded'.
14767         * lib/unicase/u16-is-casefolded.c: New file.
14768         * modules/unicase/u16-is-casefolded: New file.
14769
14770         New module 'unicase/u8-is-casefolded'.
14771         * lib/unicase/u8-is-casefolded.c: New file.
14772         * modules/unicase/u8-is-casefolded: New file.
14773
14774         Tests for module 'unicase/u32-is-titlecase'.
14775         * modules/unicase/u32-is-titlecase-tests: New file.
14776         * tests/unicase/test-u32-is-titlecase.c: New file.
14777
14778         Tests for module 'unicase/u16-is-titlecase'.
14779         * modules/unicase/u16-is-titlecase-tests: New file.
14780         * tests/unicase/test-u16-is-titlecase.c: New file.
14781
14782         Tests for module 'unicase/u8-is-titlecase'.
14783         * modules/unicase/u8-is-titlecase-tests: New file.
14784         * tests/unicase/test-u8-is-titlecase.c: New file.
14785         * tests/unicase/test-is-titlecase.h: New file.
14786
14787         New module 'unicase/u32-is-titlecase'.
14788         * lib/unicase/u32-is-titlecase.c: New file.
14789         * modules/unicase/u32-is-titlecase: New file.
14790
14791         New module 'unicase/u16-is-titlecase'.
14792         * lib/unicase/u16-is-titlecase.c: New file.
14793         * modules/unicase/u16-is-titlecase: New file.
14794
14795         New module 'unicase/u8-is-titlecase'.
14796         * lib/unicase/u8-is-titlecase.c: New file.
14797         * modules/unicase/u8-is-titlecase: New file.
14798
14799         Tests for module 'unicase/u32-is-lowercase'.
14800         * modules/unicase/u32-is-lowercase-tests: New file.
14801         * tests/unicase/test-u32-is-lowercase.c: New file.
14802
14803         Tests for module 'unicase/u16-is-lowercase'.
14804         * modules/unicase/u16-is-lowercase-tests: New file.
14805         * tests/unicase/test-u16-is-lowercase.c: New file.
14806
14807         Tests for module 'unicase/u8-is-lowercase'.
14808         * modules/unicase/u8-is-lowercase-tests: New file.
14809         * tests/unicase/test-u8-is-lowercase.c: New file.
14810         * tests/unicase/test-is-lowercase.h: New file.
14811
14812         New module 'unicase/u32-is-lowercase'.
14813         * lib/unicase/u32-is-lowercase.c: New file.
14814         * modules/unicase/u32-is-lowercase: New file.
14815
14816         New module 'unicase/u16-is-lowercase'.
14817         * lib/unicase/u16-is-lowercase.c: New file.
14818         * modules/unicase/u16-is-lowercase: New file.
14819
14820         New module 'unicase/u8-is-lowercase'.
14821         * lib/unicase/u8-is-lowercase.c: New file.
14822         * modules/unicase/u8-is-lowercase: New file.
14823
14824         Tests for module 'unicase/u32-is-uppercase'.
14825         * modules/unicase/u32-is-uppercase-tests: New file.
14826         * tests/unicase/test-u32-is-uppercase.c: New file.
14827
14828         Tests for module 'unicase/u16-is-uppercase'.
14829         * modules/unicase/u16-is-uppercase-tests: New file.
14830         * tests/unicase/test-u16-is-uppercase.c: New file.
14831
14832         Tests for module 'unicase/u8-is-uppercase'.
14833         * modules/unicase/u8-is-uppercase-tests: New file.
14834         * tests/unicase/test-u8-is-uppercase.c: New file.
14835         * tests/unicase/test-is-uppercase.h: New file.
14836
14837         New module 'unicase/u32-is-uppercase'.
14838         * lib/unicase/u32-is-uppercase.c: New file.
14839         * modules/unicase/u32-is-uppercase: New file.
14840
14841         New module 'unicase/u16-is-uppercase'.
14842         * lib/unicase/u16-is-uppercase.c: New file.
14843         * modules/unicase/u16-is-uppercase: New file.
14844
14845         New module 'unicase/u8-is-uppercase'.
14846         * lib/unicase/u8-is-uppercase.c: New file.
14847         * modules/unicase/u8-is-uppercase: New file.
14848
14849         New module 'unicase/u32-is-invariant'.
14850         * lib/unicase/u32-is-invariant.c: New file.
14851         * modules/unicase/u32-is-invariant: New file.
14852
14853         New module 'unicase/u16-is-invariant'.
14854         * lib/unicase/u16-is-invariant.c: New file.
14855         * modules/unicase/u16-is-invariant: New file.
14856
14857         New module 'unicase/u8-is-invariant'.
14858         * lib/unicase/u8-is-invariant.c: New file.
14859         * lib/unicase/invariant.h: New file.
14860         * lib/unicase/u-is-invariant.h: New file.
14861         * modules/unicase/u8-is-invariant: New file.
14862
14863         Tests for module 'unicase/u32-casecoll'.
14864         * modules/unicase/u32-casecoll-tests: New file.
14865         * tests/unicase/test-u32-casecoll.c: New file.
14866
14867         Tests for module 'unicase/u16-casecoll'.
14868         * modules/unicase/u16-casecoll-tests: New file.
14869         * tests/unicase/test-u16-casecoll.c: New file.
14870
14871         Tests for module 'unicase/u8-casecoll'.
14872         * modules/unicase/u8-casecoll-tests: New file.
14873         * tests/unicase/test-u8-casecoll.c: New file.
14874
14875         New module 'unicase/u32-casecoll'.
14876         * lib/unicase/u32-casecoll.c: New file.
14877         * modules/unicase/u32-casecoll: New file.
14878
14879         New module 'unicase/u16-casecoll'.
14880         * lib/unicase/u16-casecoll.c: New file.
14881         * modules/unicase/u16-casecoll: New file.
14882
14883         New module 'unicase/u8-casecoll'.
14884         * lib/unicase/u8-casecoll.c: New file.
14885         * lib/unicase/u-casecoll.h: New file.
14886         * modules/unicase/u8-casecoll: New file.
14887
14888         New module 'unicase/u32-casexfrm'.
14889         * lib/unicase/u32-casexfrm.c: New file.
14890         * modules/unicase/u32-casexfrm: New file.
14891
14892         New module 'unicase/u16-casexfrm'.
14893         * lib/unicase/u16-casexfrm.c: New file.
14894         * modules/unicase/u16-casexfrm: New file.
14895
14896         New module 'unicase/u8-casexfrm'.
14897         * lib/unicase/u8-casexfrm.c: New file.
14898         * lib/unicase/u-casexfrm.h: New file.
14899         * modules/unicase/u8-casexfrm: New file.
14900
14901         Tests for module 'unicase/u32-casecmp'.
14902         * modules/unicase/u32-casecmp-tests: New file.
14903         * tests/unicase/test-u32-casecmp.c: New file.
14904
14905         Tests for module 'unicase/u16-casecmp'.
14906         * modules/unicase/u16-casecmp-tests: New file.
14907         * tests/unicase/test-u16-casecmp.c: New file.
14908
14909         Tests for module 'unicase/u8-casecmp'.
14910         * modules/unicase/u8-casecmp-tests: New file.
14911         * tests/unicase/test-u8-casecmp.c: New file.
14912         * tests/unicase/test-casecmp.h: New file.
14913
14914         New module 'unicase/u32-casecmp'.
14915         * lib/unicase/u32-casecmp.c: New file.
14916         * modules/unicase/u32-casecmp: New file.
14917
14918         New module 'unicase/u16-casecmp'.
14919         * lib/unicase/u16-casecmp.c: New file.
14920         * modules/unicase/u16-casecmp: New file.
14921
14922         New module 'unicase/u8-casecmp'.
14923         * lib/unicase/u8-casecmp.c: New file.
14924         * lib/unicase/u-casecmp.h: New file.
14925         * modules/unicase/u8-casecmp: New file.
14926
14927         Tests for module 'unicase/u32-casefold'.
14928         * modules/unicase/u32-casefold-tests: New file.
14929         * tests/unicase/test-u32-casefold.c: New file.
14930
14931         Tests for module 'unicase/u16-casefold'.
14932         * modules/unicase/u16-casefold-tests: New file.
14933         * tests/unicase/test-u16-casefold.c: New file.
14934
14935         Tests for module 'unicase/u8-casefold'.
14936         * modules/unicase/u8-casefold-tests: New file.
14937         * tests/unicase/test-u8-casefold.c: New file.
14938
14939         New module 'unicase/u32-casefold'.
14940         * lib/unicase/u32-casefold.c: New file.
14941         * modules/unicase/u32-casefold: New file.
14942
14943         New module 'unicase/u16-casefold'.
14944         * lib/unicase/u16-casefold.c: New file.
14945         * modules/unicase/u16-casefold: New file.
14946
14947         New module 'unicase/u8-casefold'.
14948         * lib/unicase/u8-casefold.c: New file.
14949         * lib/unicase/u-casefold.h: New file.
14950         * modules/unicase/u8-casefold: New file.
14951
14952         New module 'unicase/tocasefold'.
14953         * lib/unicase/casefold.h: New file.
14954         * lib/unicase/tocasefold.c: New file.
14955         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
14956         * modules/unicase/tocasefold: New file.
14957
14958         Tests for module 'unicase/u32-totitle'.
14959         * modules/unicase/u32-totitle-tests: New file.
14960         * tests/unicase/test-u32-totitle.c: New file.
14961
14962         Tests for module 'unicase/u16-totitle'.
14963         * modules/unicase/u16-totitle-tests: New file.
14964         * tests/unicase/test-u16-totitle.c: New file.
14965
14966         Tests for module 'unicase/u8-totitle'.
14967         * modules/unicase/u8-totitle-tests: New file.
14968         * tests/unicase/test-u8-totitle.c: New file.
14969
14970         New module 'unicase/u32-totitle'.
14971         * lib/unicase/u32-totitle.c: New file.
14972         * modules/unicase/u32-totitle: New file.
14973
14974         New module 'unicase/u16-totitle'.
14975         * lib/unicase/u16-totitle.c: New file.
14976         * modules/unicase/u16-totitle: New file.
14977
14978         New module 'unicase/u8-totitle'.
14979         * lib/unicase/u8-totitle.c: New file.
14980         * lib/unicase/u-totitle.h: New file.
14981         * modules/unicase/u8-totitle: New file.
14982
14983         Tests for module 'unicase/u32-tolower'.
14984         * modules/unicase/u32-tolower-tests: New file.
14985         * tests/unicase/test-u32-tolower.c: New file.
14986
14987         Tests for module 'unicase/u16-tolower'.
14988         * modules/unicase/u16-tolower-tests: New file.
14989         * tests/unicase/test-u16-tolower.c: New file.
14990
14991         Tests for module 'unicase/u8-tolower'.
14992         * modules/unicase/u8-tolower-tests: New file.
14993         * tests/unicase/test-u8-tolower.c: New file.
14994
14995         New module 'unicase/u32-tolower'.
14996         * lib/unicase/u32-tolower.c: New file.
14997         * modules/unicase/u32-tolower: New file.
14998
14999         New module 'unicase/u16-tolower'.
15000         * lib/unicase/u16-tolower.c: New file.
15001         * modules/unicase/u16-tolower: New file.
15002
15003         New module 'unicase/u8-tolower'.
15004         * lib/unicase/u8-tolower.c: New file.
15005         * modules/unicase/u8-tolower: New file.
15006
15007         Tests for module 'unicase/u32-toupper'.
15008         * modules/unicase/u32-toupper-tests: New file.
15009         * tests/unicase/test-u32-toupper.c: New file.
15010
15011         Tests for module 'unicase/u16-toupper'.
15012         * modules/unicase/u16-toupper-tests: New file.
15013         * tests/unicase/test-u16-toupper.c: New file.
15014
15015         Tests for module 'unicase/u8-toupper'.
15016         * modules/unicase/u8-toupper-tests: New file.
15017         * tests/unicase/test-u8-toupper.c: New file.
15018
15019         New module 'unicase/u32-toupper'.
15020         * lib/unicase/u32-toupper.c: New file.
15021         * modules/unicase/u32-toupper: New file.
15022
15023         New module 'unicase/u16-toupper'.
15024         * lib/unicase/u16-toupper.c: New file.
15025         * modules/unicase/u16-toupper: New file.
15026
15027         New module 'unicase/u8-toupper'.
15028         * lib/unicase/u8-toupper.c: New file.
15029         * modules/unicase/u8-toupper: New file.
15030
15031         New module 'unicase/u32-casemap'.
15032         * lib/unicase/u32-casemap.c: New file.
15033         * modules/unicase/u32-casemap: New file.
15034
15035         New module 'unicase/u16-casemap'.
15036         * lib/unicase/u16-casemap.c: New file.
15037         * modules/unicase/u16-casemap: New file.
15038
15039         New module 'unicase/u8-casemap'.
15040         * lib/unicase/unicasemap.h: New file.
15041         * lib/unicase/u8-casemap.c: New file.
15042         * lib/unicase/u-casemap.h: New file.
15043         * modules/unicase/u8-casemap: New file.
15044
15045         New module 'unicase/special-casing'.
15046         * lib/unicase/special-casing.h: New file.
15047         * lib/unicase/special-casing.c: New file.
15048         * lib/unicase/special-casing-table.gperf: New file, generated by
15049         gen-uni-tables.c.
15050         * modules/unicase/special-casing: New file.
15051
15052         Tests for module 'unicase/locale-language'.
15053         * modules/unicase/locale-language-tests: New file.
15054         * tests/unicase/test-locale-language.sh: New file.
15055         * tests/unicase/test-locale-language.c: New file.
15056
15057         New module 'unicase/locale-language'.
15058         * lib/unicase/locale-language.c: New file.
15059         * lib/unicase/locale-languages.gperf: New file.
15060         * modules/unicase/locale-language: New file.
15061
15062         Generate more tables for case conversion and case folding.
15063         * lib/gen-uni-tables.c (SCC_*): New enum items.
15064         (struct special_casing_rule): New type.
15065         (casing_rules, num_casing_rules, allocated_casing_rules): New
15066         variables.
15067         (add_casing_rule, fill_casing_rules): New functions.
15068         (struct casefold_rule): New type.
15069         (casefolding_rules, num_casefolding_rules,
15070         allocated_casefolding_rules): New variables.
15071         (fill_casefolding_rules): New function.
15072         (unicode_casefold): New variable.
15073         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
15074         sort_casing_rules, output_casing_rules): New functions.
15075         (main): Accept to more arguments: SpecialCasing.txt and
15076         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
15077         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
15078         Output mapping for casefolding.
15079
15080         * lib/unicase.h: Include stdbool.h, uninorm.h.
15081         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
15082         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
15083         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
15084         arguments.
15085         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
15086         resultp arguments.
15087         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
15088         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
15089         resultp arguments.
15090         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
15091         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
15092         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
15093         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
15094         declarations.
15095         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
15096
15097 2009-03-08  Bruno Haible  <bruno@clisp.org>
15098
15099         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
15100         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
15101         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
15102         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
15103
15104 2009-03-07  Bruno Haible  <bruno@clisp.org>
15105
15106         Adjust u*_normcmp, u*_normcoll API.
15107         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
15108         u16_normcoll, u32_normcoll): Change failure conventions.
15109         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
15110         errno and return -1.
15111         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
15112
15113 2009-03-07  Bruno Haible  <bruno@clisp.org>
15114
15115         Tests for module 'uninorm/u32-normcoll'.
15116         * modules/uninorm/u32-normcoll-tests: New file.
15117         * tests/uninorm/test-u32-normcoll.c: New file.
15118
15119         Tests for module 'uninorm/u16-normcoll'.
15120         * modules/uninorm/u16-normcoll-tests: New file.
15121         * tests/uninorm/test-u16-normcoll.c: New file.
15122
15123         Tests for module 'uninorm/u8-normcoll'.
15124         * modules/uninorm/u8-normcoll-tests: New file.
15125         * tests/uninorm/test-u8-normcoll.c: New file.
15126
15127 2009-03-07  Bruno Haible  <bruno@clisp.org>
15128
15129         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
15130         tests/uninorm/test-u32-normcmp.c.
15131         * tests/uninorm/test-u32-normcmp.c: Include it.
15132         (test_nonascii): New function, extracted from main. Add some more
15133         tests.
15134         (main): Invoke test_ascii and test_nonascii.
15135         * modules/uninorm/u32-normcmp-tests (Files): Add
15136         tests/uninorm/test-u32-normcmp.h.
15137         (Depends-on): Remove uninorm/u32-normcmp.
15138
15139         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
15140         tests/uninorm/test-u16-normcmp.c.
15141         * tests/uninorm/test-u16-normcmp.c: Include it.
15142         (test_nonascii): New function, extracted from main. Add some more
15143         tests.
15144         (main): Invoke test_ascii and test_nonascii.
15145         * modules/uninorm/u16-normcmp-tests (Files): Add
15146         tests/uninorm/test-u16-normcmp.h.
15147         (Depends-on): Remove uninorm/u16-normcmp.
15148
15149         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
15150         tests/uninorm/test-u8-normcmp.c.
15151         * tests/uninorm/test-u8-normcmp.c: Include it.
15152         (test_nonascii): New function, extracted from main. Add some more
15153         tests.
15154         (main): Invoke test_ascii and test_nonascii.
15155         * modules/uninorm/u8-normcmp-tests (Files): Add
15156         tests/uninorm/test-u8-normcmp.h.
15157         (Depends-on): Remove uninorm/u8-normcmp.
15158
15159 2009-03-07  Bruno Haible  <bruno@clisp.org>
15160
15161         New module 'uninorm/u32-normcoll'.
15162         * lib/uninorm/u32-normcoll.c: New file.
15163         * modules/uninorm/u32-normcoll: New file.
15164
15165         New module 'uninorm/u16-normcoll'.
15166         * lib/uninorm/u16-normcoll.c: New file.
15167         * modules/uninorm/u16-normcoll: New file.
15168
15169         New module 'uninorm/u8-normcoll'.
15170         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
15171         declarations.
15172         * lib/uninorm/u8-normcoll.c: New file.
15173         * lib/uninorm/u-normcoll.h: New file.
15174         * modules/uninorm/u8-normcoll: New file.
15175
15176         New module 'uninorm/u32-normxfrm'.
15177         * lib/uninorm/u32-normxfrm.c: New file.
15178         * modules/uninorm/u32-normxfrm: New file.
15179
15180         New module 'uninorm/u16-normxfrm'.
15181         * lib/uninorm/u16-normxfrm.c: New file.
15182         * modules/uninorm/u16-normxfrm: New file.
15183
15184         New module 'uninorm/u8-normxfrm'.
15185         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
15186         declarations.
15187         * lib/uninorm/u8-normxfrm.c: New file.
15188         * lib/uninorm/u-normxfrm.h: New file.
15189         * modules/uninorm/u8-normxfrm: New file.
15190
15191 2009-03-07  Bruno Haible  <bruno@clisp.org>
15192
15193         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
15194         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
15195         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
15196
15197 2009-03-07  Bruno Haible  <bruno@clisp.org>
15198
15199         New module 'memxfrm'.
15200         * lib/memxfrm.h: New file.
15201         * lib/memxfrm.c: New file.
15202         * modules/memxfrm: New file.
15203
15204 2009-03-07  Bruno Haible  <bruno@clisp.org>
15205
15206         New module 'memcmp2'.
15207         * lib/memcmp2.h: New file.
15208         * lib/memcmp2.c: New file.
15209         * modules/memcmp2: New file.
15210
15211 2009-03-07  Bruno Haible  <bruno@clisp.org>
15212
15213         Tests for module 'uninorm/decomposing-form'.
15214         * modules/uninorm/decomposing-form-tests: New file.
15215         * tests/uninorm/test-decomposing-form.c: New file.
15216
15217         New module 'uninorm/decomposing-form'.
15218         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
15219         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
15220         Add 'decomposing_variant' field.
15221         * lib/uninorm/decomposing-form.c: New file.
15222         * lib/uninorm/nfc.c (uninorm_nfc): Update.
15223         * lib/uninorm/nfd.c (uninorm_nfd): Update.
15224         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
15225         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
15226         * modules/uninorm/decomposing-form: New file.
15227         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
15228         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
15229
15230 2009-03-07  Bruno Haible  <bruno@clisp.org>
15231
15232         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
15233         strings.
15234
15235 2009-03-06  Bruno Haible  <bruno@clisp.org>
15236
15237         Tests for module 'uninorm/u32-normcmp'.
15238         * tests/uninorm/test-u32-normcmp.c: New file.
15239         * modules/uninorm/u32-normcmp-tests: New file.
15240
15241         Tests for module 'uninorm/u16-normcmp'.
15242         * tests/uninorm/test-u16-normcmp.c: New file.
15243         * modules/uninorm/u16-normcmp-tests: New file.
15244
15245         Tests for module 'uninorm/u8-normcmp'.
15246         * tests/uninorm/test-u8-normcmp.c: New file.
15247         * modules/uninorm/u8-normcmp-tests: New file.
15248
15249         New module 'uninorm/u32-normcmp'.
15250         * lib/uninorm/u32-normcmp.c: New file.
15251         * modules/uninorm/u32-normcmp: New file.
15252
15253         New module 'uninorm/u16-normcmp'.
15254         * lib/uninorm/u16-normcmp.c: New file.
15255         * modules/uninorm/u16-normcmp: New file.
15256
15257         New module 'uninorm/u8-normcmp'.
15258         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
15259         declarations.
15260         * lib/uninorm/u8-normcmp.c: New file.
15261         * lib/uninorm/u-normcmp.h: New file.
15262         * modules/uninorm/u8-normcmp: New file.
15263
15264 2009-03-06  Bruno Haible  <bruno@clisp.org>
15265
15266         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
15267         Reported by Eric Blake.
15268
15269 2009-03-06  Eric Blake  <ebb9@byu.net>
15270             Bruno Haible  <bruno@clisp.org>
15271
15272         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
15273         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
15274         condition.
15275         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
15276         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
15277         condition.
15278         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
15279
15280 2009-03-06  Eric Blake  <ebb9@byu.net>
15281
15282         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
15283         to avoid compiler warnings.
15284         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
15285
15286 2009-03-05  Bruno Haible  <bruno@clisp.org>
15287
15288         * tests/test-ftell.c (main): Disable test beyond end of file on
15289         FreeMiNT.
15290         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
15291
15292 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
15293
15294         * lib/filevercmp.c: Move hidden files up in ordering.
15295         * tests/test-filevercmp.c: Add tests for hidden files.
15296
15297 2009-03-04  Bruno Haible  <bruno@clisp.org>
15298
15299         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
15300         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
15301         AM_CFLAGS.
15302         Reported by Simon Josefsson.
15303
15304 2009-03-03  Bruno Haible  <bruno@clisp.org>
15305
15306         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
15307         Reported by Simon Josefsson.
15308
15309         * doc/ld-version-script.texi: Update node reference.
15310
15311 2009-03-03  Bruno Haible  <bruno@clisp.org>
15312
15313         * modules/visibility (License): Change to 'unlimited'.
15314         Suggested by Simon Josefsson.
15315
15316 2009-03-03  Jim Meyering  <meyering@redhat.com>
15317
15318         unlinkdir: cannot_unlink_dir may modify process state
15319         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
15320         it's neither thread-safe nor appropriate for use in a library.
15321
15322 2009-03-03  Eric Blake  <ebb9@byu.net>
15323
15324         test-closein: silence test under Darwin
15325         * tests/test-closein.sh: Ignore stderr from cat, since we don't
15326         care if it dies from EPIPE or EBADF.
15327
15328 2009-03-03  Bruno Haible  <bruno@clisp.org>
15329
15330         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
15331         earlier.
15332         * doc/visibility.texi: Fix @node and @section.
15333
15334 2009-03-03  Simon Josefsson  <simon@josefsson.org>
15335
15336         * doc/gnulib.texi: Link to sections for ld version script and
15337         visibility.
15338         * doc/visibility.texi: Add @node and @section.
15339         * modules/ld-version-script: New module.
15340         * m4/ld-version-script.m4: New file.
15341         * doc/ld-version-script.texi: New file.
15342
15343 2009-03-02  David Lutterkort  <lutter@redhat.com>
15344
15345         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
15346         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15347
15348 2009-03-02  Bruno Haible  <bruno@clisp.org>
15349
15350         * doc/visibility.texi: Mention libtool's -export-symbols option.
15351
15352 2009-03-02  Jim Meyering  <meyering@redhat.com>
15353
15354         announce-gen: new option: --no-print-checksums
15355         * build-aux/announce-gen (usage): Describe it.
15356         (print_checksums): Print a newline here, not in the [*] footnote.
15357         (main): Honor it.
15358
15359 2009-03-01  Bruno Haible  <bruno@clisp.org>
15360
15361         Use socklen_t in the native Windows replacements prototypes.
15362         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
15363         instead of 'int'.
15364         * lib/getsockopt.c (rpl_getsockopt): Likewise.
15365         * lib/setsockopt.c (rpl_setsockopt): Likewise.
15366         * modules/getsockopt (Depends-on): Add socklen.
15367         * modules/setsockopt (Depends-on): Add socklen.
15368
15369 2009-03-01  Bruno Haible  <bruno@clisp.org>
15370
15371         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
15372         least 4.2.
15373
15374 2009-03-01  Eric Blake  <ebb9@byu.net>
15375             Bruno Haible  <bruno@clisp.org>
15376
15377         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
15378         error messages.
15379         * lib/wait-process.c (wait_subprocess): Omit error message about
15380         deadly signal sent to the child of termsigp != NULL.
15381
15382 2009-03-01  Eric Blake  <ebb9@byu.net>
15383
15384         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
15385
15386 2009-03-01  Bruno Haible  <bruno@clisp.org>
15387
15388         Avoid a gcc warning.
15389         * tests/test-sched.c (b): Make global.
15390         Reported by Eric Blake.
15391
15392 2009-01-19  Martin Lambers  <marlam@marlam.de>
15393
15394         Provide POSIX semantics for socket timeout options on W32.
15395         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
15396         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
15397         * modules/setsockopt: Depend on sys_time module for struct timeval.
15398         * modules/getsockopt: Depend on sys_time module for struct timeval.
15399
15400 2009-03-01  Simon Josefsson  <simon@josefsson.org>
15401
15402         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
15403         __USE_GNU, for consistency with netdb.in.h.
15404         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15405
15406 2009-03-01  Bruno Haible  <bruno@clisp.org>
15407
15408         More support for FreeMiNT.
15409         * lib/fseeko.c (rpl_fseeko): Complete last commit.
15410         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15411
15412 2009-03-01  Bruno Haible  <bruno@clisp.org>
15413
15414         More support for FreeMiNT.
15415         * lib/fpurge.c (fpurge): Correct last commit.
15416         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15417
15418 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15419
15420         Fix unportable awk script in vc-list-files.
15421         * build-aux/vc-list-files: In the replacement awk script, use
15422         substr with a second argument of 1, not zero.
15423         Report by Simon Josefsson.
15424
15425 2009-02-28  Bruno Haible  <bruno@clisp.org>
15426
15427         More support for FreeMiNT.
15428         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
15429         to FreeMiNT today.
15430         * lib/fwriting.c (fwriting): Likewise.
15431         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
15432
15433 2009-02-28  Bruno Haible  <bruno@clisp.org>
15434
15435         * tests/test-freadseek.c (main): Disable test beyond end of file on
15436         FreeMiNT.
15437         * tests/test-ftello.c (main): Likewise.
15438         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
15439
15440 2009-02-28  Bruno Haible  <bruno@clisp.org>
15441
15442         Add tentative support for FreeMiNT.
15443         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
15444         * lib/fpurge.c (fpurge): Likewise.
15445         * lib/freadable.c (freadable): Likewise.
15446         * lib/freading.c (freading): Likewise.
15447         * lib/freadptr.c (freadptr): Likewise.
15448         * lib/freadseek.c (freadptrinc): Likewise.
15449         * lib/fseeko.c (rpl_fseeko): Likewise.
15450         * lib/fseterr.c (fseterr): Likewise.
15451         * lib/fwritable.c (fwritable): Likewise.
15452         * lib/fwriting.c (fwriting): Likewise.
15453         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
15454         Hourihane.
15455         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15456
15457 2009-02-28  Bruno Haible  <bruno@clisp.org>
15458
15459         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
15460         SIGCHLD.
15461         Reported by Jim Meyering.
15462
15463 2009-02-28  Bruno Haible  <bruno@clisp.org>
15464
15465         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
15466         Mention the results of these tests on various platforms.
15467         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
15468         order.
15469         * doc/posix-functions/printf.texi: Likewise.
15470         * doc/posix-functions/snprintf.texi: Likewise.
15471         * doc/posix-functions/sprintf.texi: Likewise.
15472         * doc/posix-functions/vfprintf.texi: Likewise.
15473         * doc/posix-functions/vprintf.texi: Likewise.
15474         * doc/posix-functions/vsnprintf.texi: Likewise.
15475         * doc/posix-functions/vsprintf.texi: Likewise.
15476         * doc/glibc-functions/obstack_printf.texi: Likewise.
15477         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
15478
15479 2009-02-28  Bruno Haible  <bruno@clisp.org>
15480
15481         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
15482         Reported by Loïc Minier <lool@dooz.org>.
15483
15484 2009-02-27  Bruno Haible  <bruno@clisp.org>
15485
15486         * gnulib-tool (func_import): Make the sed expression used to create the
15487         sed script for updating the .gitignore file POSIX compliant.
15488         Reported by Eric Blake.
15489
15490 2009-02-27  Bruno Haible  <bruno@clisp.org>
15491
15492         * gnulib-tool (sed): Don't alias as "sed --posix".
15493         Reported by Eric Blake.
15494
15495 2009-02-27  Bruno Haible  <bruno@clisp.org>
15496
15497         Avoid test link errors.
15498         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
15499         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
15500         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
15501         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
15502         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15503
15504 2009-02-27  Bruno Haible  <bruno@clisp.org>
15505
15506         Avoid spurious "(cached)" in configure output.
15507         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
15508         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
15509         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
15510         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
15511         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
15512         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
15513         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
15514         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
15515         Reported by Eric Blake.
15516
15517 2009-02-27  Eric Blake  <ebb9@byu.net>
15518
15519         printf: fix regression in previous patch
15520         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
15521
15522 2009-02-27  Bruno Haible  <bruno@clisp.org>
15523
15524         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
15525         value.
15526         * lib/stdint.in.h: Likewise.
15527         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
15528
15529 2009-02-27  Eric Blake  <ebb9@byu.net>
15530
15531         doc: mention more functions added in cygwin 1.7.0
15532         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
15533         addition.
15534         * doc/posix-functions/open_wmemstream.texi: Likewise.
15535         * doc/posix-functions/wcsnlen.texi: Likewise.
15536         * doc/posix-functions/wcsnrtombs.texi: Likewise.
15537         * doc/posix-functions/wcstod.texi: Likewise.
15538         * doc/posix-functions/wcstof.texi: Likewise.
15539         * doc/posix-functions/wcstoimax.texi: Likewise.
15540         * doc/posix-functions/wcstok.texi: Likewise.
15541         * doc/posix-functions/wcstoumax.texi: Likewise.
15542
15543         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
15544         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
15545         * doc/posix-functions/fprintf.texi: Update.
15546         * doc/posix-functions/printf.texi: Update.
15547         * doc/posix-functions/snprintf.texi: Update.
15548         * doc/posix-functions/sprintf.texi: Update.
15549         * doc/posix-functions/vfprintf.texi: Update.
15550         * doc/posix-functions/vprintf.texi: Update.
15551         * doc/posix-functions/vsnprintf.texi: Update.
15552         * doc/posix-functions/vsprintf.texi: Update.
15553         * doc/glibc-functions/obstack_printf.texi: Update.
15554         * doc/glibc-functions/obstack_vprintf.texi: Update.
15555
15556 2009-02-26  Eric Blake  <ebb9@byu.net>
15557
15558         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
15559         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
15560         compilation bug by using runtime conversion.
15561         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
15562         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
15563         * modules/ceill-tests (Files): Use nan.h.
15564         * modules/floorl-tests (Files): Likewise.
15565         * modules/frexpl-tests (Files): Likewise.
15566         * modules/isnanl-tests (Files): Likewise.
15567         * modules/ldexpl-tests (Files): Likewise.
15568         * modules/roundl-tests (Files): Likewise.
15569         * modules/truncl-tests (Files): Likewise.
15570         * tests/test-ceill.c (main): Use a working NaN.
15571         * tests/test-floorl.c (main): Likewise.
15572         * tests/test-frexpl.c (main): Likewise.
15573         * tests/test-isnan.c (test_long_double): Likewise.
15574         * tests/test-isnanl.h (main): Likewise.
15575         * tests/test-ldexpl.h (main): Likewise.
15576         * tests/test-roundl.h (main): Likewise.
15577         * tests/test-truncl.h (main): Likewise.
15578         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
15579
15580 2009-02-26  Eric Blake  <ebb9@byu.net>
15581             Bruno Haible  <bruno@clisp.org>
15582
15583         Work around a *printf bug with %ls on Solaris.
15584         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
15585         precision is specified, sprintf stops converting the wide string
15586         argument when the number of bytes that have been produced by this
15587         conversion equals or exceeds the precision.
15588         * doc/posix-functions/fprintf.texi: Update.
15589         * doc/posix-functions/printf.texi: Update.
15590         * doc/posix-functions/snprintf.texi: Update.
15591         * doc/posix-functions/sprintf.texi: Update.
15592         * doc/posix-functions/vfprintf.texi: Update.
15593         * doc/posix-functions/vprintf.texi: Update.
15594         * doc/posix-functions/vsnprintf.texi: Update.
15595         * doc/posix-functions/vsprintf.texi: Update.
15596         * doc/glibc-functions/obstack_printf.texi: Update.
15597         * doc/glibc-functions/obstack_vprintf.texi: Update.
15598
15599 2009-02-26  Eric Blake  <ebb9@byu.net>
15600
15601         stdlib: favor compiler check of random.h
15602         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
15603         to avoid an ObjC random.h installed by Swarm.
15604
15605 2009-02-26  Bruno Haible  <bruno@clisp.org>
15606
15607         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
15608         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
15609         Reported by Gary V. Vaughan <gary@gnu.org>.
15610
15611 2009-02-26  Bruno Haible  <bruno@clisp.org>
15612
15613         Fix *printf behaviour regarding the %ls directive.
15614         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
15615         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
15616         NEED_PRINTF_DIRECTIVE_LS.
15617         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
15618         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
15619         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
15620         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
15621         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
15622         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
15623         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
15624         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
15625         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
15626         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
15627         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
15628         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
15629         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
15630         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
15631         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
15632         * doc/posix-functions/fprintf.texi: Update.
15633         * doc/posix-functions/printf.texi: Update.
15634         * doc/posix-functions/snprintf.texi: Update.
15635         * doc/posix-functions/sprintf.texi: Update.
15636         * doc/posix-functions/vfprintf.texi: Update.
15637         * doc/posix-functions/vprintf.texi: Update.
15638         * doc/posix-functions/vsnprintf.texi: Update.
15639         * doc/posix-functions/vsprintf.texi: Update.
15640         * doc/glibc-functions/obstack_printf.texi: Update.
15641         * doc/glibc-functions/obstack_vprintf.texi: Update.
15642         Reported by Eric Blake.
15643
15644 2009-02-25  Bruno Haible  <bruno@clisp.org>
15645
15646         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
15647         with known value.
15648         Reported by Gary V. Vaughan <gary@gnu.org>.
15649
15650 2009-02-25  Bruno Haible  <bruno@clisp.org>
15651
15652         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
15653         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
15654         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
15655         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
15656         Reported by Gary V. Vaughan <gary@gnu.org>.
15657
15658 2009-02-25  Bruno Haible  <bruno@clisp.org>
15659
15660         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
15661         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
15662         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
15663         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
15664         Reported by Gary V. Vaughan <gary@gnu.org>.
15665
15666 2009-02-25  Eric Blake  <ebb9@byu.net>
15667
15668         tests: skip fseek/ftell tests if ungetc is broken
15669         * m4/ungetc.m4: New file.
15670         * modules/fseek-tests: Split test, so ungetc dependency is
15671         separate from rest of test.
15672         * modules/fseeko-tests: Likewise.
15673         * modules/ftell-tests: Likewise.
15674         * modules/ftello-tests: Likewise.
15675         * tests/test-fseek.c (main): Isolate ungetc dependency.
15676         * tests/test-fseeko.c (main): Likewise.
15677         * tests/test-ftell.c (main): Likewise.
15678         * tests/test-ftello.c (main): Likewise.
15679         * tests/test-fseek2.sh: New file.
15680         * tests/test-fseeko2.sh: Likewise.
15681         * tests/test-ftell2.sh: Likewise.
15682         * tests/test-ftello2.sh: Likewise.
15683
15684 2009-02-25  Ondřej Vašík  <ovasik@redhat.com>
15685
15686         test-getaddrinfo: fix usage of skip return code 77
15687         * tests/test-gettaddrinfo.c: Return skip code 77 only
15688         for first occurance of skip (4x77 is not 77)
15689
15690 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
15691
15692         strtod: avoid C99 decl-after-statement
15693         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
15694
15695 2009-02-24  Eric Blake  <ebb9@byu.net>
15696
15697         strtod: detect HP-UX 11.31 bug
15698         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
15699         Reported by Gary V. Vaughan.
15700
15701 2009-02-23  Bruno Haible  <bruno@clisp.org>
15702
15703         Fix invalid read past end of memory block.
15704         * lib/vasnprintf.c (DCHAR_SET): Define.
15705         (local_wcslen): Define only when needed.
15706         (local_strnlen, local_wcsnlen): New functions.
15707         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
15708         directives that involve a conversion ourselves.
15709         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
15710         wcsnlen, mbrtowc, wcrtomb.
15711         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
15712         * tests/test-vasprintf-posix.c (test_function): Likewise.
15713         * tests/test-snprintf-posix.h (test_function): Likewise.
15714         * tests/test-sprintf-posix.h (test_function): Likewise.
15715         Reported by Ben Pfaff <blp@cs.stanford.edu>.
15716
15717 2009-02-22  Bruno Haible  <bruno@clisp.org>
15718
15719         Implement new clarified decomposition of Hangul syllables.
15720         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
15721         of type LTV, return only a pairwise decomposition.
15722         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
15723         Likewise.
15724         * tests/uninorm/test-decomposition.c (main): Updated expected result.
15725         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
15726         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
15727
15728 2009-02-22  Bruno Haible  <bruno@clisp.org>
15729
15730         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
15731         zero-length results and shrink excess allocated memory.
15732         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
15733         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
15734         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
15735         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
15736         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
15737         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
15738         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
15739         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
15740         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
15741         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
15742         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
15743         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
15744
15745 2009-02-21  Bruno Haible  <bruno@clisp.org>
15746
15747         * doc/gnulib.texi: Include safe-alloc.texi earlier.
15748         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
15749         spaces after a period. Put a space between a macro name and its
15750         argument list. Trivial rewordings.
15751         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
15752         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
15753         (main): Return 0 explicitly.
15754
15755 2009-02-21  Bruno Haible  <bruno@clisp.org>
15756
15757         Tests for module 'uninorm/filter'.
15758         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
15759         * modules/uninorm/filter-tests: New file.
15760
15761         New module 'uninorm/filter'.
15762         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
15763         uninorm_filter_flush, uninorm_filter_free): New declarations.
15764         * lib/uninorm/uninorm-filter.c: New file.
15765         * modules/uninorm/filter: New file.
15766
15767 2009-02-21  Bruno Haible  <bruno@clisp.org>
15768
15769         Tests for module 'uninorm/nfkc'.
15770         * tests/uninorm/test-nfkc.c: New file.
15771         * tests/uninorm/test-u8-nfkc.c: New file.
15772         * tests/uninorm/test-u16-nfkc.c: New file.
15773         * tests/uninorm/test-u32-nfkc.c: New file.
15774         * tests/uninorm/test-u32-nfkc-big.sh: New file.
15775         * tests/uninorm/test-u32-nfkc-big.c: New file.
15776         * modules/uninorm/nfkc-tests: New file.
15777
15778         New module 'uninorm/nfkc'.
15779         * lib/uninorm/nfkc.c: New file.
15780         * modules/uninorm/nfkc: New file.
15781
15782         Tests for module 'uninorm/nfkd'.
15783         * tests/uninorm/test-nfkd.c: New file.
15784         * tests/uninorm/test-u8-nfkd.c: New file.
15785         * tests/uninorm/test-u16-nfkd.c: New file.
15786         * tests/uninorm/test-u32-nfkd.c: New file.
15787         * tests/uninorm/test-u32-nfkd-big.sh: New file.
15788         * tests/uninorm/test-u32-nfkd-big.c: New file.
15789         * modules/uninorm/nfkd-tests: New file.
15790
15791         New module 'uninorm/nfkd'.
15792         * lib/uninorm/nfkd.c: New file.
15793         * modules/uninorm/nfkd: New file.
15794
15795         Tests for module 'uninorm/nfc'.
15796         * tests/uninorm/test-nfc.c: New file.
15797         * tests/uninorm/test-u8-nfc.c: New file.
15798         * tests/uninorm/test-u16-nfc.c: New file.
15799         * tests/uninorm/test-u32-nfc.c: New file.
15800         * tests/uninorm/test-u32-nfc-big.sh: New file.
15801         * tests/uninorm/test-u32-nfc-big.c: New file.
15802         * modules/uninorm/nfc-tests: New file.
15803
15804         New module 'uninorm/nfc'.
15805         * lib/uninorm/nfc.c: New file.
15806         * modules/uninorm/nfc: New file.
15807
15808         Tests for module 'uninorm/nfd'.
15809         * tests/uninorm/test-nfd.c: New file.
15810         * tests/uninorm/test-u8-nfd.c: New file.
15811         * tests/uninorm/test-u16-nfd.c: New file.
15812         * tests/uninorm/test-u32-nfd.c: New file.
15813         * tests/uninorm/test-u32-nfd-big.sh: New file.
15814         * tests/uninorm/test-u32-nfd-big.c: New file.
15815         * tests/uninorm/test-u32-normalize-big.h: New file.
15816         * tests/uninorm/test-u32-normalize-big.c: New file.
15817         * tests/uninorm/NormalizationTest.txt: New file, created from
15818         Unicode 5.1.0 NormalizationTest.txt.
15819         * modules/uninorm/nfd-tests: New file.
15820
15821         New module 'uninorm/nfd'.
15822         * lib/uninorm/nfd.c: New file.
15823         * modules/uninorm/nfd: New file.
15824
15825         New module 'uninorm/u32-normalize'.
15826         * lib/uninorm/u32-normalize.c: New file.
15827         * modules/uninorm/u32-normalize: New file.
15828
15829         New module 'uninorm/u16-normalize'.
15830         * lib/uninorm/u16-normalize.c: New file.
15831         * modules/uninorm/u16-normalize: New file.
15832
15833         New module 'uninorm/u8-normalize'.
15834         * lib/uninorm/u8-normalize.c: New file.
15835         * lib/uninorm/normalize-internal.h: New file.
15836         * lib/uninorm/u-normalize-internal.h: New file.
15837         * modules/uninorm/u8-normalize: New file.
15838
15839         New module 'uninorm/decompose-internal'.
15840         * lib/uninorm/decompose-internal.c: New file.
15841         * modules/uninorm/decompose-internal: New file.
15842
15843         Tests for module 'uninorm/composition'.
15844         * tests/uninorm/test-composition.c: New file.
15845         * modules/uninorm/composition-tests: New file.
15846
15847         New module 'uninorm/composition'.
15848         * lib/uninorm/composition.c: New file.
15849         * lib/uninorm/composition-table.gperf: New file, generated by
15850         gen-uni-tables.
15851         * modules/uninorm/composition: New file.
15852
15853         Tests for module 'uninorm/compat-decomposition'.
15854         * tests/uninorm/test-compat-decomposition.c: New file.
15855         * modules/uninorm/compat-decomposition-tests: New file.
15856
15857         New module 'uninorm/compat-decomposition'.
15858         * lib/uninorm/decompose-internal.h: New file.
15859         * lib/uninorm/compat-decomposition.c: New file.
15860         * modules/uninorm/compat-decomposition: New file.
15861
15862         Tests for module 'uninorm/canonical-decomposition'.
15863         * tests/uninorm/test-canonical-decomposition.c: New file.
15864         * modules/uninorm/canonical-decomposition-tests: New file.
15865
15866         New module 'uninorm/canonical-decomposition'.
15867         * lib/uninorm/canonical-decomposition.c: New file.
15868         * modules/uninorm/canonical-decomposition: New file.
15869
15870         Tests for module 'uninorm/decomposition'.
15871         * tests/uninorm/test-decomposition.c: New file.
15872         * modules/uninorm/decomposition-tests: New file.
15873
15874         New module 'uninorm/decomposition'.
15875         * lib/uninorm/decomposition.c: New file.
15876         * modules/uninorm/decomposition: New file.
15877
15878         New module 'uninorm/decomposition-table'.
15879         * lib/uninorm/decomposition-table.h: New file.
15880         * lib/uninorm/decomposition-table.c: New file.
15881         * lib/uninorm/decomposition-table1.h: New file, generated by
15882         gen-uni-tables.
15883         * lib/uninorm/decomposition-table2.h: New file, generated by
15884         gen-uni-tables.
15885         * modules/uninorm/decomposition-table: New file.
15886
15887         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
15888         (UC_DECOMP_*): New enumeration items.
15889         (get_decomposition): New function.
15890         (struct decomp_table): New type.
15891         (output_decomposition, output_decomposition_tables): New functions.
15892         (unicode_composition_exclusions): New variable.
15893         (fill_composition_exclusions, debug_output_composition_tables): New
15894         functions.
15895         (main): Accept one more argument. Invoke fill_composition_exclusions.
15896         Output decomposition and composition tables.
15897
15898         New module 'uninorm/base'.
15899         * lib/uninorm.h: New file.
15900         * lib/unictype.h: Update comment.
15901         * modules/uninorm/base: New file.
15902
15903 2009-02-21  David Lutterkort  <lutter@redhat.com>
15904
15905         Tests for module 'safe-alloc'.
15906         * tests/test-safe-alloc.c: New file.
15907         * modules/safe-alloc-tests: New file.
15908
15909         New module 'safe-alloc'.
15910         * lib/safe-alloc.h: New file.
15911         * lib/safe-alloc.c: New file.
15912         * m4/safe-alloc.m4: New file.
15913         * modules/safe-alloc: New file.
15914         * doc/safe-alloc.texi: New file.
15915         * doc/gnulib.texi: Include it.
15916         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
15917         safe-alloc.
15918
15919 2009-02-18  Bruno Haible  <bruno@clisp.org>
15920
15921         Fix link error on non-glibc systems.
15922         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
15923         variable.
15924         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15925
15926 2009-02-18  Jim Meyering  <meyering@redhat.com>
15927
15928         fts: avoid used-uninitialized error due to recent change
15929         * lib/fts.c (fts_read): Guard uses of the new member,
15930         parent->fts_n_dirs_remaining, since it's not relevant for
15931         the parent of a directory specified on the command-line.
15932
15933 2009-02-17  James Youngman  <jay@gnu.org>
15934             Bruno Haible  <bruno@clisp.org>
15935
15936         * m4/include_next.m4: Reformulate comment.
15937
15938 2009-02-16  Jim Meyering  <meyering@redhat.com>
15939
15940         fts: add #if guards so that the fts_lgpl module still builds
15941         * lib/fts.c: Guard just-added hash-table-using parts with
15942         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
15943         Reported by Simon Josefsson.
15944
15945 2009-02-15  Bruno Haible  <bruno@clisp.org>
15946
15947         * modules/array-mergesort-tests: New file.
15948         * tests/test-array-mergesort.c: New file.
15949
15950         New module 'array-mergesort'.
15951         * modules/array-mergesort: New file.
15952         * lib/array-mergesort.h: New file.
15953
15954 2009-02-15  Bruno Haible  <bruno@clisp.org>
15955
15956         Fix 2009-02-07 commit.
15957         * lib/gen-uni-tables.c (output_predicate, output_category,
15958         output_combclass, output_bidi_category, output_decimal_digit,
15959         output_digit, output_numeric, output_mirror, output_scripts,
15960         output_ident_category, output_simple_mapping): Fix format directives.
15961         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
15962
15963 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
15964
15965         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
15966         fixes are available from IBM.
15967
15968 2009-02-13  Jim Meyering  <meyering@redhat.com>
15969
15970         fts: arrange not to stat non-directories in more cases
15971         This makes GNU find (when it doesn't need to stat each file)
15972         *much* more efficient at traversing reiserfs file systems.
15973         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
15974         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
15975         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
15976         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
15977         (leaf_optimization_applies): New function.
15978         (LCO_hash, LCO_compare): New helper functions.
15979         (link_count_optimize_ok): New function.
15980         (fts_stat): Initialize new member (if dir).
15981         (fts_read): Decrement parent's fts_n_dirs_remaining count if
15982         we've just stat'ed a directory.  Skip the stat call when possible.
15983         ---
15984         Note this AFS-related exchange:
15985         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
15986         and note find's pioctl call in find/fstype.c.
15987         But that is necessary only if you want to enable the
15988         optimization for AFS, and for now, I don't.
15989
15990         fts: move a function definition "up" (no semantic change)
15991         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
15992         "up" to precede upcoming use of a related function.
15993
15994 2009-02-11  Jim Meyering  <meyering@redhat.com>
15995
15996         fts: correct internal computation of nlinks (optimization-related)
15997         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
15998         whether the current entry is a directory, so don't test it.
15999
16000 2009-02-10  Bruno Haible  <bruno@clisp.org>
16001
16002         Tests for module 'uniwbrk/ulc-wordbreaks'.
16003         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
16004         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
16005         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
16006
16007         Tests for module 'uniwbrk/u32-wordbreaks'.
16008         * modules/uniwbrk/u32-wordbreaks-tests: New file.
16009         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
16010
16011         Tests for module 'uniwbrk/u16-wordbreaks'.
16012         * modules/uniwbrk/u16-wordbreaks-tests: New file.
16013         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
16014
16015         Tests for module 'uniwbrk/u8-wordbreaks'.
16016         * modules/uniwbrk/u8-wordbreaks-tests: New file.
16017         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
16018
16019 2009-02-10  Bruno Haible  <bruno@clisp.org>
16020
16021         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
16022         property.
16023         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
16024         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
16025         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
16026
16027 2009-02-10  Simon Josefsson  <simon@josefsson.org>
16028
16029         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
16030         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
16031
16032 2009-02-10  Bruno Haible  <bruno@clisp.org>
16033
16034         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
16035         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
16036         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
16037         * lib/unilbrk/u8-possible-linebreaks.c: Update.
16038         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
16039         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
16040
16041 2009-02-09  Simon Josefsson  <simon@josefsson.org>
16042
16043         * lib/sockets.h (gl_fd_to_handle): New function.
16044
16045         * tests/test-sockets.c: Call gl_fd_to_handle.
16046
16047 2009-02-09  Bruno Haible  <bruno@clisp.org>
16048
16049         * doc/havelib.texi: Document the conventions on bi-arch systems.
16050
16051 2009-02-08  Bruno Haible  <bruno@clisp.org>
16052
16053         Document the AC_LIB_LINKFLAGS macro.
16054         * doc/havelib.texi: New file, mostly written on 2005-05-24.
16055         * doc/gnulib.texi: Include it.
16056
16057 2009-02-08  Bruno Haible  <bruno@clisp.org>
16058
16059         Fix wrong order of sections, compared to TOC.
16060         * doc/gnulib.texi: Include relocatable-maint.texi after the
16061         "Regular expressions" node, not before.
16062
16063 2009-02-08  Bruno Haible  <bruno@clisp.org>
16064
16065         Tests for module 'unicase/totitle'.
16066         * modules/unicase/totitle-tests: New file.
16067
16068         Tests for module 'unicase/tolower'.
16069         * modules/unicase/tolower-tests: New file.
16070
16071         Tests for module 'unicase/toupper'.
16072         * modules/unicase/toupper-tests: New file.
16073         * tests/unicase/test-mapping-part1.h: New file.
16074         * tests/unicase/test-mapping-part2.h: New file.
16075
16076         New module 'unicase/totitle'.
16077         * modules/unicase/totitle: New file.
16078         * lib/unicase/totitle.c: New file.
16079
16080         New module 'unicase/tolower'.
16081         * modules/unicase/tolower: New file.
16082         * lib/unicase/tolower.c: New file.
16083
16084         New module 'unicase/toupper'.
16085         * modules/unicase/toupper: New file.
16086         * lib/unicase/toupper.c: New file.
16087         * lib/unicase/simple-mapping.h: New file.
16088
16089         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
16090         (mapping_table): New structure.
16091         (output_simple_mapping): New function.
16092         (main): Invoke output_simple_mapping_test and output_simple_mapping.
16093         * modules/gen-uni-tables (Description): Update.
16094         * lib/unicase/toupper.h: New file, automatically generated by
16095         gen-uni-tables.
16096         * lib/unicase/tolower.h: New file, automatically generated by
16097         gen-uni-tables.
16098         * lib/unicase/totitle.h: New file, automatically generated by
16099         gen-uni-tables.
16100         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
16101         gen-uni-tables.
16102         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
16103         gen-uni-tables.
16104         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
16105         gen-uni-tables.
16106
16107         New module 'unicase/base'.
16108         * modules/unicase/base: New file.
16109         * lib/unicase.h: New file.
16110
16111 2009-02-08  Bruno Haible  <bruno@clisp.org>
16112
16113         New module 'uniwbrk/ulc-wordbreaks'.
16114         * modules/uniwbrk/ulc-wordbreaks: New file.
16115         * lib/uniwbrk/ulc-wordbreaks.c: New file.
16116
16117         New module 'uniwbrk/u32-wordbreaks'.
16118         * modules/uniwbrk/u32-wordbreaks: New file.
16119         * lib/uniwbrk/u32-wordbreaks.c: New file.
16120
16121         New module 'uniwbrk/u16-wordbreaks'.
16122         * modules/uniwbrk/u16-wordbreaks: New file.
16123         * lib/uniwbrk/u16-wordbreaks.c: New file.
16124
16125         New module 'uniwbrk/u8-wordbreaks'.
16126         * modules/uniwbrk/u8-wordbreaks: New file.
16127         * lib/uniwbrk/u8-wordbreaks.c: New file.
16128         * lib/uniwbrk/u-wordbreaks.h: New file.
16129
16130         New module 'uniwbrk/table'.
16131         * modules/uniwbrk/table: New file.
16132         * lib/uniwbrk/wbrktable.h: New file.
16133         * lib/uniwbrk/wbrktable.c: New file.
16134
16135         New module 'uniwbrk/wordbreak-property'.
16136         * modules/uniwbrk/wordbreak-property: New file.
16137         * lib/uniwbrk/wordbreak-property.c: New file.
16138
16139         * lib/gen-uni-tables.c (WBP_*): New enum items.
16140         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
16141         (unicode_org_wbp): New variable.
16142         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
16143         New functions.
16144         (wbp_table): New structure.
16145         (output_wbp, output_wbrk_tables): New functions.
16146         (main): Accept additional argument. Invoke fill_org_wbp,
16147         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
16148         output_wbrk_tables.
16149         * modules/gen-uni-tables (Description): Update.
16150         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
16151         gen-uni-tables.
16152
16153         New module 'uniwbrk/base'.
16154         * modules/uniwbrk/base: New file.
16155         * lib/uniwbrk.h: New file.
16156
16157 2009-02-08  Bruno Haible  <bruno@clisp.org>
16158
16159         Update to Unicode 5.1.0.
16160         * lib/gen-uni-tables.c (is_property_alphabetic): Include
16161         U+2185..U+2188.
16162         (is_property_default_ignorable_code_point): Don't include characters
16163         of category Cc or Cs and not-a-characters.
16164         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
16165         U+0D79, U+109E, U+109F, U+A60C.
16166         * lib/unictype/bidi_of.h: Regenerated.
16167         * lib/unictype/blocks.h: Regenerated.
16168         * lib/unictype/categ_C.h: Regenerated.
16169         * lib/unictype/categ_Cf.h: Regenerated.
16170         * lib/unictype/categ_Cn.h: Regenerated.
16171         * lib/unictype/categ_L.h: Regenerated.
16172         * lib/unictype/categ_Ll.h: Regenerated.
16173         * lib/unictype/categ_Lm.h: Regenerated.
16174         * lib/unictype/categ_Lo.h: Regenerated.
16175         * lib/unictype/categ_Lu.h: Regenerated.
16176         * lib/unictype/categ_M.h: Regenerated.
16177         * lib/unictype/categ_Mc.h: Regenerated.
16178         * lib/unictype/categ_Me.h: Regenerated.
16179         * lib/unictype/categ_Mn.h: Regenerated.
16180         * lib/unictype/categ_N.h: Regenerated.
16181         * lib/unictype/categ_Nd.h: Regenerated.
16182         * lib/unictype/categ_Nl.h: Regenerated.
16183         * lib/unictype/categ_No.h: Regenerated.
16184         * lib/unictype/categ_P.h: Regenerated.
16185         * lib/unictype/categ_Pd.h: Regenerated.
16186         * lib/unictype/categ_Pe.h: Regenerated.
16187         * lib/unictype/categ_Pf.h: Regenerated.
16188         * lib/unictype/categ_Pi.h: Regenerated.
16189         * lib/unictype/categ_Po.h: Regenerated.
16190         * lib/unictype/categ_Ps.h: Regenerated.
16191         * lib/unictype/categ_S.h: Regenerated.
16192         * lib/unictype/categ_Sk.h: Regenerated.
16193         * lib/unictype/categ_Sm.h: Regenerated.
16194         * lib/unictype/categ_So.h: Regenerated.
16195         * lib/unictype/categ_of.h: Regenerated.
16196         * lib/unictype/combining.h: Regenerated.
16197         * lib/unictype/ctype_alnum.h: Regenerated.
16198         * lib/unictype/ctype_alpha.h: Regenerated.
16199         * lib/unictype/ctype_graph.h: Regenerated.
16200         * lib/unictype/ctype_lower.h: Regenerated.
16201         * lib/unictype/ctype_print.h: Regenerated.
16202         * lib/unictype/ctype_punct.h: Regenerated.
16203         * lib/unictype/ctype_upper.h: Regenerated.
16204         * lib/unictype/decdigit.h: Regenerated.
16205         * lib/unictype/digit.h: Regenerated.
16206         * lib/unictype/mirror.h: Regenerated.
16207         * lib/unictype/numeric.h: Regenerated.
16208         * lib/unictype/pr_alphabetic.h: Regenerated.
16209         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
16210         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
16211         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
16212         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
16213         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
16214         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
16215         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
16216         * lib/unictype/pr_combining.h: Regenerated.
16217         * lib/unictype/pr_dash.h: Regenerated.
16218         * lib/unictype/pr_decimal_digit.h: Regenerated.
16219         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
16220         * lib/unictype/pr_deprecated.h: Regenerated.
16221         * lib/unictype/pr_diacritic.h: Regenerated.
16222         * lib/unictype/pr_extender.h: Regenerated.
16223         * lib/unictype/pr_format_control.h: Regenerated.
16224         * lib/unictype/pr_grapheme_base.h: Regenerated.
16225         * lib/unictype/pr_grapheme_extend.h: Regenerated.
16226         * lib/unictype/pr_grapheme_link.h: Regenerated.
16227         * lib/unictype/pr_id_continue.h: Regenerated.
16228         * lib/unictype/pr_id_start.h: Regenerated.
16229         * lib/unictype/pr_ideographic.h: Regenerated.
16230         * lib/unictype/pr_ignorable_control.h: Regenerated.
16231         * lib/unictype/pr_lowercase.h: Regenerated.
16232         * lib/unictype/pr_math.h: Regenerated.
16233         * lib/unictype/pr_numeric.h: Regenerated.
16234         * lib/unictype/pr_other_alphabetic.h: Regenerated.
16235         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
16236         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
16237         * lib/unictype/pr_other_id_continue.h: Regenerated.
16238         * lib/unictype/pr_other_lowercase.h: Regenerated.
16239         * lib/unictype/pr_other_math.h: Regenerated.
16240         * lib/unictype/pr_punctuation.h: Regenerated.
16241         * lib/unictype/pr_sentence_terminal.h: Regenerated.
16242         * lib/unictype/pr_soft_dotted.h: Regenerated.
16243         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
16244         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
16245         * lib/unictype/pr_unified_ideograph.h: Regenerated.
16246         * lib/unictype/pr_uppercase.h: Regenerated.
16247         * lib/unictype/pr_xid_continue.h: Regenerated.
16248         * lib/unictype/pr_xid_start.h: Regenerated.
16249         * lib/unictype/pr_zero_width.h: Regenerated.
16250         * lib/unictype/scripts.h: Regenerated.
16251         * lib/unictype/scripts_byname.gperf: Regenerated.
16252         * lib/unictype/sy_java_ident.h: Regenerated.
16253         * lib/unilbrk/lbrkprop1.h: Regenerated.
16254         * lib/unilbrk/lbrkprop2.h: Regenerated.
16255         * tests/unictype/test-categ_C.c: Regenerated.
16256         * tests/unictype/test-categ_Cf.c: Regenerated.
16257         * tests/unictype/test-categ_Cn.c: Regenerated.
16258         * tests/unictype/test-categ_L.c: Regenerated.
16259         * tests/unictype/test-categ_Ll.c: Regenerated.
16260         * tests/unictype/test-categ_Lm.c: Regenerated.
16261         * tests/unictype/test-categ_Lo.c: Regenerated.
16262         * tests/unictype/test-categ_Lu.c: Regenerated.
16263         * tests/unictype/test-categ_M.c: Regenerated.
16264         * tests/unictype/test-categ_Mc.c: Regenerated.
16265         * tests/unictype/test-categ_Me.c: Regenerated.
16266         * tests/unictype/test-categ_Mn.c: Regenerated.
16267         * tests/unictype/test-categ_N.c: Regenerated.
16268         * tests/unictype/test-categ_Nd.c: Regenerated.
16269         * tests/unictype/test-categ_Nl.c: Regenerated.
16270         * tests/unictype/test-categ_No.c: Regenerated.
16271         * tests/unictype/test-categ_P.c: Regenerated.
16272         * tests/unictype/test-categ_Pd.c: Regenerated.
16273         * tests/unictype/test-categ_Pe.c: Regenerated.
16274         * tests/unictype/test-categ_Pf.c: Regenerated.
16275         * tests/unictype/test-categ_Pi.c: Regenerated.
16276         * tests/unictype/test-categ_Po.c: Regenerated.
16277         * tests/unictype/test-categ_Ps.c: Regenerated.
16278         * tests/unictype/test-categ_S.c: Regenerated.
16279         * tests/unictype/test-categ_Sk.c: Regenerated.
16280         * tests/unictype/test-categ_Sm.c: Regenerated.
16281         * tests/unictype/test-categ_So.c: Regenerated.
16282         * tests/unictype/test-ctype_alnum.c: Regenerated.
16283         * tests/unictype/test-ctype_alpha.c: Regenerated.
16284         * tests/unictype/test-ctype_graph.c: Regenerated.
16285         * tests/unictype/test-ctype_lower.c: Regenerated.
16286         * tests/unictype/test-ctype_print.c: Regenerated.
16287         * tests/unictype/test-ctype_punct.c: Regenerated.
16288         * tests/unictype/test-ctype_upper.c: Regenerated.
16289         * tests/unictype/test-decdigit.h: Regenerated.
16290         * tests/unictype/test-digit.h: Regenerated.
16291         * tests/unictype/test-numeric.h: Regenerated.
16292         * tests/unictype/test-pr_alphabetic.c: Regenerated.
16293         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
16294         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
16295         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
16296         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
16297         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
16298         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
16299         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
16300         * tests/unictype/test-pr_combining.c: Regenerated.
16301         * tests/unictype/test-pr_dash.c: Regenerated.
16302         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
16303         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
16304         * tests/unictype/test-pr_deprecated.c: Regenerated.
16305         * tests/unictype/test-pr_diacritic.c: Regenerated.
16306         * tests/unictype/test-pr_extender.c: Regenerated.
16307         * tests/unictype/test-pr_format_control.c: Regenerated.
16308         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
16309         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
16310         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
16311         * tests/unictype/test-pr_id_continue.c: Regenerated.
16312         * tests/unictype/test-pr_id_start.c: Regenerated.
16313         * tests/unictype/test-pr_ideographic.c: Regenerated.
16314         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
16315         * tests/unictype/test-pr_lowercase.c: Regenerated.
16316         * tests/unictype/test-pr_math.c: Regenerated.
16317         * tests/unictype/test-pr_numeric.c: Regenerated.
16318         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
16319         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
16320         Regenerated.
16321         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
16322         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
16323         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
16324         * tests/unictype/test-pr_other_math.c: Regenerated.
16325         * tests/unictype/test-pr_punctuation.c: Regenerated.
16326         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
16327         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
16328         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
16329         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
16330         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
16331         * tests/unictype/test-pr_uppercase.c: Regenerated.
16332         * tests/unictype/test-pr_xid_continue.c: Regenerated.
16333         * tests/unictype/test-pr_xid_start.c: Regenerated.
16334         * tests/unictype/test-pr_zero_width.c: Regenerated.
16335
16336         Update to Unicode 5.1.0.
16337         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
16338         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
16339         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
16340         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
16341         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
16342         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
16343         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
16344         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
16345         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
16346         (nonspacing_table_ind): Update.
16347         * tests/uniwidth/test-uc_width2.sh: Update expected result.
16348
16349         Update to Unicode 5.1.0.
16350         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
16351         code transform.
16352         * lib/uniname/uniname.c (unicode_character_name,
16353         unicode_name_character): Add the range 0x1Fxxx to the code transform.
16354         * lib/uniname/uninames.h: Regenerated.
16355         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
16356
16357 2009-02-07  Bruno Haible  <bruno@clisp.org>
16358
16359         Merge gen-ctype and gen-lbrk into a single program.
16360         * lib/gen-uni-tables.c: New file, incorporating
16361         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
16362         Add directory prefixes to the names of the generated files.
16363         * lib/unictype/gen-ctype.c: Remove file.
16364         * lib/unilbrk/gen-lbrk.c: Remove file.
16365         * modules/gen-uni-tables: New file.
16366         * modules/unictype/gen-ctype: Remove file.
16367         * modules/unilbrk/gen-lbrk: Remove file.
16368
16369 2009-02-07  Bruno Haible  <bruno@clisp.org>
16370
16371         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
16372
16373         New module 'unistr/u32-strcoll'.
16374         * modules/unistr/u32-strcoll: New file.
16375         * lib/unistr/u32-strcoll.c: New file.
16376
16377         New module 'unistr/u16-strcoll'.
16378         * modules/unistr/u16-strcoll: New file.
16379         * lib/unistr/u16-strcoll.c: New file.
16380
16381         New module 'unistr/u8-strcoll'.
16382         * modules/unistr/u8-strcoll: New file.
16383         * lib/unistr/u8-strcoll.c: New file.
16384         * lib/unistr/u-strcoll.h: New file.
16385
16386 2009-02-07  Bruno Haible  <bruno@clisp.org>
16387
16388         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
16389         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
16390         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
16391         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
16392         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
16393         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
16394
16395 2009-02-07  Bruno Haible  <bruno@clisp.org>
16396
16397         Make 64-bit clean.
16398         * lib/unictype/gen-ctype.c (output_predicate, output_category,
16399         output_combclass, output_bidi_category, output_decimal_digit,
16400         output_digit, output_numeric, output_mirror, output_scripts,
16401         output_ident_category): Use proper width specifier in format strings.
16402
16403 2009-02-07  Bruno Haible  <bruno@clisp.org>
16404
16405         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
16406         failure behaviour.
16407
16408 2009-02-07  Jim Meyering  <meyering@redhat.com>
16409
16410         regex: avoid compilation failure with upcoming gcc-4.4
16411         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
16412         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
16413         "... error: integer overflow in preprocessor expression".
16414
16415 2009-02-05  Ben Pfaff  <blp@gnu.org>
16416
16417         Fix link errors on Windows when close module is used.
16418         * modules/close: Add $(LIB_CLOSE) to Link section.
16419         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
16420         $(LIB_CLOSE) on Windows.
16421
16422 2009-02-05  Jim Meyering  <meyering@redhat.com>
16423
16424         still avoid unused-parameter warnings, but do it cleanly
16425         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
16426         (get_fs_usage): Cast to void instead.
16427         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
16428         (dev_from_mount_options, read_file_system_list): Cast to void.
16429         Prompted by Bruno Haible.
16430
16431 2009-02-04  Jim Meyering  <meyering@redhat.com>
16432
16433         fsusage.c: correct copyright year
16434         * lib/fsusage.c: Reflect year in which the change is pushed into
16435
16436         avoid misc. warnings
16437         * lib/fsusage.c (UNUSED_PARAM): Define.
16438         (get_fs_usage): Mark parameter "disk" as unused.
16439         * lib/getugroups.c (getgrent): Use "void" in prototype.
16440         * lib/mountlist.c: Mark unused parameters.
16441         (read_file_system_list): Declare a local with "const".
16442         * lib/nanosleep.c (getnow): Declare static.
16443         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
16444
16445         dirfd: set errno upon failure
16446         * lib/dirfd.c: Include <errno.h>.
16447         Set errno to ENOTSUP when returning -1.
16448         * modules/dirfd (Depends-on): Add errno.
16449         Suggested by John Kodis <kodis@comcast.net>.
16450
16451 2009-02-01  Bruno Haible  <bruno@clisp.org>
16452
16453         Don't assume sizeof (long) >= sizeof (void *).
16454         * lib/memcmp.c: Include stdint.h.
16455         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
16456         srcp2 to 'const byte *'.
16457         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
16458         types to uintptr_t.
16459         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
16460         * modules/memcmp (Depends-on): Add stdint.
16461         Reported by Ozkan Sezer <sezeroz@gmail.com>.
16462
16463 2009-01-30  Eric Blake  <ebb9@byu.net>
16464
16465         fix more require-before-expand issues
16466         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
16467         expand, AC_PROG_AWK.
16468         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
16469
16470 2009-01-28  Eric Blake  <ebb9@byu.net>
16471
16472         version-etc: use consistent URL formatting
16473         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
16474         Improve formatting.  Use fputs for string without %.
16475
16476 2009-01-28  Jim Meyering  <meyering@redhat.com>
16477
16478         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
16479         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
16480         "underquoted definition of NAME" from autoconf-2.59.
16481
16482 2009-01-28  Bruno Haible  <bruno@clisp.org>
16483
16484         * doc/gnulib.texi: Add "Obsolete modules" to index.
16485
16486 2009-01-28  Jim Meyering  <meyering@redhat.com>
16487
16488         useless-if-before-free: recognize more variants
16489         * build-aux/useless-if-before-free: Also recognize e.g.,
16490         if (NULL != p) free (p);
16491
16492 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
16493
16494         test-getaddrinfo: skip (don't fail) this test when there's no network
16495         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
16496         on the presumption that it means you lack network access.
16497
16498 2009-01-26  Jim Meyering  <meyering@redhat.com>
16499
16500         fflush: avoid warnings on modern systems
16501         * lib/fflush.c (rpl_fflush): Move declarations of locals,
16502         pos and result, into scopes where they're used.
16503
16504 2009-01-26  Eric Blake  <ebb9@byu.net>
16505
16506         Silence warning reintroduced by recent extensions patch.
16507         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
16508         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
16509         autoconf.
16510
16511         Backport improved autoconf semantics of AC_DEFUN_ONCE.
16512         * m4/00gnulib.m4: New file.
16513         * gnulib-tool (func_get_filelist): Always use it.
16514         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
16515         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
16516
16517 2009-01-25  Bruno Haible  <bruno@clisp.org>
16518
16519         Make test-quotearg work on MacOS X and AIX.
16520         * tests/test-quotearg.sh: New file.
16521         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
16522         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
16523         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
16524         include <libintl.h>.
16525         (fake_locale): Remove variable.
16526         (gettext, dgettext, dcgettext): Remove functions.
16527         (main): Instead of setting a fake locale, set a real locale. Call
16528         textdomain and bindtextdomain.
16529         * modules/quotearg-tests (Files): Add the new files.
16530         (Depends-on): Add gettext, setenv, unsetenv.
16531         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
16532         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
16533         Augment TESTS_ENVIRONMENT.
16534
16535 2009-01-25  Bruno Haible  <bruno@clisp.org>
16536
16537         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
16538         fr_FR.ISO8859-1 locale on MacOS X.
16539         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
16540         ja_JP.eucJP locale on MacOS X.
16541         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
16542         zh_CN.GB18030 locale on MacOS X.
16543
16544 2009-01-25  Bruno Haible  <bruno@clisp.org>
16545
16546         Avoid link errors on MacOS X 10.3.
16547         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
16548         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
16549
16550 2009-01-25  Bruno Haible  <bruno@clisp.org>
16551
16552         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
16553         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
16554         * modules/pipe (Files): Remove m4/posix_spawn.m4.
16555         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
16556         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
16557         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
16558         posix_spawnattr_init, posix_spawnattr_setsigmask,
16559         posix_spawnattr_setflags, posix_spawnattr_destroy.
16560
16561         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
16562         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
16563         * modules/execute (Files): Remove m4/posix_spawn.m4.
16564         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
16565         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
16566         posix_spawnattr_init, posix_spawnattr_setsigmask,
16567         posix_spawnattr_setflags, posix_spawnattr_destroy.
16568
16569 2009-01-25  Bruno Haible  <bruno@clisp.org>
16570
16571         * lib/glthread/threadlib.c: Include <stdlib.h>.
16572
16573 2009-01-25  Bruno Haible  <bruno@clisp.org>
16574
16575         * lib/glthread/threadlib.c (dummy): New declaration.
16576
16577 2009-01-25  Bruno Haible  <bruno@clisp.org>
16578
16579         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
16580         multibyte characters also for the GB18030 encoding. Don't crash when
16581         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
16582
16583 2009-01-25  Bruno Haible  <bruno@clisp.org>
16584
16585         Avoid redefining 'struct random_data' on OSF/1 5.1.
16586         * lib/stdlib.in.h: Include <random.h> if it exists.
16587         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
16588         HAVE_RANDOM_H. Include <random.h> when testing whether
16589         'struct random_data' exists.
16590         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
16591
16592 2009-01-25  Bruno Haible  <bruno@clisp.org>
16593
16594         Don't install charset.alias on MacOS X >= 10.3.
16595         * lib/localcharset.c (DARWIN7): New macro.
16596         (get_charset_aliases): Hardcode the result for Darwin7.
16597         * modules/localcharset (install-exec-local): Don't install
16598         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
16599
16600 2009-01-25  Bruno Haible  <bruno@clisp.org>
16601
16602         Don't install charset.alias on mingw and Cygwin.
16603         * modules/localcharset (install-exec-local): Don't install
16604         charset.alias on mingw and Cygwin, if the file does not yet exist.
16605         The result for these platforms is hardcoded in localcharset.c.
16606
16607 2009-01-25  Bruno Haible  <bruno@clisp.org>
16608
16609         Make it possible again to use AC_GNU_SOURCE together with gnulib.
16610         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
16611         before requiring AC_USE_SYSTEM_EXTENSIONS.
16612
16613 2009-01-25  Jim Meyering  <meyering@redhat.com>
16614
16615         c-strtod: avoid warnings
16616         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
16617         "assignment discards qualifiers from pointer target type" warnings.
16618
16619 2009-01-24  Bruno Haible  <bruno@clisp.org>
16620
16621         Add support for non-UTF-8 locales on MacOS X.
16622         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
16623         canonical encodings. For Darwin 7 and newer, don't map traditional
16624         encodings to UTF-8.
16625         Reported by Vincent Lefevre <vincent@vinc17.org>
16626         at <http://savannah.gnu.org/bugs/?25235>.
16627
16628 2009-01-24  Bruno Haible  <bruno@clisp.org>
16629
16630         * doc/gnulib.texi (Obsolete modules): New section.
16631         Reported by Mike Frysinger <vapier@gentoo.org>.
16632
16633 2009-01-24  Bruno Haible  <bruno@clisp.org>
16634
16635         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
16636         (%.dvi): New rule.
16637
16638 2009-01-24  Bruno Haible  <bruno@clisp.org>
16639
16640         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
16641         Reported by Eric Blake.
16642
16643 2009-01-24  Bruno Haible  <bruno@clisp.org>
16644
16645         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
16646         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
16647         Reported by Gary V. Vaughan <gary@gnu.org>.
16648
16649 2009-01-24  Bruno Haible  <bruno@clisp.org>
16650
16651         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
16652
16653 2009-01-23  Bruno Haible  <bruno@clisp.org>
16654
16655         Make c-strtod, c-strtold usable in libraries.
16656         * lib/c-strtod.c: Include string.h instead of xalloc.h.
16657         (C_STRTOD): Call strdup instead of xstrdup.
16658         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
16659         * modules/c-strtold (Depends-on): Likewise.
16660         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
16661         * NEWS: Mention the change.
16662         Reported by Michael Gold <mgold@ncf.ca>.
16663
16664 2009-01-23  Jim Meyering  <meyering@redhat.com>
16665
16666         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
16667         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
16668         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
16669
16670 2009-01-23  Simon Josefsson  <simon@josefsson.org>
16671
16672         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
16673         GNU CoreUtils.
16674         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
16675         * modules/version-etc (Description): Update.
16676
16677 2009-01-22  Bruno Haible  <bruno@clisp.org>
16678
16679         Cache the C locale object.
16680         * lib/c-strtod.c (c_locale_cache): New variable.
16681         (c_locale): New function.
16682         (C_STRTOD): Use it, and don't call freelocale.
16683         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
16684         Suggested by Paolo Bonzini.
16685
16686 2009-01-21  Bruno Haible  <bruno@clisp.org>
16687
16688         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
16689         conditions other than overflow.
16690
16691 2009-01-21  Bruno Haible  <bruno@clisp.org>
16692
16693         * lib/c-strtod.c: Include errno.h.
16694         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
16695         value from STRTOD_L and STRTOD.
16696
16697 2009-01-21  Bruno Haible  <bruno@clisp.org>
16698         and Jim Meyering  <meyering@redhat.com>
16699
16700         nanosleep: skip configure test (fail it) for apple universal builds
16701         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
16702         universal builds, assume that nanosleep does not work.
16703         * modules/nanosleep (Depends-on): Add multiarch.
16704
16705         mktime: skip configure test (fail it) for apple universal builds
16706         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
16707         universal builds, assume that mktime does not work.
16708         * modules/mktime (Depends-on): Add multiarch.
16709
16710 2009-01-21  Eric Blake  <ebb9@byu.net>
16711
16712         multiarch: avoid expand-before-require warning
16713         * modules/multiarch (configure.ac): Require, rather than expand,
16714         gl_MULTIARCH.
16715         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
16716         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
16717         enforce that all clients require it.  Partial reversion of
16718         2008-12-29 patch.
16719
16720         error: avoid expand-before-require warning
16721         * modules/errno (configure.ac): Require, rather than expand,
16722         gl_HEADER_ERRNO_H.
16723         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
16724         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
16725         enforce that all clients require it.
16726
16727         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
16728         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
16729         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
16730         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
16731
16732 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
16733
16734         Revert:
16735         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
16736
16737         regex: do not depend on obsolete modules.
16738         * modules/regex: Remove memcmp and memmove.
16739
16740 2009-01-20  Bruno Haible  <bruno@clisp.org>
16741
16742         Make the 'link' module link on Windows NT 4.
16743         * lib/link.c (_WIN32_WINNT): Don't define.
16744         (CreateHardLinkFuncType): New type.
16745         (CreateHardLinkFunc, initialized): New variables.
16746         (initialize): New function.
16747         (link): Invoke CreateHardLink indirectly through the function pointer.
16748
16749 2009-01-20  Bruno Haible  <bruno@clisp.org>
16750
16751         Fix compilation failure on mingw.
16752         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
16753
16754 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
16755
16756         * doc/c-strtod.texi: Mention a couple of restrictions.
16757
16758 2009-01-20  Jim Meyering  <meyering@redhat.com>
16759
16760         gettimeofday: move more declarations out of functions
16761         * lib/gettimeofday.c: Move extern declarations of tzset and
16762         gmtime out of containing functions.  Prompted by Bruno Haible.
16763
16764 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
16765
16766         regex: do not depend on obsolete modules.
16767         * modules/regex: Remove memcmp and memmove.
16768
16769 2009-01-19  Bruno Haible  <bruno@clisp.org>
16770
16771         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
16772         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
16773         gl_BIGENDIAN, not AC_C_BIGENDIAN.
16774         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
16775         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
16776
16777 2009-01-19  Bruno Haible  <bruno@clisp.org>
16778
16779         * tests/test-link.c: Include <errno.h>.
16780         (main): Exit with code 77 when a hard link cannot be created due to
16781         the file system.
16782         * tests/test-link.sh: Skip test when a hard link cannot be created due
16783         to the file system.
16784         Suggested by Eric Blake.
16785
16786 2009-01-19  Martin Lambers  <marlam@marlam.de>
16787
16788         * modules/link-tests: New file.
16789         * tests/test-link.sh: New file.
16790         * tests/test-link.c: New file.
16791
16792 2009-01-19  Eric Blake  <ebb9@byu.net>
16793
16794         doc: mention another function added in cygwin 1.7.0
16795         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
16796         Another new function in cygwin 1.7.
16797
16798 2009-01-19  Bruno Haible  <bruno@clisp.org>
16799
16800         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
16801         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
16802         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
16803         gl_BIGENDIAN, not AC_C_BIGENDIAN.
16804         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
16805         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
16806         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
16807         * m4/md4.m4 (gl_MD4): Likewise.
16808         * m4/md5.m4 (gl_MD5): Likewise.
16809         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
16810         * m4/sha1.m4 (gl_SHA1): Likewise.
16811         * m4/sha256.m4 (gl_SHA256): Likewise.
16812         * m4/sha512.m4 (gl_SHA512): Likewise.
16813
16814 2009-01-19  Bruno Haible  <bruno@clisp.org>
16815
16816         * modules/uniname/uniname-tests (Depends-on): Add progname.
16817         * tests/uniname/test-uninames.c: Include progname.h.
16818         (main): Call set_program_name.
16819
16820         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
16821         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
16822         (main): Call set_program_name.
16823
16824         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
16825         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
16826         (main): Call set_program_name.
16827
16828         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
16829         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
16830         (main): Call set_program_name.
16831
16832         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
16833         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
16834         (main): Call set_program_name.
16835
16836         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
16837         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
16838         (main): Call set_program_name.
16839
16840         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
16841         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
16842         (main): Call set_program_name.
16843
16844         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
16845         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
16846         (main): Call set_program_name.
16847
16848         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
16849         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
16850         (main): Call set_program_name.
16851
16852 2009-01-19  Eric Blake  <ebb9@byu.net>
16853
16854         test-unistd: test previous patch
16855         * tests/test-unistd.c: Test *_FILENO macros.
16856
16857         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
16858         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
16859         Guarantee a definition.
16860         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
16861         * modules/unistd-safer (Depends-on): Add dependency on unistd.
16862         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
16863         * lib/dup-safer.c (STDERR_FILENO): Likewise.
16864         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
16865         Likewise.
16866         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
16867         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
16868         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
16869         Likewise.
16870         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
16871         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
16872         (STDERR_FILENO): Likewise.
16873         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
16874         (STDERR_FILENO): Likewise.
16875         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
16876         (STDERR_FILENO): Likewise.
16877         Reported by Elbert Pol.
16878
16879 2009-01-19  Eric Blake  <ebb9@byu.net>
16880
16881         doc: mention more functions added in cygwin 1.7.0
16882         * doc/posix-functions/abort.texi (abort): Update wording related
16883         to cygwin.
16884         * doc/posix-functions/daylight.texi (daylight): Likewise.
16885         * doc/posix-functions/optarg.texi (optarg): Likewise.
16886         * doc/posix-functions/optarg.texi (opterr): Likewise.
16887         * doc/posix-functions/optarg.texi (optind): Likewise.
16888         * doc/posix-functions/optarg.texi (optopt): Likewise.
16889         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
16890         worked in 1.5.x, and was withdrawn in 1.7.
16891         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
16892         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
16893         cygwin versions.
16894         * doc/posix-functions/perror.texi (perror): Likewise.
16895         * doc/posix-functions/printf.texi (printf): Likewise.
16896         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
16897         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
16898         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
16899         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
16900         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
16901         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
16902         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
16903         Likewise.
16904         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
16905         Likewise.
16906         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
16907         this function.
16908         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
16909         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
16910         Likewise.
16911         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
16912         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
16913         * doc/posix-functions/confstr.texi (confstr): Likewise.
16914         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
16915         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
16916         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
16917         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
16918         * doc/posix-functions/fputws.texi (fputws): Likewise.
16919         * doc/posix-functions/fwide.texi (fwide): Likewise.
16920         * doc/posix-functions/getwc.texi (getwc): Likewise.
16921         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
16922         * doc/posix-functions/putwc.texi (putwc): Likewise.
16923         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
16924         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
16925         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
16926         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
16927         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
16928         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
16929         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
16930         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
16931         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
16932         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
16933         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
16934
16935 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
16936
16937         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
16938         * lib/ioctl.c: Include <sys/ioctl.h>.
16939
16940 2009-01-19  Simon Josefsson  <simon@josefsson.org>
16941
16942         * modules/getdate-tests (Depends-on): Add progname.
16943         * tests/test-getdate.c: Use progname module, to avoid link errors
16944         on non-glibc systems.
16945
16946 2009-01-18  Simon Josefsson  <simon@josefsson.org>
16947
16948         * modules/filenamecat-tests (Depends-on): Add progname.
16949         * modules/fstrcmp-tests (Depends-on): Likewise.
16950
16951         * tests/test-filenamecat.c: Use progname module, to avoid link
16952         errors on non-glibc systems.
16953         * tests/test-fstrcmp.c: Likewise.
16954
16955 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
16956
16957         gettimeofday: avoid warning: nested extern declaration of 'localtime'
16958         * lib/gettimeofday.c: Move extern declaration out of function.
16959
16960 2009-01-18  Bruno Haible  <bruno@clisp.org>
16961
16962         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
16963         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
16964         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
16965
16966 2009-01-18  Bruno Haible  <bruno@clisp.org>
16967
16968         * lib/strftime.c (MEMPCPY): Remove unused macro.
16969         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
16970
16971 2009-01-18  Martin Lambers  <marlam@marlam.de>
16972
16973         New module 'link'.
16974         * lib/unistd.in.h (link): New declaration.
16975         * lib/link.c: New file.
16976         * m4/link.m4: New file.
16977         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
16978         HAVE_LINK.
16979         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
16980         * modules/link: New file.
16981         * doc/posix-functions/link.texi: Mention the new module.
16982
16983 2009-01-18  Bruno Haible  <bruno@clisp.org>
16984
16985         * tests/test-avltree_list.c (main): Call set_program_name.
16986         * tests/test-avltree_oset.c (main): Likewise.
16987         * tests/test-obstack-printf.c: Include progname.h.
16988         (main): Call set_program_name.
16989         * tests/test-quotearg.c: Include progname.h.
16990         (main): Call set_program_name.
16991         * tests/test-xmemdup0.c: Include progname.h.
16992         (main): Call set_program_name.
16993
16994 2009-01-18  Bruno Haible  <bruno@clisp.org>
16995
16996         New module 'alphasort'.
16997         * lib/dirent.in.h (alphasort): New declaration.
16998         * lib/alphasort.c: New file, from glibc with modifications.
16999         * m4/alphasort.m4: New file.
17000         * modules/alphasort: New file.
17001         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
17002         HAVE_ALPHASORT.
17003         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
17004         HAVE_ALPHASORT.
17005         * doc/posix-functions/alphasort.texi: Mention the new module and the
17006         portability problems.
17007
17008 2009-01-18  Bruno Haible  <bruno@clisp.org>
17009
17010         New module 'scandir'.
17011         * lib/dirent.in.h (scandir): New declaration.
17012         * lib/scandir.c: New file, from glibc with modifications.
17013         * m4/scandir.m4: New file.
17014         * modules/scandir: New file.
17015         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
17016         HAVE_SCANDIR.
17017         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
17018         HAVE_SCANDIR.
17019         * doc/posix-functions/scandir.texi: Mention the new module and the
17020         portability problems.
17021
17022 2009-01-17  Bruno Haible  <bruno@clisp.org>
17023
17024         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
17025         Update documentation.
17026         (func_remove_suffix): Escape all dots in the suffix. Update
17027         documentation.
17028         (func_filter_filelist): Update documentation.
17029         Reported by Ralf Wildenhues.
17030
17031 2009-01-17  Bruno Haible  <bruno@clisp.org>
17032
17033         * modules/dprintf-posix-tests: New file.
17034         * tests/test-dprintf-posix.sh: New file.
17035         * tests/test-dprintf-posix.c: New file.
17036
17037         New modules 'dprintf', 'dprintf-posix'.
17038         * lib/stdio.in.h (dprintf): New declaration.
17039         * lib/dprintf.c: New file.
17040         * m4/dprintf.m4: New file.
17041         * m4/dprintf-posix.m4: New file.
17042         * modules/dprintf: New file.
17043         * modules/dprintf-posix: New file.
17044         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
17045         HAVE_DPRINTF, REPLACE_DPRINTF.
17046         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
17047         HAVE_DPRINTF, REPLACE_DPRINTF.
17048         * doc/posix-functions/dprintf.texi: Mention the new modules.
17049
17050 2009-01-17  Bruno Haible  <bruno@clisp.org>
17051
17052         * modules/vdprintf-posix-tests: New file.
17053         * tests/test-vdprintf-posix.sh: New file.
17054         * tests/test-vdprintf-posix.c: New file.
17055
17056         New modules 'vdprintf', 'vdprintf-posix'.
17057         * lib/stdio.in.h (vdprintf): New declaration.
17058         * lib/vdprintf.c: New file.
17059         * m4/vdprintf.m4: New file.
17060         * m4/vdprintf-posix.m4: New file.
17061         * modules/vdprintf: New file.
17062         * modules/vdprintf-posix: New file.
17063         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
17064         HAVE_VDPRINTF, REPLACE_VDPRINTF.
17065         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
17066         HAVE_VDPRINTF, REPLACE_VDPRINTF.
17067         * doc/posix-functions/vdprintf.texi: Mention the new modules.
17068
17069 2009-01-17  Bruno Haible  <bruno@clisp.org>
17070
17071         Fix replacement of fopen on mingw.
17072         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
17073         mingw.
17074
17075 2009-01-17  Bruno Haible  <bruno@clisp.org>
17076
17077         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
17078         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
17079
17080 2009-01-17  Bruno Haible  <bruno@clisp.org>
17081
17082         Avoid test-fflush2.sh failure on mingw.
17083         * tests/test-fflush2.c: Include binary-io.h.
17084         (main): Put standard input into binary mode.
17085         * modules/fflush-tests (Depends-on): Add binary-io.
17086
17087 2009-01-17  Bruno Haible  <bruno@clisp.org>
17088
17089         * lib/wchar.in.h: In another particular situation, include only the
17090         system's <wchar.h> file.
17091         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
17092         Reported by Albert Chin-A-Young <china@thewrittenword.com>
17093         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
17094
17095 2009-01-17  Bruno Haible  <bruno@clisp.org>
17096
17097         Support for stripping executables in --enable-relocatable.
17098         * build-aux/install-reloc: Expect one more argument, or an environment
17099         variable RELOC_STRIP_PROG. If set, strip the destination program and
17100         its wrapper.
17101         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
17102         RELOC_STRIP_PROG.
17103         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
17104         to set RELOCATABLE_STRIP.
17105         * NEWS: Mention the new Makefile requirement.
17106
17107 2009-01-17  Bruno Haible  <bruno@clisp.org>
17108
17109         * build-aux/install-reloc: Remove debugging information left over by
17110         C compiler on MacOS X.
17111
17112 2009-01-17  Bruno Haible  <bruno@clisp.org>
17113
17114         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
17115         * lib/progreloc.c (find_executable): Fix type of pointer passed to
17116         _NSGetExecutablePath.
17117
17118 2009-01-16  Jim Meyering  <meyering@redhat.com>
17119
17120         strerror: avoid warnings about discarding "const"
17121         * lib/strerror.c (rpl_strerror): Instead of returning a const
17122         string from each and every "case", use a variable, and add a single
17123         cast after the switch.
17124
17125 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
17126
17127         * lib/arpa_inet.in.h: Add extern "C" block for C++.
17128
17129 2009-01-16  Bruno Haible  <bruno@clisp.org>
17130
17131         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
17132         array initializer syntax that also works in C++ mode.
17133         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17134
17135 2009-01-16  Jim Meyering  <meyering@redhat.com>
17136
17137         poll: suppress a warning
17138         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
17139         to ignore "...unsigned expression < 0 is always false" warnings.
17140
17141 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
17142
17143         poll: remove declarations of unused variables
17144         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
17145         sockbuf and optlen.
17146
17147 2009-01-15  Bruno Haible  <bruno@clisp.org>
17148
17149         Make fflush-after-ungetc POSIX compliant on BSD systems.
17150         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
17151         (clear_ungetc_buffer): Implement also for other systems.
17152         (rpl_fflush): On glibc systems, invoke
17153         clear_ungetc_buffer_preserving_position. Otherwise, invoke
17154         clear_ungetc_buffer after fetching the stream's position, not before.
17155
17156 2009-01-15  Bruno Haible  <bruno@clisp.org>
17157
17158         Make fflush-after-ungetc POSIX compliant on glibc systems.
17159         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
17160         after ungetc.
17161         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
17162         (rpl_fflush): On glibc systems, simply call the system's fflush
17163         function after clearing the ungetc buffer.
17164         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
17165         Instead, lseek only to the end of file, then use the system's fseeko
17166         for the rest. On glibc systems, reset the EOF indicator bit.
17167
17168 2009-01-15  Jim Meyering  <meyering@redhat.com>
17169
17170         openmp.m4: revert quote-adding change, for portability to older autoconf
17171         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
17172         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
17173         Simon Josefsson noticed the problem when using autoconf-2.61.
17174
17175 2009-01-15  Bruno Haible  <bruno@clisp.org>
17176
17177         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
17178         * tests/test-fflush2.c (ASSERT): Always fail.
17179         (main): Add two tests for fflush() after ungetc(), taking into account
17180         the Austin Group's clarification.
17181         Suggested by Eric Blake.
17182
17183 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
17184
17185         mktime.m4: remove K&R-style function prototypes
17186         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
17187         for the Sun C++ compiler.
17188
17189 2009-01-14  Bruno Haible  <bruno@clisp.org>
17190
17191         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
17192         while including <wchar.h>.
17193         * lib/wchar.in.h: In two particular situations on HP-UX, include only
17194         the system's <wchar.h> file.
17195         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17196
17197 2009-01-14  Bruno Haible  <bruno@clisp.org>
17198
17199         * m4/csharp.m4: Don't mention gettext on the serial number line.
17200         * m4/csharpexec.m4: Likewise.
17201         * m4/eaccess.m4: Likewise.
17202         * m4/javaexec.m4: Likewise.
17203         * m4/sig_atomic_t.m4: Likewise.
17204         * m4/tmpdir.m4: Likewise.
17205         * m4/intldir.m4: Bump gettext version.
17206         * m4/lib-ld.m4: Likewise.
17207
17208 2009-01-14  Bruno Haible  <bruno@clisp.org>
17209
17210         * lib/progname.c (set_program_name): Add more comments.
17211         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
17212
17213 2009-01-14  Simon Josefsson  <simon@josefsson.org>
17214
17215         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
17216         were sys/stat.h does not define it.
17217
17218 2009-01-14  Jim Meyering  <meyering@redhat.com>
17219
17220         many *.m4 files: improve m4 quoting
17221         99% of this change was performed by running the following commands:
17222         git ls-files | grep '\.m4$' | xargs perl -pi \
17223           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
17224           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
17225           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
17226           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
17227         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
17228         The remainder were to add Copyright dates, increment serial numbers,
17229         undo some changes in comments, exclude m4/intl.m4, and add quotes
17230         around the "1" in ",1" where the unusual spacing prohibited the
17231         above regexps from doing the job.  For more details, see
17232         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
17233         * m4/acl.m4: Modified.
17234         * m4/afs.m4: Likewise.
17235         * m4/alloca.m4: Likewise.
17236         * m4/argp.m4: Likewise.
17237         * m4/argz.m4: Likewise.
17238         * m4/atexit.m4: Likewise.
17239         * m4/bison-i18n.m4: Likewise.
17240         * m4/bison.m4: Likewise.
17241         * m4/byteswap.m4: Likewise.
17242         * m4/c-stack.m4: Likewise.
17243         * m4/c-strtod.m4: Likewise.
17244         * m4/calloc.m4: Likewise.
17245         * m4/canonicalize-lgpl.m4: Likewise.
17246         * m4/chown.m4: Likewise.
17247         * m4/clock_time.m4: Likewise.
17248         * m4/codeset.m4: Likewise.
17249         * m4/copy-file.m4: Likewise.
17250         * m4/csharp.m4: Likewise.
17251         * m4/csharpcomp.m4: Likewise.
17252         * m4/csharpexec.m4: Likewise.
17253         * m4/d-ino.m4: Likewise.
17254         * m4/d-type.m4: Likewise.
17255         * m4/dirfd.m4: Likewise.
17256         * m4/double-slash-root.m4: Likewise.
17257         * m4/eaccess.m4: Likewise.
17258         * m4/eealloc.m4: Likewise.
17259         * m4/environ.m4: Likewise.
17260         * m4/errno_h.m4: Likewise.
17261         * m4/euidaccess.m4: Likewise.
17262         * m4/execute.m4: Likewise.
17263         * m4/fatal-signal.m4: Likewise.
17264         * m4/fchdir.m4: Likewise.
17265         * m4/fcntl_h.m4: Likewise.
17266         * m4/fileblocks.m4: Likewise.
17267         * m4/filenamecat.m4: Likewise.
17268         * m4/findprog.m4: Likewise.
17269         * m4/flexmember.m4: Likewise.
17270         * m4/fnmatch.m4: Likewise.
17271         * m4/fopen.m4: Likewise.
17272         * m4/fpending.m4: Likewise.
17273         * m4/fprintf-posix.m4: Likewise.
17274         * m4/free.m4: Likewise.
17275         * m4/frexp.m4: Likewise.
17276         * m4/frexpl.m4: Likewise.
17277         * m4/fsusage.m4: Likewise.
17278         * m4/ftruncate.m4: Likewise.
17279         * m4/gc-camellia.m4: Likewise.
17280         * m4/gc-random.m4: Likewise.
17281         * m4/gc.m4: Likewise.
17282         * m4/getaddrinfo.m4: Likewise.
17283         * m4/getcwd-abort-bug.m4: Likewise.
17284         * m4/getcwd-path-max.m4: Likewise.
17285         * m4/getdate.m4: Likewise.
17286         * m4/getdomainname.m4: Likewise.
17287         * m4/getgroups.m4: Likewise.
17288         * m4/gethostname.m4: Likewise.
17289         * m4/gethrxtime.m4: Likewise.
17290         * m4/getline.m4: Likewise.
17291         * m4/getloadavg.m4: Likewise.
17292         * m4/getndelim2.m4: Likewise.
17293         * m4/getpass.m4: Likewise.
17294         * m4/gettext.m4: Likewise.
17295         * m4/gettime.m4: Likewise.
17296         * m4/gettimeofday.m4: Likewise.
17297         * m4/gnulib-common.m4: Likewise.
17298         * m4/group-member.m4: Likewise.
17299         * m4/host-os.m4: Likewise.
17300         * m4/iconv.m4: Likewise.
17301         * m4/iconv_open.m4: Likewise.
17302         * m4/inet_ntop.m4: Likewise.
17303         * m4/inet_pton.m4: Likewise.
17304         * m4/inline.m4: Likewise.
17305         * m4/intldir.m4: Likewise.
17306         * m4/intlmacosx.m4: Likewise.
17307         * m4/intmax.m4: Likewise.
17308         * m4/intmax_t.m4: Likewise.
17309         * m4/inttypes.m4: Likewise.
17310         * m4/inttypes_h.m4: Likewise.
17311         * m4/inttypes-pri.m4: Likewise.
17312         * m4/isapipe.m4: Likewise.
17313         * m4/isnand.m4: Likewise.
17314         * m4/isnanf.m4: Likewise.
17315         * m4/isnanl.m4: Likewise.
17316         * m4/javacomp.m4: Likewise.
17317         * m4/javaexec.m4: Likewise.
17318         * m4/jm-winsz1.m4: Likewise.
17319         * m4/jm-winsz2.m4: Likewise.
17320         * m4/lchown.m4: Likewise.
17321         * m4/lcmessage.m4: Likewise.
17322         * m4/ldexpl.m4: Likewise.
17323         * m4/lib-ld.m4: Likewise.
17324         * m4/lib-link.m4: Likewise.
17325         * m4/libsigsegv.m4: Likewise.
17326         * m4/link-follow.m4: Likewise.
17327         * m4/localcharset.m4: Likewise.
17328         * m4/locale-fr.m4: Likewise.
17329         * m4/locale-ja.m4: Likewise.
17330         * m4/locale-tr.m4: Likewise.
17331         * m4/locale-zh.m4: Likewise.
17332         * m4/lock.m4: Likewise.
17333         * m4/longlong.m4: Likewise.
17334         * m4/ls-mntd-fs.m4: Likewise.
17335         * m4/lstat.m4: Likewise.
17336         * m4/malloc.m4: Likewise.
17337         * m4/mathl.m4: Likewise.
17338         * m4/mbrtowc.m4: Likewise.
17339         * m4/mbstate_t.m4: Likewise.
17340         * m4/mbswidth.m4: Likewise.
17341         * m4/memchr.m4: Likewise.
17342         * m4/memcmp.m4: Likewise.
17343         * m4/memcpy.m4: Likewise.
17344         * m4/memmem.m4: Likewise.
17345         * m4/memmove.m4: Likewise.
17346         * m4/mempcpy.m4: Likewise.
17347         * m4/memrchr.m4: Likewise.
17348         * m4/memset.m4: Likewise.
17349         * m4/minmax.m4: Likewise.
17350         * m4/mkdir-slash.m4: Likewise.
17351         * m4/mkdtemp.m4: Likewise.
17352         * m4/mktime.m4: Likewise.
17353         * m4/mmap-anon.m4: Likewise.
17354         * m4/mountlist.m4: Likewise.
17355         * m4/nanosleep.m4: Likewise.
17356         * m4/nls.m4: Likewise.
17357         * m4/nocrash.m4: Likewise.
17358         * m4/open.m4: Likewise.
17359         * m4/openat.m4: Likewise.
17360         * m4/openmp.m4: Likewise.
17361         * m4/pathmax.m4: Likewise.
17362         * m4/perl.m4: Likewise.
17363         * m4/physmem.m4: Likewise.
17364         * m4/pipe.m4: Likewise.
17365         * m4/po.m4: Likewise.
17366         * m4/poll.m4: Likewise.
17367         * m4/posixtm.m4: Likewise.
17368         * m4/posixver.m4: Likewise.
17369         * m4/printf-frexp.m4: Likewise.
17370         * m4/printf-frexpl.m4: Likewise.
17371         * m4/printf-posix.m4: Likewise.
17372         * m4/printf-posix-rpl.m4: Likewise.
17373         * m4/printf.m4: Likewise.
17374         * m4/progtest.m4: Likewise.
17375         * m4/putenv.m4: Likewise.
17376         * m4/readline.m4: Likewise.
17377         * m4/readlink.m4: Likewise.
17378         * m4/readutmp.m4: Likewise.
17379         * m4/realloc.m4: Likewise.
17380         * m4/regex.m4: Likewise.
17381         * m4/relocatable.m4: Likewise.
17382         * m4/relocatable-lib.m4: Likewise.
17383         * m4/rename-dest-slash.m4: Likewise.
17384         * m4/rename.m4: Likewise.
17385         * m4/rmdir-errno.m4: Likewise.
17386         * m4/rmdir.m4: Likewise.
17387         * m4/roundf.m4: Likewise.
17388         * m4/roundl.m4: Likewise.
17389         * m4/rpmatch.m4: Likewise.
17390         * m4/save-cwd.m4: Likewise.
17391         * m4/selinux-selinux-h.m4: Likewise.
17392         * m4/setenv.m4: Likewise.
17393         * m4/settime.m4: Likewise.
17394         * m4/sig2str.m4: Likewise.
17395         * m4/sig_atomic_t.m4: Likewise.
17396         * m4/signalblocking.m4: Likewise.
17397         * m4/signbit.m4: Likewise.
17398         * m4/sigpipe.m4: Likewise.
17399         * m4/sockets.m4: Likewise.
17400         * m4/sockpfaf.m4: Likewise.
17401         * m4/st_dm_mode.m4: Likewise.
17402         * m4/stat-time.m4: Likewise.
17403         * m4/stdbool.m4: Likewise.
17404         * m4/stdint.m4: Likewise.
17405         * m4/stdint_h.m4: Likewise.
17406         * m4/stpcpy.m4: Likewise.
17407         * m4/stpncpy.m4: Likewise.
17408         * m4/strcase.m4: Likewise.
17409         * m4/strchrnul.m4: Likewise.
17410         * m4/strcspn.m4: Likewise.
17411         * m4/strdup.m4: Likewise.
17412         * m4/strftime.m4: Likewise.
17413         * m4/strndup.m4: Likewise.
17414         * m4/strnlen.m4: Likewise.
17415         * m4/strpbrk.m4: Likewise.
17416         * m4/strptime.m4: Likewise.
17417         * m4/strsep.m4: Likewise.
17418         * m4/strtod.m4: Likewise.
17419         * m4/strtoimax.m4: Likewise.
17420         * m4/strtok_r.m4: Likewise.
17421         * m4/strtol.m4: Likewise.
17422         * m4/strtoll.m4: Likewise.
17423         * m4/strtoul.m4: Likewise.
17424         * m4/strtoull.m4: Likewise.
17425         * m4/strtoumax.m4: Likewise.
17426         * m4/strverscmp.m4: Likewise.
17427         * m4/threadlib.m4: Likewise.
17428         * m4/timegm.m4: Likewise.
17429         * m4/tm_gmtoff.m4: Likewise.
17430         * m4/tmpdir.m4: Likewise.
17431         * m4/tmpfile.m4: Likewise.
17432         * m4/tzset.m4: Likewise.
17433         * m4/uintmax_t.m4: Likewise.
17434         * m4/unlinkdir.m4: Likewise.
17435         * m4/unlocked-io.m4: Likewise.
17436         * m4/uptime.m4: Likewise.
17437         * m4/userspec.m4: Likewise.
17438         * m4/utimbuf.m4: Likewise.
17439         * m4/utime.m4: Likewise.
17440         * m4/utimes-null.m4: Likewise.
17441         * m4/utimes.m4: Likewise.
17442         * m4/vararrays.m4: Likewise.
17443         * m4/vasnprintf.m4: Likewise.
17444         * m4/vfprintf-posix.m4: Likewise.
17445         * m4/vprintf-posix.m4: Likewise.
17446         * m4/wait-process.m4: Likewise.
17447         * m4/wchar_t.m4: Likewise.
17448         * m4/wint_t.m4: Likewise.
17449         * m4/write-any-file.m4: Likewise.
17450         * m4/yield.m4: Likewise.
17451
17452 2009-01-13  Bruno Haible  <bruno@clisp.org>
17453
17454         Avoid test-copy-file.sh failures when ACL support insufficient.
17455         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
17456         TESTS_ENVIRONMENT.
17457         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
17458         Reported by Jim Meyering.
17459
17460 2009-01-13  Bruno Haible  <bruno@clisp.org>
17461
17462         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
17463         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
17464         * modules/unistdio/u8-printf-parse (Files): Likewise.
17465         * modules/unistdio/u32-printf-parse (Files): Likewise.
17466         * modules/unistdio/ulc-printf-parse (Files): Likewise.
17467
17468 2009-01-13  Simon Josefsson  <simon@josefsson.org>
17469
17470         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
17471         and m4/inttypes_h.m4 too.
17472
17473 2009-01-12  Eric Blake  <ebb9@byu.net>
17474
17475         tests: IRIX 6.2 cc can't compile -0.0 into .data
17476         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
17477         rather than at compile-time.
17478         * tests/test-floorl.c (minus_zero): Likewise.
17479         * tests/test-frexpl.c (minus_zero): Likewise.
17480         * tests/test-isnan.c (minus_zerol): Likewise.
17481         * tests/test-isnanl.h (minus_zero): Likewise.
17482         * tests/test-ldexpl.c (minus_zero): Likewise.
17483         * tests/test-roundl.c (minus_zero): Likewise.
17484         * tests/test-signbit.c (minus_zerol): Likewise.
17485         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
17486         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
17487         * tests/test-truncl.c (minus_zero): Likewise.
17488         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
17489         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
17490         Reported by Tom G. Christensen and Nelson H. F. Beebe.
17491
17492 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
17493
17494         regex: fix glibc bug 9697
17495         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
17496         handling.
17497
17498 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
17499
17500         regex: fix glibc bug 697
17501         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
17502         being NULL also if there are no backreferences.
17503
17504 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
17505
17506         regex: merge glibc changes
17507         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
17508         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
17509         re_string_skip_chars, re_string_reconstruct): Likewise.
17510         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
17511
17512 2009-01-07  Jim Meyering  <meyering@redhat.com>
17513
17514         poll: filter through cppi
17515         * lib/poll.c: Indent cpp directives to reflect nesting.
17516
17517 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
17518
17519         poll: don't return uninitialized
17520         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
17521
17522 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
17523
17524         avoid compile failure on AIX 6.1
17525         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
17526         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
17527
17528 2009-01-04  Jim Meyering  <meyering@redhat.com>
17529
17530         remove duplicate inclusion of <stdio.h>
17531         * tests/test-fprintf-posix.c: Likewise.
17532         * tests/test-printf-posix.c: Likewise.
17533         * tests/test-snprintf-posix.c: Likewise.
17534         * tests/test-sprintf-posix.c: Likewise.
17535         * tests/test-vasprintf-posix.c: Likewise.
17536         * tests/test-vfprintf-posix.c: Likewise.
17537         * tests/test-vprintf-posix.c: Likewise.
17538         * tests/test-vsnprintf-posix.c: Likewise.
17539         * tests/test-vsprintf-posix.c: Likewise.
17540
17541 2009-01-03  Jim Meyering  <meyering@redhat.com>
17542
17543         gnulib-tool: fix sed-based filtering
17544         * gnulib-tool (func_filter_filelist): Remove extra backslash
17545         in sed_fff_filter definition.
17546
17547 2009-01-02  Jim Meyering  <meyering@redhat.com>
17548
17549         strftime: avoid compilation failure on Solaris 2.6
17550         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
17551         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
17552         Don't #define mbrlen or mbsinit, since now they're guaranteed to
17553         be available.  Reported by Tom G. Christensen.  Details in
17554         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
17555
17556 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17557             Bruno Haible  <bruno@clisp.org>
17558
17559         Speed up gnulib-tool by doing more string processing through shell
17560         built-ins.
17561         * gnulib-tool (fast_func_append): New variable.
17562         (func_remove_prefix, func_remove_suffix): New functions.
17563         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
17564         (func_filter_filelist): New function.
17565         (func_get_dependencies): Use func_remove_suffix instead of sed.
17566         (func_get_automake_snippet): Use func_filter_filelist instead of a
17567         subshell and sed invocation.
17568
17569 2009-01-01  Bruno Haible  <bruno@clisp.org>
17570
17571         Fix a security bug.
17572         * gnulib-tool (func_import, import, update): Don't allow the characters
17573         '"', '$', '`', '\' in macro arguments that become part of commands that
17574         are evaluated.
17575
17576 2009-01-01  Bruno Haible  <bruno@clisp.org>
17577
17578         * gnulib-tool (func_reset_sigpipe): Add more comments.
17579
17580 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17581
17582         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
17583         func_emit_tests_Makefile_am, func_import): Abort loops early if we
17584         already know the answer.
17585
17586 2009-01-01  Jim Meyering  <meyering@redhat.com>
17587
17588         * lib/version-etc.c (version_etc_va): Update copyright year.
17589
17590 2008-12-30  Bruno Haible  <bruno@clisp.org>
17591
17592         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
17593         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
17594         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
17595
17596 2008-12-29  Eric Blake  <ebb9@byu.net>
17597
17598         multiarch: avoid autoconf AC_REQUIRE bug
17599         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
17600         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
17601         2.63 and older.
17602         Reported by Bruno Haible, and analyzed in
17603         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
17604
17605 2008-12-29  Bruno Haible  <bruno@clisp.org>
17606
17607         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
17608         files in subdirectories correctly.
17609         Reported by Ralf Wildenhues.
17610
17611 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17612
17613         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
17614         rather than 'join FILE -', for Solaris join.
17615
17616 2008-12-29  Bruno Haible  <bruno@clisp.org>
17617
17618         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
17619         quoting.
17620         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
17621         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
17622         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
17623         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
17624         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
17625         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
17626         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
17627         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
17628         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
17629         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
17630         * m4/nls.m4 (AM_NLS): Likewise.
17631         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
17632         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
17633         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
17634         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
17635         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
17636         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
17637         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
17638         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
17639         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
17640         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
17641         * m4/xsize.m4 (gl_XSIZE): Likewise.
17642         Suggested by Jim Meyering.
17643
17644 2008-11-17  Bruce Korb  <bkorb@gnu.org>
17645
17646         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
17647         * lib/parse-duration.c: use a switch instead of cascading if's.
17648
17649 2008-12-29  Eric Blake  <ebb9@byu.net>
17650
17651         wchar.h: supply WEOF on Irix 5.3
17652         * lib/wchar.in.h (wint_t): Also supply WEOF.
17653         * lib/wctype.in.h (wint_t): Likewise.
17654         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
17655         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
17656         Reported by Tom G. Christensen.
17657
17658 2008-12-26  Bruno Haible  <bruno@clisp.org>
17659
17660         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
17661         i486, i586, i686.
17662
17663 2008-12-26  Bruno Haible  <bruno@clisp.org>
17664
17665         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
17666
17667 2008-12-26  Bruno Haible  <bruno@clisp.org>
17668
17669         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
17670         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
17671         not __STDC_CONSTANT_MACROS.
17672         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
17673
17674 2008-12-25  Bruno Haible  <bruno@clisp.org>
17675
17676         Add support for universal builds to vasnprintf.
17677         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
17678         universal builds, guess no.
17679         * modules/vasnprintf-posix (Depends-on): Add multiarch.
17680         * modules/vasprintf-posix (Depends-on): Likewise.
17681         * modules/fprintf-posix (Depends-on): Likewise.
17682         * modules/vfprintf-posix (Depends-on): Likewise.
17683         * modules/snprintf-posix (Depends-on): Likewise.
17684         * modules/vsnprintf-posix (Depends-on): Likewise.
17685         * modules/sprintf-posix (Depends-on): Likewise.
17686         * modules/vsprintf-posix (Depends-on): Likewise.
17687         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
17688         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
17689         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
17690         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
17691         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
17692         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
17693         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
17694
17695         Add support for universal builds to <inttypes.h>.
17696         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
17697         _SCNu64_PREFIX): In Apple
17698         universal builds, define directly, using _LP64.
17699         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
17700         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
17701         * modules/inttypes (Depends-on): Add multiarch.
17702         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
17703
17704         Add support for universal builds to <stdint.h>.
17705         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
17706         universal builds, define directly, using _LP64.
17707         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
17708         Apple universal builds, don't test for the size and suffix of ptrdiff_t
17709         and size_t.
17710         * modules/stdint (Depends-on): Add multiarch.
17711         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
17712
17713         New module 'multiarch'.
17714         * modules/multiarch: New file.
17715         * m4/multiarch.m4: New file.
17716
17717 2008-12-25  Bruno Haible  <bruno@clisp.org>
17718
17719         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
17720
17721 2008-12-25  Bruno Haible  <bruno@clisp.org>
17722
17723         * modules/btowc (License): Relicense under LGPLv2+.
17724         * modules/mbsinit (License): Likewise.
17725         * modules/mbrtowc (License): Likewise.
17726         * modules/wcrtomb (License): Likewise.
17727         * modules/streq (License): Likewise.
17728         Reported by David Lutterkort <lutter@redhat.com>.
17729
17730 2008-12-23  Bruno Haible  <bruno@clisp.org>
17731
17732         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
17733
17734 2008-12-23  Bruno Haible  <bruno@clisp.org>
17735
17736         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
17737         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
17738         GETADDRINFO_LIB, not in LIBS.
17739         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
17740         * modules/canon-host (Link): Likewise.
17741         * NEWS: Mention the change.
17742         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
17743         GETADDRINFO_LIB.
17744
17745 2008-12-22  Bruno Haible  <bruno@clisp.org>
17746
17747         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
17748         * doc/posix-functions/iswalpha_l.texi: Likewise.
17749         * doc/posix-functions/iswblank_l.texi: Likewise.
17750         * doc/posix-functions/iswcntrl_l.texi: Likewise.
17751         * doc/posix-functions/iswctype_l.texi: Likewise.
17752         * doc/posix-functions/iswdigit_l.texi: Likewise.
17753         * doc/posix-functions/iswgraph_l.texi: Likewise.
17754         * doc/posix-functions/iswlower_l.texi: Likewise.
17755         * doc/posix-functions/iswprint_l.texi: Likewise.
17756         * doc/posix-functions/iswpunct_l.texi: Likewise.
17757         * doc/posix-functions/iswspace_l.texi: Likewise.
17758         * doc/posix-functions/iswupper_l.texi: Likewise.
17759         * doc/posix-functions/iswxdigit_l.texi: Likewise.
17760         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
17761         * doc/posix-functions/open_wmemstream.texi: Likewise.
17762         * doc/posix-functions/swscanf.texi: Likewise.
17763         * doc/posix-functions/towctrans_l.texi: Likewise.
17764         * doc/posix-functions/towlower.texi: Likewise.
17765         * doc/posix-functions/towlower_l.texi: Likewise.
17766         * doc/posix-functions/towupper.texi: Likewise.
17767         * doc/posix-functions/towupper_l.texi: Likewise.
17768         * doc/posix-functions/vfwprintf.texi: Likewise.
17769         * doc/posix-functions/vfwscanf.texi: Likewise.
17770         * doc/posix-functions/vswscanf.texi: Likewise.
17771         * doc/posix-functions/vwprintf.texi: Likewise.
17772         * doc/posix-functions/vwscanf.texi: Likewise.
17773         * doc/posix-functions/wcpcpy.texi: Likewise.
17774         * doc/posix-functions/wcpncpy.texi: Likewise.
17775         * doc/posix-functions/wcscasecmp.texi: Likewise.
17776         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
17777         * doc/posix-functions/wcscoll_l.texi: Likewise.
17778         * doc/posix-functions/wcsdup.texi: Likewise.
17779         * doc/posix-functions/wcsncasecmp.texi: Likewise.
17780         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
17781         * doc/posix-functions/wcsnlen.texi: Likewise.
17782         * doc/posix-functions/wcsnrtombs.texi: Likewise.
17783         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
17784         * doc/posix-functions/wctrans_l.texi: Likewise.
17785         * doc/posix-functions/wctype_l.texi: Likewise.
17786         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
17787         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
17788         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
17789         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
17790         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
17791         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
17792         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
17793         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
17794         * doc/glibc-functions/wcschrnul.texi: Likewise.
17795         * doc/glibc-functions/wcsftime_l.texi: Likewise.
17796         * doc/glibc-functions/wcstod_l.texi: Likewise.
17797         * doc/glibc-functions/wcstof_l.texi: Likewise.
17798         * doc/glibc-functions/wcstol_l.texi: Likewise.
17799         * doc/glibc-functions/wcstold_l.texi: Likewise.
17800         * doc/glibc-functions/wcstoll_l.texi: Likewise.
17801         * doc/glibc-functions/wcstoq.texi: Likewise.
17802         * doc/glibc-functions/wcstoul_l.texi: Likewise.
17803         * doc/glibc-functions/wcstoull_l.texi: Likewise.
17804         * doc/glibc-functions/wcstouq.texi: Likewise.
17805         * doc/glibc-functions/wmempcpy.texi: Likewise.
17806
17807 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
17808             Eric Blake  <ebb9@byu.net>
17809             Paolo Bonzini  <bonzini@gnu.org>
17810             Bruno Haible  <bruno@clisp.org>
17811
17812         Make c-stack work on Haiku.
17813         * lib/c-stack.c (SA_ONSTACK): Define fallback.
17814         (c_stack_action): Use SA_ONSTACK flag.
17815
17816 2008-12-22  Bruno Haible  <bruno@clisp.org>
17817
17818         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
17819
17820 2008-12-22  Bruno Haible  <bruno@clisp.org>
17821
17822         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
17823         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
17824         being overridden.
17825         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
17826         New macros.
17827         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
17828         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
17829         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
17830         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
17831
17832 2008-12-22  Bruno Haible  <bruno@clisp.org>
17833
17834         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
17835         from test code.
17836
17837 2008-12-22  Eric Blake  <ebb9@byu.net>
17838
17839         Avoid gcc warnings on cygwin.
17840         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
17841         Avoid unused variable.
17842         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
17843         Likewise.
17844
17845 2008-12-22  Bruno Haible  <bruno@clisp.org>
17846
17847         Remove HAVE_MBRTOWC conditionals.
17848         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
17849         (mbscasecmp): Assume mbrtowc function.
17850         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
17851         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
17852         * lib/mbschr.c: Include mbuiter.h unconditionally.
17853         (mbschr): Assume mbrtowc function.
17854         * lib/mbscspn.c: Include mbuiter.h unconditionally.
17855         (mbscspn): Assume mbrtowc function.
17856         * lib/mbslen.c: Include mbuiter.h unconditionally.
17857         (mbslen): Assume mbrtowc function.
17858         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
17859         (mbsncasecmp): Assume mbrtowc function.
17860         * lib/mbsnlen.c: Include mbiter.h unconditionally.
17861         (mbsnlen): Assume mbrtowc function.
17862         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
17863         (mbspbrk): Assume mbrtowc function.
17864         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
17865         (mbspcasecmp): Assume mbrtowc function.
17866         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
17867         (mbsrchr): Assume mbrtowc function.
17868         * lib/mbssep.c: Include mbuiter.h unconditionally.
17869         (mbssep): Assume mbrtowc function.
17870         * lib/mbsspn.c: Include mbuiter.h unconditionally.
17871         (mbsspn): Assume mbrtowc function.
17872         * lib/mbsstr.c: Include mbuiter.h unconditionally.
17873         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
17874         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
17875         (mbstok_r): Assume mbrtowc function.
17876         * lib/propername.c: Include mbuiter.h unconditionally.
17877         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
17878         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
17879         (trim2): Assume mbrtowc function.
17880         * lib/mbswidth.c (mbsinit): Remove fallback definition.
17881         (mbsnwidth): Assume mbrtowc function.
17882         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
17883         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
17884         fallback definitions.
17885         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
17886
17887 2008-12-22  Bruno Haible  <bruno@clisp.org>
17888
17889         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
17890
17891 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
17892
17893         * modules/regex: Request emulations for the mb*/wc* functions we need.
17894         * m4/regex.m4: Don't look for those functions here.
17895         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
17896
17897 2008-12-22  Bruno Haible  <bruno@clisp.org>
17898
17899         * modules/fnmatch (Depends-on): Remove duplicated dependency.
17900
17901 2008-12-21  Bruno Haible  <bruno@clisp.org>
17902
17903         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
17904         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
17905         (Include): Remove conditionalization.
17906         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
17907         (Include): Remove conditionalization.
17908         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
17909         (Include): Remove conditionalization.
17910         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
17911         * m4/mbfile.m4 (gl_MBFILE): Likewise.
17912         * NEWS: Mention the change.
17913         Reported by Alan Hourihane <alanh@fairlite.co.uk>
17914         via Sergey Poznyakoff <gray@gnu.org.ua>.
17915
17916 2008-12-21  Bruno Haible  <bruno@clisp.org>
17917
17918         * MODULES.html.sh (Extended multibyte and wide character utilities
17919         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
17920         wcrtomb, wcsrtombs.
17921         (Support for systems lacking POSIX:2008): Add accept, bind, close,
17922         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
17923         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
17924         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
17925
17926 2008-12-21  Bruno Haible  <bruno@clisp.org>
17927
17928         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
17929
17930 2008-12-21  Bruno Haible  <bruno@clisp.org>
17931
17932         * modules/wcsnrtombs-tests: New file.
17933         * tests/test-wcsnrtombs1.sh: New file.
17934         * tests/test-wcsnrtombs2.sh: New file.
17935         * tests/test-wcsnrtombs3.sh: New file.
17936         * tests/test-wcsnrtombs4.sh: New file.
17937         * tests/test-wcsnrtombs.c: New file.
17938
17939         New module 'wcsnrtombs'.
17940         * lib/wchar.in.h (wcsnrtombs): New declaration.
17941         * lib/wcsnrtombs.c: New file.
17942         * lib/wcsrtombs-state.c: New file.
17943         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
17944         (internal_state): Remove variable.
17945         * m4/wcsnrtombs.m4: New file.
17946         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
17947         compilation units.
17948         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
17949         HAVE_WCSNRTOMBS.
17950         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
17951         HAVE_WCSNRTOMBS.
17952         * modules/wcsnrtombs: New file.
17953         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
17954         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
17955
17956 2008-12-21  Bruno Haible  <bruno@clisp.org>
17957
17958         * modules/wcsrtombs-tests: New file.
17959         * tests/test-wcsrtombs1.sh: New file.
17960         * tests/test-wcsrtombs2.sh: New file.
17961         * tests/test-wcsrtombs3.sh: New file.
17962         * tests/test-wcsrtombs4.sh: New file.
17963         * tests/test-wcsrtombs.c: New file.
17964
17965         New module 'wcsrtombs'.
17966         * lib/wchar.in.h (wcsrtombs): New declaration.
17967         * lib/wcsrtombs.c: New file.
17968         * m4/wcsrtombs.m4: New file.
17969         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
17970         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
17971         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
17972         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
17973         * modules/wcsrtombs: New file.
17974         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
17975         bugs.
17976
17977 2008-12-21  Bruno Haible  <bruno@clisp.org>
17978
17979         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
17980         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
17981         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
17982         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
17983         if not correct.
17984         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
17985         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
17986         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
17987         m4/locale-zh.m4, m4/codeset.m4.
17988         * doc/posix-functions/wcrtomb.texi: Document the bug.
17989
17990 2008-12-21  Bruno Haible  <bruno@clisp.org>
17991
17992         Work around a btowc() bug on IRIX 6.5.
17993         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
17994         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
17995         REPLACE_WTOBC if not.
17996         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
17997         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
17998         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
17999
18000 2008-12-21  Bruno Haible  <bruno@clisp.org>
18001
18002         * modules/wcrtomb-tests: New file.
18003         * tests/test-wcrtomb.sh: New file.
18004         * tests/test-wcrtomb.c: New file.
18005
18006         New module 'wcrtomb'.
18007         * lib/wchar.in.h (wcrtomb): New declaration.
18008         * lib/wcrtomb.c: New file.
18009         * m4/wcrtomb.m4: New file.
18010         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
18011         HAVE_WCRTOMB.
18012         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
18013         HAVE_WCRTOMB.
18014         * modules/wcrtomb: New file.
18015         * doc/posix-functions/wcrtomb.texi: Mention the new module.
18016
18017 2008-12-21  Bruno Haible  <bruno@clisp.org>
18018
18019         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
18020         * modules/mbsrtowcs (Files): Likewise.
18021         * modules/wctob (Files): Likewise.
18022         * modules/c-strcase-tests (Files): Likewise.
18023         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
18024         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
18025         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
18026         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
18027         * modules/vasnprintf-posix-tests (Files): Likewise.
18028
18029 2008-12-21  William Pursell  <bill.pursell@gmail.com>
18030
18031         gitlog-to-changelog: pass all command-line arguments to git-log
18032         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
18033         it is sometimes convenient to filter the commits in various ways.
18034         gitlog-to-changelog only allows --since to specify a start date,
18035         but git-log itself supports many other filtering mechanisms.
18036         At the moment, I want to filter by branch name.  Rather than
18037         adding a --branch option to gitlog-to-changelog, it seems more
18038         flexible to simply pass all options directly to git-log and let
18039         git do the work.  Notice that this effectively makes --since a
18040         redundant option for gitlog-to-changelog, but removing it would
18041         require current usage to change since calls would then require
18042         an additional '--'.
18043
18044 2008-12-21  Bruno Haible  <bruno@clisp.org>
18045
18046         * modules/mbsnrtowcs-tests: New file.
18047         * tests/test-mbsnrtowcs1.sh: New file.
18048         * tests/test-mbsnrtowcs2.sh: New file.
18049         * tests/test-mbsnrtowcs3.sh: New file.
18050         * tests/test-mbsnrtowcs4.sh: New file.
18051         * tests/test-mbsnrtowcs.c: New file.
18052
18053         New module 'mbsnrtowcs'.
18054         * lib/wchar.in.h (mbsnrtowcs): New declaration.
18055         * lib/mbsnrtowcs.c: New file.
18056         * lib/mbsrtowcs-state.c: New file.
18057         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
18058         (internal_state): Remove variable.
18059         * m4/mbsnrtowcs.m4: New file.
18060         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
18061         compilation units.
18062         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
18063         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
18064         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
18065         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
18066         * modules/mbsnrtowcs: New file.
18067         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
18068         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
18069         portability problem.
18070
18071 2008-12-21  Bruno Haible  <bruno@clisp.org>
18072
18073         Work around mbsrtowcs bug.
18074         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
18075         (gl_FUNC_MBSRTOWCS): Invoke it.
18076         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
18077         m4/locale-zh.m4.
18078         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
18079
18080 2008-12-21  Bruno Haible  <bruno@clisp.org>
18081
18082         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
18083
18084 2008-12-21  Bruno Haible  <bruno@clisp.org>
18085
18086         Update doc for AIX.
18087         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
18088         16-bit wchar_t type.
18089         * doc/posix-functions/btowc.texi: Likewise.
18090         * doc/posix-functions/fgetwc.texi: Likewise.
18091         * doc/posix-functions/fgetws.texi: Likewise.
18092         * doc/posix-functions/fputwc.texi: Likewise.
18093         * doc/posix-functions/fputws.texi: Likewise.
18094         * doc/posix-functions/fwide.texi: Likewise.
18095         * doc/posix-functions/fwprintf.texi: Likewise.
18096         * doc/posix-functions/fwscanf.texi: Likewise.
18097         * doc/posix-functions/getwchar.texi: Likewise.
18098         * doc/posix-functions/getwc.texi: Likewise.
18099         * doc/posix-functions/iswalnum.texi: Likewise.
18100         * doc/posix-functions/iswalpha.texi: Likewise.
18101         * doc/posix-functions/iswblank.texi: Likewise.
18102         * doc/posix-functions/iswcntrl.texi: Likewise.
18103         * doc/posix-functions/iswctype.texi: Likewise.
18104         * doc/posix-functions/iswdigit.texi: Likewise.
18105         * doc/posix-functions/iswgraph.texi: Likewise.
18106         * doc/posix-functions/iswlower.texi: Likewise.
18107         * doc/posix-functions/iswprint.texi: Likewise.
18108         * doc/posix-functions/iswpunct.texi: Likewise.
18109         * doc/posix-functions/iswspace.texi: Likewise.
18110         * doc/posix-functions/iswupper.texi: Likewise.
18111         * doc/posix-functions/iswxdigit.texi: Likewise.
18112         * doc/posix-functions/mbrtowc.texi: Likewise.
18113         * doc/posix-functions/mbsrtowcs.texi: Likewise.
18114         * doc/posix-functions/mbstowcs.texi: Likewise.
18115         * doc/posix-functions/mbtowc.texi: Likewise.
18116         * doc/posix-functions/putwchar.texi: Likewise.
18117         * doc/posix-functions/putwc.texi: Likewise.
18118         * doc/posix-functions/swprintf.texi: Likewise.
18119         * doc/posix-functions/tolower.texi: Likewise.
18120         * doc/posix-functions/toupper.texi: Likewise.
18121         * doc/posix-functions/towctrans.texi: Likewise.
18122         * doc/posix-functions/ungetwc.texi: Likewise.
18123         * doc/posix-functions/vswprintf.texi: Likewise.
18124         * doc/posix-functions/wcrtomb.texi: Likewise.
18125         * doc/posix-functions/wcscat.texi: Likewise.
18126         * doc/posix-functions/wcschr.texi: Likewise.
18127         * doc/posix-functions/wcscmp.texi: Likewise.
18128         * doc/posix-functions/wcscoll.texi: Likewise.
18129         * doc/posix-functions/wcscpy.texi: Likewise.
18130         * doc/posix-functions/wcscspn.texi: Likewise.
18131         * doc/posix-functions/wcsftime.texi: Likewise.
18132         * doc/posix-functions/wcslen.texi: Likewise.
18133         * doc/posix-functions/wcsncat.texi: Likewise.
18134         * doc/posix-functions/wcsncmp.texi: Likewise.
18135         * doc/posix-functions/wcsncpy.texi: Likewise.
18136         * doc/posix-functions/wcspbrk.texi: Likewise.
18137         * doc/posix-functions/wcsrchr.texi: Likewise.
18138         * doc/posix-functions/wcsrtombs.texi: Likewise.
18139         * doc/posix-functions/wcsspn.texi: Likewise.
18140         * doc/posix-functions/wcsstr.texi: Likewise.
18141         * doc/posix-functions/wcstod.texi: Likewise.
18142         * doc/posix-functions/wcstof.texi: Likewise.
18143         * doc/posix-functions/wcstoimax.texi: Likewise.
18144         * doc/posix-functions/wcstok.texi: Likewise.
18145         * doc/posix-functions/wcstold.texi: Likewise.
18146         * doc/posix-functions/wcstoll.texi: Likewise.
18147         * doc/posix-functions/wcstol.texi: Likewise.
18148         * doc/posix-functions/wcstombs.texi: Likewise.
18149         * doc/posix-functions/wcstoull.texi: Likewise.
18150         * doc/posix-functions/wcstoul.texi: Likewise.
18151         * doc/posix-functions/wcstoumax.texi: Likewise.
18152         * doc/posix-functions/wcswidth.texi: Likewise.
18153         * doc/posix-functions/wcsxfrm.texi: Likewise.
18154         * doc/posix-functions/wctob.texi: Likewise.
18155         * doc/posix-functions/wctomb.texi: Likewise.
18156         * doc/posix-functions/wctrans.texi: Likewise.
18157         * doc/posix-functions/wctype.texi: Likewise.
18158         * doc/posix-functions/wcwidth.texi: Likewise.
18159         * doc/posix-functions/wmemchr.texi: Likewise.
18160         * doc/posix-functions/wmemcmp.texi: Likewise.
18161         * doc/posix-functions/wmemcpy.texi: Likewise.
18162         * doc/posix-functions/wmemmove.texi: Likewise.
18163         * doc/posix-functions/wmemset.texi: Likewise.
18164         * doc/posix-functions/wprintf.texi: Likewise.
18165         * doc/posix-functions/wscanf.texi: Likewise.
18166
18167 2008-12-21  Bruno Haible  <bruno@clisp.org>
18168
18169         Update doc for HP-UX 11.11.
18170         * doc/posix-functions/btowc.texi: Clarify that the function is missing
18171         in HP-UX version 11.00, not in all versions of HP-UX 11.
18172         * doc/posix-functions/fwide.texi: Likewise.
18173         * doc/posix-functions/fwprintf.texi: Likewise.
18174         * doc/posix-functions/fwscanf.texi: Likewise.
18175         * doc/posix-functions/inet_ntop.texi: Likewise.
18176         * doc/posix-functions/inet_pton.texi: Likewise.
18177         * doc/posix-functions/mbrlen.texi: Likewise.
18178         * doc/posix-functions/mbrtowc.texi: Likewise.
18179         * doc/posix-functions/mbsinit.texi: Likewise.
18180         * doc/posix-functions/mbsrtowcs.texi: Likewise.
18181         * doc/posix-functions/swprintf.texi: Likewise.
18182         * doc/posix-functions/swscanf.texi: Likewise.
18183         * doc/posix-functions/towctrans.texi: Likewise.
18184         * doc/posix-functions/vfwprintf.texi: Likewise.
18185         * doc/posix-functions/vswprintf.texi: Likewise.
18186         * doc/posix-functions/vwprintf.texi: Likewise.
18187         * doc/posix-functions/wcrtomb.texi: Likewise.
18188         * doc/posix-functions/wcsrtombs.texi: Likewise.
18189         * doc/posix-functions/wcsstr.texi: Likewise.
18190         * doc/posix-functions/wctob.texi: Likewise.
18191         * doc/posix-functions/wctrans.texi: Likewise.
18192         * doc/posix-functions/wmemchr.texi: Likewise.
18193         * doc/posix-functions/wmemcmp.texi: Likewise.
18194         * doc/posix-functions/wmemcpy.texi: Likewise.
18195         * doc/posix-functions/wmemmove.texi: Likewise.
18196         * doc/posix-functions/wmemset.texi: Likewise.
18197         * doc/posix-functions/wprintf.texi: Likewise.
18198         * doc/posix-functions/wscanf.texi: Likewise.
18199
18200 2008-12-21  Bruno Haible  <bruno@clisp.org>
18201
18202         Work around a portability problem.
18203         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
18204         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
18205
18206 2008-12-20  Bruno Haible  <bruno@clisp.org>
18207
18208         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
18209         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
18210         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
18211         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
18212         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
18213
18214         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
18215         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
18216         set.
18217         (GNULIB_defined_mbstate_t): New macro.
18218         (mbsinit): Redefine if REPLACE_MBSINIT is set.
18219         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
18220         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
18221         reuses the system's mbrtowc function but works around the bugs.
18222         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
18223         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
18224         macros.
18225         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
18226         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
18227         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
18228         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
18229         REPLACE_MBSINIT if mbsinit needs to be overridden.
18230         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
18231         REPLACE_MBSINIT, REPLACE_MBRTOWC.
18232         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
18233         REPLACE_MBSINIT, REPLACE_MBRTOWC.
18234         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
18235         m4/locale-zh.m4.
18236         (Depends): Add mbsinit.
18237         * modules/mbsinit (Depends): Add mbrtowc.
18238         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
18239
18240 2008-12-20  Bruno Haible  <bruno@clisp.org>
18241
18242         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
18243         so that there are no conversion errors on AIX.
18244         * tests/test-mbsrtowcs.c (main): LIkewise.
18245
18246 2008-12-20  Bruno Haible  <bruno@clisp.org>
18247
18248         Work around wctob bug on Solaris <= 9.
18249         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
18250         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
18251         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
18252         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
18253         * modules/wctob (Files): Add m4/locale-fr.m4.
18254         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
18255
18256 2008-12-20  Bruno Haible  <bruno@clisp.org>
18257
18258         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
18259         /dev/null.
18260         * tests/test-select-in.sh: Likewise.
18261         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
18262
18263 2008-12-20  Bruno Haible  <bruno@clisp.org>
18264
18265         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
18266         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
18267         Cygwin 1.5.x.
18268
18269 2008-12-20  Bruno Haible  <bruno@clisp.org>
18270
18271         Ensure mbstate_t is defined on HP-UX 11.11.
18272         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
18273         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
18274         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
18275         AC_USE_SYSTEM_EXTENSIONS.
18276         * modules/fnmatch (Depends-on): Add extensions.
18277         * modules/mbrlen (Depends-on): Likewise.
18278         * modules/mbrtowc (Depends-on): Likewise.
18279         * modules/mbsinit (Depends-on): Likewise.
18280         * modules/mbsrtowcs (Depends-on): Likewise.
18281         * modules/mbswidth (Depends-on): Likewise.
18282         * modules/quotearg (Depends-on): Likewise.
18283         * modules/strftime (Depends-on): Likewise.
18284
18285 2008-12-20  Bruno Haible  <bruno@clisp.org>
18286
18287         Ensure wctob is declared on IRIX 6.5.
18288         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
18289         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
18290         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
18291         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
18292         of HAVE_WCTOB.
18293         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
18294         HAVE_WCTOB.
18295         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
18296
18297 2008-12-19  Bruno Haible  <bruno@clisp.org>
18298
18299         * modules/mbsrtowcs-tests: New file.
18300         * tests/test-mbsrtowcs1.sh: New file.
18301         * tests/test-mbsrtowcs2.sh: New file.
18302         * tests/test-mbsrtowcs3.sh: New file.
18303         * tests/test-mbsrtowcs4.sh: New file.
18304         * tests/test-mbsrtowcs.c: New file.
18305
18306         New module 'mbsrtowcs'.
18307         * lib/wchar.in.h (mbsrtowcs): New declaration.
18308         * lib/mbsrtowcs.c: New file.
18309         * m4/mbsrtowcs.m4: New file.
18310         * modules/mbsrtowcs: New file.
18311         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
18312         HAVE_MBSRTOWCS.
18313         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
18314         HAVE_MBSRTOWCS.
18315         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
18316
18317 2008-12-19  Bruno Haible  <bruno@clisp.org>
18318
18319         New module 'mbrlen'.
18320         * lib/wchar.in.h (mbrlen): New declaration.
18321         * lib/mbrlen.c: New file.
18322         * m4/mbrlen.m4: New file.
18323         * modules/mbrlen: New file.
18324         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
18325         HAVE_MBRLEN.
18326         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
18327         HAVE_MBRLEN.
18328         * doc/posix-functions/mbrlen.texi: Document the new module.
18329
18330 2008-12-19  Bruno Haible  <bruno@clisp.org>
18331
18332         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
18333         * modules/mbrtowc (Depends-on): Add verify.
18334         Suggested by Paul Eggert.
18335
18336 2008-12-18  Bruno Haible  <bruno@clisp.org>
18337
18338         * modules/mbsinit-tests: New file.
18339         * tests/test-mbsinit.sh: New file.
18340         * tests/test-mbsinit.c: New file.
18341
18342 2008-12-18  Bruno Haible  <bruno@clisp.org>
18343
18344         * modules/mbrtowc-tests: New file.
18345         * tests/test-mbrtowc1.sh: New file.
18346         * tests/test-mbrtowc2.sh: New file.
18347         * tests/test-mbrtowc3.sh: New file.
18348         * tests/test-mbrtowc4.sh: New file.
18349         * tests/test-mbrtowc.c: New file.
18350
18351         New module 'mbrtowc'.
18352         * lib/wchar.in.h (mbstate_t): Override when the system does not have
18353         mbsinit and mbrtowc.
18354         (mbrtowc): New declaration.
18355         * lib/mbrtowc.c: New file.
18356         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
18357         * modules/mbrtowc: New file.
18358         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
18359         HAVE_MBRTOWC.
18360         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
18361         HAVE_MBRTOWC.
18362         * doc/posix-functions/mbrtowc.texi: Document the new module.
18363
18364 2008-12-18  Bruno Haible  <bruno@clisp.org>
18365
18366         New module 'wctob'.
18367         * lib/wchar.in.h (wctob): New declaration.
18368         * lib/wctob.c: New file.
18369         * m4/wctob.m4: New file.
18370         * modules/wctob: New file.
18371         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
18372         HAVE_WCTOB.
18373         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
18374         * doc/posix-functions/wctob.texi: Document the new module.
18375
18376 2008-12-18  Bruno Haible  <bruno@clisp.org>
18377
18378         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
18379         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
18380
18381 2008-12-18  Simon Josefsson  <simon@josefsson.org>
18382
18383         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
18384         G. Christensen" <tgc@jupiterrise.com>.
18385
18386         * lib/flock.c: Need to include errno.h.  Reported by "Tom
18387         G. Christensen" <tgc@jupiterrise.com>.
18388
18389         * lib/flock.c: Need to include string.h.  Reported by "Tom
18390         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
18391         <ebb9@byu.net>.
18392
18393 2008-12-18  Bruno Haible  <bruno@clisp.org>
18394
18395         * m4/locale-ja.m4: New file, from GNU gettext.
18396
18397 2008-12-17  Bruno Haible  <bruno@clisp.org>
18398
18399         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
18400         Suggested by Eric Blake.
18401
18402 2008-12-17  Bruno Haible  <bruno@clisp.org>
18403
18404         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
18405
18406 2008-12-17  Bruno Haible  <bruno@clisp.org>
18407
18408         * lib/mbsinit.c: Include verify.h. Verify an assumption.
18409         * modules/mbsinit (Depends-on): Add verify.
18410         Suggested by Paul Eggert.
18411
18412 2008-12-17  Bruno Haible  <bruno@clisp.org>
18413
18414         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
18415         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
18416         gl_FUNC_MBRTOWC.
18417         * m4/mbiter.m4 (gl_MBITER): LIkewise.
18418         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
18419         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
18420         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
18421         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
18422         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
18423         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
18424         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
18425         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
18426         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
18427         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
18428         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
18429         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
18430         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
18431         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
18432         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
18433         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
18434         * modules/trim (configure.ac): Likewise.
18435
18436 2008-12-17  Bruno Haible  <bruno@clisp.org>
18437
18438         * modules/btowc-tests: New file.
18439         * tests/test-btowc1.sh: New file.
18440         * tests/test-btowc2.sh: New file.
18441         * tests/test-btowc.c: New file.
18442
18443         New module 'btowc'.
18444         * lib/wchar.in.h (btowc): New declaration.
18445         * lib/btowc.c: New file.
18446         * m4/btowc.m4: New file.
18447         * modules/btowc: New file.
18448         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
18449         HAVE_BTOWC.
18450         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
18451         * doc/posix-functions/btowc.texi: Document the new module.
18452
18453 2008-12-17  Bruno Haible  <bruno@clisp.org>
18454
18455         New module 'mbsinit'.
18456         * lib/wchar.in.h (mbsinit): New declaration.
18457         * lib/mbsinit.c: New file.
18458         * m4/mbsinit.m4: New file.
18459         * modules/mbsinit: New file.
18460         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
18461         HAVE_MBSINIT.
18462         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
18463         HAVE_MBSINIT.
18464         * doc/posix-functions/mbsinit.texi: Document the new module.
18465
18466 2008-12-16  Bruno Haible  <bruno@clisp.org>
18467
18468         * lib/unistd.in.h: Add comment.
18469         * tests/test-environ.c: Don't include <stdlib.h>.
18470
18471 2008-12-16  Bruno Haible  <bruno@clisp.org>
18472
18473         * lib/parse-duration.h (parse_duration): Document return value
18474         convention.
18475         * lib/parse-duration.c: Include specification header first. Add
18476         comments.
18477         (_): Remove macro.
18478         (parse_year_month_day, parse_hour_minute_second): Move side effects
18479         outside of strchr call.
18480         (parse_non_iso8601): Move side effects outside of isspace call.
18481         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
18482         call.
18483
18484 2008-12-16  Bruno Haible  <bruno@clisp.org>
18485
18486         * tests/test-parse-duration.sh: Produce no output when the test
18487         succeeds.
18488
18489 2008-12-16  Bruno Haible  <bruno@clisp.org>
18490
18491         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
18492         expressions.
18493
18494 2008-12-15  Bruno Haible  <bruno@clisp.org>
18495
18496         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
18497         * doc/glibc-functions/flistxattr.texi: Likewise.
18498         * doc/glibc-functions/fopencookie.texi: Likewise.
18499         * doc/glibc-functions/fremovexattr.texi: Likewise.
18500         * doc/glibc-functions/fsetxattr.texi: Likewise.
18501         * doc/glibc-functions/getxattr.texi: Likewise.
18502         * doc/glibc-functions/lgetxattr.texi: Likewise.
18503         * doc/glibc-functions/listxattr.texi: Likewise.
18504         * doc/glibc-functions/llistxattr.texi: Likewise.
18505         * doc/glibc-functions/lremovexattr.texi: Likewise.
18506         * doc/glibc-functions/lsetxattr.texi: Likewise.
18507         * doc/glibc-functions/removexattr.texi: Likewise.
18508         * doc/glibc-functions/setxattr.texi: Likewise.
18509         * doc/posix-functions/open_memstream.texi: Likewise.
18510
18511 2008-12-15  Eric Blake  <ebb9@byu.net>
18512
18513         Update doc for cygwin 1.7.
18514         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
18515         functions.
18516         * doc/posix-functions/fchmodat.texi: Likewise.
18517         * doc/posix-functions/fchownat.texi: Likewise.
18518         * doc/posix-functions/fdopendir.texi: Likewise.
18519         * doc/posix-functions/fmemopen.texi: Likewise.
18520         * doc/posix-functions/freeaddrinfo.texi: Likewise.
18521         * doc/posix-functions/fstatat.texi: Likewise.
18522         * doc/posix-functions/futimens.texi: Likewise.
18523         * doc/posix-functions/gai_strerror.texi: Likewise.
18524         * doc/posix-functions/getaddrinfo.texi: Likewise.
18525         * doc/posix-functions/getnameinfo.texi: Likewise.
18526         * doc/posix-functions/if_freenameindex.texi: Likewise.
18527         * doc/posix-functions/if_indextoname.texi: Likewise.
18528         * doc/posix-functions/if_nameindex.texi: Likewise.
18529         * doc/posix-functions/if_nametoindex.texi: Likewise.
18530         * doc/posix-functions/insque.texi: Likewise.
18531         * doc/posix-functions/linkat.texi: Likewise.
18532         * doc/posix-functions/llrint.texi: Likewise.
18533         * doc/posix-functions/llrintf.texi: Likewise.
18534         * doc/posix-functions/llrintl.texi: Likewise.
18535         * doc/posix-functions/lockf.texi: Likewise.
18536         * doc/posix-functions/lrintl.texi: Likewise.
18537         * doc/posix-functions/mkdirat.texi: Likewise.
18538         * doc/posix-functions/mkfifoat.texi: Likewise.
18539         * doc/posix-functions/mknodat.texi: Likewise.
18540         * doc/posix-functions/mq_close.texi: Likewise.
18541         * doc/posix-functions/mq_getattr.texi: Likewise.
18542         * doc/posix-functions/mq_notify.texi: Likewise.
18543         * doc/posix-functions/mq_open.texi: Likewise.
18544         * doc/posix-functions/mq_receive.texi: Likewise.
18545         * doc/posix-functions/mq_send.texi: Likewise.
18546         * doc/posix-functions/mq_setattr.texi: Likewise.
18547         * doc/posix-functions/mq_timedreceive.texi: Likewise.
18548         * doc/posix-functions/mq_timedsend.texi: Likewise.
18549         * doc/posix-functions/mq_unlink.texi: Likewise.
18550         * doc/posix-functions/open_memstream.texi: Likewise.
18551         * doc/posix-functions/openat.texi: Likewise.
18552         * doc/posix-functions/posix_fadvise.texi: Likewise.
18553         * doc/posix-functions/posix_fallocate.texi: Likewise.
18554         * doc/posix-functions/posix_madvise.texi: Likewise.
18555         * doc/posix-functions/posix_memalign.texi: Likewise.
18556         * doc/posix-functions/posix_openpt.texi: Likewise.
18557         * doc/posix-functions/readlinkat.texi: Likewise.
18558         * doc/posix-functions/remque.texi: Likewise.
18559         * doc/posix-functions/renameat.texi: Likewise.
18560         * doc/posix-functions/rintl.texi: Likewise.
18561         * doc/posix-functions/sem_unlink.texi: Likewise.
18562         * doc/posix-functions/shm_open.texi: Likewise.
18563         * doc/posix-functions/shm_unlink.texi: Likewise.
18564         * doc/posix-functions/signgam.texi: Likewise.
18565         * doc/posix-functions/sigset.texi: Likewise.
18566         * doc/posix-functions/stpcpy.texi: Likewise.
18567         * doc/posix-functions/stpncpy.texi: Likewise.
18568         * doc/posix-functions/strerror.texi: Likewise.
18569         * doc/posix-functions/strtod.texi: Likewise.
18570         * doc/posix-functions/symlinkat.texi: Likewise.
18571         * doc/posix-functions/unlinkat.texi: Likewise.
18572         * doc/posix-functions/utimensat.texi: Likewise.
18573         * doc/glibc-functions/bindresvport.texi: Likewise.
18574         * doc/glibc-functions/dn_expand.texi: Likewise.
18575         * doc/glibc-functions/exp10.texi: Likewise.
18576         * doc/glibc-functions/exp10f.texi: Likewise.
18577         * doc/glibc-functions/fgetxattr.texi: Likewise.
18578         * doc/glibc-functions/flistxattr.texi: Likewise.
18579         * doc/glibc-functions/fopencookie.texi: Likewise.
18580         * doc/glibc-functions/freeifaddrs.texi: Likewise.
18581         * doc/glibc-functions/fremovexattr.texi: Likewise.
18582         * doc/glibc-functions/fsetxattr.texi: Likewise.
18583         * doc/glibc-functions/getifaddrs.texi: Likewise.
18584         * doc/glibc-functions/getxattr.texi: Likewise.
18585         * doc/glibc-functions/lgetxattr.texi: Likewise.
18586         * doc/glibc-functions/listxattr.texi: Likewise.
18587         * doc/glibc-functions/llistxattr.texi: Likewise.
18588         * doc/glibc-functions/lremovexattr.texi: Likewise.
18589         * doc/glibc-functions/lsetxattr.texi: Likewise.
18590         * doc/glibc-functions/pow10.texi: Likewise.
18591         * doc/glibc-functions/pow10f.texi: Likewise.
18592         * doc/glibc-functions/rcmd_af.texi: Likewise.
18593         * doc/glibc-functions/removexattr.texi: Likewise.
18594         * doc/glibc-functions/res_init.texi: Likewise.
18595         * doc/glibc-functions/res_mkquery.texi: Likewise.
18596         * doc/glibc-functions/res_query.texi: Likewise.
18597         * doc/glibc-functions/res_querydomain.texi: Likewise.
18598         * doc/glibc-functions/res_send.texi: Likewise.
18599         * doc/glibc-functions/rresvport_af.texi: Likewise.
18600         * doc/glibc-functions/setxattr.texi: Likewise.
18601         * doc/glibc-functions/strcasestr.texi: Likewise.
18602
18603 2008-12-15  Bruno Haible  <bruno@clisp.org>
18604
18605         Fix compilation error on OSF/1 4.0.
18606         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
18607         <sys/time.h>, simply delegate to the system header.
18608         Reported by Daniel Richard G. <oss@teragram.com>.
18609
18610 2008-12-15  Bruno Haible  <bruno@clisp.org>
18611
18612         * doc/posix-functions/openat.texi: Mention the 'openat' module.
18613         * doc/posix-functions/fchmodat.texi: Likewise.
18614         * doc/posix-functions/fchownat.texi: Likewise.
18615         * doc/posix-functions/fdopendir.texi: Likewise.
18616         * doc/posix-functions/fstatat.texi: Likewise.
18617         * doc/posix-functions/mkdirat.texi: Likewise.
18618         * doc/posix-functions/unlinkat.texi: Likewise.
18619
18620 2008-12-14  Bruno Haible  <bruno@clisp.org>
18621
18622         Update doc for POSIX:2008.
18623         * doc/posix-functions/faccessat.texi: New file.
18624         * doc/posix-functions/fchmodat.texi: New file.
18625         * doc/posix-functions/fchownat.texi: New file.
18626         * doc/posix-functions/fdopendir.texi: New file.
18627         * doc/posix-functions/fstatat.texi: New file.
18628         * doc/posix-functions/futimens.texi: New file.
18629         * doc/posix-functions/linkat.texi: New file.
18630         * doc/posix-functions/mkdirat.texi: New file.
18631         * doc/posix-functions/mkfifoat.texi: New file.
18632         * doc/posix-functions/mknodat.texi: New file.
18633         * doc/posix-functions/open_wmemstream.texi: New file.
18634         * doc/posix-functions/openat.texi: New file.
18635         * doc/posix-functions/psiginfo.texi: New file.
18636         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
18637         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
18638         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
18639         * doc/posix-functions/readlinkat.texi: New file.
18640         * doc/posix-functions/renameat.texi: New file.
18641         * doc/posix-functions/strerror_l.texi: New file.
18642         * doc/posix-functions/symlinkat.texi: New file.
18643         * doc/posix-functions/unlinkat.texi: New file.
18644         * doc/posix-functions/utimensat.texi: New file.
18645         * doc/gnulib.texi (Function Substitutes): Add these subsections.
18646
18647 2008-12-14  Bruno Haible  <bruno@clisp.org>
18648
18649         Update doc for POSIX:2008.
18650         * doc/posix-functions/alphasort.texi: Renamed from
18651         doc/glibc-functions/alphasort.texi.
18652         * doc/posix-functions/dirfd.texi: Renamed from
18653         doc/glibc-functions/dirfd.texi.
18654         * doc/posix-functions/dprintf.texi: Renamed from
18655         doc/glibc-functions/dprintf.texi.
18656         * doc/posix-functions/duplocale.texi: Renamed from
18657         doc/glibc-functions/duplocale.texi.
18658         * doc/posix-functions/fexecve.texi: Renamed from
18659         doc/glibc-functions/fexecve.texi.
18660         * doc/posix-functions/fmemopen.texi: Renamed from
18661         doc/glibc-functions/fmemopen.texi.
18662         * doc/posix-functions/freelocale.texi: Renamed from
18663         doc/glibc-functions/freelocale.texi.
18664         * doc/posix-functions/getdate_err.texi: Renamed from
18665         doc/glibc-functions/getdate_err.texi.
18666         * doc/posix-functions/isalnum_l.texi: Renamed from
18667         doc/glibc-functions/isalnum_l.texi.
18668         * doc/posix-functions/isalpha_l.texi: Renamed from
18669         doc/glibc-functions/isalpha_l.texi.
18670         * doc/posix-functions/isblank_l.texi: Renamed from
18671         doc/glibc-functions/isblank_l.texi.
18672         * doc/posix-functions/iscntrl_l.texi: Renamed from
18673         doc/glibc-functions/iscntrl_l.texi.
18674         * doc/posix-functions/isdigit_l.texi: Renamed from
18675         doc/glibc-functions/isdigit_l.texi.
18676         * doc/posix-functions/isgraph_l.texi: Renamed from
18677         doc/glibc-functions/isgraph_l.texi.
18678         * doc/posix-functions/islower_l.texi: Renamed from
18679         doc/glibc-functions/islower_l.texi.
18680         * doc/posix-functions/isprint_l.texi: Renamed from
18681         doc/glibc-functions/isprint_l.texi.
18682         * doc/posix-functions/ispunct_l.texi: Renamed from
18683         doc/glibc-functions/ispunct_l.texi.
18684         * doc/posix-functions/isspace_l.texi: Renamed from
18685         doc/glibc-functions/isspace_l.texi.
18686         * doc/posix-functions/isupper_l.texi: Renamed from
18687         doc/glibc-functions/isupper_l.texi.
18688         * doc/posix-functions/iswalnum_l.texi: Renamed from
18689         doc/glibc-functions/iswalnum_l.texi.
18690         * doc/posix-functions/iswalpha_l.texi: Renamed from
18691         doc/glibc-functions/iswalpha_l.texi.
18692         * doc/posix-functions/iswblank_l.texi: Renamed from
18693         doc/glibc-functions/iswblank_l.texi.
18694         * doc/posix-functions/iswcntrl_l.texi: Renamed from
18695         doc/glibc-functions/iswcntrl_l.texi.
18696         * doc/posix-functions/iswctype_l.texi: Renamed from
18697         doc/glibc-functions/iswctype_l.texi.
18698         * doc/posix-functions/iswdigit_l.texi: Renamed from
18699         doc/glibc-functions/iswdigit_l.texi.
18700         * doc/posix-functions/iswgraph_l.texi: Renamed from
18701         doc/glibc-functions/iswgraph_l.texi.
18702         * doc/posix-functions/iswlower_l.texi: Renamed from
18703         doc/glibc-functions/iswlower_l.texi.
18704         * doc/posix-functions/iswprint_l.texi: Renamed from
18705         doc/glibc-functions/iswprint_l.texi.
18706         * doc/posix-functions/iswpunct_l.texi: Renamed from
18707         doc/glibc-functions/iswpunct_l.texi.
18708         * doc/posix-functions/iswspace_l.texi: Renamed from
18709         doc/glibc-functions/iswspace_l.texi.
18710         * doc/posix-functions/iswupper_l.texi: Renamed from
18711         doc/glibc-functions/iswupper_l.texi.
18712         * doc/posix-functions/iswxdigit_l.texi: Renamed from
18713         doc/glibc-functions/iswxdigit_l.texi.
18714         * doc/posix-functions/isxdigit_l.texi: Renamed from
18715         doc/glibc-functions/isxdigit_l.texi.
18716         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
18717         doc/glibc-functions/mbsnrtowcs.texi.
18718         * doc/posix-functions/mkdtemp.texi: Renamed from
18719         doc/glibc-functions/mkdtemp.texi.
18720         * doc/posix-functions/newlocale.texi: Renamed from
18721         doc/glibc-functions/newlocale.texi.
18722         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
18723         doc/glibc-functions/nl_langinfo_l.texi.
18724         * doc/posix-functions/open_memstream.texi: Renamed from
18725         doc/glibc-functions/open_memstream.texi.
18726         * doc/posix-functions/opterr.texi: Renamed from
18727         doc/glibc-functions/opterr.texi.
18728         * doc/posix-functions/optind.texi: Renamed from
18729         doc/glibc-functions/optind.texi.
18730         * doc/posix-functions/optopt.texi: Renamed from
18731         doc/glibc-functions/optopt.texi.
18732         * doc/posix-functions/psignal.texi: Renamed from
18733         doc/glibc-functions/psignal.texi.
18734         * doc/posix-functions/scandir.texi: Renamed from
18735         doc/glibc-functions/scandir.texi.
18736         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
18737         doc/glibc-functions/sched_get_priority_min.texi.
18738         * doc/posix-functions/signgam.texi: Renamed from
18739         doc/glibc-functions/signgam.texi.
18740         * doc/posix-functions/stpcpy.texi: Renamed from
18741         doc/glibc-functions/stpcpy.texi.
18742         * doc/posix-functions/stpncpy.texi: Renamed from
18743         doc/glibc-functions/stpncpy.texi.
18744         * doc/posix-functions/strcasecmp_l.texi: Renamed from
18745         doc/glibc-functions/strcasecmp_l.texi.
18746         * doc/posix-functions/strcoll_l.texi: Renamed from
18747         doc/glibc-functions/strcoll_l.texi.
18748         * doc/posix-functions/strfmon_l.texi: Renamed from
18749         doc/glibc-functions/strfmon_l.texi.
18750         * doc/posix-functions/strftime_l.texi: Renamed from
18751         doc/glibc-functions/strftime_l.texi.
18752         * doc/posix-functions/strncasecmp_l.texi: Renamed from
18753         doc/glibc-functions/strncasecmp_l.texi.
18754         * doc/posix-functions/strndup.texi: Renamed from
18755         doc/glibc-functions/strndup.texi.
18756         * doc/posix-functions/strnlen.texi: Renamed from
18757         doc/glibc-functions/strnlen.texi.
18758         * doc/posix-functions/strsignal.texi: Renamed from
18759         doc/glibc-functions/strsignal.texi.
18760         * doc/posix-functions/strxfrm_l.texi: Renamed from
18761         doc/glibc-functions/strxfrm_l.texi.
18762         * doc/posix-functions/timer_gettime.texi: Renamed from
18763         doc/glibc-functions/timer_gettime.texi.
18764         * doc/posix-functions/tolower_l.texi: Renamed from
18765         doc/glibc-functions/tolower_l.texi.
18766         * doc/posix-functions/toupper_l.texi: Renamed from
18767         doc/glibc-functions/toupper_l.texi.
18768         * doc/posix-functions/towctrans_l.texi: Renamed from
18769         doc/glibc-functions/towctrans_l.texi.
18770         * doc/posix-functions/towlower_l.texi: Renamed from
18771         doc/glibc-functions/towlower_l.texi.
18772         * doc/posix-functions/towupper_l.texi: Renamed from
18773         doc/glibc-functions/towupper_l.texi.
18774         * doc/posix-functions/uselocale.texi: Renamed from
18775         doc/glibc-functions/uselocale.texi.
18776         * doc/posix-functions/vdprintf.texi: Renamed from
18777         doc/glibc-functions/vdprintf.texi.
18778         * doc/posix-functions/wcpcpy.texi:
18779         Renamed from doc/glibc-functions/wcpcpy.texi.
18780         * doc/posix-functions/wcpncpy.texi: Renamed from
18781         doc/glibc-functions/wcpncpy.texi.
18782         * doc/posix-functions/wcscasecmp.texi: Renamed from
18783         doc/glibc-functions/wcscasecmp.texi.
18784         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
18785         doc/glibc-functions/wcscasecmp_l.texi.
18786         * doc/posix-functions/wcscoll_l.texi: Renamed from
18787         doc/glibc-functions/wcscoll_l.texi.
18788         * doc/posix-functions/wcsdup.texi: Renamed from
18789         doc/glibc-functions/wcsdup.texi.
18790         * doc/posix-functions/wcsncasecmp.texi: Renamed from
18791         doc/glibc-functions/wcsncasecmp.texi.
18792         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
18793         doc/glibc-functions/wcsncasecmp_l.texi.
18794         * doc/posix-functions/wcsnlen.texi: Renamed from
18795         doc/glibc-functions/wcsnlen.texi.
18796         * doc/posix-functions/wcsnrtombs.texi: Renamed from
18797         doc/glibc-functions/wcsnrtombs.texi.
18798         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
18799         doc/glibc-functions/wcsxfrm_l.texi.
18800         * doc/posix-functions/wctrans_l.texi: Renamed from
18801         doc/glibc-functions/wctrans_l.texi.
18802         * doc/posix-functions/wctype_l.texi: Renamed from
18803         doc/glibc-functions/wctype_l.texi.
18804         * doc/gnulib.texi (Function Substitutes): Add these subsections.
18805         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
18806         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
18807         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
18808         these subsections.
18809         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
18810         Remove sections.
18811
18812 2008-12-14  Bruno Haible  <bruno@clisp.org>
18813
18814         Update doc for POSIX:2008.
18815         * doc/posix-functions/*.texi: Update URL of POSIX specification.
18816
18817 2008-12-14  Bruno Haible  <bruno@clisp.org>
18818
18819         Update doc for POSIX:2008.
18820         * doc/pastposix-functions/bcmp.texi: Renamed from
18821         doc/posix-functions/bcmp.texi.
18822         * doc/pastposix-functions/bcopy.texi: Renamed from
18823         doc/posix-functions/bcopy.texi.
18824         * doc/pastposix-functions/bsd_signal.texi: Renamed from
18825         doc/posix-functions/bsd_signal.texi.
18826         * doc/pastposix-functions/bzero.texi: Renamed from
18827         doc/posix-functions/bzero.texi.
18828         * doc/pastposix-functions/ecvt.texi: Renamed from
18829         doc/posix-functions/ecvt.texi.
18830         * doc/pastposix-functions/fcvt.texi: Renamed from
18831         doc/posix-functions/fcvt.texi.
18832         * doc/pastposix-functions/ftime.texi: Renamed from
18833         doc/posix-functions/ftime.texi.
18834         * doc/pastposix-functions/gcvt.texi: Renamed from
18835         doc/posix-functions/gcvt.texi.
18836         * doc/pastposix-functions/getcontext.texi: Renamed from
18837         doc/posix-functions/getcontext.texi.
18838         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
18839         doc/posix-functions/gethostbyaddr.texi.
18840         * doc/pastposix-functions/gethostbyname.texi: Renamed from
18841         doc/posix-functions/gethostbyname.texi.
18842         * doc/pastposix-functions/getwd.texi: Renamed from
18843         doc/posix-functions/getwd.texi.
18844         * doc/pastposix-functions/h_errno.texi: Renamed from
18845         doc/posix-functions/h_errno.texi.
18846         * doc/pastposix-functions/index.texi: Renamed from
18847         doc/posix-functions/index.texi.
18848         * doc/pastposix-functions/makecontext.texi: Renamed from
18849         doc/posix-functions/makecontext.texi.
18850         * doc/pastposix-functions/mktemp.texi: Renamed from
18851         doc/posix-functions/mktemp.texi.
18852         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
18853         doc/posix-functions/pthread_attr_getstackaddr.texi.
18854         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
18855         doc/posix-functions/pthread_attr_setstackaddr.texi.
18856         * doc/pastposix-functions/rindex.texi: Renamed from
18857         doc/posix-functions/rindex.texi.
18858         * doc/pastposix-functions/scalb.texi: Renamed from
18859         doc/posix-functions/scalb.texi.
18860         * doc/pastposix-functions/setcontext.texi: Renamed from
18861         doc/posix-functions/setcontext.texi.
18862         * doc/pastposix-functions/swapcontext.texi: Renamed from
18863         doc/posix-functions/swapcontext.texi.
18864         * doc/pastposix-functions/ualarm.texi: Renamed from
18865         doc/posix-functions/ualarm.texi.
18866         * doc/pastposix-functions/usleep.texi: Renamed from
18867         doc/posix-functions/usleep.texi.
18868         * doc/pastposix-functions/vfork.texi: Renamed from
18869         doc/posix-functions/vfork.texi.
18870         * doc/pastposix-functions/wcswcs.texi: Renamed from
18871         doc/posix-functions/wcswcs.texi.
18872         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
18873         (Function Substitutes): Update.
18874
18875 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18876
18877         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
18878         m4/strerror.m4.
18879
18880 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18881             Bruno Haible  <bruno@clisp.org>
18882
18883         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
18884
18885 2008-12-13  Bruno Haible  <bruno@clisp.org>
18886
18887         * modules/strtoull (Depends-on): Remove unistd.
18888
18889 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18890
18891         * modules/strtoull (Depends-on): Add stdlib.
18892
18893 2008-12-11  Simon Josefsson  <simon@josefsson.org>
18894
18895         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
18896
18897 2008-12-10  Jim Meyering  <meyering@redhat.com>
18898
18899         gl_ASSERT: don't say assertions are disabled when they're not
18900         * m4/assert.m4 (gl_ASSERT): Do not make configure report
18901         "checking whether to enable assertions... no", when they are in
18902         fact enabled.  This is solely a bug in the output of configure.
18903         In spite of saying "no", NDEBUG was not defined in that case.
18904         Also, as noted by Eric Blake, leave assertions enabled upon
18905         --enable-assert=INVALID.
18906
18907 2008-12-10  Bruno Haible  <bruno@clisp.org>
18908
18909         Change MODULES.html to refer to POSIX:2008 where possible.
18910         * MODULES.html.sh (POSIX2008_URL): New variable.
18911         (posix_headers): Remove sys/timeb, ucontext.
18912         (posix2001_headers): New variable.
18913         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
18914         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
18915         index, makecontext, mktemp, pthread_attr_getstackaddr,
18916         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
18917         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
18918         (posix2001_functions): New variable.
18919         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
18920         otherwise.
18921
18922 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18923
18924         add missing include to parse-duration.c
18925         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
18926         * modules/parse-duration (Depends-on): Add xalloc.
18927
18928         fix sed script reading maint.mk
18929         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
18930         (syntax-check-rules): Use it.
18931
18932 2008-12-09  Bruno Haible  <bruno@clisp.org>
18933
18934         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
18935         MacOS X 10.4/PowerPC.
18936         Reported by Simon Josefsson.
18937
18938 2008-12-08  Jim Meyering  <meyering@redhat.com>
18939
18940         work around mingw's lack of some S_IF definitions
18941         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
18942         Reported by Simon Josefsson.
18943
18944 2008-12-08  Bruno Haible  <bruno@clisp.org>
18945
18946         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
18947         applied to variables. Needed on MacOS X 10.4/PowerPC.
18948         Reported by Simon Josefsson.
18949
18950 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
18951         and Eric Blake  <ebb9@byu.net>
18952
18953         assert: honor --enable-assert
18954         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
18955         order to honor --enable-assert, rather than treating it as a
18956         synonym for --disable-assert.
18957
18958 2008-12-08  Jim Meyering  <meyering@redhat.com>
18959
18960         * lib/posixtm.c: Remove now-useless declaration of mktime.
18961
18962         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
18963
18964 2008-12-07  Bruno Haible  <bruno@clisp.org>
18965
18966         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
18967         test_once): Mark functions as static.
18968         * tests/test-tls.c (test_tls): Likewise.
18969
18970 2008-12-07  Bruno Haible  <bruno@clisp.org>
18971
18972         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
18973         iconv_register_autodetect.
18974
18975 2008-12-07  Jim Meyering  <meyering@redhat.com>
18976
18977         posixtm.c: avoid a warning
18978         * lib/posixtm.c (posixtime): Don't initialize tm0.
18979         It's no longer needed to placate gcc4's -Wuninitialized,
18980         and the attempt to placate would elicit a new warning.
18981
18982         unicodeio.c: mark unused parameters
18983         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
18984         (fallback_failure_callback): Likewise.
18985
18986 2008-12-07  Bruno Haible  <bruno@clisp.org>
18987
18988         * gnulib-tool (func_create_testdir): When building the tests
18989         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
18990         Reported by Simon Josefsson.
18991
18992 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18993
18994         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
18995
18996 2008-12-06  Bruno Haible  <bruno@clisp.org>
18997
18998         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
18999         Suggested by Eric Blake.
19000
19001 2008-12-06  Bruno Haible  <bruno@clisp.org>
19002
19003         Fix a c-stack test failure on MacOS X.
19004         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
19005         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
19006         handler for SIGBUS as well.
19007         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
19008         install a signal handler for SIGBUS as well.
19009         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
19010
19011 2008-12-06  Bruno Haible  <bruno@clisp.org>
19012
19013         Advocacy documentation.
19014         * doc/gnulib-intro.texi (Benefits): New section.
19015         * doc/gnulib.texi: Update.
19016
19017 2008-12-06  Bruno Haible  <bruno@clisp.org>
19018
19019         Document the 'manywarnings' module.
19020         * doc/manywarnings.texi: New file.
19021         * doc/gnulib.texi: Include it.
19022
19023 2008-12-05  Eric Blake  <ebb9@byu.net>
19024
19025         tests: silence some gcc warnings
19026         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
19027         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
19028         type mismatches.
19029
19030 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19031             Bruno Haible  <bruno@clisp.org>
19032
19033         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
19034
19035 2008-11-29  Jim Meyering  <meyering@redhat.com>
19036
19037         unicodeio.c: mark unused parameters
19038         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
19039         (fallback_failure_callback): Likewise.
19040
19041         fts: fix a thinko
19042         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
19043         (set_stat_type): Return S_IF*-valued "type" directly.
19044         Prompted by James Youngman's spotting a related bug.
19045         Confirmed by further testing through find.
19046
19047         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
19048         * lib/fts.c (D_TYPE): Define.
19049         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
19050         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
19051         (s_ifmt_shift_bits): New function.
19052         (set_stat_type): New function.
19053         (fts_build): When not calling fts_stat, call set_stat_type
19054         to propagate dirent.d_type info to fts_read caller.
19055         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
19056         fts_statp->st_mode type information may be valid.
19057
19058 2008-11-28  Simon Josefsson  <simon@josefsson.org>
19059
19060         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
19061         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
19062         <sds@gnu.org>.
19063
19064 2008-11-20  Bruno Haible  <bruno@clisp.org>
19065
19066         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
19067         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
19068         INCLUDE_NEXT.
19069         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
19070         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
19071         * modules/math (Makefile.am): Substitute
19072         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
19073         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
19074
19075 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
19076             Bruno Haible  <bruno@clisp.org>
19077
19078         * lib/stdint.in.h: Define all type macros so that their expansion is
19079         a single typedef'ed token. Fixes a compilation failure in Boost which
19080         does "using ::int8_t;".
19081
19082 2008-11-18  Simon Josefsson  <simon@josefsson.org>
19083
19084         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
19085         gl_MANYWARN_ALL_GCC.
19086         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
19087         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
19088         * modules/manywarnings: New file.
19089         * MODULES.html.sh: Mention manywarnings module.
19090
19091 2008-11-18  Bruno Haible  <bruno@clisp.org>
19092
19093         * doc/gnulib-tool.texi (Unit tests): New section.
19094
19095 2008-11-18  Simon Josefsson  <simon@josefsson.org>
19096
19097         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
19098         paths like 'lib/po/foo.po'.
19099
19100 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19101
19102         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
19103         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
19104
19105 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19106
19107         * m4/warnings.m4: Use CPPFLAGS to really check whether the
19108         parameter works.
19109
19110 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19111
19112         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
19113
19114 2008-11-17  Bruce Korb  <bkorb@gnu.org>
19115
19116         * modules/parse-duration-tests: New file.
19117         * tests/test-parse-duration.sh: New file.
19118         * tests/test-parse-duration.c: New file.
19119
19120         New module 'parse-duration'.
19121         * lib/parse-duration.h: New file.
19122         * lib/parse-duration.c: New file.
19123         * modules/parse-duration: New file.
19124
19125 2008-11-17  Bruno Haible  <bruno@clisp.org>
19126
19127         * tests/test-select-out.sh: Comment out the first pipe test.
19128         Reported by Simon Josefsson.
19129
19130 2008-11-17  Bruno Haible  <bruno@clisp.org>
19131
19132         * modules/getaddrinfo (Depends-on): Add servent, hostent.
19133         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
19134         gl_HOSTENT.
19135
19136 2008-11-17  Bruno Haible  <bruno@clisp.org>
19137
19138         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
19139         -lnetwork and -lnet. Needed for Haiku and BeOS.
19140
19141 2008-11-16  Bruno Haible  <bruno@clisp.org>
19142
19143         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
19144
19145 2008-11-16  Bruno Haible  <bruno@clisp.org>
19146
19147         Avoid test failure on Haiku.
19148         * tests/test-fsync.c: Include <errno.h>.
19149         (main): Don't require that fsync (0) fails.
19150
19151 2008-11-15  Bruno Haible  <bruno@clisp.org>
19152
19153         New module 'hostent'.
19154         * modules/hostent: New file.
19155         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
19156
19157 2008-11-15  Bruno Haible  <bruno@clisp.org>
19158
19159         New module 'servent'.
19160         * modules/servent: New file.
19161         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
19162
19163 2008-11-15  Bruno Haible  <bruno@clisp.org>
19164
19165         Avoid generating same test program with two different rules.
19166         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
19167         test-frexp to test-frexp-nolibm.
19168         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
19169         test-frexpl to test-frexpl-nolibm.
19170
19171 2008-11-15  Bruno Haible  <bruno@clisp.org>
19172
19173         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
19174         $(FREXPL_LIBM).
19175
19176 2008-11-15  Bruno Haible  <bruno@clisp.org>
19177
19178         * lib/netdb.in.h: Activate the definitions also when the system's
19179         <netdb.h> has 'struct addrinfo'.
19180         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
19181         EAI_OVERFLOW or AI_NUMERICSERV.
19182         * doc/posix-headers/netdb.texi: Document the problem.
19183
19184 2008-11-15  Bruno Haible  <bruno@clisp.org>
19185
19186         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
19187
19188         Make the 'sched' module work on platforms where <sched.h> exists but
19189         is incomplete (such as Haiku).
19190         * lib/sched.in.h; Include the system's <sched.h> if it exists.
19191         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
19192         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
19193         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
19194         HAVE_STRUCT_SCHED_PARAM.
19195         * modules/sched (Depends-on): Add include_next.
19196         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
19197         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
19198         * doc/posix-headers/sched.texi: Document the issue.
19199
19200 2008-11-13  Jim Meyering  <meyering@redhat.com>
19201
19202         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
19203         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
19204         test would fail due to the difference in the Report bugs to ...
19205         line.  The expected address is empty, "<>", while the actual
19206         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
19207
19208 2008-11-12  Bruno Haible  <bruno@clisp.org>
19209
19210         lstat: don't compile lstat.c on systems lacking lstat
19211         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
19212         which don't have lstat; this is handled by lib/sys_stat.in.h already.
19213         Reported by Daniel P. Berrange via Jim Meyering.
19214
19215 2008-11-12  Jim Meyering  <meyering@redhat.com>
19216
19217         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
19218
19219 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19220
19221         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
19222         instead.
19223
19224 2008-11-12  Bruno Haible  <bruno@clisp.org>
19225
19226         * lib/unicodeio.c: Include unistr.h.
19227         (utf8_wctomb): Remove function.
19228         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
19229
19230 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19231
19232         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
19233         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
19234         <bruno@clisp.org>.
19235         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
19236
19237 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19238
19239         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
19240         * doc/gnulib.texi: Add section for warnings.
19241
19242 2008-11-11  Bruno Haible  <bruno@clisp.org>
19243
19244         * lib/sockets.h: Add a comment.
19245
19246 2008-11-11  Karl Berry  <karl@gnu.org>
19247
19248         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
19249
19250 2008-11-11  Eric Blake  <ebb9@byu.net>
19251
19252         fdl.texi: avoid git symlinks
19253         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
19254
19255 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19256
19257         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
19258
19259 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19260
19261         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
19262         (gl_WARN_ADD): Substitute $2 if literal.
19263
19264 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19265
19266         * m4/warning.m4: Remove.
19267
19268 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19269
19270         * m4/warnings.m4: Almost complete rewrite. :-)
19271
19272 2008-11-10  Simon Josefsson  <simon@josefsson.org>
19273
19274         * modules/warnings: New module.
19275         * m4/warnings.m4: New file.
19276         * MODULES.html.sh: Mention warnings module.
19277         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
19278         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
19279
19280 2008-11-10  Eric Blake  <ebb9@byu.net>
19281
19282         fdl.texi: make a symlink to the latest version
19283         * doc/standards.texi: Revert today's earlier change.
19284         * doc/fdl-1.2.texi: Rename from old fdl.texi...
19285         * doc/fdl.texi: ...and replace this with a symlink to the newer
19286         fdl-1.3.texi.
19287
19288 2008-11-10  Bruno Haible  <bruno@clisp.org>
19289
19290         * tests/test-select-fd.c (main): Accept the result file name as fourth
19291         argument.
19292         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
19293         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
19294
19295 2008-11-10  Bruno Haible  <bruno@clisp.org>
19296
19297         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
19298         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
19299         as autoconf-substituted macros.
19300         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
19301         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
19302         gl_NETDB_H_DEFAULTS. Set these variables.
19303         * modules/netdb (Makefile.am): Substitute these variables.
19304
19305 2008-11-10  Eric Blake  <ebb9@byu.net>
19306
19307         standards.texi: include correct file for FDL 1.3
19308         * doc/standards.texi (GNU Free Documentation License): Change
19309         include file to pull in FDL 1.3, not 1.2.
19310
19311         fdl.texi: revert accidental change to license
19312         * doc/fdl.texi: This is FDL 1.2, not 1.3.
19313
19314 2008-11-10  Bruno Haible  <bruno@clisp.org>
19315
19316         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
19317         cross-compiling guesses also when the native compile gives no result.
19318
19319 2008-11-10  Bruno Haible  <bruno@clisp.org>
19320
19321         * lib/spawni.c (__spawni): Force variable into the stack.
19322
19323 2008-11-10  Bruno Haible  <bruno@clisp.org>
19324
19325         Add support for Haiku.
19326         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
19327         glibc and BeOS, but also on Haiku.
19328         * lib/fpurge.c (fpurge): Likewise.
19329         * lib/freadable.c (freadable): Likewise.
19330         * lib/freadahead.c (freadahead): Likewise.
19331         * lib/freading.c (freading): Likewise.
19332         * lib/freadptr.c (freadptr): Likewise.
19333         * lib/freadseek.c (freadptrinc): Likewise.
19334         * lib/fseeko.c (rpl_fseeko): Likewise.
19335         * lib/fseterr.c (fseterr): Likewise.
19336         * lib/fwritable.c (fwritable): Likewise.
19337         * lib/fwriting.c (fwriting): Likewise.
19338         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
19339
19340 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
19341
19342         * lib/config.charset: Treat Haiku like BeOS.
19343
19344 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
19345
19346         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
19347         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
19348
19349 2008-11-08  Bruno Haible  <bruno@clisp.org>
19350
19351         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
19352         AC_CACHE_CHECK.
19353
19354 2008-11-08  Bruno Haible  <bruno@clisp.org>
19355
19356         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
19357
19358 2008-11-08  Bruno Haible  <bruno@clisp.org>
19359
19360         * tests/test-select-fd.c: New file.
19361         * tests/test-select-in.sh: New file.
19362         * tests/test-select-out.sh: New file.
19363         * tests/test-select-stdin.c: New file.
19364         * modules/select-tests (Files): Add the new files.
19365         (Depends-on): Add gettimeofday.
19366         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
19367         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
19368         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
19369
19370 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
19371             Bruno Haible  <bruno@clisp.org>
19372
19373         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
19374
19375 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
19376
19377         * build-aux/pmccabe2html: Added support for C++ source files.
19378
19379 2008-11-05  Ben Pfaff  <blp@gnu.org>
19380
19381         Fix lib/close.c build on Windows.
19382         * modules/close (Files): Add lib/w32sock.h.
19383
19384 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
19385
19386         Accept Bison's NEWS format.
19387         * build-aux/announce-gen (print_news_deltas): Tweak
19388         $re_prefix.
19389
19390 2008-11-04  Bruno Haible  <bruno@clisp.org>
19391
19392         * modules/random_r (Maintainer): Add glibc.
19393
19394 2008-11-04  Simon Josefsson  <simon@josefsson.org>
19395
19396         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
19397         by karl@freefriends.org (Karl Berry).
19398         * doc/alloca.texi: Likewise.
19399         * doc/c-ctype.texi: Likewise.
19400         * doc/c-strcase.texi: Likewise.
19401         * doc/c-strcaseeq.texi: Likewise.
19402         * doc/c-strcasestr.texi: Likewise.
19403         * doc/c-strstr.texi: Likewise.
19404         * doc/c-strtod.texi: Likewise.
19405         * doc/c-strtold.texi: Likewise.
19406         * doc/ctime.texi: Likewise.
19407         * doc/error.texi: Likewise.
19408         * doc/fdl.texi: Likewise.
19409         * doc/gcd.texi: Likewise.
19410         * doc/getdate.texi: Likewise.
19411         * doc/gnulib-intro.texi: Likewise.
19412         * doc/gnulib-tool.texi: Likewise.
19413         * doc/gnulib.texi: Likewise.
19414         * doc/inet_ntoa.texi: Likewise.
19415         * doc/maintain.texi: Likewise.
19416         * doc/make-stds.texi: Likewise.
19417         * doc/quote.texi: Likewise.
19418         * doc/regexprops-generic.texi: Likewise.
19419         * doc/standards.texi: Likewise.
19420         * doc/verify.texi: Likewise.
19421         * doc/visibility.texi: Likewise.
19422         * doc/gnulib.texi (GNU Free Documentation License): Include
19423         fdl-1.3.texi instead of fdl.texi.
19424
19425 2008-11-04  Simon Josefsson  <simon@josefsson.org>
19426
19427         * doc/fdl-1.3.texi: New file, from
19428         <http://www.gnu.org/licenses/fdl-1.3.texi>.
19429         * modules/fdl-1.3: Add.
19430         * MODULES.html.sh: Add fdl-1.3.
19431
19432 2008-11-03  Bruno Haible  <bruno@clisp.org>
19433
19434         Make determination of absolute name of header file work with AIX xlc.
19435         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
19436         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
19437         preprocessing.
19438         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
19439         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
19440
19441 2008-11-03  Simon Josefsson  <simon@josefsson.org>
19442
19443         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
19444         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
19445         <ludo@gnu.org>.
19446
19447 2008-11-02  Bruno Haible  <bruno@clisp.org>
19448
19449         Mark 'strpbrk' obsolete.
19450         * modules/strpbrk (Status, Notice): New sections.
19451         * modules/strtok_r (Depends-on): Add strpbrk.
19452
19453 2008-11-02  Bruno Haible  <bruno@clisp.org>
19454
19455         Mark 'strdup' obsolete.
19456         * modules/strdup (Status, Notice): New sections.
19457         * modules/findprog (Depends-on): Add strdup.
19458         * modules/getaddrinfo (Depends-on): Likewise.
19459         * modules/localename (Depends-on): Likewise.
19460         * modules/relocatable-lib (Depends-on): Likewise.
19461         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
19462         * modules/relocatable-prog (Depends-on): Likewise.
19463         * modules/trim (Depends-on): Likewise.
19464         * modules/unictype/gen-ctype (Depends-on): Likewise.
19465         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
19466
19467 2008-11-02  Bruno Haible  <bruno@clisp.org>
19468
19469         Mark 'strcspn' obsolete.
19470         * modules/strcspn (Status, Notice): New sections.
19471
19472 2008-11-02  Bruno Haible  <bruno@clisp.org>
19473
19474         Mark 'rmdir' obsolete.
19475         * modules/rmdir (Status, Notice): New sections.
19476         * modules/clean-temp (Depends-on): Add rmdir.
19477         * modules/openat (Depends-on): Likewise.
19478
19479 2008-11-02  Bruno Haible  <bruno@clisp.org>
19480
19481         Mark 'raise' obsolete.
19482         * modules/raise (Status, Notice): New sections.
19483         (Include): Specify <signal.h>.
19484         * modules/stdio (Depends-on): Add raise.
19485         * modules/write (Depends-on): Likewise.
19486
19487 2008-11-02  Bruno Haible  <bruno@clisp.org>
19488
19489         Mark 'memset' obsolete.
19490         * modules/memset (Status, Notice): New sections.
19491
19492 2008-11-02  Bruno Haible  <bruno@clisp.org>
19493
19494         Mark 'memmove' obsolete.
19495         * modules/memmove (Status, Notice): New sections.
19496         * modules/argp (Depends-on): Add memmove.
19497         * modules/argz (Depends-on): Likewise.
19498         * modules/canonicalize (Depends-on): Likewise.
19499         * modules/canonicalize-lgpl (Depends-on): Likewise.
19500         * modules/fts (Depends-on): Likewise.
19501         * modules/getcwd (Depends-on): Likewise.
19502         * modules/human (Depends-on): Likewise.
19503         * modules/regex (Depends-on): Likewise.
19504         * modules/striconveh (Depends-on): Likewise.
19505         * modules/trim (Depends-on): Likewise.
19506         * modules/unistr/u8-move (Depends-on): Likewise.
19507         * modules/unistr/u16-move (Depends-on): Likewise.
19508         * modules/unistr/u32-move (Depends-on): Likewise.
19509
19510 2008-11-02  Bruno Haible  <bruno@clisp.org>
19511
19512         Mark 'memcpy' obsolete.
19513         * modules/memcpy (Status, Notice): New sections.
19514
19515 2008-11-02  Bruno Haible  <bruno@clisp.org>
19516
19517         Mark 'memcmp' obsolete.
19518         * modules/memcmp (Status, Notice): New sections.
19519         * modules/argmatch (Depends-on): Add memchr.
19520         * modules/backupfile (Depends-on): Likewise.
19521         * modules/c-strcasestr (Depends-on): Likewise.
19522         * modules/crypto/des (Depends-on): Likewise.
19523         * modules/csharpcomp (Depends-on): Likewise.
19524         * modules/fnmatch (Depends-on): Likewise.
19525         * modules/git-merge-changelog (Depends-on): Likewise.
19526         * modules/isnand (Depends-on): Likewise.
19527         * modules/isnand-nolibm (Depends-on): Likewise.
19528         * modules/isnanf (Depends-on): Likewise.
19529         * modules/isnanf-nolibm (Depends-on): Likewise.
19530         * modules/isnanl (Depends-on): Likewise.
19531         * modules/isnanl-nolibm (Depends-on): Likewise.
19532         * modules/mbchar (Depends-on): Likewise.
19533         * modules/memcoll (Depends-on): Likewise.
19534         * modules/quotearg (Depends-on): Likewise.
19535         * modules/regex (Depends-on): Likewise.
19536         * modules/relocatable-prog (Depends-on): Likewise.
19537         * modules/same (Depends-on): Likewise.
19538         * modules/signbit (Depends-on): Likewise.
19539         * modules/strcasestr-simple (Depends-on): Likewise.
19540         * modules/unictype/gen-ctype (Depends-on): Likewise.
19541         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
19542         * modules/uniname/uniname (Depends-on): Likewise.
19543         * modules/unistr/u8-cmp (Depends-on): Likewise.
19544
19545 2008-11-02  Bruno Haible  <bruno@clisp.org>
19546
19547         Mark 'memchr' obsolete.
19548         * modules/memchr (Status, Notice): New sections.
19549         * modules/argp (Depends-on): Add memchr.
19550         * modules/base64 (Depends-on): Likewise.
19551         * modules/c-strcasestr (Depends-on): Likewise.
19552         * modules/chdir-long (Depends-on): Likewise.
19553         * modules/fnmatch (Depends-on): Likewise.
19554         * modules/getsubopt (Depends-on): Likewise.
19555         * modules/git-merge-changelog (Depends-on): Likewise.
19556         * modules/glob (Depends-on): Likewise.
19557         * modules/strcasestr-simple (Depends-on): Likewise.
19558         * modules/strnlen (Depends-on): Likewise.
19559
19560 2008-11-02  Bruno Haible  <bruno@clisp.org>
19561
19562         Mark 'atexit' obsolete.
19563         * modules/atexit (Status, Notice): New sections.
19564         * modules/chdir-long (Depends-on): Add atexit.
19565         * modules/wait-process (Depends-on): Likewise.
19566
19567 2008-11-02  Bruno Haible  <bruno@clisp.org>
19568
19569         * gnulib-tool: New option --with-obsolete.
19570         (func_usage): Document it.
19571         (func_modules_transitive_closure): Drop obsolete dependencies if
19572         incobsolete is not true.
19573         (func_import): Read and save the incobsolete variable to the cache.
19574
19575 2008-11-02  Bruno Haible  <bruno@clisp.org>
19576
19577         * modules/TEMPLATE-EXTENDED: New field 'Status'.
19578         * gnulib-tool: New option --extract-status.
19579         (func_usage): Document it.
19580         (sed_extract_prog): Recognize it.
19581         (func_get_status): New function.
19582
19583 2008-10-30  Simon Josefsson  <simon@josefsson.org>
19584
19585         * modules/sockets (License): Change from LGPL to LGPLv2+.
19586
19587 2008-10-28  Simon Josefsson  <simon@josefsson.org>
19588
19589         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
19590
19591 2008-10-28  Simon Josefsson  <simon@josefsson.org>
19592
19593         * MODULES.html.sh (Support for systems lacking POSIX:2001):
19594         Mention times and sys_times.
19595         * modules/sys_times, modules/sys_times-tests: New modules.
19596         * modules/times, modules/times-tests: Likewise
19597         * m4/sys_times_h.m4: New file.
19598         * lib/sys_times.in.h: Likewise
19599         * lib/times.c: Likewise.
19600         * tests/test-sys_times.c: Likewise.
19601         * tests/test-times.c: Likewise.
19602         * doc/posix-headers/sys_times.texi: Update.
19603         * doc/posix-functions/times.texi: Update.
19604
19605 2008-10-28  Jim Meyering  <meyering@redhat.com>
19606
19607         * modules/tempname (Depends-on): Add lstat.
19608
19609         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
19610
19611 2008-10-28  Simon Josefsson  <simon@josefsson.org>
19612
19613         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
19614         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
19615         using idiom used elsewhere in gnulib.
19616
19617 2008-10-27  Jim Meyering  <meyering@redhat.com>
19618
19619         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
19620
19621 2008-10-27  Simon Josefsson  <simon@josefsson.org>
19622
19623         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
19624         TESTS_ENVIRONMENT, for shell scripts that needs to call built
19625         programs.
19626         * tests/test-argp-2.sh: Use $EXEEXT when needed.
19627
19628 2008-10-27  Simon Josefsson  <simon@josefsson.org>
19629
19630         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
19631
19632 2008-10-27  Bruno Haible  <bruno@clisp.org>
19633
19634         * tests/test-lstat.c: Include <stdio.h>.
19635
19636 2008-10-27  Simon Josefsson  <simon@josefsson.org>
19637
19638         * modules/lstat-tests: New module.
19639         * tests/test-lstat.c: New file.
19640
19641 2008-10-26  Jim Meyering  <meyering@redhat.com>
19642
19643         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
19644
19645 2008-10-26  Simon Josefsson  <simon@josefsson.org>
19646             Bruno Haible  <bruno@clisp.org>
19647
19648         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
19649         * modules/configmake (Include): Add a note that the include must come
19650         after all system headers.
19651         * lib/javaversion.c: Include configmake.h after all other includes.
19652
19653 2008-10-26  Bruno Haible  <bruno@clisp.org>
19654
19655         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
19656         HAVE_STRUCT_RANDOM_DATA to 1.
19657         (gl_STDLIB_H): Simplify.
19658
19659 2008-10-26  Simon Josefsson  <simon@josefsson.org>
19660
19661         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
19662         substitute HAVE_STRUCT_RANDOM_DATA.
19663         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
19664         random_data.
19665         * modules/stdlib (Makefile.am): Substitute
19666         HAVE_STRUCT_RANDOM_DATA.
19667
19668 2008-10-26  Simon Josefsson  <simon@josefsson.org>
19669
19670         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
19671         * doc/gnulib-intro.texi (Copyright): Likewise.
19672
19673 2008-10-26  Simon Josefsson  <simon@josefsson.org>
19674
19675         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
19676         findings.
19677
19678 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
19679             Bruno Haible  <bruno@clisp.org>
19680
19681         * lib/unistd.in.h: Include <winsock2.h>.
19682         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
19683         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
19684         Provide dummy declarations.
19685         (gethostname): Override.
19686         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
19687         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
19688         gl_PREREQ_SYS_H_WINSOCK2.
19689         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
19690         * doc/posix-functions/gethostname.texi: More details.
19691
19692 2008-10-25  Bruno Haible  <bruno@clisp.org>
19693
19694         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
19695         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
19696         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
19697
19698         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
19699         here ...
19700         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
19701         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
19702         gl_UNISTD_H_DEFAULTS.
19703
19704 2008-10-25  Eric Blake  <ebb9@byu.net>
19705
19706         signbit: avoid spurious compiler failure
19707         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
19708         declarations inside function.
19709
19710 2008-10-24  Simon Josefsson  <simon@josefsson.org>
19711             Bruno Haible  <bruno@clisp.org>
19712
19713         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
19714         * modules/random_r (Depends-on): Add stdint.
19715
19716 2008-10-24  Bruno Haible  <bruno@clisp.org>
19717
19718         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
19719         Eggert.
19720         * modules/strerror (License): Likewise.
19721
19722 2008-10-24  Jim Meyering  <meyering@redhat.com>
19723
19724         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
19725         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
19726
19727 2008-10-24  Eric Blake  <ebb9@byu.net>
19728
19729         getgroups: fix compilation when getgroups is available
19730         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
19731         but with <config.h> override of getgroups disabled.
19732
19733 2008-10-24  Simon Josefsson  <simon@josefsson.org>
19734
19735         * doc/gnulib.texi (Header files): Add note about C++ problems.
19736         Explained by Bruno Haible <bruno@clisp.org>.
19737
19738 2008-10-23  Bruno Haible  <bruno@clisp.org>
19739
19740         Define a dummy SA_NODEFER macro on Interix.
19741         * lib/signal.in.h (SA_NODEFER): Define fallback.
19742         Reported by Aleksey Cheusov <cheusov@tut.by> via
19743         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
19744
19745 2008-10-23  Bruno Haible  <bruno@clisp.org>
19746
19747         * modules/freadahead (License): Change to LGPLv2+.
19748         Suggested by Simon Josefsson.
19749
19750 2008-10-23  Jim Meyering  <meyering@redhat.com>
19751
19752         random_r: new module
19753         * modules/random_r: New file.
19754         * m4/random_r.m4: New file.
19755         * lib/random_r.c: New file, from glibc.
19756         * modules/random_r-tests: New file.
19757         * tests/test-random_r.c: New file.
19758         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
19759          Declare.
19760         (RAND_MAX): Define.
19761         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
19762         * modules/stdlib: Substitute them, too.
19763         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
19764         * doc/glibc-functions/initstate_r.texi: Mention the new module.
19765         * doc/glibc-functions/random_r.texi: Likewise.
19766         * doc/glibc-functions/setstate_r.texi: Likewise.
19767         * doc/glibc-functions/srandom_r.texi: Likewise.
19768         * config/srclist.txt: Mention it.
19769
19770 2008-10-23  David Lutterkort  <lutter@redhat.com>
19771
19772         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
19773         link requirement
19774
19775 2008-10-23  Jim Meyering  <meyering@redhat.com>
19776
19777         selinux-h: mark parameters of stub functions as intentionally unused
19778         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
19779         * lib/se-context.in.h: Likewise.
19780
19781 2008-10-22  Simon Josefsson  <simon@josefsson.org>
19782
19783         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
19784
19785 2008-10-22  Simon Josefsson  <simon@josefsson.org>
19786
19787         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
19788
19789 2008-10-22  Eric Blake  <ebb9@byu.net>
19790
19791         glthread/thread: avoid compiler warning
19792         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
19793         Add unreachable abort to silence compiler.
19794
19795 2008-10-22  Eric Blake  <ebb9@byu.net>
19796
19797         netdb: also supply struct addrinfo for cygwin 1.5.x
19798         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
19799         older cygwin.
19800         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
19801         cygwin.
19802         * doc/posix-headers/netdb.texi (netdb.h): Document this.
19803
19804 2008-10-22  Bruno Haible  <bruno@clisp.org>
19805
19806         * users.txt: Update entry about pspp.
19807
19808 2008-10-21  Bruno Haible  <bruno@clisp.org>
19809
19810         Simplification.
19811         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
19812         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
19813
19814         Simplification.
19815         * lib/ioctl.c (ioctl): Don't undefine.
19816         * lib/socket.c (socket): Don't undefine.
19817
19818         Remove unused module indicator macros.
19819         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
19820         GNULIB_$1 as a C macro.
19821
19822         * doc/posix-functions/close.texi: Undo last change.
19823         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
19824         Windows platforms.
19825
19826 2008-10-21  Bruno Haible  <bruno@clisp.org>
19827
19828         Add gethostname() declaration to <unistd.h>.
19829         * lib/unistd.in.h (gethostname): New declaration.
19830         * lib/gethostname.c: Include <unistd.h>.
19831         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
19832         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
19833         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
19834         and HAVE_GETHOSTNAME.
19835         * modules/gethostname (Depends-on): Add unistd.
19836         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
19837         (Include): Specify <unistd.h>.
19838         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
19839         HAVE_GETHOSTNAME.
19840         * tests/test-gethostname.c: Include <unistd.h> first.
19841
19842 2008-10-21  Bruno Haible  <bruno@clisp.org>
19843
19844         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
19845         * modules/select-tests (Depends-on): Likewise.
19846         Reported by Simon Josefsson.
19847
19848 2008-10-21  Simon Josefsson  <simon@josefsson.org>
19849
19850         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
19851         * lib/accept.c: New file, based on winsock.c.
19852         * lib/bind.c: New file, based on winsock.c.
19853         * lib/connect.c: New file, based on winsock.c.
19854         * lib/getpeername.c: New file, based on winsock.c.
19855         * lib/getsockname.c: New file, based on winsock.c.
19856         * lib/getsockopt.c: New file, based on winsock.c.
19857         * lib/ioctl.c: New file, based on winsock.c.
19858         * lib/listen.c: New file, based on winsock.c.
19859         * lib/recv.c: New file, based on winsock.c.
19860         * lib/recvfrom.c: New file, based on winsock.c.
19861         * lib/send.c: New file, based on winsock.c.
19862         * lib/sendto.c: New file, based on winsock.c.
19863         * lib/setsockopt.c: New file, based on winsock.c.
19864         * lib/shutdown.c: New file, based on winsock.c.
19865         * lib/socket.c: New file, based on winsock.c.
19866         * lib/w32sock.h: New file, based on winsock.c.
19867         * lib/winsock.c: Remove file.
19868         * modules/accept: Likewise.
19869         * modules/bind: Likewise.
19870         * modules/connect: Likewise.
19871         * modules/getpeername: Likewise.
19872         * modules/getsockname: Likewise.
19873         * modules/getsockopt: Likewise.
19874         * modules/ioctl: Likewise.
19875         * modules/listen: Likewise.
19876         * modules/recv: Likewise.
19877         * modules/recvfrom: Likewise.
19878         * modules/send: Likewise.
19879         * modules/sendto: Likewise.
19880         * modules/setsockopt: Likewise.
19881         * modules/shutdown: Likewise.
19882         * modules/socket: Use socket.c instead of winsock.c.
19883         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
19884         * doc/posix-functions/accept.texi: Doc fix.
19885         * doc/posix-functions/bind.texi: Doc fix.
19886         * doc/posix-functions/close.texi: Doc fix.
19887         * doc/posix-functions/connect.texi: Doc fix.
19888         * doc/posix-functions/getpeername.texi: Doc fix.
19889         * doc/posix-functions/getsockname.texi: Doc fix.
19890         * doc/posix-functions/getsockopt.texi: Doc fix.
19891         * doc/posix-functions/ioctl.texi: Doc fix.
19892         * doc/posix-functions/listen.texi: Doc fix.
19893         * doc/posix-functions/recv.texi: Doc fix.
19894         * doc/posix-functions/recvfrom.texi: Doc fix.
19895         * doc/posix-functions/send.texi: Doc fix.
19896         * doc/posix-functions/sendto.texi: Doc fix.
19897         * doc/posix-functions/setsockopt.texi: Doc fix.
19898         * doc/posix-functions/shutdown.texi: Doc fix.
19899         * doc/posix-functions/socket.texi: Doc fix.
19900
19901 2008-10-20  Bruno Haible  <bruno@clisp.org>
19902
19903         Take into account the role of SIGABRT_COMPAT on Windows 2008.
19904         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
19905         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
19906         as an alias for SIGABRT.
19907         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
19908         (sigaction): Map it to SIGABRT.
19909         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
19910
19911 2008-10-20  Bruno Haible  <bruno@clisp.org>
19912
19913         * lib/fts.c: Don't include lstat.h.
19914         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
19915
19916         Move the lstat() declaration to <sys/stat.h>.
19917         * lib/lstat.h: Remove file.
19918         * lib/sys_stat.in.h: Add special invocation convention.
19919         (lstat): New declaration.
19920         * lib/lstat.c (orig_lstat): New function.
19921         (rpl_lstat): Use orig_lstat instead of lstat.
19922         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
19923         AC_C_INLINE. Set REPLACE_LSTAT.
19924         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
19925         and REPLACE_LSTAT.
19926         * modules/lstat (Files): Remove lib/lstat.h.
19927         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
19928         (Include): Specify <sys/stat.h> instead of lstat.h.
19929         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
19930         REPLACE_LSTAT.
19931         * NEWS: Mention the change.
19932
19933 2008-10-20  Bruno Haible  <bruno@clisp.org>
19934
19935         * modules/posix_spawn-tests: New file.
19936         * tests/test-posix_spawn3.c: New file.
19937
19938 2008-10-20  Bruno Haible  <bruno@clisp.org>
19939
19940         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
19941         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
19942         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
19943         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
19944         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
19945
19946 2008-10-20  Bruno Haible  <bruno@clisp.org>
19947
19948         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
19949         of posix_spawn on AIX 5.3.
19950
19951 2008-10-20  Bruno Haible  <bruno@clisp.org>
19952
19953         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
19954
19955 2008-10-20  Bruno Haible  <bruno@clisp.org>
19956
19957         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
19958         of AC_LANG_PROGRAM.
19959
19960 2008-10-20  Simon Josefsson  <simon@josefsson.org>
19961
19962         * lib/netdb.in.h: Don't define GNU specific constants until they
19963         are supported or needed.  Reported by Bruno Haible
19964         <bruno@clisp.org>.
19965
19966 2008-10-20  Simon Josefsson  <simon@josefsson.org>
19967
19968         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
19969
19970 2008-10-20  Simon Josefsson  <simon@josefsson.org>
19971
19972         * lib/getaddrinfo.h: Remove file.
19973         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
19974         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
19975         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
19976         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
19977         * modules/netdb: Substitute GNULIB_GETADDRINFO.
19978         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
19979         * tests/test-getaddrinfo.c: Likewise.
19980         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
19981         * NEWS: Mention change.
19982
19983 2008-10-19  Bruno Haible  <bruno@clisp.org>
19984
19985         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
19986
19987 2008-10-19  Bruno Haible  <bruno@clisp.org>
19988
19989         * lib/wait-process.c: Include simply <sys/wait.h>.
19990         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
19991         WIFSTOPPED): Remove fallback definitions.
19992         * modules/wait-process (Depends-on): Add sys_wait.
19993
19994         New module 'sys_wait'.
19995         * modules/sys_wait: New file.
19996         * lib/sys_wait.in.h: New file, partially copied from
19997         lib/wait-process.c.
19998         * m4/sys_wait_h.m4: New file.
19999         * doc/posix-headers/sys_wait.texi: Mention the new module.
20000
20001 2008-10-19  Bruno Haible  <bruno@clisp.org>
20002
20003         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
20004
20005 2008-10-19  Bruno Haible  <bruno@clisp.org>
20006
20007         Assume that waitpid() fills an 'int' status, not a 'union wait'.
20008         * lib/wait-process.c (WAIT_T): Remove type.
20009         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
20010         (wait_subprocess): Update.
20011
20012 2008-10-19  Bruno Haible  <bruno@clisp.org>
20013
20014         New module 'atoll'.
20015         * modules/atoll: New file.
20016         * lib/stdlib.in.h (atoll): New declaration.
20017         * lib/atoll.c: New file, from glibc with modifications.
20018         * m4/atoll.m4: New file.
20019         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
20020         HAVE_ATOLL.
20021         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
20022         * doc/posix-functions/atoll.texi: Mention the new module.
20023
20024 2008-10-19  Bruno Haible  <bruno@clisp.org>
20025
20026         Add strtoull() declaration to <stdlib.h>.
20027         * lib/stdlib.in.h (strtoull): New declaration.
20028         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
20029         Set HAVE_STRTOULL.
20030         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
20031         HAVE_STRTOULL.
20032         * modules/strtoull (Depends-on): Add stdlib.
20033         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20034         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
20035         HAVE_STRTOULL.
20036
20037 2008-10-19  Bruno Haible  <bruno@clisp.org>
20038
20039         Add strtoll() declaration to <stdlib.h>.
20040         * lib/stdlib.in.h (strtoll): New declaration.
20041         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
20042         Set HAVE_STRTOLL.
20043         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
20044         HAVE_STRTOLL.
20045         * modules/strtoll (Depends-on): Add stdlib.
20046         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20047         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
20048
20049 2008-10-19  Bruno Haible  <bruno@clisp.org>
20050
20051         * modules/bcopy (Depends-on): Add strings.
20052         (Include): Specify <strings.h>.
20053
20054 2008-10-19  Bruno Haible  <bruno@clisp.org>
20055
20056         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
20057
20058 2008-10-19  Bruno Haible  <bruno@clisp.org>
20059
20060         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
20061         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
20062         mingw.
20063
20064 2008-10-19  Bruno Haible  <bruno@clisp.org>
20065
20066         * lib/atanl.c: Don't include isnanl.h.
20067         * lib/cosl.c: Likewise.
20068         * lib/ldexpl.c: Likewise.
20069         * lib/logl.c: Likewise.
20070         * lib/sinl.c: Likewise.
20071         * lib/sqrtl.c: Likewise.
20072         * lib/tanl.c: Likewise.
20073
20074         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
20075         * lib/isnanf.h: Remove file.
20076         * lib/isnand.h: Remove file.
20077         * lib/isnanl.h: Remove file.
20078         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
20079         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
20080         macros.
20081         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
20082         HAVE_ISNANF, don't define it as a C macro.
20083         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
20084         HAVE_ISNAND, don't define it as a C macro.
20085         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
20086         HAVE_ISNANL, don't define it as a C macro.
20087         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
20088         HAVE_ISNAN[FDL].
20089         * modules/isnanf (Files): Remove lib/isnanf.h.
20090         (Depends-on): Add math.
20091         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20092         (Include): Specify <math.h> instead of isnanf.h.
20093         * modules/isnand (Files): Remove lib/isnand.h.
20094         (Depends-on): Add math.
20095         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20096         (Include): Specify <math.h> instead of isnand.h.
20097         * modules/isnanl (Files): Remove lib/isnanl.h.
20098         (Depends-on): Add math.
20099         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20100         (Include): Specify <math.h> instead of isnanl.h.
20101         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
20102         HAVE_ISNAN[FDL].
20103         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
20104         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
20105         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
20106         * NEWS: Mention the change.
20107
20108 2008-10-18  Bruno Haible  <bruno@clisp.org>
20109
20110         Add getusershell(), setusershell(), endusershell() declarations to
20111         <unistd.h>.
20112         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
20113         declarations.
20114         * lib/getusershell.c: Include unistd.h.
20115         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
20116         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
20117         HAVE_GETUSERSHELL.
20118         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
20119         and HAVE_GETUSERSHELL.
20120         * modules/getusershell (Depends-on): Add unistd, extensions.
20121         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20122         (Include): Specify <unistd.h>.
20123         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
20124         HAVE_GETUSERSHELL.
20125
20126 2008-10-18  Bruno Haible  <bruno@clisp.org>
20127
20128         Add a getloadavg() declaration to <stdlib.h>.
20129         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
20130         getloadavg declaration.
20131         (getloadavg): New declaration.
20132         * lib/getloadavg.c: Include <stdlib.h> first.
20133         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
20134         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
20135         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
20136         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
20137         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
20138         * modules/getloadavg (Depends-on): Add stdlib, extensions.
20139         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20140         (Include): Specify <stdlib.h>.
20141         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
20142         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
20143
20144 2008-10-18  Bruno Haible  <bruno@clisp.org>
20145
20146         * lib/dirchownmod.c: Don't include lchmod.h.
20147
20148         Move the lchmod() declaration to <sys/stat.h>.
20149         * lib/lchmod.h: Remove file.
20150         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
20151         (lchmod): New declaration, moved here from lib/lchown.h.
20152         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
20153         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
20154         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
20155         and HAVE_LCHMOD.
20156         * modules/lchmod (Files): Remove lib/lchmod.h.
20157         (Depends-on): Add sys_stat, extensions.
20158         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
20159         (Include): Specify <sys/stat.h> instead of lchmod.h.
20160         * modules/sys_stat (Depends-on): Add link-warning.
20161         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
20162         definition of GL_LINK_WARNING.
20163         * NEWS: Mention the change.
20164
20165 2008-10-18  Bruno Haible  <bruno@clisp.org>
20166
20167         * lib/fchdir.c: Don't include dirfd.h.
20168         * lib/fts.c: Likewise.
20169         * lib/getcwd.c: Likewise.
20170         * lib/glob.c: Likewise.
20171
20172         Move the dirfd() declaration to <dirent.h>.
20173         * lib/dirfd.h: Remove file.
20174         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
20175         (dirfd): New declaration.
20176         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
20177         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
20178         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
20179         HAVE_DECL_DIRFD.
20180         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
20181         HAVE_DECL_DIRFD.
20182         * modules/dirfd (Files): Remove lib/dirfd.h.
20183         (Depends-on): Add dirent, extensions.
20184         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
20185         (Include): Specify <dirent.h> instead of dirfd.h.
20186         * modules/dirent (Depends-on): Add link-warning.
20187         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
20188         definition of GL_LINK_WARNING.
20189         * NEWS: Mention the change.
20190
20191 2008-10-18  Bruno Haible  <bruno@clisp.org>
20192
20193         Move the euidaccess() declaration to <unistd.h>.
20194         * lib/euidaccess.h: Remove file.
20195         * lib/unistd.in.h (euidaccess): New declaration.
20196         * lib/euidaccess.c: Don't include euidaccess.h.
20197         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
20198         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
20199         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
20200         and HAVE_EUIDACCESS.
20201         * modules/euidaccess (Files): Remove lib/euidaccess.h.
20202         (Depends-on): Add unistd.
20203         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20204         (Include): Specify <unistd.h> instead of euidaccess.h.
20205         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
20206         HAVE_EUIDACCESS.
20207         * NEWS: Mention the change.
20208
20209 2008-10-18  Bruno Haible  <bruno@clisp.org>
20210
20211         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
20212
20213         Move the getdomainname() declaration to <unistd.h>.
20214         * lib/getdomainname.h: Remove file.
20215         * lib/unistd.in.h (getdomainname): New declaration.
20216         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
20217         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
20218         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
20219         HAVE_GETDOMAINNAME.
20220         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
20221         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
20222         * modules/getdomainname (Files): Remove lib/getdomainname.h.
20223         (Depends-on): Add unistd, extensions.
20224         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20225         (Includes): Specify <unistd.h> instead of getdomainname.h.
20226         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
20227         HAVE_GETDOMAINNAME.
20228         * NEWS: Mention the change.
20229
20230 2008-10-18  Bruno Haible  <bruno@clisp.org>
20231
20232         * modules/dirent: New file.
20233         * m4/dirent_h.m4: New file.
20234         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
20235         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
20236         * modules/fchdir (Files): Remove lib/dirent.in.h.
20237         (Depends-on): Add dirent.
20238         (Makefile.am): Move rules to modules/dirent.
20239         * doc/posix-headers/dirent.texi: Mention the new module.
20240
20241 2008-10-18  Bruno Haible  <bruno@clisp.org>
20242
20243         Avoid -Wunused-parameter warnings in public gnulib header files.
20244         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
20245         macro.
20246         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
20247
20248 2008-10-18  Bruno Haible  <bruno@clisp.org>
20249
20250         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
20251         * doc/glibc-functions/error.texi: Mention the module 'error'.
20252         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
20253         * doc/glibc-functions/getdomainname.texi: Mention the module
20254         'getdomainname'.
20255         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
20256         * doc/glibc-functions/getpagesize.texi: Mention the module
20257         'getpagesize'.
20258         * doc/glibc-functions/getusershell.texi: Mention the module
20259         'getusershell'.
20260         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
20261         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
20262         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
20263         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
20264         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
20265         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
20266         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
20267         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
20268         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
20269         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
20270         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
20271         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
20272         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
20273         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
20274
20275 2008-10-17  Bruno Haible  <bruno@clisp.org>
20276
20277         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
20278         HP-UX and IRIX, use -0.0L.
20279         * tests/test-ceill.c (minus_zero): Likewise.
20280         * tests/test-floorl.c (minus_zero): Likewise.
20281         * tests/test-frexpl.c (minus_zero): Likewise.
20282         * tests/test-isnan.c (minus_zerol): Likewise.
20283         * tests/test-isnanl.h (minus_zero): Likewise.
20284         * tests/test-ldexpl.c (minus_zero): Likewise.
20285         * tests/test-roundl.c (minus_zero): Likewise.
20286         * tests/test-signbit.c (minus_zerol): Likewise.
20287         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
20288         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
20289         * tests/test-truncl.c (minus_zero): Likewise.
20290         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
20291         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
20292         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
20293         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
20294
20295 2008-10-17  Bruno Haible  <bruno@clisp.org>
20296
20297         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
20298         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
20299         that it gets activated only for gcc >= 3.0.
20300         * lib/dirent.in.h: Likewise.
20301         * lib/errno.in.h: Likewise.
20302         * lib/fcntl.in.h: Likewise.
20303         * lib/float.in.h: Likewise.
20304         * lib/iconv.in.h: Likewise.
20305         * lib/inttypes.in.h: Likewise.
20306         * lib/locale.in.h: Likewise.
20307         * lib/math.in.h: Likewise.
20308         * lib/netdb.in.h: Likewise.
20309         * lib/netinet_in.in.h: Likewise.
20310         * lib/search.in.h: Likewise.
20311         * lib/signal.in.h: Likewise.
20312         * lib/spawn.in.h: Likewise.
20313         * lib/stdarg.in.h: Likewise.
20314         * lib/stdint.in.h: Likewise.
20315         * lib/stdio.in.h: Likewise.
20316         * lib/stdlib.in.h: Likewise.
20317         * lib/string.in.h: Likewise.
20318         * lib/strings.in.h: Likewise.
20319         * lib/sys_file.in.h: Likewise.
20320         * lib/sys_ioctl.in.h: Likewise.
20321         * lib/sys_select.in.h: Likewise.
20322         * lib/sys_socket.in.h: Likewise.
20323         * lib/sys_stat.in.h: Likewise.
20324         * lib/sys_time.in.h: Likewise.
20325         * lib/sysexits.in.h: Likewise.
20326         * lib/time.in.h: Likewise.
20327         * lib/unistd.in.h: Likewise.
20328         * lib/wchar.in.h: Likewise.
20329         * lib/wctype.in.h: Likewise.
20330         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
20331
20332 2008-10-17  Jim Meyering  <meyering@redhat.com>
20333
20334         ignore-value: don't depend on inline module
20335         * modules/ignore-value (Depends-on): Remove 'inline'.
20336         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
20337         Suggestion from Bruno Haible.
20338
20339 2008-10-17  Bruno Haible  <bruno@clisp.org>
20340
20341         New implementation of condition variables for Win32.
20342         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
20343         (gl_linked_waitqueue_t): New type.
20344         (gl_cond_t): Use it.
20345         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
20346         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
20347         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
20348         (glthread_cond_init_func, glthread_cond_wait_func,
20349         glthread_cond_timedwait_func, glthread_cond_signal_func,
20350         glthread_cond_broadcast_func, glthread_cond_destroy_func):
20351         Reimplemented on the basis of gl_linked_waitqueue_t.
20352         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
20353         gl_waitqueue_t.
20354         (gl_rwlock_t): Update.
20355         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
20356
20357 2008-10-17  Simon Josefsson  <simon@josefsson.org>
20358
20359         * modules/recvfrom (Depends-on): Add dependency on getpeername.
20360         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
20361
20362 2008-10-17  Jim Meyering  <meyering@redhat.com>
20363
20364         ignore-value: new module
20365         * modules/ignore-value: New file.
20366         * lib/ignore-value.h: New file.
20367         * MODULES.html.sh (Compiler warning management): New section,
20368         just for this module.  More to come.
20369
20370 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
20371
20372         open-safer.c: avoid 'signed and unsigned in conditional...' warning
20373         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
20374         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
20375
20376 2008-10-16  Jim Meyering  <meyering@redhat.com>
20377
20378         openat-die.c: avoid 'no previous prototype' warning
20379         * lib/openat-die.c: Include "openat.h".
20380         Reported by Reuben Thomas <rrt@sc3d.org>.
20381
20382 2008-10-16  Simon Josefsson  <simon@josefsson.org>
20383
20384         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
20385         * lib/netdb.in.h: Fix typo.
20386         Reported by Bruno Haible  <bruno@clisp.org>
20387
20388         * lib/netdb.in.h: Include sys/socket.h for platforms without
20389         netdb.h, to get structures like hostent on MinGW.
20390         * modules/netdb (Depends-on): Add sys_socket.
20391
20392 2008-10-15  Simon Josefsson  <simon@josefsson.org>
20393
20394         * modules/netdb, modules/netdb-tests: New file.
20395         * m4/netdb_h.m4: New file.
20396         * lib/netdb.in.h: Add, currently just an empty file pending
20397         definitions.
20398         * tests/test-netdb.c: New file.
20399         * doc/posix-headers/netdb.texi: Mention that we replace it if
20400         needed.
20401         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
20402         netdb.
20403
20404 2008-10-15  Simon Josefsson  <simon@josefsson.org>
20405
20406         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
20407         with code.
20408
20409 2008-10-13  Bruno Haible  <bruno@clisp.org>
20410
20411         * lib/glthread/cond.c (glthread_cond_wait_func,
20412         glthread_cond_timedwait_func): Add a comment.
20413
20414 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20415
20416         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
20417         * tests/test-select.c: Likewise,
20418
20419 2008-10-13  Bruno Haible  <bruno@clisp.org>
20420
20421         * lib/glthread/cond.c (glthread_cond_wait_func,
20422         glthread_cond_timedwait_func): Fix variable name.
20423         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
20424
20425 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
20426
20427         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
20428         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
20429         struct sockaddr.sa_len.
20430         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
20431
20432 2008-10-13  Simon Josefsson  <simon@josefsson.org>
20433
20434         * build-aux/pmccabe2html: Add css and css_url parameters.
20435
20436 2008-10-12  Bruno Haible  <bruno@clisp.org>
20437
20438         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
20439         calling aclx_get.
20440         Reported by Rainer Tammer <tammer@tammer.net>.
20441
20442 2008-10-12  Bruno Haible  <bruno@clisp.org>
20443
20444         Use msvcrt aware primitives for creation/termination of Win32 threads.
20445         * lib/glthread/thread.c: Include <process.h>.
20446         (glthread_create_func): Use _beginthreadex instead of CreateThread.
20447         (wrapper_func): Update signature.
20448         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
20449
20450 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20451             Bruno Haible  <bruno@clisp.org>
20452
20453         Provide a Win32 implementation of the 'cond' module.
20454         * lib/glthread/cond.h [USE_WIN32]: New implementation.
20455         * lib/glthread/cond.c (glthread_cond_init_func,
20456         glthread_cond_wait_func, glthread_cond_timedwait_func,
20457         glthread_cond_signal_func, glthread_cond_broadcast_func,
20458         glthread_cond_destroy_func) [USE_WIN32]: New functions.
20459         * modules/cond (Dependencies): Add gettimeofday.
20460
20461 2008-10-11  Bruno Haible  <bruno@clisp.org>
20462
20463         Make sleep work on older versions of mingw.
20464         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
20465         only whether it exists.
20466         * doc/posix-functions/sleep.texi: Mention the problem with older
20467         versions of mingw.
20468
20469 2008-10-11  Bruno Haible  <bruno@clisp.org>
20470
20471         New module 'shutdown'.
20472         * modules/shutdown: New file.
20473         * lib/sys_socket.in.h (shutdown): New declaration.
20474         * lib/winsock.c (shutdown): New function.
20475         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
20476         GNULIB_SHUTDOWN.
20477         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
20478         * doc/posix-functions/shutdown.texi: Document the new module.
20479
20480 2008-10-11  Jim Meyering  <meyering@redhat.com>
20481
20482         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
20483
20484 2008-10-11  Bruno Haible  <bruno@clisp.org>
20485
20486         New module 'fclose'.
20487         * modules/fclose: New file.
20488         * lib/stdio.in.h (fclose): New declaration.
20489         * lib/fclose.c: New file.
20490         * m4/fclose.m4: New file.
20491         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
20492         REPLACE_FCLOSE.
20493         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
20494         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
20495         REPLACE_FCLOSE.
20496         * modules/close (Depends-on): fclose.
20497         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
20498
20499 2008-10-11  Bruno Haible  <bruno@clisp.org>
20500
20501         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
20502         set errno and don't call _close.
20503
20504 2008-10-10  Bruno Haible  <bruno@clisp.org>
20505
20506         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
20507         ACL, not afterwards. Fixes test failure on Cygwin.
20508
20509 2008-10-09  Ben Pfaff  <blp@gnu.org>
20510
20511         * build-aux/announce-gen: Fix gnulib version related part of usage
20512         message.  Die with a useful error message if no tarballs are
20513         found.
20514
20515 2008-10-10  Jim Meyering  <meyering@redhat.com>
20516
20517         bootstrap: use git's --depth=N option only if it's supported
20518         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
20519         recognize the --depth option.  Reported by Pádraig Brady.
20520
20521 2008-10-09  Bruno Haible  <bruno@clisp.org>
20522
20523         New module 'ioctl'.
20524         * modules/ioctl: New file.
20525         * lib/sys_socket.in.h (ioctl): Remove declaration.
20526         * lib/winsock.c: Include <sys/ioctl.h>.
20527         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
20528         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
20529         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
20530         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
20531         * doc/posix-functions/ioctl.texi: Mention the new module.
20532
20533 2008-10-09  Bruno Haible  <bruno@clisp.org>
20534
20535         New module 'sys_ioctl'.
20536         * lib/sys_ioctl.in.h: New file.
20537         * m4/sys_ioctl_h.m4: New file.
20538         * modules/sys_ioctl: New file.
20539         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
20540
20541 2008-10-09  Bruno Haible  <bruno@clisp.org>
20542
20543         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
20544         * lib/winsock.c: Include <stdarg.h>.
20545         (rpl_ioctl): Change to second argument 'int' and then varargs.
20546
20547 2008-10-09  Bruno Haible  <bruno@clisp.org>
20548
20549         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
20550         when the sys_socket module is present and the system has <winsock2.h>.
20551
20552 2008-10-09  Bruno Haible  <bruno@clisp.org>
20553
20554         * doc/posix-functions/close.texi: Mention module 'close' instead of
20555         module 'sys_socket'.
20556
20557 2008-10-09  Bruno Haible  <bruno@clisp.org>
20558
20559         * doc/glibc-headers/sys_ioctl.texi: New file.
20560         * doc/gnulib.texi: Include it.
20561
20562 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20563             Bruno Haible  <bruno@clisp.org>
20564
20565         Combine the two replacements of 'close'.
20566         * lib/sys_socket.in.h (close): Define to a reminder to include
20567         <unistd.h>.
20568         (_gl_close_fd_maybe_socket): New declaration.
20569         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
20570         * lib/winsock.c (close): Remove undefinition.
20571         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
20572         needed for the gnulib module 'close'.
20573         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
20574         define to an error symbol or to a warning, if suitable.
20575         * lib/close.c: Include <sys/socket.h>.
20576         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
20577         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
20578         UNISTD_H_HAVE_WINSOCK2_H.
20579         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
20580         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
20581         UNISTD_H_HAVE_WINSOCK2_H.
20582         * modules/sys_socket (Files): Add m4/unistd_h.m4.
20583         (configure.ac): Set a module indicator.
20584         (Makefile.am): Substitute GNULIB_CLOSE.
20585         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
20586         * modules/poll-tests (Depends-on): Add close.
20587         * modules/select-tests (Depends-on): Likewise.
20588
20589 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20590             Bruno Haible  <bruno@clisp.org>
20591
20592         New module 'close'.
20593         * modules/close: New file.
20594         * lib/unistd.in.h (close): Move declaration out of the
20595         FCHDIR_REPLACEMENT scope.
20596         (_gl_unregister_fd): New declaration.
20597         * lib/close.c: New file.
20598         * lib/fchdir.c (rpl_close): Remove function.
20599         * m4/close.m4: New file.
20600         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
20601         close.
20602         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
20603         REPLACE_CLOSE.
20604         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
20605         REPLACE_CLOSE.
20606         * modules/fchdir (Depends-on): Add close.
20607
20608 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20609             Bruno Haible  <bruno@clisp.org>
20610
20611         * lib/fcntl.in.h (open): Simplify conditionals.
20612         (_gl_register_fd): New declaration.
20613         * lib/fchdir.c (rpl_open): Remove function.
20614         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
20615         also.
20616         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
20617         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
20618         open.
20619
20620 2008-10-09  Jim Meyering  <meyering@redhat.com>
20621
20622         GNUmakefile: use the more name-space-friendly "_version"
20623         * top/GNUmakefile (_dummy): Update.
20624         (_version): Rename from "version".
20625
20626 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20627             Bruno Haible  <bruno@clisp.org>
20628
20629         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
20630         rpl_close.
20631         (_gl_register_fd): New function, extracted from rpl_open.
20632         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
20633         (rpl_open, rpl_opendir): Use _gl_register_fd.
20634
20635 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20636
20637         Fix organization of 'open' replacement.
20638         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
20639         (gl_FUNC_OPEN): Use it.
20640         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
20641
20642 2008-10-08  Bruno Haible  <bruno@clisp.org>
20643
20644         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
20645
20646 2008-10-08  Simon Josefsson  <simon@josefsson.org>
20647
20648         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
20649         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
20650         listen).
20651
20652 2008-10-08  Eric Blake  <ebb9@byu.net>
20653
20654         GNUmakefile: add 'make version' target
20655         * top/GNUmakefile (_curr-ver): Split version update rules...
20656         (version): ...into a target.
20657
20658 2008-10-07  Bruno Haible  <bruno@clisp.org>
20659
20660         Use a more portable replacement expression for -0.0L.
20661         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
20662         instead of -0.0L. Fix m4 quotation.
20663
20664         * tests/test-signbit.c: Include <float.h>.
20665         (minus_zero): New variable.
20666         (test_signbitl): Use minus_zero instead of -zero.
20667         * modules/signbit-tests (Depends-on): Add float.
20668
20669         * tests/test-ceill.c: Include <float.h>.
20670         (zero): Remove variable.
20671         (minus_zero): New variable.
20672         (main): Use minus_zero instead of -zero.
20673         * modules/ceill-tests (Depends-on): Add float.
20674
20675         * tests/test-floorl.c: Include <float.h>.
20676         (zero): Remove variable.
20677         (minus_zero): New variable.
20678         (main): Use minus_zero instead of -zero.
20679         * modules/floorl-tests (Depends-on): Add float.
20680
20681         * tests/test-roundl.c: Include <float.h>.
20682         (zero): Remove variable.
20683         (minus_zero): New variable.
20684         (main): Use minus_zero instead of -zero.
20685         * modules/roundl-tests (Depends-on): Add float.
20686
20687         * tests/test-truncl.c: Include <float.h>.
20688         (zero): Remove variable.
20689         (minus_zero): New variable.
20690         (main): Use minus_zero instead of -zero.
20691         * modules/truncl-tests (Depends-on): Add float.
20692
20693         * tests/test-frexpl.c (zero): Remove variable.
20694         (minus_zero): New variable.
20695         (main): Use minus_zero instead of -zero.
20696         * modules/frexpl-tests (Depends-on): Add float.
20697
20698         * tests/test-isnan.c (zerol): Remove variable.
20699         (minus_zerol): New variable.
20700         (test_long_double): Use minus_zerol instead of -zerol.
20701         * modules/isnan-tests (Depends-on): Add float.
20702
20703         * tests/test-isnanl.h (zero): Remove variable.
20704         (minus_zero): New variable.
20705         (main): Use minus_zero instead of -zero.
20706         * modules/isnanl-nolibm-tests (Depends-on): Add float.
20707         * modules/isnanl-tests (Depends-on): Add float.
20708
20709         * tests/test-ldexpl.c (zero): Remove variable.
20710         (minus_zero): New variable.
20711         (main): Use minus_zero instead of -zero.
20712         * modules/ldexpl-tests (Depends-on): Add float.
20713
20714         * tests/test-snprintf-posix.h (zerol): Remove variable.
20715         (minus_zerol): New variable.
20716         (test_function): Use minus_zerol instead of -zerol.
20717         * modules/snprintf-posix-tests (Depends-on): Add float.
20718         * modules/vsnprintf-posix-tests (Depends-on): Add float.
20719
20720         * tests/test-sprintf-posix.h (zerol): Remove variable.
20721         (minus_zerol): New variable.
20722         (test_function): Use minus_zerol instead of -zerol.
20723         * modules/sprintf-posix-tests (Depends-on): Add float.
20724         * modules/vsprintf-posix-tests (Depends-on): Add float.
20725
20726         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
20727         (minus_zerol): New variable.
20728         (test_function): Use minus_zerol instead of -zerol.
20729         * modules/vasnprintf-posix-tests (Depends-on): Add float.
20730
20731         * tests/test-vasprintf-posix.c (zerol): Remove variable.
20732         (minus_zerol): New variable.
20733         (test_function): Use minus_zerol instead of -zerol.
20734         * modules/vasprintf-posix-tests (Depends-on): Add float.
20735
20736 2008-10-07  Simon Josefsson  <simon@josefsson.org>
20737
20738         * MODULES.html.sh (Support for building documentation): Mention
20739         pmccabe2html.  Sort entries.
20740
20741         Add pmccabe2html module, from gnupdf.
20742         * build-aux/pmccabe.css: New file.
20743         * build-aux/pmccabe2html: New file.
20744         * m4/pmccabe2html.m4: New file.
20745         * modules/pmccabe2html: New file.
20746
20747 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
20748
20749         flock: new module
20750         * MODULES.html.sh: Add to list of modules.
20751         * lib/flock.c: flock implementation for Windows and Unix systems
20752         which have fcntl.
20753         * doc/glibc-functions/flock.texi: Update documentation.
20754         * lib/sys_file.in.h: <sys/file.h> header file.
20755         * m4/flock.m4: M4 macros.
20756         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
20757         * modules/flock: flock module.
20758         * modules/flock-tests: flock tests module.
20759         * modules/sys_file: sys/file.h module.
20760         * tests/test-flock.c: test suite for flock.
20761
20762 2008-10-06  Jim Meyering  <meyering@redhat.com>
20763
20764         bootstrap: check for LT_INIT more portably still ;-)
20765         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
20766         Spotted by Bruno Haible.
20767
20768 2008-10-06  Eric Blake  <ebb9@byu.net>
20769
20770         test-signbit: avoid tripping Irix cc bug on -0.0L
20771         * tests/test-signbit.c (minus_zerol): Delete, and replace with
20772         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
20773         entire testsuite consistent and avoids an Irix 6.2 bug.
20774
20775 2008-10-05  Bruno Haible  <bruno@clisp.org>
20776             Jim Meyering  <jim@meyering.net>
20777
20778         Add an option for ignoring EPIPE during close_stdout.
20779         * lib/closeout.h: Include <stdbool.h>.
20780         (close_stdout_set_ignore_EPIPE): New declaration.
20781         * lib/closeout.c: Include <stdbool.h>.
20782         (ignore_EPIPE): New variable.
20783         (close_stdout_set_ignore_EPIPE): New function.
20784         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
20785         * lib/close-stream.c (close_stream): Mention the possible EPIPE
20786         failure.
20787         * modules/closeout (Depends-on): Add stdbool.
20788
20789 2008-10-05  Bruno Haible  <bruno@clisp.org>
20790
20791         * modules/accept: New file.
20792         * modules/bind: New file.
20793         * modules/connect: New file.
20794         * modules/getpeername: New file.
20795         * modules/getsockname: New file.
20796         * modules/getsockopt: New file.
20797         * modules/listen: New file.
20798         * modules/recv: New file.
20799         * modules/recvfrom: New file.
20800         * modules/send: New file.
20801         * modules/sendto: New file.
20802         * modules/setsockopt: New file.
20803         * modules/socket: New file.
20804         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
20805         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
20806         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
20807         the particular module is requested. Add a link warning when the
20808         particular module is not requested.
20809         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
20810         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
20811         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
20812         the particular module is requested.
20813         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
20814         gl_SYS_SOCKET_H_DEFAULTS): New macros.
20815         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
20816         * modules/sys_socket (Depends-on): Add link-warning.
20817         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
20818         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
20819         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
20820         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
20821         GL_LINK_WARNING.
20822         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
20823         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
20824         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
20825         * doc/posix-functions/getpeername.texi: Mention the new module
20826         'getpeername'.
20827         * doc/posix-functions/getsockname.texi: Mention the new module
20828         'getsockname'.
20829         * doc/posix-functions/getsockopt.texi: Mention the new module
20830         'getsockopt'.
20831         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
20832         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
20833         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
20834         * doc/posix-functions/send.texi: Mention the new module 'send'.
20835         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
20836         * doc/posix-functions/setsockopt.texi: Mention the new module
20837         'setsockopt'.
20838         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
20839         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
20840         listen, connect, accept.
20841         * modules/select-tests (Depends-on): Likewise.
20842
20843 2008-10-05  Bruno Haible  <bruno@clisp.org>
20844
20845         * lib/winsock.c (strerror): Remove unused #undef.
20846         (rpl_close): Remove unused local variable.
20847
20848         * modules/sys_socket (Depends-on); Add errno.
20849
20850 2008-10-05  Bruno Haible  <bruno@clisp.org>
20851
20852         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
20853         (select): Add a link warning when the 'select' module is not used.
20854         * modules/sys_select (Depends-on): Add link-warning.
20855         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
20856         Suggested by Paolo Bonzini.
20857
20858 2008-10-05  Jim Meyering  <meyering@redhat.com>
20859
20860         bootstrap: check for LT_INIT more portably
20861         * build-aux/bootstrap: Avoid using grep -E, since it's not
20862         portable enough.  Suggestion from Bruno Haible.
20863
20864 2008-10-05  Bruno Haible  <bruno@clisp.org>
20865
20866         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
20867         as being fixed by gnulib.
20868
20869 2008-10-05  Bruno Haible  <bruno@clisp.org>
20870
20871         * modules/select-tests: New file, mostly copied from
20872         modules/sys_select-tests.
20873         * tests/test-select.c: New file, mostly copied from
20874         tests/test-sys_select.c.
20875         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
20876         * modules/sys_select-tests (Depends-on): Remove all dependencies.
20877         (Makefile.am): Remove test_sys_select_LDADD.
20878
20879         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
20880         to an undefined symbol, for an error message.
20881         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
20882         (gl_SYS_SELECT_H_DEFAULTS): New macro.
20883         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
20884         winsock-select.c here.
20885         * modules/sys_select (Files): Remove lib/winsock-select.c.
20886         (Depends-on): Remove alloca.
20887         (Makefile.am): Substitute GNULIB_SELECT.
20888         * modules/select: New file.
20889         * doc/posix-functions/select.texi: Update.
20890
20891 2008-10-05  Bruno Haible  <bruno@clisp.org>
20892
20893         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
20894         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
20895         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
20896         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
20897         getdtablesize.
20898         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
20899         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
20900
20901 2008-10-05  Bruno Haible  <bruno@clisp.org>
20902
20903         * modules/getdtablesize-tests: New file.
20904         * tests/test-getdtablesize.c: New file.
20905
20906         New module 'getdtablesize'.
20907         * lib/unistd.in.h (getdtablesize): New declaration.
20908         * lib/getdtablesize.c: New file.
20909         * m4/getdtablesize.m4: New file.
20910         * modules/getdtablesize: New file.
20911         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
20912         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
20913         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
20914         HAVE_GETDTABLESIZE.
20915         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
20916
20917 2008-10-05  Bruno Haible  <bruno@clisp.org>
20918
20919         * modules/sched (Makefile.am): Fix typo.
20920         Reported by Simon Josefsson.
20921
20922 2008-10-05  Jim Meyering  <meyering@redhat.com>
20923
20924         bootstrap: check for LT_INIT, too
20925         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
20926         are deprecated.  Suggestion from Ralf Wildenhues.
20927
20928 2008-10-05  Bruno Haible  <bruno@clisp.org>
20929
20930         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
20931         overriding them by ours.
20932         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
20933
20934 2008-10-05  Jim Meyering  <meyering@redhat.com>
20935
20936         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
20937         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
20938         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
20939
20940 2008-10-04  Bruno Haible  <bruno@clisp.org>
20941
20942         * modules/dup2 (License): Change to LGPLv2+.
20943         * modules/sleep (License): Likewise.
20944         * modules/perror (License): Likewise.
20945         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
20946         Blake.
20947         * modules/signal (License): Likewise.
20948         * modules/sigprocmask (License): Likewise.
20949         * modules/raise (License): Change to LGPLv2+, with approval by Jim
20950         Meyering.
20951
20952 2008-10-04  Bruno Haible  <bruno@clisp.org>
20953
20954         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
20955         Reported by Rainer Tammer <tammer@tammer.net>.
20956
20957 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
20958             Bruno Haible  <bruno@clisp.org>
20959
20960         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
20961         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
20962         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
20963
20964 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
20965
20966         filevercmp: new module
20967         * lib/filevercmp.h: New function filevercmp comparing version strings.
20968         * lib/filevercmp.c: Implementation of filevercmp function.
20969         * modules/filevercmp: Module metadata.
20970         * tests/test-filevercmp.c: Unit test for new module.
20971         * modules/filevercmp-tests: Unit test metadata.
20972         * MODULES.html.sh: Add filevercmp module.
20973
20974 2008-10-03  Bruno Haible  <bruno@clisp.org>
20975
20976         * lib/c-ctype.h: Add comment.
20977         Reported by Jim Meyering.
20978
20979 2008-10-02  Bruno Haible  <bruno@clisp.org>
20980
20981         * modules/posix_spawn-internal (Depends-on): Add 'open'.
20982
20983 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
20984
20985         * build-aux/bootstrap: Allow renaming bootstrap, and change the
20986         name of bootstrap.conf accordingly.
20987
20988 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
20989
20990         * build-aux/bootstrap: Install git-merge-changelog configuration
20991         items into .gitconfig if needed.
20992
20993 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
20994
20995         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
20996         git repository, and initialize/update it accordingly.
20997
20998 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
20999
21000         * modules/fsync-tests: New file.
21001         * tests/test-fsync.c: New file.
21002
21003         New module 'fsync'.
21004         * lib/fsync.c: New file.
21005         * m4/fsync.m4: New file.
21006         * modules/fsync: New file.
21007         * lib/unistd.in.h (fsync): New declaration.
21008         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
21009         GNULIB_FSYNC and HAVE_FSYNC.
21010         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
21011         * MODULES.html.sh (posix_functions): Add fsync.
21012         * doc/posix-functions/fsync.texi: Mention the new module.
21013
21014 2008-10-02  Jim Meyering  <meyering@redhat.com>
21015
21016         fts.c: sync with similar code from coreutils' remove.c
21017         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
21018         Guard also with "#if defined __linux__", since for now at least,
21019         this code is Linux-kernel-specific.
21020
21021 2008-10-02  Jim Meyering  <meyering@redhat.com>
21022
21023         fts: bug fixes
21024         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
21025         Include <sys/vfs.h>, not <sys/statfs.h>.
21026
21027         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
21028         Include <sys/vfs.h>, not <sys/statfs.h>.
21029
21030 2008-10-01  Bruno Haible  <bruno@clisp.org>
21031
21032         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
21033         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
21034         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
21035         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
21036         * doc/posix-functions/posix_spawnp.texi: Likewise.
21037         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
21038         whether posix_spawn actually works.
21039         * m4/pipe.m4 (gl_PIPE): Likewise.
21040         * modules/execute (Files): Add m4/posix_spawn.m4.
21041         * modules/pipe (Files): Add m4/posix_spawn.m4.
21042         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
21043
21044 2008-10-01  Jim Meyering  <meyering@redhat.com>
21045
21046         remove trailing spaces
21047         * NEWS: Likewise.
21048         * lib/poll.c (poll): Likewise.
21049         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
21050         * lib/winsock.c (rpl_close): Likewise.
21051         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
21052         * modules/yield: Likewise.
21053         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
21054         * tests/test-sys_select.c (connect_to_socket): Likewise.
21055
21056         fts.c: adjust a new interface to be more generally useful
21057         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
21058         (fts_build): Adjust caller.
21059
21060 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21061
21062         * modules/cond-tests: New file.
21063         * tests/test-cond.c: New file.
21064
21065 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21066             Bruno Haible  <bruno@clisp.org>
21067
21068         * modules/cond (Dependencies): Add errno, time.
21069         * lib/glthread/cond.h: Include <time.h>.
21070         (gl_cond_define, gl_cond_define_initialized): Use the same definition
21071         across platforms.
21072
21073 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21074             Bruno Haible  <bruno@clisp.org>
21075
21076         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
21077
21078 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21079             Bruno Haible  <bruno@clisp.org>
21080
21081         * modules/tls-tests (Depends-on): Add thread, yield.
21082         (configure.ac): Remove all checks.
21083         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
21084         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
21085         gl_thread_self): Remove definitions. Include glthread/thread.h and
21086         glthread/yield.h instead.
21087         (test_tls): Pass an additional NULL argument to gl_thread_join.
21088
21089 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21090             Bruno Haible  <bruno@clisp.org>
21091
21092         * modules/lock-tests (Depends-on): Add thread, yield.
21093         (configure.ac): Remove all checks.
21094         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
21095         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
21096         gl_thread_self): Remove definitions. Include glthread/thread.h and
21097         glthread/yield.h instead.
21098         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
21099         additional NULL argument to gl_thread_join.
21100
21101 2008-09-30  Bruno Haible  <bruno@clisp.org>
21102
21103         Fix the Win32 implementation of the 'thread' module.
21104         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
21105         pointer type.
21106         (gl_thread_self): Invoke gl_thread_self_func.
21107         (gl_thread_self_func): New declaration.
21108         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
21109         (do_init_self_key, init_self_key): New functions.
21110         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
21111         Remove some fields.
21112         (running_threads, running_lock): Remove variables.
21113         (get_current_thread_handle): New function.
21114         (gl_thread_self_func, wrapper_func, glthread_create_func,
21115         glthread_join_func, gl_thread_exit_func): Largely rewritten and
21116         simplified.
21117
21118 2008-09-30  Bruno Haible  <bruno@clisp.org>
21119
21120         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
21121         files.
21122
21123 2008-09-30  Jim Meyering  <meyering@redhat.com>
21124
21125         fts.m4: correct the test for statfs.f_type
21126         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
21127         when checking for statfs.f_type.
21128
21129 2008-09-15  Simon Josefsson  <simon@josefsson.org>
21130
21131         tests: avoid some compiler warnings
21132         * tests/test-memchr.c (main): Pass NULL indirectly.
21133         * tests/test-getdate.c (main): Remove unused variable 'ret'.
21134
21135 2008-09-29  Ondřej Vašík  <ovasik@redhat.com>
21136
21137         getdate.y: disallow countable dayshifts like "4 yesterday ago"
21138         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
21139         exactly specified dayshifts.
21140         (dayshift): New rule.
21141         (rel): Add dayshift.
21142         (relative_time_table) [tomorrow, yesterday, today, now]:
21143         Use tDAY_SHIFT in place of tDAY_UNIT.
21144         * tests/test-getdate.c: Add tests for now-disallowed countable
21145         dayshifts, e.g., "4 yesterday ago".
21146
21147 2008-09-29  Bruno Haible  <bruno@clisp.org>
21148
21149         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
21150         * tests/test-posix_spawn1.in.sh: Renamed from
21151         tests/test-posix_spawn.in.sh.
21152         * tests/test-posix_spawn2.c: New file.
21153         * tests/test-posix_spawn2.in.sh: New file.
21154         * modules/posix_spawnp-tests (Files): Update.
21155         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
21156
21157 2008-09-29  Bruno Haible  <bruno@clisp.org>
21158
21159         Propagate effects of putenv/setenv/unsetenv to child processes.
21160         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
21161         * lib/pipe.c (create_pipe): Likewise.
21162
21163 2008-09-29  Bruno Haible  <bruno@clisp.org>
21164
21165         Enable use of shell scripts as executables in mingw.
21166         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
21167         run the program as a shell script.
21168         * lib/pipe.c (create_pipe): Likewise.
21169         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
21170         resulting array.
21171
21172 2008-09-29  Eric Blake  <ebb9@byu.net>
21173
21174         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
21175
21176 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
21177
21178         * doc/posix-functions/accept.texi: Update mingw problems.
21179         * doc/posix-functions/bind.texi: Update mingw problems.
21180         * doc/posix-functions/close.texi: Update mingw problems.
21181         * doc/posix-functions/connect.texi: Update mingw problems.
21182         * doc/posix-functions/getpeername.texi: Update mingw problems.
21183         * doc/posix-functions/getsockname.texi: Update mingw problems.
21184         * doc/posix-functions/getsockopt.texi: Update mingw problems.
21185         * doc/posix-functions/ioctl.texi: Update mingw problems.
21186         * doc/posix-functions/listen.texi: Update mingw problems.
21187         * doc/posix-functions/recv.texi: Update mingw problems.
21188         * doc/posix-functions/recvfrom.texi: Update mingw problems.
21189         * doc/posix-functions/select.texi: Update mingw problems.
21190         * doc/posix-functions/send.texi: Update mingw problems.
21191         * doc/posix-functions/sendto.texi: Update mingw problems.
21192         * doc/posix-functions/setsockopt.texi: Update mingw problems.
21193         * doc/posix-functions/socket.texi: Update mingw problems.
21194
21195 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
21196             Bruno Haible  <bruno@clisp.org>
21197
21198         * lib/sys_select.in.h: Include sys/time.h.
21199         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
21200         * modules/sys_select: Depend on sys_time.
21201         * tests/test-sys_select.c: Test that sys/select.h defines struct
21202         timeval fully.
21203
21204 2008-09-29  Bruno Haible  <bruno@clisp.org>
21205
21206         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
21207         * lib/sys_select.in.h: Likewise.
21208
21209 2008-09-29  Bruno Haible  <bruno@clisp.org>
21210
21211         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
21212
21213 2008-09-29  Bruno Haible  <bruno@clisp.org>
21214
21215         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
21216         Set LIBSOCKET instead of augmenting LIBS.
21217         * modules/sockets (Link): New section.
21218         * modules/sockets-tests (test_sockets_LDADD): New variable.
21219         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
21220         * modules/poll-tests (test_poll_LDADD): New variable.
21221         * NEWS: Document the change.
21222
21223 2008-09-29  Bruno Haible  <bruno@clisp.org>
21224
21225         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
21226         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
21227         ARPA_INET_H directly.
21228         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
21229
21230 2008-09-28  Bruno Haible  <bruno@clisp.org>
21231
21232         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
21233         from gl_HEADER_SYS_SOCKET.
21234         (gl_HEADER_SYS_SOCKET): Invoke it.
21235         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
21236
21237 2008-09-28  Bruno Haible  <bruno@clisp.org>
21238
21239         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
21240         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
21241         Needed on OSF/1 4.0.
21242
21243 2008-09-28  Bruno Haible  <bruno@clisp.org>
21244
21245         Override open more carefully.
21246         * lib/open.c (orig_open): New function.
21247         (rpl_open): Use orig_open instead of open.
21248         * lib/fcntl.in.h: Add special invocation convention.
21249         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
21250         (gl_FUNC_OPEN): Invoke it.
21251
21252         Override freopen more carefully.
21253         * lib/freopen.c (orig_freopen): New function.
21254         (rpl_freopen): Use orig_freopen instead of freopen.
21255         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
21256         (gl_FUNC_FREOPEN): Invoke it.
21257
21258         Override fopen more carefully.
21259         * lib/fopen.c (orig_fopen): New function.
21260         (rpl_fopen): Use orig_fopen instead of fopen.
21261         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
21262         (gl_FUNC_FOPEN): Invoke it.
21263         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
21264
21265 2008-09-28  Bruno Haible  <bruno@clisp.org>
21266
21267         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
21268         SIGPIPE.
21269
21270 2008-09-28  Bruno Haible  <bruno@clisp.org>
21271
21272         * tests/test-sigaction.c (handler, main): Disable the check whether
21273         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
21274         glibc systems with LinuxThreads.
21275
21276 2008-09-28  Bruno Haible  <bruno@clisp.org>
21277
21278         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
21279
21280         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
21281         with AIX xlc.
21282         * lib/fcntl.in.h (open): Likewise.
21283         Reported by Rainer Tammer <tammer@tammer.net>.
21284
21285 2008-09-28  Bruno Haible  <bruno@clisp.org>
21286
21287         * modules/posix_spawnp-tests: New file.
21288         * tests/test-posix_spawn.c: New file.
21289         * tests/test-posix_spawn.in.sh: New file.
21290
21291         New module 'posix_spawnp'.
21292         * modules/posix_spawnp: New file.
21293         * lib/spawnp.c: New file, from GNU libc with modifications.
21294         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
21295
21296         New module 'posix_spawn'.
21297         * modules/posix_spawn: New file.
21298         * lib/spawn.c: New file, from GNU libc with modifications.
21299         * doc/posix-functions/posix_spawn.texi: Mention the new module.
21300
21301         New module 'posix_spawnattr_destroy'.
21302         * modules/posix_spawnattr_destroy: New file.
21303         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
21304         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
21305         module.
21306
21307         New module 'posix_spawnattr_setsigmask'.
21308         * modules/posix_spawnattr_setsigmask: New file.
21309         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
21310         modifications.
21311         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
21312         new module.
21313
21314         New module 'posix_spawnattr_getsigmask'.
21315         * modules/posix_spawnattr_getsigmask: New file.
21316         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
21317         modifications.
21318         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
21319         new module.
21320
21321         New module 'posix_spawnattr_setsigdefault'.
21322         * modules/posix_spawnattr_setsigdefault: New file.
21323         * lib/spawnattr_setdefault.c: New file, from GNU libc with
21324         modifications.
21325         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
21326         new module.
21327
21328         New module 'posix_spawnattr_getsigdefault'.
21329         * modules/posix_spawnattr_getsigdefault: New file.
21330         * lib/spawnattr_getdefault.c: New file, from GNU libc with
21331         modifications.
21332         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
21333         new module.
21334
21335         New module 'posix_spawnattr_setschedpolicy'.
21336         * modules/posix_spawnattr_setschedpolicy: New file.
21337         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
21338         modifications.
21339         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
21340         new module.
21341
21342         New module 'posix_spawnattr_getschedpolicy'.
21343         * modules/posix_spawnattr_getschedpolicy: New file.
21344         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
21345         modifications.
21346         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
21347         new module.
21348
21349         New module 'posix_spawnattr_setschedparam'.
21350         * modules/posix_spawnattr_setschedparam: New file.
21351         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
21352         modifications.
21353         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
21354         new module.
21355
21356         New module 'posix_spawnattr_getschedparam'.
21357         * modules/posix_spawnattr_getschedparam: New file.
21358         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
21359         modifications.
21360         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
21361         new module.
21362
21363         New module 'posix_spawnattr_setpgroup'.
21364         * modules/posix_spawnattr_setpgroup: New file.
21365         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
21366         modifications.
21367         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
21368         module.
21369
21370         New module 'posix_spawnattr_getpgroup'.
21371         * modules/posix_spawnattr_getpgroup: New file.
21372         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
21373         modifications.
21374         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
21375         module.
21376
21377         New module 'posix_spawnattr_setflags'.
21378         * modules/posix_spawnattr_setflags: New file.
21379         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
21380         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
21381         module.
21382
21383         New module 'posix_spawnattr_getflags'.
21384         * modules/posix_spawnattr_getflags: New file.
21385         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
21386         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
21387         module.
21388
21389         New module 'posix_spawnattr_init'.
21390         * modules/posix_spawnattr_init: New file.
21391         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
21392         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
21393         module.
21394
21395         New module 'posix_spawn_file_actions_destroy'.
21396         * modules/posix_spawn_file_actions_destroy: New file.
21397         * lib/spawn_faction_destroy.c: New file, from GNU libc with
21398         modifications.
21399         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
21400         the new module.
21401
21402         New module 'posix_spawn_file_actions_addopen'.
21403         * modules/posix_spawn_file_actions_addopen: New file.
21404         * lib/spawn_faction_addopen.c: New file, from GNU libc with
21405         modifications.
21406         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
21407         the new module.
21408
21409         New module 'posix_spawn_file_actions_adddup2'.
21410         * modules/posix_spawn_file_actions_adddup2: New file.
21411         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
21412         modifications.
21413         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
21414         the new module.
21415
21416         New module 'posix_spawn_file_actions_addclose'.
21417         * modules/posix_spawn_file_actions_addclose: New file.
21418         * lib/spawn_faction_addclose.c: New file, from GNU libc with
21419         modifications.
21420         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
21421         the new module.
21422
21423         New module 'posix_spawn_file_actions_init'.
21424         * modules/posix_spawn_file_actions_init: New file.
21425         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
21426         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
21427         new module.
21428
21429         New module 'posix_spawn-internal'.
21430         * modules/posix_spawn-internal: New file.
21431         * lib/spawn_int.h: New file, from GNU libc with modifications.
21432         * lib/spawni.c: New file, from GNU libc with modifications.
21433         * m4/posix_spawn.m4: New file.
21434
21435         New module 'spawn'.
21436         * modules/spawn: New file.
21437         * lib/spawn.in.h: New file, from GNU libc with modifications.
21438         * m4/spawn_h.m4: New file.
21439         * doc/posix-headers/spawn.texi: Mention the new module.
21440
21441 2008-09-28  Bruno Haible  <bruno@clisp.org>
21442
21443         * modules/sched-tests: New file.
21444         * tests/test-sched.c: New file.
21445
21446         New module 'sched'.
21447         * modules/sched: New file.
21448         * lib/sched.in.h: New file.
21449         * m4/sched_h.m4: New file.
21450         * doc/posix-headers/sched.texi: Mention the new module.
21451
21452 2008-09-27  Eric Blake  <ebb9@byu.net>
21453
21454         Fix previous patch, and tweak references to $0.
21455         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
21456         (func_version, func_gnulib_dir): Don't call this program
21457         gnulib-tool.
21458         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
21459         with using $0 in function.
21460         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
21461         (func_fatal_error): Reuse the name the user invoked us with.
21462
21463 2008-09-27  Bruno Haible  <bruno@clisp.org>
21464
21465         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
21466         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
21467         (gl_ICONV_H): Not here.
21468         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
21469         instead of assigning ICONV_H directly.
21470
21471         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
21472         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
21473         WCHAR_H directly.
21474
21475 2008-09-27  Bruno Haible  <bruno@clisp.org>
21476
21477         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
21478         * modules/arpa_inet (Depends-on): Add link-warning.
21479         (Makefile.am): Insert the definition of GL_LINK-WARNING.
21480         * modules/unistd (Makefile.am): Likewise.
21481
21482 2008-09-26  Bruno Haible  <bruno@clisp.org>
21483
21484         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
21485         variables.
21486         (func_version): Essentially copied from gnulib-tool.
21487         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
21488         func_readlink): Copied from gnulib-tool.
21489
21490 2008-09-26  Bruno Haible  <bruno@clisp.org>
21491
21492         * gnulib-tool (func_version): Change directory to $gnulib_dir before
21493         invoking git-version-gen.
21494
21495 2008-09-26  Bruno Haible  <bruno@clisp.org>
21496
21497         * posix-modules: Update to directory names changed on 2008-01-19.
21498         Remove commas in output before splitting into words. No more need to
21499         avoid 'ftruncate' since 2007-02-19.
21500
21501 2008-09-26  Bruno Haible  <bruno@clisp.org>
21502
21503         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
21504
21505 2008-09-26  Bruno Haible  <bruno@clisp.org>
21506
21507         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
21508         * modules/fwriteerror (Depends-on): Add errno.
21509
21510 2008-09-26  Bruno Haible  <bruno@clisp.org>
21511
21512         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
21513         * tests/test-vc-list-files-cvs.sh: Likewise.
21514
21515 2008-09-26  Bruno Haible  <bruno@clisp.org>
21516
21517         * doc/posix-headers/sys_resource.texi: Reorder items.
21518
21519 2008-09-26  Jim Meyering  <meyering@redhat.com>
21520
21521         fts: tweak inode comparison function
21522         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
21523         inode numbers, as documented.
21524
21525         fts: sort dirent entries on inode number before traversing
21526         This avoids a quadratic, seek-related performance penalty when
21527         operating on a directory containing many entries (measurable at 10k;
21528         3.5 hours at 2 million entries with a cold cache) on certain types
21529         of file systems, including ext3 and ext4, but not tmpfs.
21530         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
21531         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
21532         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
21533         (fs_handles_readdir_ordered_dirents_efficiently): New function.
21534         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
21535         (fts_build): Set the stat.st_ino member from D_INO.
21536         If it is likely to be useful, sort dirent entries on inode number.
21537
21538         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
21539         and the struct statfs.f_type member.
21540         * modules/fts (Depends-on): Add d-ino.
21541
21542 2008-09-26  Bruno Haible  <bruno@clisp.org>
21543
21544         * modules/sigpipe-die (Depends-on): Add sigpipe.
21545
21546         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
21547         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
21548         and GNULIB_STDIO_H_SIGPIPE are set.
21549         * lib/stdio-write.c: New file.
21550         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
21551         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
21552         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
21553         REPLACE_STDIO_WRITE_FUNCS.
21554         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
21555         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
21556         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
21557         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
21558         * modules/stdio (Files): Add lib/stdio-write.c.
21559         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
21560         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
21561         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
21562         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
21563         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
21564         REPLACE_FPRINTF_POSIX.
21565         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
21566         REPLACE_PRINTF_POSIX.
21567         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
21568         REPLACE_VFPRINTF_POSIX.
21569         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
21570         REPLACE_VPRINTF_POSIX.
21571         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
21572         SIGPIPE issue.
21573         * doc/posix-functions/fputc.texi: Likewise.
21574         * doc/posix-functions/fputs.texi: Likewise.
21575         * doc/posix-functions/fwrite.texi: Likewise.
21576         * doc/posix-functions/printf.texi: Likewise.
21577         * doc/posix-functions/putc.texi: Likewise.
21578         * doc/posix-functions/putchar.texi: Likewise.
21579         * doc/posix-functions/puts.texi: Likewise.
21580         * doc/posix-functions/vfprintf.texi: Likewise.
21581         * doc/posix-functions/vprintf.texi: Likewise.
21582
21583         * modules/safe-write (Depends-on): Add write.
21584
21585         * modules/sigpipe-tests: New file.
21586         * tests/test-sigpipe.c: New file.
21587         * tests/test-sigpipe.sh: New file.
21588
21589         * modules/write: New file.
21590         * lib/unistd.in.h: Include <sys/types.h>.
21591         (write): New declaration.
21592         * lib/write.c: New file.
21593         * m4/write.m4: New file.
21594         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21595         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
21596         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
21597         GNULIB_WRITE, REPLACE_WRITE.
21598         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
21599         and the SIGPIPE issue.
21600
21601         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
21602         (raise): New declaration.
21603         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
21604         (ext_signal): New function.
21605         (rpl_raise): New function.
21606         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
21607         GNULIB_SIGNAL_H_SIGPIPE.
21608         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
21609         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
21610
21611         * modules/sigpipe: New file.
21612         * m4/sigpipe.m4: New file.
21613
21614 2008-09-25  Derek Price  <derek@ximbiot.com>
21615             Bruno Haible  <bruno@clisp.org>
21616
21617         * gnulib-tool (func_import): Report all license incompatibilities, not
21618         just the first one.
21619
21620 2008-09-25  Bruno Haible  <bruno@clisp.org>
21621
21622         * gnulib-tool (func_import): When computing the edits, consider not
21623         only the Makefile.ams that exist but also those that will be generated.
21624
21625 2008-09-25  Simon Josefsson  <simon@josefsson.org>
21626
21627         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
21628         fixes gnulib-tool --test warning about duplicate dependency.
21629
21630 2008-09-25  Bruno Haible  <bruno@clisp.org>
21631
21632         * gnulib-tool: Don't ask the user to perform edits in the generated
21633         Makefile.ams.
21634         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
21635         apply to the Makefile.am being generated.
21636         (func_emit_tests_Makefile_am): Execute edits that apply to the
21637         Makefile.am being generated.
21638         (func_import): Setup list of Makefile.am edits before emitting the
21639         Makefile.ams, not at the end.
21640         (func_create_testdir): Update.
21641         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21642
21643 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21644
21645         * gnulib-tool (func_import): Store the --tests-base option in the
21646         comment in gnulib-cache.m4.
21647
21648 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
21649
21650         * NEWS: Document increased portability that sys_select now provides.
21651
21652         * lib/sys_select.in.h: Install select wrapper.
21653         * lib/sys_socket.in.h: Use more descriptive name when there is no
21654         select wrapper.
21655         * lib/winsock-select.c: New.
21656         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
21657         Require gl_HEADER_SYS_SOCKET.
21658         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
21659         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
21660         * tests/test-sys_select.c: Add functional tests.
21661
21662 2008-09-24  Eric Blake  <ebb9@byu.net>
21663
21664         open, fopen: close fd leak in last patch
21665         * lib/open.c (rpl_open): Close fd before returning error.
21666         * lib/fopen.c (rpl_fopen): Close fd before returning error.
21667         * doc/posix-functions/open.texi (open): Document that Irix also
21668         has the bug.
21669         * doc/posix-functions/fopen.texi (fopen): Likewise.
21670         Reported by Paolo Bonzini.
21671
21672 2008-09-24  Bruno Haible  <bruno@clisp.org>
21673
21674         Ensure that a filename ending in a slash cannot be used to access a
21675         non-directory.
21676         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
21677         to check whether it's really a directory.
21678         * lib/fopen.c: Include fcntl.h, unistd.h.
21679         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
21680         and fdopen().
21681         * modules/fopen (Depends-on): Add unistd.
21682         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
21683         * tests/test-fopen.c (main): Likewise.
21684         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
21685         * doc/posix-functions/fopen.texi: Likewise.
21686         Reported by Eric Blake.
21687
21688 2008-09-23  Eric Blake  <ebb9@byu.net>
21689
21690         c-stack: avoid compiler optimizations when provoking overflow
21691         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
21692         recursion harder to optimize, to ensure a stack overflow occurs.
21693         * tests/test-c-stack.c (recurse): Likewise.
21694         Borrowed from libsigsegv.
21695
21696         c-stack: work around Irix sigaltstack bug
21697         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
21698         whether sigaltstack uses wrong end of stack_t (copied in part from
21699         libsigsegv).
21700         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
21701         Irix bug, without requiring an over-allocation.
21702         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
21703         bug.
21704
21705         fopen: document mingw bug on directories
21706         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
21707         not allowing a stream visiting a directory, even though reading
21708         from such a stream is not portable.
21709
21710 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
21711
21712         * lib/poll.c: Rewrite.
21713         * modules/poll: Depend on alloca.
21714
21715 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
21716
21717         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
21718         instead define prototypes for a full set of wrappers.  Ensure
21719         that Cygwin does not use the compatibility code, which is only
21720         for MinGW.
21721         * lib/winsock.c: New.
21722         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
21723         * modules/sys_socket: Add lib/winsock.c.
21724
21725         * modules/poll-tests: Add errno and perror.
21726         * tests/test-poll.c: Use ioctl, not ioctlsocket.
21727
21728 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
21729
21730         * tests/test-poll.c: Downgrade minimum needed Winsock version.
21731
21732 2008-09-23  Bruno Haible  <bruno@clisp.org>
21733
21734         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
21735         * doc/glibc-functions/*: Likewise.
21736
21737 2008-09-23  Simon Josefsson  <simon@josefsson.org>
21738
21739         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
21740         success.
21741
21742 2008-09-22  Eric Blake  <ebb9@byu.net>
21743             Bruno Haible  <bruno@clisp.org>
21744
21745         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
21746         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
21747         supply %A but mishandle pseudo-NaN.
21748         Reported by Simon Josefsson.
21749
21750 2008-09-21  Bruno Haible  <bruno@clisp.org>
21751
21752         * tests/test-lock.c (main): Tweak skip message.
21753         * tests/test-tls.c (main): Likewise.
21754
21755 2008-09-21  Bruno Haible  <bruno@clisp.org>
21756
21757         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
21758         whether 'struct sigaction' has sa_sigaction here...
21759         (gl_PREREQ_SIG_HANDLER_H): ... not here.
21760         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
21761
21762 2008-09-21  Bruno Haible  <bruno@clisp.org>
21763
21764         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
21765         section.
21766         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
21767         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
21768         the new section.
21769         (Support for obsolete systems lacking POSIX:2001): New section.
21770         (String handling <string.h>): Move strdup to the new section.
21771         Suggested by Simon Josefsson and Paolo Bonzini.
21772
21773 2008-09-21  Bruno Haible  <bruno@clisp.org>
21774
21775         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
21776         exponents in %e and %g results on 'long double'. Needed for mingw's
21777         improved *printf functions.
21778         * tests/test-vasprintf-posix.c (test_function): Likewise.
21779         * tests/test-snprintf-posix.h (test_function): Likewise.
21780         * tests/test-sprintf-posix.h (test_function): Likewise.
21781         Reported by Eric Blake.
21782
21783 2008-09-21  Bruno Haible  <bruno@clisp.org>
21784
21785         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
21786         * tests/test-sprintf-posix.h (test_function): Likewise.
21787
21788 2008-09-21  Bruno Haible  <bruno@clisp.org>
21789
21790         * modules/getpass (Depends-on): Add strdup-posix.
21791
21792         New module 'strdup-posix'.
21793         * modules/strdup-posix: New file.
21794         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
21795         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
21796         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
21797         REPLACE_STRDUP.
21798         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
21799         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
21800         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
21801         strdup-posix.
21802
21803         * modules/strdup (Depends-on): Remove malloc-posix.
21804
21805 2008-09-20  Bruno Haible  <bruno@clisp.org>
21806
21807         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
21808         Wildenhues.
21809
21810 2008-09-20  Bruno Haible  <bruno@clisp.org>
21811
21812         Ensure that wint_t gets defined on IRIX 5.3.
21813         * lib/wchar.in.h (wint_t): Define if not defined by the system.
21814         * lib/wctype.in.h (wint_t): Likewise.
21815         (__wctype_wint_t): Remove type.
21816         (isw*): Use wint_t instead of __wctype_wint_t.
21817         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
21818         * modules/wchar (Files): Add m4/wint_t.m4.
21819         (Makefile.am): Substitute HAVE_WINT_T.
21820         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
21821         * tests/test-wctype.c: Check that wint_t is defined.
21822         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
21823         * doc/posix-headers/wctype.texi: Likewise.
21824         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
21825
21826 2008-09-18  Bruno Haible  <bruno@clisp.org>
21827
21828         * gnulib-tool (func_exit): Update comment.
21829
21830 2008-09-18  Simon Josefsson  <simon@josefsson.org>
21831
21832         * modules/getaddrinfo (Depends-on): Remove strdup, this module
21833         assumes strdup exists and does not depend on strdup to return
21834         ENOMEM on out of memory conditions.
21835
21836 2008-09-18  Bruno Haible  <bruno@clisp.org>
21837
21838         * lib/vasnprintf.c (VASNPRINTF): When printing ±0.0L in
21839         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
21840         digits for the exponent.
21841
21842 2008-09-18  Jim Meyering  <meyering@redhat.com>
21843             Bruno Haible  <bruno@clisp.org>
21844
21845         * lib/vasnprintf.c (decimal_point_char): Define also if
21846         NEED_PRINTF_INFINITE_LONG_DOUBLE.
21847
21848 2008-09-16  Bruno Haible  <bruno@clisp.org>
21849         and Eric Blake  <ebb9@byu.net>
21850
21851         vasnprintf: support Irix 5.3
21852         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
21853         that mishandle long double infinity.
21854         Reported by Tom G. Christensen.
21855
21856 2008-09-16  Bruno Haible  <bruno@clisp.org>
21857
21858         * doc/glibc-functions/scandir.texi: Mention the function is missing on
21859         Solaris 9.
21860         * doc/glibc-functions/alphasort.texi: Likewise.
21861         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
21862
21863 2008-09-16  Jim Meyering  <meyering@redhat.com>
21864
21865         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
21866         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
21867         a umask modification leak out of a subshell.  Otherwise, the
21868         opensolaris /bin/sh would be accepted and thus cause unwarranted
21869         failures in the coreutils test suite.
21870
21871 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
21872
21873         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
21874         to succeed.
21875
21876 2008-09-16  Jim Meyering  <meyering@redhat.com>
21877
21878         avoid spurious test failure when library is built without ACL support
21879         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
21880         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
21881         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
21882         * tests/test-copy-acl.sh: Likewise.
21883
21884 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21885
21886         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
21887         based on character occurrence counts.
21888
21889 2008-09-15  Eric Blake  <ebb9@byu.net>
21890
21891         tests: avoid some compiler warnings
21892         * tests/test-memchr.c (main): Pass NULL indirectly.
21893         * tests/test-closein.c (main): Avoid unused variable.
21894
21895 2008-09-15  Bruno Haible  <bruno@clisp.org>
21896
21897         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
21898         are missing on OpenBSD 4.0 individually.
21899         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21900
21901 2008-09-15  Bruno Haible  <bruno@clisp.org>
21902
21903         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
21904         * doc/posix-functions/strerror.texi: Mention also Cygwin.
21905         * doc/posix-functions/perror.texi: Likewise.
21906         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
21907         is missing.
21908         Reported by Eric Blake.
21909
21910         * lib/errno.in.h: Use replacement values >= 2000.
21911         Reported by Eric Blake.
21912
21913 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21914
21915         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
21916         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
21917         limit.
21918         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
21919         compareseq was aborted.
21920
21921 2008-09-14  Bruno Haible  <bruno@clisp.org>
21922
21923         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
21924         yvec_edit_count.
21925         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
21926         (fstrcmp_bounded): Simplify result computation accordingly.
21927
21928 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21929
21930         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
21931         (fstrcmp): Define in terms of fstrcmp_bounded.
21932         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
21933         lower_bound argument.
21934         Return quickly if the result is certainly < lower_bound.
21935         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
21936
21937 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21938
21939         * lib/diffseq.h (EARLY_ABORT): New macro.
21940         (compareseq): Change return type to bool. Return true when EARLY_ABORT
21941         evaluates to true.
21942
21943 2008-09-14  Bruno Haible  <bruno@clisp.org>
21944
21945         * modules/perror-tests: New file.
21946         * tests/test-perror.sh: New file.
21947         * tests/test-perror.c: New file.
21948
21949         New module 'perror'.
21950         * lib/stdio.in.h (perror): New declaration.
21951         * lib/perror.c: New file.
21952         * m4/perror.m4: New file.
21953         * modules/perror: New file.
21954         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
21955         * doc/posix-functions/perror.texi: Mention the perror module.
21956         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
21957         REPLACE_PERROR.
21958         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
21959         REPLACE_PERROR.
21960
21961 2008-09-14  Bruno Haible  <bruno@clisp.org>
21962
21963         * modules/stdio (Makefile.am): Reorder to match the order in
21964         lib/stdio.in.h.
21965         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
21966
21967 2008-09-13  Bruno Haible  <bruno@clisp.org>
21968
21969         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
21970
21971 2008-09-13  Bruno Haible  <bruno@clisp.org>
21972
21973         Extend strerror to cover the added errno values.
21974         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
21975         (rpl_strerror): Provide error messages for the added errno values and
21976         for the WSA* values.
21977         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
21978         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
21979         strerror.
21980         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
21981         * modules/strerror (Depends-on): Add errno.
21982         * doc/posix-functions/strerror.texi: Document the change.
21983         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
21984         and EOVERFLOW.
21985
21986 2008-09-13  Bruno Haible  <bruno@clisp.org>
21987
21988         * modules/EOVERFLOW: Remove file.
21989         * m4/eoverflow.m4: Remove file.
21990         * modules/EOVERFLOW-tests: Remove file.
21991         * tests/test-EOVERFLOW.c: Remove file.
21992         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
21993         * modules/ftell (Depends-on): Likewise.
21994         * modules/getdelim (Depends-on): Likewise.
21995         * modules/getugroups (Depends-on): Likewise.
21996         * modules/poll (Depends-on): Likewise.
21997         * modules/snprintf (Depends-on): Likewise.
21998         * modules/sprintf-posix (Depends-on): Likewise.
21999         * modules/vasnprintf (Depends-on): Likewise.
22000         * modules/vasprintf (Depends-on): Likewise.
22001         * modules/vfprintf-posix (Depends-on): Likewise.
22002         * modules/vsnprintf (Depends-on): Likewise.
22003         * modules/vsprintf-posix (Depends-on): Likewise.
22004         * modules/xvasprintf (Depends-on): Likewise.
22005         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
22006         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
22007         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
22008         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
22009         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
22010         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
22011         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
22012         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
22013         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
22014         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
22015         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
22016         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
22017         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
22018         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
22019         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
22020         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
22021         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
22022         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
22023         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
22024         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
22025         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
22026         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
22027         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
22028         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
22029         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
22030         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
22031         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
22032         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
22033         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
22034         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
22035         * MODULES.html.sh: Remove EOVERFLOW.
22036         * NEWS: Mention the change.
22037
22038 2008-09-13  Bruno Haible  <bruno@clisp.org>
22039
22040         * modules/errno-tests: New file.
22041         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
22042
22043         * lib/errno.in.h: New file.
22044         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
22045         * modules/errno: New file.
22046         * doc/posix-headers/errno.texi: Update documentation.
22047         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
22048
22049 2008-09-13  Bruno Haible  <bruno@clisp.org>
22050
22051         * tests/test-poll.c: Use #if for native Windows, rather than testing
22052         __MSVCRT__.
22053
22054 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22055             Bruno Haible  <bruno@clisp.org>
22056
22057         * lib/glob.c: Don't include <pwd.h> on native Windows.
22058         (WINDOWS32): New macro.
22059         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
22060
22061 2008-09-13  Bruno Haible  <bruno@clisp.org>
22062
22063         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
22064         (ETIMEDOUT): Remove macro.
22065         (glthread_cond_timedwait_multithreaded): New declaration.
22066         (glthread_cond_timedwait): Use it.
22067         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
22068         (glthread_cond_timedwait_multithreaded): New function.
22069
22070 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22071
22072         * modules/poll-tests: Do not check for io.h.
22073         * tests/test-poll.c: Check for __MSVCRT__ instead.
22074
22075 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22076
22077         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
22078         * modules/poll-tests: Add inet_pton, stdbool, sockets.
22079         * tests/test-poll.c: Use them.  Use _pipe on Windows.
22080
22081 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22082
22083         * modules/poll-tests: New.
22084         * tests/test-poll.c: New.
22085
22086 2008-09-12  Eric Blake  <ebb9@byu.net>
22087
22088         frexp: test for NetBSD failure on -0.0
22089         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
22090         not all, bugs from NetBSD 3.0 have been fixed.
22091         * doc/posix-functions/frexp.texi (frexp): Document bug.
22092         Reported by Thomas Klausner.
22093
22094         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
22095         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
22096         literal -0.0.
22097         Reported by Jonathan C. Patschke <jp@centtech.com>.
22098
22099 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22100
22101         * lib/glthread/cond.h: Use dummy implementation also if
22102         USE_WIN32_THREADS.
22103
22104 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22105
22106         * modules/fnmatch-posix (License): Change to LGPLv2+.
22107         * modules/fnmatch-gnu (License): Likewise.
22108
22109 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22110
22111         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
22112
22113 2008-09-11  Jim Meyering  <meyering@redhat.com>
22114
22115         * users.txt: Add gtk-vnc.
22116
22117 2008-09-08  Simon Josefsson  <simon@josefsson.org>
22118
22119         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
22120         rotate amounts.
22121
22122         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
22123         required for 16-bit and 8-bit rotates.
22124         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
22125         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
22126         UINT8_MAX instead of hard-coded constants.
22127         Suggested by Paul Eggert.
22128
22129 2008-09-07  Bruno Haible  <bruno@clisp.org>
22130
22131         * tests/test-striconveh.c (main): Check behaviour when converting from
22132         UTF-7.
22133
22134         Make striconveh work better with stateful encodings.
22135         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
22136         that iconv does not increment the inptr when returning -1/EINVAL.
22137
22138 2008-09-07  Bruno Haible  <bruno@clisp.org>
22139
22140         * build-aux/config.rpath: Update according to libtool-2.2.6.
22141         * build-aux/config.libpath: Likewise.
22142
22143 2008-09-06  Bruno Haible  <bruno@clisp.org>
22144
22145         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
22146         * lib/freadptr.c (freadptr): Likewise.
22147         * lib/freadseek.c (freadptrinc): Likewise.
22148         Reported by Simon Josefsson.
22149
22150 2008-09-06  Bruno Haible  <bruno@clisp.org>
22151
22152         * modules/freadptr (License): Change to LGPLv2+.
22153         * modules/freadseek (License): Likewise.
22154         Suggested by Eric Blake.
22155
22156         * modules/memchr2 (License): Change to LGPLv2+.
22157         Approved by Eric Blake.
22158
22159 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22160             Bruno Haible  <bruno@clisp.org>
22161
22162         Make gnulib-tool work with native 'sed' on AIX.
22163         * gnulib-tool (sed_noop): New variable.
22164         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
22165         func_add_or_update, func_create_testdir): Use it to initialize sed
22166         script variables.
22167         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
22168
22169 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
22170             Bruno Haible  <bruno@clisp.org>
22171
22172         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
22173         also works after #include directives.
22174
22175 2008-09-04  Ondřej Vašík  <ovasik@redhat.com>
22176
22177         getdate.y: reject an out-of-range timezone value
22178         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
22179         the range [-24...+24].  When specified with only one or two digits,
22180         * tests/test-getdate.c: Tests for the fix.
22181         * doc/getdate.texi: Document this change.
22182
22183 2008-09-03  Bruno Haible  <bruno@clisp.org>
22184
22185         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
22186
22187 2008-09-02  Simon Josefsson  <simon@josefsson.org>
22188
22189         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
22190         <bruce.korb@gmail.com> with ideas from Ben Pfaff
22191         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
22192         Blake <ebb9@byu.net>.
22193
22194         * tests/test-bitrotate.c: Add more test vectors.
22195
22196 2008-09-02  Eric Blake  <ebb9@byu.net>
22197
22198         vasnprintf-posix: handle large precision via %.*d
22199         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
22200         when handling it ourselves.
22201         * tests/test-vasnprintf-posix.c (test_function): Add test.
22202         * tests/test-snprintf-posix.h (test_function): Likewise.
22203         * tests/test-sprintf-posix.h (test_function): Likewise.
22204         * tests/test-vasprintf-posix.c (test_function): Likewise.
22205         Reported by Alain Guibert.
22206
22207 2008-09-01  Eric Blake  <ebb9@byu.net>
22208
22209         c-stack: make configure-time check more robust
22210         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
22211         successful sigaction call.
22212         Reported by Tom G. Christensen.
22213
22214 2008-09-01  Bruno Haible  <bruno@clisp.org>
22215
22216         New module 'findprog-lgpl'.
22217         * modules/findprog-lgpl: New file.
22218         * lib/findprog-lgpl.c: New file.
22219         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
22220         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
22221         to decide whether to use strdup or xstrdup, concatenated_filename or
22222         xconcatenated_filename.
22223
22224 2008-09-01  Bruno Haible  <bruno@clisp.org>
22225
22226         Split module 'concat-filename' into 'concat-filename' (LGPL) and
22227         'xconcat-filename' (GPL).
22228         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
22229         (License): Change to LGPLv2+.
22230         * modules/xconcat-filename: New file.
22231         * lib/concat-filename.h (concatenated_filename): Change specification.
22232         (xconcatenated_filename): New declaration.
22233         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
22234         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
22235         memory situations.
22236         * lib/xconcat-filename.c: New file.
22237         * NEWS: Mention the change.
22238         * lib/findprog.c: Include concat-filename.h, not filename.h.
22239         (find_in_path): Use xconcatenated_filename instead of
22240         concatenated_filename.
22241         * lib/javacomp.c: Include concat-filename.h, not filename.h.
22242         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
22243         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
22244         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
22245         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
22246         instead of concatenated_filename.
22247         * lib/javaexec.c: Include concat-filename.h, not filename.h.
22248         (execute_java_class): Use xconcatenated_filename instead of
22249         concatenated_filename.
22250         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
22251         * modules/javacomp (Depends-on): Likewise.
22252         * modules/javaexec (Depends-on): Likewise.
22253
22254 2008-09-01  Bruno Haible  <bruno@clisp.org>
22255
22256         Split module 'filename' into 'filename' and 'concat-filename'.
22257         * modules/filename: Keep only lib/filename.h.
22258         (License): Change to LGPLv2+.
22259         * modules/concat-filename: New file, extracted from modules/filename.
22260         * lib/filename.h (concatenated_filename): Remove declaration.
22261         * lib/concat-filename.h: New file, extracted from lib/filename.h.
22262         * lib/concat-filename.c: Include concat-filename.h.
22263         * NEWS: Mention the change.
22264
22265 2008-09-01  Simon Josefsson  <simon@josefsson.org>
22266
22267         * lib/bitrotate.h (rotl8, rotr8): Add.
22268
22269         * modules/bitrotate (configure.ac): Need
22270         AC_REQUIRE([AC_C_INLINE]).
22271         (Description): Mention stdint.h.  Reported by Bruno Haible
22272         <bruno@clisp.org>.
22273
22274         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
22275         Paolo Bonzini <bonzini@gnu.org>.
22276
22277 2008-08-31  Bruno Haible  <bruno@clisp.org>
22278
22279         Assume Solaris specific bi-arch conventions on Solaris systems.
22280         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
22281         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
22282         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
22283         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
22284         like acl_libdirstem.
22285         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
22286         acl_libdirstem.
22287         * NEWS: Mention the change.
22288         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
22289
22290 2008-08-31  Jim Meyering  <meyering@redhat.com>
22291
22292         * lib/strftime.h: Add comments describing the two added arguments.
22293
22294         remove duplicate #include directives
22295         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
22296         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
22297
22298 2008-08-31  Bruno Haible  <bruno@clisp.org>
22299
22300         New module 'sigpipe-die'.
22301         * modules/sigpipe-die: New file.
22302         * lib/sigpipe-die.h: New file.
22303         * lib/sigpipe-die.c: New file.
22304         * MODULES.html.sh (Signal handling): Add sigpipe-die.
22305
22306 2008-08-31  Bruno Haible  <bruno@clisp.org>
22307
22308         Don't override previously installed signal handlers.
22309         * lib/fatal-signal.c (saved_sigactions): New variable.
22310         (uninstall_handlers): Reset the signal to the saved handler, not
22311         to SIG_DFL (except when ignored).
22312         (install_handlers): Save the previous handlers.
22313
22314 2008-08-30  Bruno Haible  <bruno@clisp.org>
22315
22316         * gnulib-tool (func_reset_sigpipe): New function.
22317         (func_get_automake_snippet, func_modules_transitive_closure,
22318         func_import): Invoke it before a join command that reads from stdin,
22319         to avoid "echo: write error: Broken pipe" error messages on stderr.
22320         Reported by Sam Steingold <sds@gnu.org>.
22321
22322 2008-08-30  Bruno Haible  <bruno@clisp.org>
22323
22324         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
22325         Code copied from m4/open.m4.
22326         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
22327         access and the filename ends in a slash. Code copied from lib/open.c.
22328         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
22329         * tests/test-fopen.c (main): Check against bug with trailing slash.
22330
22331 2008-08-29  Bruno Haible  <bruno@clisp.org>
22332
22333         Avoid some "gcc -pedantic" warnings.
22334         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
22335         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
22336         * lib/dirent.in.h: Likewise.
22337         * lib/fcntl.in.h: Likewise.
22338         * lib/float.in.h: Likewise.
22339         * lib/iconv.in.h: Likewise.
22340         * lib/inttypes.in.h: Likewise.
22341         * lib/locale.in.h: Likewise.
22342         * lib/math.in.h: Likewise.
22343         * lib/netinet_in.in.h: Likewise.
22344         * lib/search.in.h: Likewise.
22345         * lib/signal.in.h: Likewise.
22346         * lib/stdarg.in.h: Likewise.
22347         * lib/stdint.in.h: Likewise.
22348         * lib/stdio.in.h: Likewise.
22349         * lib/stdlib.in.h: Likewise.
22350         * lib/string.in.h: Likewise.
22351         * lib/strings.in.h: Likewise.
22352         * lib/sys_select.in.h: Likewise.
22353         * lib/sys_socket.in.h: Likewise.
22354         * lib/sys_stat.in.h: Likewise.
22355         * lib/sys_time.in.h: Likewise.
22356         * lib/sysexits.in.h: Likewise.
22357         * lib/time.in.h: Likewise.
22358         * lib/unistd.in.h: Likewise.
22359         * lib/wchar.in.h: Likewise.
22360         * lib/wctype.in.h: Likewise.
22361         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
22362         * modules/fchdir (Makefile.am): Likewise.
22363         * modules/fcntl (Makefile.am): Likewise.
22364         * modules/float (Makefile.am): Likewise.
22365         * modules/iconv_open (Makefile.am): Likewise.
22366         * modules/inttypes (Makefile.am): Likewise.
22367         * modules/locale (Makefile.am): Likewise.
22368         * modules/math (Makefile.am): Likewise.
22369         * modules/netinet_in (Makefile.am): Likewise.
22370         * modules/search (Makefile.am): Likewise.
22371         * modules/signal (Makefile.am): Likewise.
22372         * modules/stdarg (Makefile.am): Likewise.
22373         * modules/stdint (Makefile.am): Likewise.
22374         * modules/stdio (Makefile.am): Likewise.
22375         * modules/stdlib (Makefile.am): Likewise.
22376         * modules/string (Makefile.am): Likewise.
22377         * modules/strings (Makefile.am): Likewise.
22378         * modules/sys_select (Makefile.am): Likewise.
22379         * modules/sys_socket (Makefile.am): Likewise.
22380         * modules/sys_stat (Makefile.am): Likewise.
22381         * modules/sys_time (Makefile.am): Likewise.
22382         * modules/sysexits (Makefile.am): Likewise.
22383         * modules/time (Makefile.am): Likewise.
22384         * modules/unistd (Makefile.am): Likewise.
22385         * modules/wchar (Makefile.am): Likewise.
22386         * modules/wctype (Makefile.am): Likewise.
22387         Reported by Reuben Thomas <rrt@sc3d.org>.
22388
22389 2008-08-29  Bruno Haible  <bruno@clisp.org>
22390
22391         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
22392         any more.
22393
22394 2008-08-29  Simon Josefsson  <simon@josefsson.org>
22395
22396         * MODULES.html.sh (Misc): Add bitrotate.
22397
22398         * modules/bitrotate: New file.
22399
22400         * lib/bitrotate.h: New file.
22401
22402         * modules/bitrotate-tests: New file.
22403
22404         * tests/test-bitrotate.c: New file.
22405
22406         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
22407         on the bitrotate module.
22408
22409         * lib/arctwo.c: Use new bitrotate module.
22410
22411 2008-08-29  Jim Meyering  <meyering@redhat.com>
22412
22413         bootstrap: merge changes from coreutils
22414         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
22415         of copied files.  Remove a kludge, now that this is fixed.
22416         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
22417         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
22418         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
22419
22420 2008-08-29  Bruno Haible  <bruno@clisp.org>
22421
22422         * MODULES.html.sh: Remove --cvs-urls option.
22423
22424 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
22425
22426         maint.mk: adjust to file name change
22427         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
22428
22429 2008-08-28  Jim Meyering  <meyering@redhat.com>
22430
22431         * modules/getndelim2 (License): Relicense to LGPLv2+.
22432         Approved by Richard Stallman for the version of 1995, and by
22433         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
22434
22435 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
22436
22437         * lib/getdelim.c (flockfile, funlockfile): Make all of them
22438         dummy if one is not available.  Do not touch them if
22439         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
22440         (getc_maybe_unlocked): New.
22441         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
22442
22443 2008-08-26  Eric Blake  <ebb9@byu.net>
22444
22445         doc/INSTALL: resync from autoconf
22446         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
22447         (INSTALL_PRELUDE): Delete; this is done more efficiently by
22448         moving...
22449         * install.texi [!autoconf]: ...here.  Resync from autoconf.
22450         * INSTALL: Regenerate.
22451         * INSTALL.ISO: New file.
22452         * INSTALL.UTF-8: Likewise.
22453
22454 2008-08-26  Jim Meyering  <meyering@redhat.com>
22455
22456         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
22457         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
22458         these definitions conditional, so that they may be overridden, too.
22459
22460 2008-08-26  Bruno Haible  <bruno@clisp.org>
22461
22462         Generate INSTALL file variants with prettier quotes.
22463         * doc/Makefile (INSTALL_PRELUDE): New macro.
22464         (INSTALL): Use it.
22465         (INSTALL.ISO, INSTALL.UTF-8): New rules.
22466
22467 2008-08-26  Bruno Haible  <bruno@clisp.org>
22468
22469         Run makeinfo in an English locale.
22470         * doc/Makefile (MAKEINFO): New variable.
22471
22472 2008-08-26  Bruno Haible  <bruno@clisp.org>
22473
22474         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
22475         Suggested by Eric Blake.
22476
22477 2008-08-25  Bruno Haible  <bruno@clisp.org>
22478
22479         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
22480
22481 2008-08-25  Eric Blake  <ebb9@byu.net>
22482
22483         c-stack: test that stack overflow can be caught
22484         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
22485         that platform allows handling stack overflow; at least OS/2 EMX
22486         has sigaltstack, but crashes before transferring control to
22487         handler on stack overflow.
22488         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
22489         check for HAVE_STACK_OVERFLOW_HANDLING.
22490         Reported by Elbert Pol.
22491
22492 2008-08-25  Bruno Haible  <bruno@clisp.org>
22493
22494         * doc/posix-functions/strftime.texi: Fix description of strftime
22495         module.
22496
22497 2008-08-24  Bruno Haible  <bruno@clisp.org>
22498
22499         * tests/uniwidth/test-uc_width2.c: New file.
22500         * tests/uniwidth/test-uc_width2.sh: New file.
22501         * modules/uniwidth/width-tests (Files): Add the new files.
22502         (TESTS): Add uniwidth/test-uc_width2.sh.
22503         (TESTS_ENVIRONMENT): New variable.
22504         (check_PROGRAMS): Add test-uc_width2.
22505         (test_uc_width2_SOURCES): New variable.
22506
22507         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
22508         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
22509         not 0x00AB.
22510         Reported by Alexander V. Lukyanov <lav@netis.ru>.
22511
22512 2008-08-22  Eric Blake  <ebb9@byu.net>
22513
22514         test-lock, test-tls: mention why a test is skipped
22515         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
22516         skipped.
22517         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
22518
22519         count-one-bits: relax license
22520         * modules/count-one-bits (License): Relicense to LGPLv2+.
22521         Suggested by Ludovic Courtès, approved by Ben Pfaff.
22522
22523 2008-08-22  Andreas Schwab  <schwab@suse.de>
22524
22525         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
22526         Remove spurious space in assignment.
22527
22528 2008-08-21  Simon Josefsson  <simon@josefsson.org>
22529
22530         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
22531         Paul Eggert <eggert@CS.UCLA.EDU>.
22532
22533 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
22534
22535         * modules/gettext: Add m4/threadlib.m4.
22536
22537 2008-08-19  Eric Blake  <ebb9@byu.net>
22538
22539         test-c-stack: fix compilation failure on FreeBSD 5.0
22540         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
22541         headers before <sys/resource.h>.
22542         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
22543         the bug.
22544         Reported by Nelson H. F. Beebe.
22545
22546         strverscmp: migrate from "strverscmp.h" to <string.h>
22547         * modules/string (Makefile.am): Add new hooks.
22548         * modules/strverscmp (Files): Remove strverscmp.h.
22549         (Depends-on): Add string.
22550         (configure.ac): Add indicator.
22551         (Include): Mention new header.
22552         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
22553         defaults.
22554         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
22555         results.
22556         * lib/strverscmp.h: Delete.
22557         * lib/string.in.h (strverscmp): Provide declaration, when needed.
22558         * tests/test-strverscmp.c (includes): Adjust client.
22559         * lib/check-version.c (includes): Likewise.
22560         * NEWS: Document the change.
22561
22562         strverscmp: add unit test
22563         * modules/strverscmp-tests: New file.
22564         * tests/test-strverscmp.c: Likewise.
22565
22566 2008-08-19  Simon Josefsson  <simon@josefsson.org>
22567
22568         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
22569         regarding Windows crypto stuff, from Mono.
22570
22571 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
22572
22573         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
22574         if present, for intel RND.  Return error on failures.
22575
22576 2008-08-18  Ben Pfaff  <blp@gnu.org>
22577
22578         gitlog-to-changelog: give better diagnostic for failed pipe-open
22579         * build-aux/gitlog-to-changelog: Improve error message: suggest
22580         that the version of Git may be too old.
22581
22582 2008-08-18  Simon Josefsson  <simon@josefsson.org>
22583
22584         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
22585         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
22586
22587 2008-08-18  Bruno Haible  <bruno@clisp.org>
22588
22589         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
22590         pthread_in_use().
22591
22592 2008-08-18  Bruno Haible  <bruno@clisp.org>
22593
22594         * lib/glthread/threadlib.c: Include <pthread.h>.
22595
22596 2008-08-18  Bruno Haible  <bruno@clisp.org>
22597
22598         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
22599         glthread_recursive_lock_* macros.
22600         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
22601         Fix syntax error.
22602
22603 2008-08-18  Bruno Haible  <bruno@clisp.org>
22604
22605         * lib/glthread/thread.c: Avoid forcing a context switch right after
22606         thread creation.
22607
22608 2008-08-17  Bruno Haible  <bruno@clisp.org>
22609
22610         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
22611         * lib/glthread/thread.h: Provide Win32 specific implementation.
22612         * modules/thread (Files): Add lib/glthread/thread.c.
22613         (Depends-on): Add lock.
22614         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
22615
22616 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22617
22618         New module 'yield'.
22619         * modules/yield: New file.
22620         * lib/glthread/yield.h: New file.
22621         * m4/yield.m4: New file.
22622         * MODULES.html.sh (Multithreading): Add yield.
22623
22624 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22625
22626         New module 'thread'.
22627         * modules/thread: New file.
22628         * lib/glthread/thread.h: New file.
22629         * m4/thread.m4: New file.
22630         * MODULES.html.sh (Multithreading): Add thread.
22631
22632 2008-08-17  Bruno Haible  <bruno@clisp.org>
22633
22634         * lib/glthread/lock.h: Include <stdlib.h> always.
22635         * lib/glthread/tls.h: Likewise.
22636         * lib/glthread/cond.h: Likewise.
22637
22638 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22639
22640         New module 'cond'.
22641         * modules/cond: New file.
22642         * lib/glthread/cond.h: New file.
22643         * lib/glthread/cond.c: New file.
22644         * m4/cond.m4: New file.
22645         * MODULES.html.sh (Multithreading): Add cond.
22646
22647 2008-08-16  Eric Blake  <ebb9@byu.net>
22648
22649         c-stack: fix regression on Irix 5.3 from 2008-06-21
22650         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
22651         sa_sigaction...
22652         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
22653         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
22654         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
22655         * modules/signal (Makefile.am): Use the value.
22656         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
22657         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
22658         * doc/posix-headers/signal.texi (signal.h): Document this
22659         portability issue.
22660         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
22661         Reported by Tom G. Christensen.
22662
22663 2008-08-17  Bruno Haible  <bruno@clisp.org>
22664
22665         New module 'threadlib'.
22666         * modules/threadlib: New file.
22667         * lib/glthread/threadlib.c: New file, extracted from
22668         lib/glthread/lock.c.
22669         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
22670         functions.
22671         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
22672         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
22673         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
22674         macros.
22675         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
22676         (gl_DISABLE_THREADS): Remove macro.
22677         * modules/lock (Files): Remove build-aux/config.rpath.
22678         (Depends-on): Remove havelib. Add threadlib.
22679         (configure.ac-early): Remove section.
22680         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
22681         * modules/tls (Depends-on): Remove lock. Add threadlib.
22682         (Link): New section, copied from threadlib.
22683         * MODULES.html.sh (Multithreading): Add threadlib.
22684
22685 2008-08-14  Bruno Haible  <bruno@clisp.org>
22686
22687         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
22688         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
22689         glthread_rwlock_unlock, glthread_rwlock_destroy,
22690         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
22691         glthread_recursive_lock_destroy): Define as macros always.
22692         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
22693         glthread_lock_lock.
22694         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
22695         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
22696         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
22697         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
22698         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
22699         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
22700         (glthread_recursive_lock_lock_func): Renamed from
22701         glthread_recursive_lock_lock.
22702         (glthread_recursive_lock_unlock_func): Renamed from
22703         glthread_recursive_lock_unlock.
22704         (glthread_recursive_lock_destroy_func): Renamed from
22705         glthread_recursive_lock_destroy.
22706
22707 2008-08-14  Bruno Haible  <bruno@clisp.org>
22708
22709         * lib/glthread/lock.h: Renamed from lib/lock.h.
22710         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
22711         * lib/glthread/tls.h: Renamed from lib/tls.h.
22712         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
22713         * lib/fstrcmp.c: Update includes.
22714         * lib/strsignal.c: Update includes.
22715         * modules/lock (Files, Makefile.am): Update.
22716         (Include): Change to "glthread/lock.h".
22717         * modules/tls (Files, Makefile.am): Update.
22718         (Include): Change to "glthread/tls.h".
22719         * tests/test-lock.c: Update includes.
22720         * tests/test-tls.c: Update includes.
22721         * NEWS: Mention the renamed header files.
22722
22723 2008-08-11  Jim Meyering  <meyering@redhat.com>
22724
22725         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
22726
22727 2008-08-11  Eric Blake  <ebb9@byu.net>
22728
22729         test-c-stack: avoid C99-ism
22730         * tests/test-c-stack.c (main): Fix whitespace, move declaration
22731         before statement.
22732         Reported by Alain Guibert.
22733
22734 2008-08-10  Jim Meyering  <meyering@redhat.com>
22735
22736         ensure that return value of uinttostr et al are not ignored
22737         * lib/inttostr.h (__GNUC_PREREQ): Define.
22738         (__attribute_warn_unused_result__): Define.
22739         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
22740
22741 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
22742
22743         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
22744         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
22745
22746 2008-08-07  Jim Meyering  <meyering@redhat.com>
22747
22748         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
22749
22750         * modules/mkstemp (License): Relicense under LGPLv2+.
22751         * modules/tempname (License): Likewise.
22752
22753 2008-08-06  Bruno Haible  <bruno@clisp.org>
22754
22755         * lib/poll.c (poll): Further micro-optimization.
22756
22757 2008-08-06  Jim Meyering  <meyering@redhat.com>
22758
22759         inet_pton.c: use locale-independent tolower
22760         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
22761         (inet_pton6): Use c_tolower rather than tolower.
22762         * modules/inet_pton (Depends-on): Add c-ctype.
22763
22764 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
22765
22766         * lib/poll.c (poll): Avoid division when timeout is 0, cache
22767         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
22768
22769 2008-08-06  Jim Meyering  <meyering@redhat.com>
22770
22771         * modules/inet_pton (License): Relicense under LGPLv2+.
22772
22773 2008-08-03  Bruno Haible  <bruno@clisp.org>
22774
22775         Additional non-aborting API for lock and tls.
22776         * lib/lock.h: Include <errno.h>.
22777         (glthread_lock_init): New macro/function.
22778         (gl_lock_init): Define as wrapper around glthread_lock_init.
22779         (glthread_lock_lock): New macro/function.
22780         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
22781         (glthread_lock_unlock): New macro/function.
22782         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
22783         (glthread_lock_destroy): New macro/function.
22784         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
22785         (glthread_rwlock_init): New macro/function.
22786         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
22787         (glthread_rwlock_rdlock): New macro/function.
22788         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
22789         (glthread_rwlock_wrlock): New macro/function.
22790         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
22791         (glthread_rwlock_unlock): New macro/function.
22792         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
22793         (glthread_rwlock_destroy): New macro/function.
22794         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
22795         (glthread_recursive_lock_init): New macro/function.
22796         (gl_recursive_lock_init): Define as wrapper around
22797         glthread_recursive_lock_init.
22798         (glthread_recursive_lock_lock): New macro/function.
22799         (gl_recursive_lock_lock): Define as wrapper around
22800         glthread_recursive_lock_lock.
22801         (glthread_recursive_lock_unlock): New macro/function.
22802         (gl_recursive_lock_unlock): Define as wrapper around
22803         glthread_recursive_lock_unlock.
22804         (glthread_recursive_lock_destroy): New macro/function.
22805         (gl_recursive_lock_destroy): Define as wrapper around
22806         glthread_recursive_lock_destroy.
22807         (glthread_once): New macro/function.
22808         (gl_once): Define as wrapper around glthread_once.
22809         Update function declarations.
22810         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
22811         glthread_rwlock_init. Return error code.
22812         (glthread_rwlock_rdlock_multithreaded): Renamed from
22813         glthread_rwlock_rdlock. Return error code.
22814         (glthread_rwlock_wrlock_multithreaded): Renamed from
22815         glthread_rwlock_wrlock. Return error code.
22816         (glthread_rwlock_unlock_multithreaded): Renamed from
22817         glthread_rwlock_unlock. Return error code.
22818         (glthread_rwlock_destroy_multithreaded): Renamed from
22819         glthread_rwlock_destroy. Return error code.
22820         (glthread_recursive_lock_init_multithreaded): Renamed from
22821         glthread_recursive_lock_init. Return error code.
22822         (glthread_recursive_lock_lock_multithreaded): Renamed from
22823         glthread_recursive_lock_lock. Return error code.
22824         (glthread_recursive_lock_unlock_multithreaded): Renamed from
22825         glthread_recursive_lock_unlock. Return error code.
22826         (glthread_recursive_lock_destroy_multithreaded): Renamed from
22827         glthread_recursive_lock_destroy. Return error code.
22828         (glthread_once_call): Make static.
22829         (glthread_once_multithreaded): Renamed from glthread_once.
22830         * lib/tls.h: Include <errno.h>.
22831         (glthread_tls_key_init): New macro/function.
22832         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
22833         (glthread_tls_set): New macro/function.
22834         (gl_tls_set): Define as wrapper around glthread_tls_set.
22835         (glthread_tls_key_destroy): New macro/function.
22836         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
22837         Update function declarations.
22838         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
22839         glthread_tls_get.
22840         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
22841
22842 2008-08-04  Eric Blake  <ebb9@byu.net>
22843
22844         gnumakefile: use space, not TAB, outside of targets
22845         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
22846
22847 2008-08-02  Jim Meyering  <meyering@redhat.com>
22848
22849         getdate.y: avoid locale-dependent date parsing failure
22850         In Turkish locales, getdate would fail to recognize keywords
22851         containing a lowercase "i".  The solution is not to rely on
22852         locale-sensitive case-conversion.
22853         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
22854         (lookup_word): Use c_toupper in place of toupper.
22855         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
22856         Reported by Vefa Bicakci <bicave@superonline.com> in
22857         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
22858         * modules/getdate (Depends-on): Add c-ctype.
22859
22860 2008-08-02  Bruno Haible  <bruno@clisp.org>
22861
22862         * gnulib-tool (func_import): When updating or creating a .gitignore
22863         file, prepend each added line with a slash, and ignore leading slashes
22864         from the existing lines.
22865         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
22866
22867 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22868
22869         Portability fix for GNU make 3.79.1.
22870         * top/GNUmakefile: Avoid 'else COND', which older GNU make
22871         versions do not understand.
22872
22873 2008-08-01  Bruno Haible  <bruno@clisp.org>
22874
22875         Work around bug of HP-UX 10.20 cc with -0.0 literal.
22876         * tests/test-isnanf.h (zero): New variable.
22877         (main): Avoid literal -0.0f.
22878         * tests/test-isnand.h (zero): New variable.
22879         (main): Avoid literal -0.0.
22880         * tests/test-isnanl.h (zero): New variable.
22881         (main): Avoid literal -0.0L.
22882         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
22883         (test_float, test_double, test_long_double): Avoid literals -0.0f,
22884         -0.0, -0.0L.
22885         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
22886         (test_signbitd): Avoid literal -0.0.
22887         (test_signbitl): Avoid literal -0.0L.
22888         * tests/test-ceilf1.c (zero): New variable.
22889         (main): Avoid literal -0.0f.
22890         * tests/test-ceill.c (zero): New variable.
22891         (main): Avoid literal -0.0L.
22892         * tests/test-floorf1.c (zero): New variable.
22893         (main): Avoid literal -0.0f.
22894         * tests/test-floorl.c (zero): New variable.
22895         (main): Avoid literal -0.0L.
22896         * tests/test-roundf1.c (zero): New variable.
22897         (main): Avoid literal -0.0f.
22898         * tests/test-round1.c (zero): New variable.
22899         (main): Avoid literal -0.0.
22900         * tests/test-roundl.c (zero): New variable.
22901         (main): Avoid literal -0.0L.
22902         * tests/test-truncf1.c (zero): New variable.
22903         (main): Avoid literal -0.0f.
22904         * tests/test-trunc1.c (zero): New variable.
22905         (main): Avoid literal -0.0.
22906         * tests/test-truncl.c (zero): New variable.
22907         (main): Avoid literal -0.0L.
22908         * tests/test-frexp.c (zero): New variable.
22909         (main): Avoid literal -0.0.
22910         * tests/test-frexpl.c (zero): New variable.
22911         (main): Avoid literal -0.0L.
22912         * tests/test-ldexpl.c (zero): New variable.
22913         (main): Avoid literal -0.0L.
22914         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
22915         (zerod, zerol): New variables.
22916         (test_function): Avoid literals -0.0, -0.0L.
22917         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
22918         (zerod, zerol): New variables.
22919         (test_function): Avoid literals -0.0, -0.0L.
22920         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
22921         (zerod, zerol): New variables.
22922         (test_function): Avoid literals -0.0, -0.0L.
22923         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
22924         (zerod, zerol): New variables.
22925         (test_function): Avoid literals -0.0, -0.0L.
22926         * tests/test-strtod.c (zero): New variable.
22927         (main): Avoid literal -0.0.
22928         Reported by Jonathan C. Patschke <jp@centtech.com>.
22929
22930 2008-07-31  Jim Meyering  <meyering@redhat.com>
22931
22932         sha256.h: correct definition of SHA224_DIGEST_SIZE
22933         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
22934         Reported by Paulie Pena IV <paulie4@gmail.com>.
22935         Define as 224 / 8, rather than as a literal.
22936         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
22937         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
22938         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
22939
22940 2008-07-31  Bruno Haible  <bruno@clisp.org>
22941
22942         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
22943         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
22944         Reported by Jonathan Patschke <jp@centtech.com>.
22945
22946 2008-07-31  Bruno Haible  <bruno@clisp.org>
22947
22948         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
22949         Reported by Paolo Bonzini <bonzini@gnu.org>.
22950
22951 2008-07-30  Eric Blake  <ebb9@byu.net>
22952
22953         test-strtod: allow compilation without -lm
22954         * tests/test-strtod.c (main): Avoid link dependence on fabs.
22955         Reported by Dennis Clarke <blastwave@gmail.com>.
22956
22957 2008-07-28  Jim Meyering  <meyering@redhat.com>
22958
22959         bootstrap: work also when there are no .po files in po/
22960         * build-aux/bootstrap (update_po_files): Complete the change
22961         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
22962
22963 2008-07-27  Jim Meyering  <meyering@redhat.com>
22964
22965         * users.txt: Add zile.
22966
22967 2008-07-26  Ben Pfaff  <blp@gnu.org>
22968
22969         Add missing dependencies on new m4/exponent[fdl].m4 files.
22970         * modules/isnanf-nolibm: Add m4/exponentf.m4.
22971         * modules/isnand-nolibm: Add m4/exponentd.m4.
22972         * modules/isnanl-nolibm: Add m4/exponentl.m4.
22973         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
22974         m4/isnan[fdl].m4, because the macros actually used moved.
22975         Reported by Jim Meyering.
22976
22977 2008-07-14  Ben Pfaff  <blp@gnu.org>
22978
22979         Add isinf module.
22980         * lib/isinf.c: New file.
22981         * lib/math.in.h: Define isinf macro if we have decided to replace
22982         it.
22983         * m4/isinf.m4: New file.
22984         * m4/math_h.m4: Initialize and substitute variables for isinf
22985         module.
22986         * modules/isinf: New file.
22987         * modules/isinf-tests: New file.
22988         * modules/math: Add substitutions for new module.
22989         * tests/test-isinf.c: New file.
22990         * doc/posix-functions/isinf.texi: Mention new module.
22991         * MODULES.html.sh: Mention new module.
22992
22993 2008-07-14  Ben Pfaff  <blp@gnu.org>
22994
22995         Factor out some macros for use by additional modules.
22996         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
22997         exponentf.m4.
22998         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
22999         exponentd.m4.
23000         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
23001         file exponentl.m4.
23002         * m4/exponentf.m4: New file.
23003         * m4/exponentd.m4: New file.
23004         * m4/exponentl.m4: New file.
23005         * modules/isnanf: Use new file m4/exponentf.m4.
23006         * modules/isnand: Use new file m4/exponentd.m4.
23007         * modules/isnanl: Use new file m4/exponentl.m4.
23008
23009 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
23010
23011         mktime.c: normalize tp->tm_isdst value to -1/0/1.
23012         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
23013         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
23014         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
23015
23016         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
23017         readlink on platforms without PATH_MAX.
23018
23019 2008-07-21  Eric Blake  <ebb9@byu.net>
23020
23021         Warn, not fail, on stale version.
23022         * top/GNUmakefile (_curr-ver): Tone down previous patch.
23023
23024         Don't allow installation with stale devel version number.
23025         * top/GNUmakefile (_is-install-target): New macro.
23026         (_curr-ver): Forbid installation with stale version number.
23027
23028 2008-07-20  Bruno Haible  <bruno@clisp.org>
23029
23030         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
23031         TESTS_ENVIRONMENT.
23032         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
23033
23034 2008-07-20  Bruno Haible  <bruno@clisp.org>
23035
23036         * lib/c-stack.h (c_stack_action): Add documentation.
23037         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
23038
23039 2008-07-20  Bruno Haible  <bruno@clisp.org>
23040
23041         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
23042         * modules/readlink (License): Likewise.
23043
23044 2008-07-17  Eric Blake  <ebb9@byu.net>
23045
23046         * modules/c-stack (Link): Fix typo.
23047
23048         Make c-stack use libsigsegv, when available.
23049         * modules/c-stack (Depends-on): Add libsigsegv.
23050         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
23051         needed.
23052         * lib/c-stack.c (SIGSTKSZ): Define fallback.
23053         (segv_handler, overflow_handler, c_stack_action)
23054         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
23055         implementation when libsigsegv is available, but only when using
23056         the library is necessary.
23057         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
23058         comment, explaining why XSI check fails on Linux.
23059         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
23060         * tests/test-c-stack2.sh: Tweak skip message.
23061         * NEWS: Document new link-time requirements.
23062
23063 2008-07-16  Eric Blake  <ebb9@byu.net>
23064
23065         c-stack: Expose false positives when not using libsigsegv.
23066         * modules/c-stack-tests (Files): Expand test.
23067         * tests/test-c-stack.c (main): Add means to conditionally trigger
23068         non-overflow SIGSEGV.
23069         * tests/test-c-stack2.sh: New file.
23070
23071 2008-07-14  Bruno Haible  <bruno@clisp.org>
23072
23073         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
23074         Reported by Eric Blake.
23075
23076 2008-07-14  Sam Steingold  <sds@gnu.org>
23077             Bruno Haible  <bruno@clisp.org>
23078
23079         New module libsigsegv.
23080         * modules/libsigsegv: New file.
23081         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
23082         modifications.
23083         * MODULES.html.sh (Signal handling): New section.
23084
23085 2008-07-14  Bruno Haible  <bruno@clisp.org>
23086
23087         * modules/unictype/ctype-* (Description): Add the word "function".
23088         Improves the resulting doc in MODULES.html.
23089
23090 2008-07-12  Ben Pfaff  <blp@gnu.org>
23091
23092         Add longlong module.
23093         * modules/longlong: New file.
23094
23095 2008-07-12  Bruno Haible  <bruno@clisp.org>
23096
23097         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
23098         to empty.
23099
23100 2008-07-10  Ben Pfaff  <blp@gnu.org>
23101
23102         Add isnan module.
23103         * doc/posix-functions/isnan.texi: Mention new module.
23104         * lib/math.in.h: Define isnan macro if we have decided to replace
23105         it.
23106         * m4/isnan.m4: New file.
23107         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
23108         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
23109         also.
23110         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
23111         redundancy.
23112         * m4/math_h.m4: Initialize and substitute variables for isnan
23113         module.
23114         * modules/isnan: New file.
23115         * modules/isnan-tests: New file.
23116         * modules/math: Add substitutions for new module.
23117         * tests/test-isnan.c: New file.
23118         * MODULES.html.sh: Mention new module.
23119
23120 2008-07-10  Ben Pfaff  <blp@gnu.org>
23121
23122         Add isnanf module.
23123         * lib/isnanf.m4: New file.
23124         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
23125         (gl_HAVE_ISNANF_IN_LIBM): New macro.
23126         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
23127         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
23128         * modules/isnanf: New file.
23129         * modules/isnanf-tests: New file.
23130         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
23131         files.
23132         * tests/test-isnanf-nolibm.c: factored most of its contents into
23133         new file tests/test-isnanf.h.
23134         * tests/test-isnanf.h: New file.
23135         * tests/test-isnanf.c: New file.
23136         * MODULES.html.sh: Mention new module.
23137         * doc/glibc-functions/isnanf.texi: Mention new module.
23138
23139 2008-07-10  Ben Pfaff  <blp@gnu.org>
23140
23141         Add isnand module.
23142         * lib/isnand.h: New file.
23143         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
23144         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
23145         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
23146         functionality also.
23147         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
23148         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
23149         (gl_HAVE_ISNAND_IN_LIBM): New macro.
23150         * modules/isnand: New file.
23151         * modules/isnand-tests: New file.
23152         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
23153         files.
23154         * tests/test-isnand-nolibm.c: factored most of its contents into
23155         new file tests/test-isnand.h.
23156         * tests/test-isnand.h: New file.
23157         * tests/test-isnand.c: New file.
23158         * MODULES.html.sh: Mention new module.
23159
23160 2008-07-10  Ben Pfaff  <blp@gnu.org>
23161
23162         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
23163         * lib/isnand.h: Rename lib/isnand-nolibm.h.
23164         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
23165         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
23166         * modules/isnanf-nolibm: Update references to renamed files.
23167         * modules/isnand-nolibm: Likewise.
23168         * modules/isnanf-nolibm-tests: Likewise.
23169         * modules/isnand-nolibm-tests: Likewise.
23170         * lib/frexp.c: Likewise.
23171         * lib/isfinite.c: Likewise.
23172         * lib/signbitd.c: Likewise.
23173         * lib/signbitf.c: Likewise.
23174         * lib/vasnprintf.c: Likewise.
23175         * tests/test-ceilf1.c: Likewise.
23176         * tests/test-ceilf2.c: Likewise.
23177         * tests/test-floorf1.c: Likewise.
23178         * tests/test-floorf2.c: Likewise.
23179         * tests/test-frexp.c: Likewise.
23180         * tests/test-round1.c: Likewise.
23181         * tests/test-round2.c: Likewise.
23182         * tests/test-roundf1.c: Likewise.
23183         * tests/test-strtod.c: Likewise.
23184         * tests/test-trunc1.c: Likewise.
23185         * tests/test-trunc2.c: Likewise.
23186         * tests/test-truncf1.c: Likewise.
23187         * tests/test-truncf2.c: Likewise.
23188         * NEWS: Mention the renamed header files.
23189
23190 2008-07-11  Jim Meyering  <meyering@redhat.com>
23191
23192         vc-list-files: make the last-resort awk code more portable
23193         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
23194         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
23195         does not support it.
23196
23197 2008-07-10  Eric Blake  <ebb9@byu.net>
23198
23199         Work with tar's bootstrap.
23200         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
23201         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
23202         an m4 comment.
23203
23204 2008-07-09  Jim Meyering  <meyering@redhat.com>
23205
23206         posix-shell.m4: fix typo that made this test malfunction
23207         * m4/posix-shell.m4: Remove capitalization in variable name.
23208
23209 2008-07-08  Bruno Haible  <bruno@clisp.org>
23210
23211         * m4/onceonly.m4: Update comments.
23212         Reported by Ben Pfaff <blp@cs.stanford.edu>.
23213
23214 2008-07-04  Jim Meyering  <meyering@redhat.com>
23215
23216         * users.txt: Add vc-dwim.
23217         (bison, coreutils): Use the gitweb URL.
23218
23219 2008-07-03  Jim Meyering  <meyering@redhat.com>
23220
23221         * users.txt: Add libffcall.  From Sam Steingold.
23222
23223 2008-07-03  Ondřej Vašík  <ovasik@redhat.com>
23224
23225         getdate.y: do not ignore TZ with relative day, month or year offset
23226         * lib/getdate.y (get_date): Move the tz-handling block to follow the
23227         relative-date-handling, since otherwise, the latter would clobber the
23228         sole output (an updated Start value) of the tz-handling block.
23229         * tests/test-getdate.c: Tests for the fix
23230
23231 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23232
23233         Recognize 'foo_LIBRARIES += libgnu.a'.
23234         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
23235         makefile snippet has already specified an installation location,
23236         also using '+='.
23237
23238 2008-07-02  Ondřej Vašík  <ovasik@redhat.com>
23239
23240         getdate.y: factor out common actions
23241         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
23242         Use them in place of open-coded actions.
23243
23244 2008-07-01  Simon Josefsson  <simon@josefsson.org>
23245
23246         Add self-test for getdate module.
23247         * modules/getdate-tests: New file.
23248         * tests/test-getdate.c: New file.
23249
23250 2008-06-29  Bruno Haible  <bruno@clisp.org>
23251
23252         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
23253         .gitignore.
23254         Reported by Sylvain Beucler <beuc@beuc.net>.
23255
23256 2008-06-29  Bruno Haible  <bruno@clisp.org>
23257
23258         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
23259         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
23260
23261 2008-06-29  Bruno Haible  <bruno@clisp.org>
23262
23263         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
23264         EXTRA_DIST.
23265         Reported by Sylvain Beucler <beuc@beuc.net>.
23266
23267 2008-06-26  Jim Meyering  <meyering@redhat.com>
23268
23269         make several modules depend on the "open" module
23270         This provides slightly increased consistency when opening-for-write
23271         the name of a non-directory spelled with a trailing slash.
23272         * modules/chdir-safer: Likewise.
23273         * modules/chown: Likewise.
23274         * modules/clean-temp: Likewise.
23275         * modules/copy-file: Likewise.
23276         * modules/fchdir: Likewise.
23277         * modules/fcntl-safer: Likewise.
23278         * modules/pipe: Likewise.
23279         * modules/utime: Likewise.
23280         Prompted by Eric Blake and Bruno Haible.
23281
23282 2008-06-24  Andreas Schwab  <schwab@suse.de>
23283
23284         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
23285         literals can be used as initializers for global variables.
23286
23287 2008-06-23  Eric Blake  <ebb9@byu.net>
23288
23289         Make gnulib-cache.m4 easier to diff.
23290         * gnulib-tool (func_import): Allow newlines when reading cached
23291         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
23292
23293 2008-06-23  Bruno Haible  <bruno@clisp.org>
23294
23295         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
23296         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
23297         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
23298         m4/signalblocking.m4.
23299         (gl_PREREQ_SIGACTION): Don't invoke it.
23300         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
23301         gl_PREREQ_SIG_HANDLER_H.
23302         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
23303         Don't check for sigaction here.
23304
23305 2008-06-23  Bruno Haible  <bruno@clisp.org>
23306
23307         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
23308         (install_handlers): Don't set the SA_RESETHAND flag.
23309
23310 2008-06-23  Bruno Haible  <bruno@clisp.org>
23311
23312         * m4/sigaction.m4: Comment fixes.
23313         * lib/signal.in.h: Likewise.
23314
23315 2008-06-23  Eric Blake  <ebb9@byu.net>
23316
23317         Fix typo.
23318         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
23319
23320         Avoid SA_ namespace.
23321         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
23322         Reported by Ralf Wildenhues.
23323
23324         Avoid test failure due to SA_RESTORER.
23325         * tests/test-sigaction.c (SA_MASK): New macro.
23326         (main): Avoid failing due to extension flags being set.
23327         Reported by Jim Meyering.
23328
23329         Revert use of sig-handler.h in sigprocmask.c.
23330         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
23331         it requires the existence of struct sigaction.
23332         * lib/sigprocmask.c (handler_t): Restore typedef.
23333         (rpl_signal, old_handlers): Use local type.
23334
23335 2008-06-22  Bruno Haible  <bruno@clisp.org>
23336
23337         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
23338         conditionally.
23339         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
23340
23341 2008-06-22  Bruno Haible  <bruno@clisp.org>
23342
23343         * doc/posix-functions/siginterrupt.texi: Move note.
23344
23345         * lib/signal.in.h (SA_RESTART): New macro.
23346         * lib/sigaction.c: Update comment.
23347
23348         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
23349
23350         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
23351         (gl_PREREQ_SIGPROCMASK): Invoke it.
23352         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
23353
23354         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
23355
23356         * lib/sigprocmask.c: Update a comment.
23357
23358 2008-06-21  Eric Blake  <ebb9@byu.net>
23359
23360         Use sigaction module rather than signal().
23361         * modules/c-stack (Depends-on): Add sigaction.
23362         * modules/fatal-signal (Depends-on): Likewise.
23363         * modules/nanosleep (Depends-on): Likewise.
23364         * modules/sigprocmask (Files): Add sig-handler.h.
23365         * modules/sigaction (Files): Likewise.
23366         * lib/sig-handler.h (get_handler): New file, suggested by Paul
23367         Eggert.
23368         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
23369         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
23370         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
23371         (init_fatal_signals): Likewise.
23372         * lib/nanosleep.c (rpl_nanosleep): Likewise.
23373         (siginterrupt): Delete fallback.
23374         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
23375         instead.
23376         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
23377         siginterrupt.
23378
23379         New module sigaction, for mingw.
23380         * modules/sigaction: New module...
23381         * modules/sigaction-tests: ...and its test.
23382         * m4/sigaction.m4: New file.
23383         * lib/sigaction.c: Likewise.
23384         * tests/test-sigaction.c: Likewise.
23385         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
23386         * modules/signal (Makefile.am): Likewise.
23387         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
23388         needed.
23389         * doc/posix-headers/signal.texi (signal.h): Mention provided
23390         types.
23391         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
23392         that sigaction is preferable.
23393         * doc/posix-functions/sigaction.texi (sigaction): Mention new
23394         module.
23395         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
23396         sigaction.
23397
23398         Improve robustness of sigprocmask by overriding signal.
23399         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
23400         is in use.
23401         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
23402         (SIGKILL, SIGSTOP): Provide fallbacks.
23403         (rpl_signal): Implement.
23404         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
23405         signal can be called inside handlers.
23406
23407         Fix nanosleep module on mingw.
23408         * modules/nanosleep (Depends-on): Add sys_select.
23409         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
23410
23411         Fix licensing of sigprocmask.
23412         * modules/raise (License): Relicense as LGPL.
23413
23414 2008-06-21  Bruno Haible  <bruno@clisp.org>
23415
23416         * lib/propername.c (proper_name_utf8): Don't use the transliterated
23417         result if it contains question marks.
23418         Reported by Michael Geng <linux@michaelgeng.de>.
23419
23420 2008-06-19  Bruno Haible  <bruno@clisp.org>
23421
23422         Fix CVS-ism.
23423         * doc/gnulib.texi: Include updated-stamp.texi.
23424         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
23425         (updated-stamp.texi): New rule.
23426         (gnulib.info): Depend on it.
23427         * doc/.gitignore: Add updated-stamp.texi.
23428         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
23429
23430 2008-06-19  Bruno Haible  <bruno@clisp.org>
23431
23432         * doc/Makefile (gnulib.info): Update and simplify dependencies.
23433         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
23434
23435 2008-06-19  Eric Blake  <ebb9@byu.net>
23436
23437         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
23438         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
23439         Reported by Stepan Kasal.
23440
23441 2008-06-18  Bruno Haible  <bruno@clisp.org>
23442
23443         * lib/fatal-signal.c (init_fatal_signals): Add comment.
23444         Reported by Eric Blake.
23445
23446 2008-06-18  Eric Blake  <ebb9@byu.net>
23447
23448         Work around cygwin 1.5.25 strsignal bug.
23449         * tests/test-strsignal.c: Allow for const char *.
23450         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
23451
23452 2008-06-18  Simon Josefsson  <simon@josefsson.org>
23453
23454         * users.txt: Update URL to article and add author/date
23455         information.
23456
23457 2008-06-17  Bruno Haible  <bruno@clisp.org>
23458
23459         New macro gl_DISABLE_THREADS.
23460         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
23461         if the user did not pass --enable-threads or --disable-threads option.
23462         (gl_DISABLE_THREADS): New macro.
23463         Reported by Eric Blake <ebb9@byu.net>.
23464
23465 2008-06-17  Bruno Haible  <bruno@clisp.org>
23466
23467         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
23468         when the macro ignores it.
23469         Based on a patch by Eric Blake <ebb9@byu.net>.
23470
23471 2008-06-17  Bruno Haible  <bruno@clisp.org>
23472
23473         * modules/tls (License): Change to LGPLv2+.
23474         Reported by Eric Blake.
23475
23476 2008-06-17  Eric Blake  <ebb9@byu.net>
23477
23478         Simplify c-stack prerequisites.
23479         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
23480         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
23481         no longer requires <ucontext.h> to exist.  Optimize setrlimit
23482         check.
23483         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
23484         <sys/resource.h>.
23485
23486         Move c-stack test into testsuite.
23487         * modules/c-stack-tests: New file.
23488         * lib/c-stack.c [DEBUG]: Move test program...
23489         * tests/test-c-stack.c: ...into this new file.  Skip rather than
23490         fail test if sigaltstack is lacking.
23491         * tests/test-c-stack.sh: New driver file.
23492
23493 2008-06-16  Eric Blake  <ebb9@byu.net>
23494
23495         Use raise module consistently.
23496         * modules/fatal-signal (Depends-on): Add raise.
23497         * modules/sigprocmask (Depends-on): Likewise.
23498         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
23499         * lib/sigprocmask.c (sigprocmask): Likewise.
23500         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
23501         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
23502
23503         Fix compliance bug in sigpending.
23504         * lib/sigprocmask.c (sigpending): Return pending array via
23505         parameter, not return value.
23506
23507 2008-06-14  Eric Blake  <ebb9@byu.net>
23508
23509         Improve obstack-printf test code.
23510         * tests/test-obstack-printf.c (test_function): Fix comment, and
23511         simplify usage of obstack_* in macros.  Add a test for coverage.
23512         Reported by Bruno Haible.
23513
23514 2008-06-14  Bruno Haible  <bruno@clisp.org>
23515
23516         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
23517         array size as a constant, not as a const variable.
23518         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
23519         AC_USE_SYSTEM_EXTENSIONS.
23520         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
23521         Test whether the obstack_printf function actually exists.
23522         * modules/obstack-printf (Depends-on): Add extensions.
23523         (Include): Remove obstack.h.
23524         * modules/obstack-printf-posix (Depends-on): Add extensions.
23525         (Include): Remove obstack.h.
23526
23527 2008-06-13  Eric Blake  <ebb9@byu.net>
23528
23529         Add obstack-printf and obstack-printf-posix modules.
23530         * modules/obstack-printf: New file.
23531         * modules/obstack-printf-posix: Likewise.
23532         * MODULES.html.sh (Misc): Mention them.
23533         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
23534         Likewise.
23535         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
23536         Likewise.
23537         * modules/stdio (Makefile.am): Accomodate new modules.
23538         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
23539         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
23540         Declare.
23541         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
23542         functions.
23543         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
23544         (gl_REPLACE_OBSTACK_PRINTF): New macros
23545         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
23546         * tests/test-obstack-printf.c: New file.
23547         * modules/obstack-printf-tests: Likewise.
23548         * modules/obstack-printf-posix-tests: Likewise.
23549
23550 2008-06-11  Bruno Haible  <bruno@clisp.org>
23551
23552         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
23553         * lib/open.c: Include errno.h.
23554         (open): Fail when attempting to write to a file that has a trailing
23555         slash.
23556         * tests/test-open.c (main): Test against trailing slash bug.
23557         * doc/posix-functions/open.texi: Mention the trailing slash bug.
23558
23559 2008-06-10  Bruno Haible  <bruno@clisp.org>
23560
23561         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
23562         for $? to work inside the trap command, with various /bin/sh-s.
23563         * tests/test-vc-list-files-cvs.sh: Likewise.
23564
23565 2008-06-10  Bruno Haible  <bruno@clisp.org>
23566
23567         * lib/acl-internal.h: Don't include gettext.h here.
23568         * lib/set-mode-acl.c: Include gettext.h here.
23569         * lib/copy-acl.c: Likewise.
23570
23571 2008-06-10  Bruno Haible  <bruno@clisp.org>
23572
23573         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
23574         * lib/wait-process.c (wait_subprocess): Likewise.
23575         * lib/execute.h (execute): Add termsigp argument.
23576         * lib/execute.c (execute): Likewise.
23577         * lib/csharpcomp.c (compile_csharp_using_pnet,
23578         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
23579         * lib/csharpexec.c (execute_csharp_using_pnet,
23580         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
23581         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
23582         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
23583         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
23584         is_jikes_present): Update.
23585         * lib/javaexec.c (execute_java_class): Update.
23586         * lib/javaversion.c (execute_and_read_line): Update.
23587         * NEWS: Document the changes.
23588         Reported by Eric Blake.
23589
23590 2008-06-10  Eric Blake  <ebb9@byu.net>
23591
23592         Add missing include.
23593         * tests/test-strstr.c (includes): Add <signal.h>.
23594         * tests/test-strcasestr.c (includes): Likewise.
23595         * tests/test-memmem.c (includes): Likewise.
23596
23597 2008-06-10  Bruno Haible  <bruno@clisp.org>
23598
23599         * lib/wait-process.c (wait_subprocess): Add an assertion.
23600
23601 2008-06-10  Bruno Haible  <bruno@clisp.org>
23602
23603         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
23604
23605 2008-06-10  Bruno Haible  <bruno@clisp.org>
23606
23607         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
23608         using alarm().
23609         * tests/test-strcasestr.c (main): Likewise.
23610         * tests/test-strstr.c (main): Likewise.
23611
23612 2008-06-09  Bruno Haible  <bruno@clisp.org>
23613
23614         Work around the Solaris 10 ACE ACLs ABI change.
23615         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
23616         declare if ACL_NO_TRIVIAL is present.
23617         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
23618         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
23619         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
23620         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
23621         define if ACL_NO_TRIVIAL is present.
23622         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
23623         and use the current ABI.
23624         (file_has_acl): Use same #if condition as elsewhere.
23625         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
23626         in use, and use the current ABI.
23627         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
23628         Reported by Jim Meyering.
23629
23630 2008-06-09  Eric Blake  <ebb9@byu.net>
23631
23632         Work around environments that (stupidly) ignore SIGALRM.
23633         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
23634         before using alarm().
23635         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
23636         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
23637         Reported by Ian Beckwith <ianb@erislabs.net>.
23638
23639         Produce autobuild blurb earlier in log.
23640         * modules/autobuild (configure.ac-early): Move AB_INIT here.
23641
23642 2008-06-09  Jim Meyering  <meyering@redhat.com>
23643         and Ondřej Vašík  <ovasik@redhat.com>
23644
23645         utimens.c: correct kernel bug work-around
23646         Ondřej Vašík found that the invalid return value of 280 indicates
23647         failure, not success, and the kernel bug we're trying to work
23648         around affects not just the utimensat call, but also the fallback
23649         futimens call.
23650         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
23651         not success.
23652         [HAVE_FUTIMENS]: Use the same work-around, here.
23653
23654 2008-06-09  Jim Meyering  <meyering@redhat.com>
23655
23656         add more guards around definition of ACE_-related code
23657         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
23658         ALLOW and ACE_OWNER are also defined.
23659
23660 2008-06-08  Bruno Haible  <bruno@clisp.org>
23661
23662         * lib/acl-internal.h: Add me as co-author.
23663         * lib/file-has-acl.c: Likewise.
23664         * lib/set-mode-acl.c: Likewise.
23665         * lib/copy-acl.c: Likewise.
23666
23667 2008-06-08  Bruno Haible  <bruno@clisp.org>
23668
23669         Add support for AIX ACLs.
23670         * lib/acl-internal.h (acl_nontrivial): New declaration.
23671         * lib/file-has-acl.c (acl_nontrivial): New function.
23672         (file_has_acl): Add implementation using AIX 4 ACL API.
23673         * lib/set-mode-acl.c (qset_acl): Likewise.
23674         * lib/copy-acl.c (qcopy_acl): Likewise.
23675
23676 2008-06-08  Bruno Haible  <bruno@clisp.org>
23677
23678         Add support for HP-UX ACLs.
23679         * lib/acl-internal.h (acl_nontrivial): New declaration.
23680         * lib/file-has-acl.c (acl_nontrivial): New function.
23681         (file_has_acl): Add implementation using HP-UX 11 ACL API.
23682         * lib/set-mode-acl.c (qset_acl): Likewise.
23683         * lib/copy-acl.c (qcopy_acl): Likewise.
23684
23685 2008-06-08  Bruno Haible  <bruno@clisp.org>
23686
23687         Add support for Cygwin ACLs.
23688         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
23689         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
23690         the chmod_or_fchmod call.
23691         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
23692
23693 2008-06-08  Bruno Haible  <bruno@clisp.org>
23694
23695         Fix bug with setuid modes in Solaris 10+ code.
23696         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
23697         succeeded, when the mode contains some special bits.
23698
23699 2008-06-08  Bruno Haible  <bruno@clisp.org>
23700
23701         Add support for Solaris 7..10 ACLs.
23702         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
23703         declarations.
23704         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
23705         functions.
23706         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
23707         * lib/set-mode-acl.c (qset_acl): Likewise.
23708         * lib/copy-acl.c (qcopy_acl): Likewise.
23709
23710 2008-06-08  Bruno Haible  <bruno@clisp.org>
23711
23712         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
23713         declaration.
23714         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
23715         (acl_access_nontrivial): Remove MacOS X case.
23716         (file_has_acl): Use acl_extended_nontrivial.
23717         * lib/copy-acl.c (qcopy_acl): Likewise.
23718
23719 2008-06-08  Bruno Haible  <bruno@clisp.org>
23720
23721         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
23722
23723 2008-06-08  Jim Meyering  <meyering@redhat.com>
23724
23725         * modules/acl (Maintainer): Add Bruno Haible.
23726
23727 2008-06-07  Bruno Haible  <bruno@clisp.org>
23728
23729         Improve support for Tru64 ACLs.
23730         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
23731         ACL on OSF/1.
23732
23733 2008-06-07  Bruno Haible  <bruno@clisp.org>
23734
23735         Add support for MacOS X ACLs.
23736         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
23737         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
23738         * lib/set-mode-acl.c (qset_acl): Likewise.
23739         * lib/copy-acl.c (qcopy_acl): Likewise.
23740
23741 2008-06-07  Bruno Haible  <bruno@clisp.org>
23742
23743         Fix memory leak introduced on 2008-05-22.
23744         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
23745         use.
23746
23747 2008-06-07  Bruno Haible  <bruno@clisp.org>
23748
23749         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
23750         to construct an empty ACL.
23751
23752 2008-06-07  Bruno Haible  <bruno@clisp.org>
23753
23754         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
23755         precisely.
23756         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
23757
23758 2008-06-07  Bruno Haible  <bruno@clisp.org>
23759
23760         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
23761         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
23762
23763 2008-06-07  Bruno Haible  <bruno@clisp.org>
23764
23765         * doc/posix-functions/_setjmp.texi: Explain the use of this function
23766         regardless of POSIX.
23767         * doc/posix-functions/_longjmp.texi: Likewise.
23768         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
23769         SystemV platform in this case.
23770
23771 2008-06-06  Eric Blake  <ebb9@byu.net>
23772
23773         Document abort() bugs.
23774         * doc/posix-functions/abort.texi (abort): Mention anomalies.
23775
23776         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
23777         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
23778         sigsetjmp.
23779         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
23780         siglongjmp, but only as a macro.
23781         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
23782         is obsolete.
23783         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
23784
23785         Tweak documentation to cover cygwin argz bugs.
23786         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
23787         argz bug fix; no code change needed since no cygwin releases
23788         occurred between the last fix and the bug being tested.
23789         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
23790         module and recently fixed cygwin bugs.
23791         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
23792         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
23793         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
23794         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
23795         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
23796         Likewise.
23797         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
23798         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
23799         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
23800         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
23801         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
23802         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
23803         Likewise.
23804
23805         Avoid gcc warning on cygwin.
23806         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
23807         !ACL_NO_TRIVIAL]: Avoid unused variable.
23808
23809 2008-06-05  Eric Blake  <ebb9@byu.net>
23810
23811         Be tolerant of UNKNOWN version in gnulib-tool test dir.
23812         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
23813         git-version-gen fails to come up with a version.
23814         Reported by Simon Josefsson.
23815
23816 2008-06-05  Jim Meyering  <meyering@redhat.com>
23817             Paul Eggert  <eggert@cs.ucla.edu>
23818
23819         utimens.c: work around a probable Linux kernel bug
23820         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
23821         appears to be a kernel bug that causes utimensat to return 280
23822         instead of 0, indicating success.
23823
23824 2008-06-04  Bruno Haible  <bruno@clisp.org>
23825
23826         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
23827         2008-06-01 commit.
23828
23829 2008-06-04  Bruno Haible  <bruno@clisp.org>
23830
23831         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
23832         * lib/file-has-acl.c (acl_access_nontrivial): New function.
23833         (file_has_acl): Use it. Save errno afterwards.
23834         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
23835
23836 2008-06-03  Bruno Haible  <bruno@clisp.org>
23837
23838         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
23839         draft code. Simplify #ifs.
23840         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
23841         Put Solaris code after POSIX-draft code. Fix comments regarding
23842         Solaris 10, HP-UX. Mention Cygwin.
23843         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
23844
23845 2008-06-03  Eric Blake  <ebb9@byu.net>
23846
23847         Provide fallback for older kernels.
23848         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
23849         Provide runtime fallback if kernel lacks support.
23850         Reported by Mike Frysinger.
23851
23852 2008-06-02  Bruno Haible  <bruno@clisp.org>
23853
23854         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
23855         it exists.
23856
23857 2008-06-02  Bruno Haible  <bruno@clisp.org>
23858
23859         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
23860         * lib/copy-acl.c (qcopy_acl): Update comment.
23861
23862 2008-06-02  Bruno Haible  <bruno@clisp.org>
23863
23864         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
23865         like ACL APIs.
23866
23867 2008-06-02  Bruno Haible  <bruno@clisp.org>
23868
23869         * tests/test-file-has-acl.sh: Use different code for Cygwin.
23870         * tests/test-set-mode-acl.sh: Likewise.
23871         * tests/test-copy-acl.sh: Likewise.
23872         * tests/test-copy-file.sh: Likewise.
23873
23874 2008-06-02  Bruno Haible  <bruno@clisp.org>
23875
23876         * tests/test-file-has-acl.sh: Remove unused code.
23877
23878 2008-06-01  Bruno Haible  <bruno@clisp.org>
23879
23880         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
23881         (copy_acl): Just a wrapper around qcopy_acl that emits the error
23882         messages.
23883         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
23884
23885 2008-06-01  Bruno Haible  <bruno@clisp.org>
23886
23887         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
23888         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
23889         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
23890         APIs.
23891         * modules/acl-tests (configure.ac): Remove tests now contained in
23892         m4/acl.m4.
23893
23894 2008-06-02  Jim Meyering  <meyering@redhat.com>
23895
23896         announce-gen: use a better key-server host name
23897         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
23898         it may be more consistently reliable.  Suggested by Werner Koch
23899         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
23900
23901 2008-06-01  Bruno Haible  <bruno@clisp.org>
23902
23903         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
23904         Reported by Voroskoi Andras <voroskoi@gmail.com>.
23905
23906 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
23907
23908         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
23909
23910 2008-06-01  Bruno Haible  <bruno@clisp.org>
23911
23912         New ACL tests.
23913         * tests/test-file-has-acl.sh: New file.
23914         * tests/test-file-has-acl.c: New file.
23915         * tests/test-set-mode-acl.sh: New file.
23916         * tests/test-set-mode-acl.c: New file.
23917         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
23918         * tests/test-copy-acl.c: New file.
23919         * modules/acl-tests: New file, based on modules/copy-file-tests.
23920         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
23921         (Depends-on): Add acl-tests.
23922         (configure.ac): Remove checks.
23923         (Makefile.am): Don't create test-sameacls program here any more.
23924
23925 2008-06-01  Bruno Haible  <bruno@clisp.org>
23926
23927         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
23928         * tests/test-sameacls.c: Include progname.h.
23929         (main): Invoke set_program_name. Portability fixes for MacOS X,
23930         Solaris, HP-UX.
23931
23932 2008-06-01  Bruno Haible  <bruno@clisp.org>
23933
23934         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
23935         function.
23936         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
23937
23938 2008-06-01  Bruno Haible  <bruno@clisp.org>
23939
23940         * modules/rpmatch (Depends-on): Add strdup.
23941
23942 2008-06-01  Bruno Haible  <bruno@clisp.org>
23943
23944         * lib/pipe.c: Include unistd-safer.h.
23945         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
23946         * modules/pipe (Depends-on): Add unistd-safer.
23947
23948 2008-05-30  Simon Josefsson  <simon@josefsson.org>
23949
23950         * modules/autobuild (configure.ac): Call AB_INIT.
23951
23952 2008-05-30  Simon Josefsson  <simon@josefsson.org>
23953
23954         * tests/test-getaddrinfo.c: Don't print debug messages by default.
23955         Suggested by Bruno Haible <bruno@clisp.org>.
23956
23957 2008-05-30  Simon Josefsson  <simon@josefsson.org>
23958
23959         * tests/test-base64.c: Cast size_t to unsigned long when invoking
23960         printf.  Use %lu instead of %d.  Reported by Bruno Haible
23961         <bruno@clisp.org>.
23962
23963 2008-05-29  Eric Blake  <ebb9@byu.net>
23964
23965         Prefer new POSIX 200x interfaces over futimesat.
23966         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
23967         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
23968         when available.
23969         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
23970
23971 2008-05-28  Bruno Haible  <bruno@clisp.org>
23972
23973         * modules/stpcpy (License): Change to LGPLv2+.
23974         Requested by David Lutterkort <dlutter@redhat.com>.
23975
23976 2008-05-27  Bruno Haible  <bruno@clisp.org>
23977
23978         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
23979         current mingw.
23980         Reported by Jose E. Marchesi <jemarch@gnu.org>.
23981
23982 2008-05-27  Bruno Haible  <bruno@clisp.org>
23983
23984         * modules/iconv_open (Link): New section, from module 'iconv'.
23985         * modules/striconv (Link): Likewise.
23986         * modules/striconveh (Link): Likewise.
23987         * modules/xstriconv (Link): Likewise.
23988         * modules/unicodeio (Link): Likewise.
23989         * modules/propername (Link): Likewise.
23990         Reported by Jim Meyering.
23991
23992 2008-05-26  Jim Meyering  <meyering@redhat.com>
23993
23994         sha256: do not artificially restrict buffer length to be < 2^32
23995         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
23996         uint32_t to size_t.
23997         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
23998         to match.
23999
24000         avoid unaligned access errors, e.g., on sparc
24001         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
24002         direct access through a possibly-unaligned uint64* pointer.
24003         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
24004         direct access through a possibly-unaligned uint32* pointer.
24005         Prompted by this patch from Tom "spot" Callaway:
24006         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
24007
24008         sha512.c: fix typo in comment
24009         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
24010
24011 2008-05-25  Bruno Haible  <bruno@clisp.org>
24012
24013         * lib/set-mode-acl.c: Renamed from lib/acl.c.
24014         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
24015         (Makefile.am): Update lib_SOURCES.
24016
24017 2008-05-25  Bruno Haible  <bruno@clisp.org>
24018
24019         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
24020
24021 2008-05-25  Jim Meyering  <meyering@redhat.com>
24022
24023         useless-if-before-free: freed expr may have white-space differences
24024         * build-aux/useless-if-before-free: Recognize cases in which the
24025         freed expression differs from the tested one in embedded white
24026         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
24027         $1 was used, so we can't make any regexp shy.  Improved tests now
24028         detect this.
24029
24030         useless-if-before-free: accept white space in the expression.
24031         * build-aux/useless-if-before-free: For now, any white space
24032         in the expression must be identical in the free argument.
24033
24034         useless-if-before-free: efficiency tweak
24035         * build-aux/useless-if-before-free: Make the expression-matching
24036         regexp "shy".
24037         Make the *outer* regexp shy, not the expr-matching one.
24038
24039         update code-in-comment to accept cast of free arg
24040         * build-aux/useless-if-before-free: Update regexp.
24041
24042 2008-05-25  Bruno Haible  <bruno@clisp.org>
24043
24044         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
24045         * modules/copy-file-tests (Files, Makefile.am): Update.
24046         * tests/test-copy-file.c (func_test_copy): Update.
24047
24048 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
24049
24050         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
24051
24052 2008-05-23  Bruno Haible  <bruno@clisp.org>
24053
24054         Improve support for ACLs on OSF/1.
24055         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
24056         Remove fallback for unknown flavors of ACLs.
24057
24058 2008-05-22  Bruno Haible  <bruno@clisp.org>
24059
24060         Add support for ACLs on OSF/1.
24061         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
24062         replacements.
24063         (acl_free_text): New macro fallback.
24064         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
24065         acl_free.
24066         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
24067         acl_free_text function. Require AC_C_INLINE.
24068
24069 2008-05-22  Bruno Haible  <bruno@clisp.org>
24070
24071         Make copy_acl work on MacOS X 10.5.
24072         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
24073         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
24074         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
24075         If MODE_INSIDE_ACL, don't assume that every system has the same text
24076         representation for ACLs as FreeBSD.
24077         * lib/copy-acl.c (copy_acl): Add support for platforms with
24078         !MODE_INSIDE_ACL.
24079         * lib/file-has-acl.c (file_has_acl): Likewise.
24080         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
24081         FreeBSD, MacOS X, or IRIX, respectively.
24082
24083 2008-05-22  Bruno Haible  <bruno@clisp.org>
24084
24085         * lib/acl.h: Don't include <sys/acl.h>.
24086         (GETACLCNT): Move fallback to lib/acl-internal.h.
24087         * lib/acl-internal.h: Include <sys/acl.h> here.
24088         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
24089
24090 2008-05-22  Bruno Haible  <bruno@clisp.org>
24091
24092         Split off copy_acl function to separate file.
24093         * lib/copy-acl.c: New file, extracted from lib/acl.c.
24094         * lib/acl.c (copy_acl): Moved function to separate file.
24095         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
24096         * modules/acl (Files): Add lib/copy-acl.c.
24097         (Makefiles.am): Augment lib_SOURCES.
24098
24099 2008-05-22  Bruno Haible  <bruno@clisp.org>
24100
24101         * modules/copy-file-tests: New file.
24102         * tests/test-copy-file.sh: New file.
24103         * tests/test-copy-file.c: New file.
24104         * tests/test-copy-file-sameacls.c: New file.
24105
24106 2008-05-22  Eric Blake  <ebb9@byu.net>
24107
24108         Avoid gcc warning.
24109         * tests/test-memcmp.c (main): Pass NULL indirectly.
24110
24111 2008-05-21  Bruno Haible  <bruno@clisp.org>
24112
24113         Add reference doc about ACLs.
24114         * doc/acl-resources.txt: New file.
24115         * doc/acl-cygwin.txt: New file.
24116
24117 2008-05-21  Bruno Haible  <bruno@clisp.org>
24118
24119         Avoid one more warning from gcc.
24120         * lib/vasnprintf.c (IF_LINT): Update comments.
24121         (VASNPRINTF): Use it also for the 'prefix' array initializer.
24122
24123 2008-05-21  Jim Meyering  <meyering@redhat.com>
24124
24125         avoid a warning from gcc
24126         * lib/vasnprintf.c (IF_LINT): Define.
24127         (scale10_round_decimal_long_double):
24128         Use it to avoid a "may be used uninitialized" warning.
24129         (scale10_round_decimal_double): Likewise.
24130
24131 2008-05-21  Simon Josefsson  <simon@josefsson.org>
24132
24133         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
24134         declared.
24135
24136 2008-05-20  Bruno Haible  <bruno@clisp.org>
24137
24138         * tests/test-memcmp.c (main): Test also the sign of the result. Test
24139         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
24140
24141 2008-05-20  Simon Josefsson  <simon@josefsson.org>
24142
24143         * modules/memcmp-tests: New file.
24144         * tests/test-memcmp.c: New file.
24145
24146 2008-05-19  Bruno Haible  <bruno@clisp.org>
24147
24148         * modules/propername (Notice, configure.ac): Put quoted "..." into
24149         --keyword option.
24150         * lib/propername.h: Update comments accordingly.
24151         Reported by Eric Blake.
24152
24153 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
24154
24155         * modules/getpass-gnu (Depends-on): Add fseeko.
24156
24157 2008-05-19  Simon Josefsson  <simon@josefsson.org>
24158
24159         * modules/base64-tests: New file.
24160
24161 2008-05-19  Bo Borgerson <gigabo@gmail.com>
24162
24163         * lib/base64.c (base64_decode_ctx): If a decode context structure
24164         was passed in use it to ignore newlines.  If a context structure
24165         was _not_ passed in, continue to treat newlines as garbage (this
24166         is the historical behavior).  Formerly base64_decode.
24167         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
24168         takes a decode context structure.
24169         * lib/base64.h (base64_decode): Macro for four-argument calls.
24170         (base64_decode_alloc): Likewise.
24171         * lib/base64.c (base64_decode_ctx): If a decode context structure
24172         was passed in use it to ignore newlines.  If a context structure
24173         was _not_ passed in, continue to treat newlines as garbage (this
24174         is the historical behavior).  Formerly base64_decode.
24175         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
24176         takes a decode context structure.
24177         * lib/base64.h (base64_decode): Macro for four-argument calls.
24178         (base64_decode_alloc): Likewise.
24179
24180 2008-05-19  Jim Meyering  <meyering@redhat.com>
24181
24182         avoid a warning from gcc
24183         * lib/trim.c (IF_LINT): Define.
24184         (trim2): Use it to avoid a "may be used uninitialized" warning.
24185
24186         Fix doc typo.
24187         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
24188
24189 2008-05-19  Bruno Haible  <bruno@clisp.org>
24190
24191         * doc/glibc-functions/getpass.texi: Document limits of other
24192         implementations.
24193
24194 2008-05-19  Simon Josefsson  <simon@josefsson.org>
24195             Bruno Haible <bruno@clisp.org>
24196
24197         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
24198
24199 2008-05-18  Bruno Haible  <bruno@clisp.org>
24200
24201         * modules/propername: New file, from GNU gettext.
24202         * lib/propername.h: New file, from GNU gettext.
24203         * lib/propername.c: New file, from GNU gettext.
24204         * MODULES.html.sh (Internationalization functions): Add propername.
24205
24206 2008-05-16  Jim Meyering  <meyering@redhat.com>
24207             Bruno Haible  <bruno@clisp.org>
24208
24209         Avoid some warnings from "gcc -Wshadow".
24210         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
24211
24212 2008-05-15  Eric Blake  <ebb9@byu.net>
24213
24214         Extend previous patch to cygwin 1.7.0.
24215         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
24216         fast implementation in cygwin >= 1.7.0.
24217         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
24218         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
24219
24220 2008-05-15  Bruno Haible  <bruno@clisp.org>
24221
24222         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
24223         implementation in glibc >= 2.9.
24224         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
24225         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
24226
24227 2008-05-15  Bruno Haible  <bruno@clisp.org>
24228
24229         * MODULES.html.sh (Internationalization functions): Remove linebreak.
24230         (Unicode string functions): Add unilbrk/*.
24231         Reported by Karl Berry.
24232
24233 2008-05-15  Eric Blake  <ebb9@byu.net>
24234
24235         Fix violation of <stdbool.h> replacement in regex.
24236         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
24237         * lib/regexec.c (re_search_internal): Likewise.
24238         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
24239
24240 2008-05-15  Jim Meyering  <meyering@redhat.com>
24241
24242         avoid distracting test output when git or cvs is not found
24243         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
24244         * tests/test-vc-list-files-git.sh: Likewise.
24245
24246 2008-05-15  Eric Blake  <ebb9@byu.net>
24247
24248         Glibc finally accepted the memmem speedup code, bugzilla #5514.
24249         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
24250         glibc version.
24251         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
24252         * doc/posix-functions/strstr.texi (strstr): Likewise.
24253         * lib/str-two-way.h (MAX): Sychronize with glibc.
24254
24255 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
24256
24257         * lib/regcomp.c (optimize_utf8): Add a note on why we test
24258         opr.ctx_type.
24259         (calc_first): Initialize constraint field.
24260         (duplicate_node_closure): Use it instead of special casing ANCHORS.
24261         Fix grammar.
24262         (duplicate_node): Merge constraint field for all node types.
24263         (calc_eclosure_iter): Look at constraint field for all node types.
24264         * lib/regex_internal.c (create_cd_newstate): Don't look at
24265         opr.ctx_type.
24266
24267 2008-05-14  Bruno Haible  <bruno@clisp.org>
24268
24269         Help GCC to do better code generation.
24270         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
24271         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
24272         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
24273         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
24274         Declare with attribute 'malloc' if supported.
24275
24276 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
24277
24278         use "echo STR|wc -c" rather than unportable "expr length STR"
24279         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
24280         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
24281
24282 2008-05-14  Jim Meyering  <meyering@redhat.com>
24283
24284         use dd ibs=$n count=1 ... rather than less-portable head -c$n
24285         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
24286         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
24287         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
24288         via Collin Lasse.
24289
24290 2008-05-14  Eric Blake  <ebb9@byu.net>
24291
24292         Avoid quadratic growth in gl_LIBSOURCES.
24293         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
24294         Suggested by Bruno Haible.
24295
24296         Test xmemdup0.
24297         * modules/xmemdup0-tests: New file.
24298         * tests/test-xmemdup0.c: Likewise.
24299
24300 2008-05-13  Eric Blake  <ebb9@byu.net>
24301
24302         Split xmemdup0 into its own module.
24303         * modules/xmemdup0: New file.
24304         * lib/xmemdup0.h: Likewise.
24305         * lib/xmemdup0.c: Likewise.
24306         * MODULES.html.sh (Memory management functions): Add xmemdup0.
24307         * lib/xalloc.h (xmemdup0): Remove.
24308         * lib/xmalloc.c (xmemdup0): Likewise.
24309
24310 2008-05-13  Eric Blake  <ebb9@byu.net>
24311             Bruno Haible  <bruno@clisp.org>
24312
24313         Reduce number of forks required during autoconf.
24314         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
24315         and gl_LIBSOURCES_DIR.
24316         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
24317         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
24318         m4_syscmd per file.
24319         <m4_foreach_w>: Move...
24320         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
24321
24322 2008-05-13  Eric Blake  <ebb9@byu.net>
24323
24324         * gnulib-tool: Fix various comment typos.
24325
24326 2008-05-12  Bruno Haible  <bruno@clisp.org>
24327
24328         Tailor the linebreaking algorithm.
24329         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
24330
24331 2008-05-12  Bruno Haible  <bruno@clisp.org>
24332
24333         Update to Unicode 5.0.0.
24334         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
24335         LBP_JV, LBP_JT. Redistribute values.
24336         (unilbrk_table): Change size.
24337         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
24338         Unicode TR#14 rev. 22.
24339         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
24340         LBP_JV, LBP_JT. Redistribute values.
24341         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
24342         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
24343         Update.
24344         * lib/unilbrk/lbrkprop1.h: Regenerated.
24345         * lib/unilbrk/lbrkprop2.h: Regenerated.
24346         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
24347         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
24348         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
24349         Likewise.
24350         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
24351         Likewise.
24352         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
24353         result.
24354         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
24355         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
24356         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
24357         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
24358         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
24359         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
24360
24361 2008-05-11  Bruno Haible  <bruno@clisp.org>
24362
24363         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
24364
24365 2008-05-11  Bruno Haible  <bruno@clisp.org>
24366
24367         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
24368         * modules/unilbrk/gen-lbrk: New file.
24369
24370 2008-05-11  Bruno Haible  <bruno@clisp.org>
24371
24372         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
24373         * m4/sha512.m4 (gl_SHA512): Likewise.
24374
24375 2008-05-11  Jim Meyering  <meyering@redhat.com>
24376
24377         New modules: crypto/sha256, crypto/sha512 (from coreutils)
24378         * modules/crypto/sha256: New file.
24379         * modules/crypto/sha512: Likewise.
24380         * lib/sha256.c: Likewise.
24381         * lib/sha256.h: Likewise.
24382         * lib/sha512.c: Likewise.
24383         * lib/sha512.h: Likewise.
24384         * lib/u64.h: Likewise.
24385         * m4/sha256.m4: Likewise.
24386         * m4/sha512.m4: Likewise.
24387         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
24388
24389 2008-05-10  Bruno Haible  <bruno@clisp.org>
24390
24391         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
24392         (Input/Output <stdio.h>): Add xprintf.
24393         (Signal handling <signal.h>): Add strsignal.
24394         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
24395         (Core language properties): Add func.
24396         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
24397         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
24398         strings.
24399         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
24400         (Input/output): New section.
24401         (File system functions): Add openat-die, stat-macros.
24402         (Networking functions): Add sockets.
24403         (Unicode string functions): Add unictype/*.
24404         (Support for building libraries and executables): Add gperf.
24405         (Support for building documentation): Add agpl-3.0.
24406         (Misc): Add nocrash.
24407
24408 2008-05-10  Bruno Haible  <bruno@clisp.org>
24409
24410         * modules/unictype/gen-ctype: New file.
24411
24412 2008-05-10  Jim Meyering  <meyering@redhat.com>
24413
24414         Make chdir-safer.c more efficient on a system with no symlinks.
24415         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
24416         also if ELOOP is zero.  Suggested by Bruno Haible.
24417
24418         Make chdir-safer.c slightly safer.
24419         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
24420         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
24421
24422         Avoid compile failure on systems without ELOOP (like mingw).
24423         * lib/chdir-safer.c (ELOOP): Define if not already defined.
24424         Reported by Bruno Haible.
24425
24426 2008-05-10  Bruno Haible  <bruno@clisp.org>
24427
24428         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
24429         (is_utf8_encoding): Use a case-insensitive comparison.
24430         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
24431         streq.
24432
24433 2008-05-10  Bruno Haible  <bruno@clisp.org>
24434
24435         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
24436         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
24437         * lib/unilbrk/ulc-common.h (iconv_string_length,
24438         iconv_string_keeping_offsets): Remove declarations.
24439         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
24440         Don't include <iconv.h>, streq.h, xsize.h.
24441         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
24442         conversion.
24443         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
24444         <iconv.h>, streq.h, xsize.h.
24445         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
24446         conversion.
24447         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
24448         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
24449         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
24450         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
24451
24452 2008-05-10  Bruno Haible  <bruno@clisp.org>
24453
24454         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
24455         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
24456
24457         * modules/unilbrk/u32-width-linebreaks-tests: New file.
24458         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
24459
24460         * modules/unilbrk/u16-width-linebreaks-tests: New file.
24461         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
24462
24463         * modules/unilbrk/u8-width-linebreaks-tests: New file.
24464         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
24465
24466         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
24467         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
24468
24469         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
24470         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
24471
24472         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
24473         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
24474
24475         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
24476         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
24477
24478 2008-05-10  Bruno Haible  <bruno@clisp.org>
24479
24480         Split up 'linebreak' module.
24481         * lib/unilbrk.h: New file, based on lib/linebreak.h.
24482         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
24483         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
24484         modifications.
24485         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
24486         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
24487         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
24488         lib/linebreak.c.
24489         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
24490         lib/linebreak.c.
24491         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
24492         lib/linebreak.c.
24493         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
24494         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
24495         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
24496         lib/linebreak.c.
24497         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
24498         lib/linebreak.c.
24499         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
24500         lib/linebreak.c.
24501         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
24502         lib/linebreak.c.
24503         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
24504         lib/linebreak.c.
24505         * modules/unilbrk/base: New file.
24506         * modules/unilbrk/tables: New file.
24507         * modules/unilbrk/u8-possible-linebreaks: New file.
24508         * modules/unilbrk/u16-possible-linebreaks: New file.
24509         * modules/unilbrk/u32-possible-linebreaks: New file.
24510         * modules/unilbrk/ulc-common: New file.
24511         * modules/unilbrk/ulc-possible-linebreaks: New file.
24512         * modules/unilbrk/u8-width-linebreaks: New file.
24513         * modules/unilbrk/u16-width-linebreaks: New file.
24514         * modules/unilbrk/u32-width-linebreaks: New file.
24515         * modules/unilbrk/ulc-width-linebreaks: New file.
24516         * lib/linebreak.h: Remove file.
24517         * lib/linebreak.c: Remove file.
24518         * m4/linebreak.m4: Remove file.
24519         * modules/linebreak: Remove file.
24520         * NEWS: Mention the changes.
24521
24522 2008-05-09  Eric Blake  <ebb9@byu.net>
24523
24524         Add xmemdup0.
24525         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
24526         implementation.
24527         * lib/xmalloc.c (xmemdup0): New C implementation.
24528
24529 2008-05-08  Bruno Haible  <bruno@clisp.org>
24530
24531         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
24532
24533 2008-05-07  Eric Blake  <ebb9@byu.net>
24534
24535         Support cross-compilation of <wctype.h>.
24536         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
24537         AC_CACHE_CHECK.
24538
24539 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
24540
24541         * build-aux/vc-list-files: Add support for bzr.
24542
24543 2008-05-03  Jim Meyering  <meyering@redhat.com>
24544
24545         avoid failed assertion with tight malloc
24546         * tests/test-getndelim2.c: Correct an off-by-one assertion.
24547
24548 2008-05-03  Simon Josefsson  <simon@josefsson.org>
24549
24550         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
24551         are needed from arpa/inet.h.
24552         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
24553         Reported by Bruno Haible.
24554
24555 2008-05-02  Jim Meyering  <meyering@redhat.com>
24556
24557         avoid compilation error on FreeBSD 6
24558         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
24559
24560 2008-05-01  Jim Meyering  <meyering@redhat.com>
24561
24562         useless-if-before-free: correct --help's exit status description
24563         * build-aux/useless-if-before-free (usage): Like grep, exit 0
24564         for one or more matches, etc.  Reported by Bruno Haible.
24565
24566         vc-list-files: make the stand-alone gnulib test work
24567         * modules/vc-list-files-tests (configure.ac):
24568         Define and AC_SUBST abs_aux_dir.
24569         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
24570         $(abs_top_srcdir) to each script and having each of them
24571         duplicate the work of setting PATH, set PATH here, using
24572         the new variable, abs_aux_dir instead.
24573         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
24574         * tests/test-vc-list-files-git.sh: Likewise.
24575         Reported by Bruno Haible.
24576
24577 2008-05-01  Bruno Haible  <bruno@clisp.org>
24578
24579         * lib/getndelim2.c (getndelim2): Fix newsize computation during
24580         reallocation. Rename 'done' to 'found_delimiter'.
24581
24582 2008-05-01  Jim Meyering  <meyering@redhat.com>
24583
24584         vc-list-files: accommodate /bin/sh like the one from Solaris 10
24585         * build-aux/vc-list-files: Use `...`, not $(...).
24586
24587 2008-04-30  Jim Meyering  <meyering@redhat.com>
24588
24589         add tests for vc-list-files
24590         * modules/vc-list-files-tests: New module.
24591         * tests/test-vc-list-files-cvs.sh: New file.
24592         * tests/test-vc-list-files-git.sh: New file.
24593
24594         avoid a warning from gcc
24595         * lib/getndelim2.c (IF_LINT): Define.
24596         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
24597
24598         vc-list-files: work properly with build-aux/cvsu, too
24599         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
24600         to all cvs-based clauses.
24601
24602         vc-list-files: work properly in the CVS+awk case, too
24603         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
24604
24605         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
24606         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
24607         take more than one file argument, so .  Add quotes, just in case $dir
24608         ever contains a shell meta-character.  Prompted by Soren Hansen in
24609         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
24610
24611 2008-04-29  Eric Blake  <ebb9@byu.net>
24612
24613         Optimize getndelim2 to use block operations when possible.
24614         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
24615         freadseek, and memchr2.
24616         * lib/getndelim2.c (getndelim2): Use them for block reads.
24617
24618 2008-04-29  Bruno Haible  <bruno@clisp.org>
24619
24620         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
24621         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
24622         * modules/inet_ntop (Depends-on): Add extensions.
24623         * modules/inet_pton (Depends-on): Likewise.
24624         Reported by Simon Josefsson.
24625
24626 2008-04-29  Jim Meyering  <meyering@redhat.com>
24627
24628         When the is more than one match in a block, match all of them.
24629         * build-aux/useless-if-before-free: Iterate through each block
24630         until there are no more matches.
24631
24632         Fix broken useless-if-before-free script.
24633         * build-aux/useless-if-before-free: Fix typo: missing "?" after
24634         the expression to match cast of argument to free-like function.
24635
24636 2008-04-29  Eric Blake  <ebb9@byu.net>
24637
24638         Use new header.
24639         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
24640
24641 2008-04-29  Jim Meyering  <meyering@redhat.com>
24642
24643         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
24644         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
24645         by gnulib to exist and to declare e.g., inet_ntop.
24646         Don't include "inet_ntop.h", now removed.
24647
24648         * m4/arpa_inet_h.m4: Remove trailing blanks.
24649
24650 2008-04-29  Eric Blake  <ebb9@byu.net>
24651
24652         Silence valgrind on safe reads beyond potential array bounds.
24653         * lib/rawmemchr.valgrind: New file.
24654         * lib/strchrnul.valgrind: Likewise.
24655         * modules/rawmemchr (Files): Distribute new file.
24656         * modules/strchrnul (Files): Likewise.
24657         Suggested by Bruno Haible.
24658
24659 2008-04-29  Bruno Haible  <bruno@clisp.org>
24660
24661         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
24662         (inet_ntop, inet_pton): Change portability warning's wording.
24663         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
24664         Invoke gl_CHECK_NEXT_HEADERS.
24665         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
24666         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
24667         set ARPA_INET_H.
24668         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
24669         * modules/arpa_inet (Description): No longer only for systems that
24670         lack it.
24671         (Depends-on): Add include_next.
24672         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
24673         HAVE_ARPA_INET_H.
24674
24675 2008-04-29  Jim Meyering  <meyering@redhat.com>
24676
24677         * modules/mkdir (License): Re-license as LGPLv2+.
24678
24679 2008-04-29  Bruno Haible  <bruno@clisp.org>
24680
24681         * modules/rawmemchr (Maintainer): Set to Eric.
24682         * modules/strchrnul (Maintainer): Likewise.
24683
24684 2008-04-29  Simon Josefsson  <simon@josefsson.org>
24685
24686         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
24687         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
24688
24689         * modules/arpa_inet (arpa/inet.h): Use them.
24690
24691 2008-04-28  Eric Blake  <ebb9@byu.net>
24692
24693         Test getndelim2.
24694         * modules/getndelim2-tests: New file.
24695         * tests/test-getndelim2.c: Likewise.
24696         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
24697         stream.
24698         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
24699
24700         * MODULES.html.sh: Document new module.
24701
24702 2008-04-20  Bruno Haible  <bruno@clisp.org>
24703
24704         * lib/c-stack.c (die): Use raise.
24705         * modules/c-stack (Depends-on): Add raise.
24706
24707 2008-04-28  Bruno Haible  <bruno@clisp.org>
24708
24709         Expect rpmatch to be declared.
24710         * lib/yesno.c (rpmatch): Remove declaration.
24711
24712         Declare rpmatch.
24713         * lib/stdlib.in.h (rpmatch): New declaration.
24714         * lib/rpmatch.c: Include <stdlib.h> first.
24715         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
24716         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
24717         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
24718         HAVE_RPMATCH.
24719         * modules/rpmatch (Depends-on): Add stdlib, extensions.
24720         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
24721         (Include): Set to <stdlib.h>.
24722         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
24723         HAVE_RPMATCH.
24724         * NEWS: Document the change.
24725
24726 2008-04-28  Bruno Haible  <bruno@clisp.org>
24727
24728         Change rpmatch to use nl_langinfo when appropriate.
24729         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
24730         (N_): New macro.
24731         (localized_pattern): New function/macro.
24732         (try): Remove match, nomatch arguments. Copy the pattern into safe
24733         memory before caching it.
24734         (rpmatch): Use localized_pattern. Add translator comments.
24735         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
24736         Suggested by Eric Blake.
24737         * modules/rpmatch (Depends-on): Add stdbool.
24738
24739 2008-04-28  Eric Blake  <ebb9@byu.net>
24740
24741         Add rawmemchr module, matching glibc.
24742         * modules/string (Makefile.am): New indicator.
24743         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
24744         * lib/string.in.h (rawmemchr): Declare when appropriate.
24745         * modules/rawmemchr: New file.
24746         * m4/rawmemchr.m4: Likewise.
24747         * lib/rawmemchr.c: Likewise.
24748         * modules/rawmemchr-tests: Likewise.
24749         * tests/test-rawmemchr.c: Likewise.
24750         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
24751         module.
24752         * modules/strchrnul (Depends-on): Add rawmemchr.
24753         * lib/strchrnul.c (strchrnul): Optimize a corner case.
24754
24755         Whitespace cleanup.
24756         * tests/test-strchrnul.c: Reindent.
24757         * lib/strchrnul.c: Likewise.
24758
24759         Optimize and test strchrnul.
24760         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
24761         * modules/strchrnul-tests: New file.
24762         * tests/test-strchrnul.c: Likewise.
24763
24764         Remove intprops dependency.
24765         * modules/memchr (Depends-on): Remove intprops.
24766         * modules/memrchr (Depends-on): Likewise.
24767         * modules/memchr2 (Depends-on): Likewise.
24768         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
24769         * lib/memrchr.c (__memrchr): Likewise.
24770         * lib/memrchr2.c (memchr2): Likewise.
24771         Reported by Simon Josefsson.
24772
24773 2008-04-28  Simon Josefsson  <simon@josefsson.org>
24774
24775         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
24776         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
24777
24778 2008-04-28  Simon Josefsson  <simon@josefsson.org>
24779
24780         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
24781
24782         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
24783
24784         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
24785
24786         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
24787         declarations.
24788         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
24789
24790         * m4/inet_pton.m4: Don't check for header files.
24791
24792         * m4/inet_ntop.m4: Don't check for header files.
24793
24794 2008-04-28  Simon Josefsson  <simon@josefsson.org>
24795
24796         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
24797         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
24798         trigger for cygwin).
24799         Reported by Bruno Haible  <bruno@clisp.org>.
24800
24801 2008-04-28  Bruno Haible  <bruno@clisp.org>
24802
24803         * doc/posix-functions/strdup.texi: Mention mingw problem.
24804
24805 2008-04-27  Bruno Haible  <bruno@clisp.org>
24806
24807         * modules/stat-time-tests (Depends-on): Add sleep.
24808         * tests/test-stat-time.c (force_unlink): New function.
24809         (cleanup): Use it.
24810         (test_mtime): Remove the ctime related tests.
24811         (test_ctime): New function, containing the ctime related tests.
24812         (main): Call test_ctime, except on native Windows platforms.
24813
24814 2008-04-27  Bruno Haible  <bruno@clisp.org>
24815
24816         * lib/rpmatch.c (rpmatch): Add some comments.
24817         Reported by James Youngman <jay@gnu.org>.
24818
24819 2008-04-27  Bruno Haible  <bruno@clisp.org>
24820
24821         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
24822         quiet NaNs.
24823
24824 2008-04-27  Bruno Haible  <bruno@clisp.org>
24825
24826         Make test-yesno.sh work on mingw.
24827         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
24828         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
24829         (main): Set stdin to binary mode.
24830         * modules/yesno-tests (Depends-on): Add binary-io.
24831
24832 2008-04-27  Bruno Haible  <bruno@clisp.org>
24833
24834         Fix 'isfinite' on x86, x86_64, ia64 platforms.
24835         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
24836         argument that lie outside the IEEE 854 domain.
24837         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
24838         (gl_ISFINITE): Use it.
24839         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
24840
24841 2008-04-27  Bruno Haible  <bruno@clisp.org>
24842
24843         Allow local renaming in config.h.
24844         * lib/memrchr.c (memrchr): Don't undefine outside libc.
24845
24846 2008-04-27  Bruno Haible  <bruno@clisp.org>
24847
24848         * lib/memchr.c (__memchr): Change type of 'i'.
24849         * lib/memchr2.c (memchr2): Likewise.
24850
24851 2008-04-26  Eric Blake  <ebb9@byu.net>
24852         and Bruno Haible  <bruno@clisp.org>
24853
24854         Optimize and test memrchr.
24855         * modules/memrchr (Depends-on): Add intprops.
24856         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
24857         * modules/memrchr-tests: New file.
24858         * tests/test-memrchr.c: New file.
24859
24860 2008-04-26  Bruno Haible  <bruno@clisp.org>
24861
24862         Add tentative support for DragonFly BSD.
24863         * lib/stdio-impl.h: Add macros for DragonFly BSD.
24864         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
24865         fp.
24866         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
24867         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
24868         * lib/fpurge.c (fpurge): Likewise.
24869         * lib/freadable.c (freaadable): Likewise.
24870         * lib/freadahead.c (freadahead): Likewise.
24871         * lib/freading.c (freading): Likewise.
24872         * lib/freadptr.c (freadptr): Likewise.
24873         * lib/freadseek.c (freadptrinc): Likewise.
24874         * lib/fseeko.c (fseeko): Likewise.
24875         * lib/fseterr.c (fseterr): Likewise.
24876         * lib/fwritable.c (fwritable): Likewise.
24877         * lib/fwriting.c (fwriting): Likewise.
24878
24879 2008-04-26  Bruno Haible  <bruno@clisp.org>
24880
24881         * lib/stdio-impl.h: New file.
24882         * lib/fbufmode.c: Include stdio-impl.h.
24883         (fbufmode): Use fp_, remove redundant #defines.
24884         * lib/fflush.c: Include stdio-impl.h.
24885         (clear_ungetc_buffer): Remove redundant #defines.
24886         * lib/fpurge.c: Include stdio-impl.h.
24887         (fpurge): Remove redundant #defines.
24888         * lib/freadable.c: Include stdio-impl.h.
24889         (freadable): Remove redundant #defines.
24890         * lib/freadahead.c: Include stdio-impl.h.
24891         (freadahead): Remove redundant #defines.
24892         * lib/freading.c: Include stdio-impl.h.
24893         (freading): Remove redundant #defines.
24894         * lib/freadptr.c: Include stdio-impl.h.
24895         (freadptr): Remove redundant #defines.
24896         * lib/freadseek.c: Include stdio-impl.h.
24897         (freadptrinc): Remove redundant #defines.
24898         * lib/fseeko.c: Include stdio-impl.h.
24899         (rpl_fseeko): Remove redundant #defines.
24900         * lib/fseterr.c: Include stdio-impl.h.
24901         (fseterr): Remove redundant #defines.
24902         * lib/fwritable.c: Include stdio-impl.h.
24903         (fwritable: Remove redundant #defines.
24904         * lib/fwriting.c: Include stdio-impl.h.
24905         (fwriting): Remove redundant #defines.
24906         * modules/fbufmode (Files): Add lib/stdio-impl.h.
24907         * modules/fflush (Files): Likewise.
24908         * modules/fpurge (Files): Likewise.
24909         * modules/freadable (Files): Likewise.
24910         * modules/freadahead (Files): Likewise.
24911         * modules/freading (Files): Likewise.
24912         * modules/freadptr (Files): Likewise.
24913         * modules/freadseek (Files): Likewise.
24914         * modules/fseeko (Files): Likewise.
24915         * modules/fseterr (Files): Likewise.
24916         * modules/fwritable (Files): Likewise.
24917         * modules/fwriting (Files): Likewise.
24918
24919 2008-04-26  Bruno Haible  <bruno@clisp.org>
24920
24921         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
24922         restore_seek_optimization, update_fpos_cache): New functions, extracted
24923         from rpl_fflush.
24924         (rpl_fflush): Use them.
24925         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
24926         (gl_REPLACE_FFLUSH): Use it.
24927
24928 2008-04-26  Bruno Haible  <bruno@clisp.org>
24929
24930         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
24931         on Solaris.
24932         * tests/test-xstrtoimax.sh: Likewise.
24933         * tests/test-xstrtoumax.sh: Likewise.
24934         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
24935
24936 2008-04-26  Bruno Haible  <bruno@clisp.org>
24937
24938         * modules/memchr-tests: New file.
24939         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
24940
24941 2008-04-26  Eric Blake  <ebb9@byu.net>
24942             Bruno Haible  <bruno@clisp.org>
24943
24944         * lib/memchr.c: Include intprops.h.
24945         (__memchr): Optimize parallel detection of matching bytes. Rename local
24946         variables. Add explanatory comments.
24947
24948 2008-04-26  Bruno Haible  <bruno@clisp.org>
24949
24950         Fix module 'memchr', broken since 2000-10-28.
24951         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
24952
24953 2008-04-26  Bruno Haible  <bruno@clisp.org>
24954
24955         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
24956         comments.
24957
24958 2008-04-25  Eric Blake  <ebb9@byu.net>
24959
24960         Use native fstatat on cygwin 1.7.0.
24961         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
24962         first.
24963
24964 2008-04-23  Eric Blake  <ebb9@byu.net>
24965
24966         Improve memchr2 performance.
24967         * lib/memchr2.c (memchr2): Further optimize parallel detection of
24968         NUL bytes.
24969         * modules/memchr2 (Depends-on): Use intprops.h.
24970
24971 2008-04-23  Simon Josefsson  <simon@josefsson.org>
24972
24973         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
24974         an inline function instead of a CPP macro.  Patch by Ben Pfaff
24975         <blp@cs.stanford.edu>.
24976
24977 2008-04-23  Simon Josefsson  <simon@josefsson.org>
24978
24979         * lib/arpa_inet.in.h: New file.
24980
24981         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
24982         (Makefile.am): Sed in substitute header file.
24983
24984         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
24985         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
24986
24987         * modules/inet_ntop (configure.ac): Use
24988         gl_ARPA_INET_MODULE_INDICATOR.
24989
24990         * modules/inet_pton (configure.ac): Use
24991         gl_ARPA_INET_MODULE_INDICATOR.
24992
24993 2008-04-22  Jim Meyering  <meyering@redhat.com>
24994
24995         * modules/verify (License): Re-license as LGPLv2+.
24996
24997 2008-04-22  Simon Josefsson  <simon@josefsson.org>
24998
24999         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
25000         parameter to void* as per POSIX standard (MinGW uses char*).
25001
25002 2008-04-21  Bruno Haible  <bruno@clisp.org>
25003
25004         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
25005         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
25006         Define to replacements if REPLACE_ISWCNTRL is 1.
25007         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
25008         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
25009         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
25010         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
25011         what it fixes.
25012         * doc/posix-functions/iswalpha.texi: Likewise.
25013         * doc/posix-functions/iswblank.texi: Likewise.
25014         * doc/posix-functions/iswcntrl.texi: Likewise.
25015         * doc/posix-functions/iswdigit.texi: Likewise.
25016         * doc/posix-functions/iswgraph.texi: Likewise.
25017         * doc/posix-functions/iswlower.texi: Likewise.
25018         * doc/posix-functions/iswprint.texi: Likewise.
25019         * doc/posix-functions/iswpunct.texi: Likewise.
25020         * doc/posix-functions/iswspace.texi: Likewise.
25021         * doc/posix-functions/iswupper.texi: Likewise.
25022         * doc/posix-functions/iswxdigit.texi: Likewise.
25023         Reported by Alain Guibert.
25024
25025 2008-04-21  Bruno Haible  <bruno@clisp.org>
25026
25027         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
25028         Patch by Alain Guibert.
25029
25030 2008-04-21  Bruno Haible  <bruno@clisp.org>
25031
25032         Fix test failures on mingw.
25033         * tests/test-xstrtol.c (print_no_progname): New function.
25034         (main): Install it in error_print_progname hook.
25035         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
25036         * tests/test-xstrtoimax.sh: Likewise.
25037         * tests/test-xstrtoumax.sh: Likewise.
25038
25039 2008-04-21  Bruno Haible  <bruno@clisp.org>
25040
25041         Fix test failure on mingw.
25042         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
25043
25044 2008-04-21  Bruno Haible  <bruno@clisp.org>
25045
25046         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
25047         Actually assign a value.
25048
25049 2008-04-20  Bruno Haible  <bruno@clisp.org>
25050
25051         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
25052         take 2.
25053         * lib/canonicalize.c (canonicalize_file_name): Elide if the
25054         'canonicalize-lgpl' module is also used.
25055         * lib/canonicalize-lgpl.c: Undo last change.
25056         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
25057
25058 2008-04-20  Bruno Haible  <bruno@clisp.org>
25059
25060         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
25061         config.h. Provide _mkdir based fallback for mingw.
25062         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
25063         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
25064         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
25065         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
25066         rather than defining mkdir in config.h.
25067         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
25068         (gl_SYS_STAT_H_DEFAULTS): New macro.
25069         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
25070         HAVE_IO_H any more.
25071         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
25072         HAVE_DECL_MKDIR and HAVE_IO_H.
25073
25074 2008-04-20  Bruno Haible  <bruno@clisp.org>
25075
25076         * lib/isapipe.c: Port to native Windows platforms.
25077
25078 2008-04-20  Bruno Haible  <bruno@clisp.org>
25079
25080         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
25081
25082 2008-04-21  Eric Blake  <ebb9@byu.net>
25083
25084         Work around preprocessors that don't handle UINTMAX_MAX.
25085         * lib/memchr2.c (memchr2): Avoid embedded #if.
25086         Reported by Alain Guibert, fix suggested by Bruno Haible.
25087
25088 2008-04-21  Simon Josefsson  <simon@josefsson.org>
25089
25090         * doc/posix-functions/strftime.texi (strftime): Explain better
25091         Windows incompatibility.  Suggested by Micah Cowan
25092         <micah@cowan.name>.
25093
25094 2008-04-20  Bruno Haible  <bruno@clisp.org>
25095
25096         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
25097         unistr/u8-mblen.
25098
25099 2008-04-20  Bruno Haible  <bruno@clisp.org>
25100
25101         Fix test failure on platforms with non-GNU iconv.
25102         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
25103         (U_TO_U8): Use it, rather than u16_to_u8.
25104         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
25105         units at the end of the input string.
25106         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
25107
25108 2008-04-20  Bruno Haible  <bruno@clisp.org>
25109
25110         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
25111         when the resulting length is 0.
25112         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
25113
25114 2008-04-20  Bruno Haible  <bruno@clisp.org>
25115
25116         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
25117         works.
25118         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
25119
25120 2008-04-20  Bruno Haible  <bruno@clisp.org>
25121
25122         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
25123         * modules/tsearch-tests (configure.ac): Test for initstate function.
25124
25125 2008-04-20  Bruno Haible  <bruno@clisp.org>
25126
25127         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
25128         for nlink_t if missing.
25129         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
25130
25131 2008-04-19  Bruno Haible  <bruno@clisp.org>
25132
25133         Work around snprintf bug on Linux libc5.
25134         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
25135         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
25136         gl_SNPRINTF_SIZE1.
25137         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
25138         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
25139         that test failed.
25140         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
25141         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
25142         * modules/snprintf (Files): Add m4/printf.m4.
25143         * modules/vsnprintf (Files): Likewise.
25144         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
25145         * doc/posix-functions/vsnprintf.texi: Likewise.
25146
25147 2008-04-19  Bruno Haible  <bruno@clisp.org>
25148
25149         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
25150         from 0.0058 to less than 10^-7.
25151
25152 2008-04-19  Bruno Haible  <bruno@clisp.org>
25153
25154         Fix rounding when a precision is given.
25155         * lib/vasnprintf.c (is_borderline): New function.
25156         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
25157         9...9x.
25158         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
25159         %e, %g.
25160         * tests/test-vasprintf-posix.c (test_function): Likewise.
25161         * tests/test-snprintf-posix.h (test_function): Likewise.
25162         * tests/test-sprintf-posix.h (test_function): Likewise.
25163         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
25164         * tests/test-printf-posix.h (test_function): Likewise.
25165         * tests/test-printf-posix.output: Update.
25166         Reported by John Darrington <john@darrington.wattle.id.au> via
25167         Ben Pfaff <blp@cs.stanford.edu>.
25168
25169 2008-04-18  Simon Josefsson  <simon@josefsson.org>
25170
25171         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
25172         Suggested by Bruno Haible <bruno@clisp.org>.
25173
25174 2008-04-17  Bruno Haible  <bruno@clisp.org>
25175
25176         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
25177         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
25178         implementation.
25179         Patch by Bruce Merry <bmerry@gmail.com>.
25180
25181 2008-04-17  Simon Josefsson  <simon@josefsson.org>
25182
25183         * doc/posix-functions/strftime.texi (strftime): Mention that %e
25184         doesn't work under Windows.
25185
25186 2008-04-16  Bruno Haible  <bruno@clisp.org>
25187
25188         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
25189         New macros.
25190         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
25191         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
25192         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
25193         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
25194         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
25195         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
25196         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
25197         macros.
25198         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
25199         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
25200         Northern Sotho, Uighur.
25201
25202 2008-04-16  Bruno Haible  <bruno@clisp.org>
25203
25204         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
25205         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
25206         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
25207         Reported by Daniel Bergström <daniel@octocode.com>.
25208
25209 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
25210             Bruno Haible  <bruno@clisp.org>
25211
25212         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
25213         function.
25214         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
25215         New functions, mostly extracted from gl_locale_name_default.
25216         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
25217
25218 2008-04-16  Eric Blake  <ebb9@byu.net>
25219
25220         Adjust strtod detection to catch glibc 2.7 bug.
25221         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
25222         Reported by John Gatewood Ham.
25223
25224 2008-04-16  Bruno Haible  <bruno@clisp.org>
25225
25226         Add tentative support for Linux libc5.
25227         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
25228         * lib/fpurge.c (fpurge): Likewise.
25229         * lib/freadable.c (freadable): Likewise.
25230         * lib/freadahead.c (freadahead): Likewise.
25231         * lib/freading.c (freading): Likewise.
25232         * lib/freadptr.c (freadptr): Likewise.
25233         * lib/freadseek.c (freadptrinc): Likewise.
25234         * lib/fseeko.c (rpl_fseeko): Likewise.
25235         * lib/fseterr.c (fseterr): Likewise.
25236         * lib/fwritable.c (fwritable): Likewise.
25237         * lib/fwriting.c (fwriting): Likewise.
25238         Reported by Alain Guibert <alguibert+bts@free.fr>.
25239
25240 2008-04-15  Bruno Haible  <bruno@clisp.org>
25241
25242         * modules/mathl (configure.ac): Define module indicator.
25243
25244 2008-04-15  Bruno Haible  <bruno@clisp.org>
25245
25246         * lib/logl.c (logl): Remove unused variables.
25247
25248 2008-04-15  Bruno Haible  <bruno@clisp.org>
25249
25250         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
25251         fails.
25252
25253 2008-04-15  Bruno Haible  <bruno@clisp.org>
25254
25255         * lib/trim.c (trim2): Fix argument of isspace() macro.
25256
25257 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
25258
25259         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
25260         to 0.
25261         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
25262
25263 2008-04-14  Bruno Haible  <bruno@clisp.org>
25264
25265         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
25266         AC_LANG_PROGRAM argument.
25267         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
25268         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
25269         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
25270         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
25271         * m4/math_h.m4 (gl_MATH_H): Likewise.
25272         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
25273         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
25274         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
25275         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
25276         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
25277         * m4/regex.m4 (gl_REGEX): Likewise.
25278         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
25279         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
25280         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
25281         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
25282         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
25283         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
25284         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
25285         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
25286
25287 2008-04-14  Jim Meyering  <meyering@redhat.com>
25288
25289         test-strtod: fix typos: s/abs/fabs/
25290         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
25291
25292 2008-04-13  Bruno Haible  <bruno@clisp.org>
25293
25294         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
25295         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
25296         module is also used and while not building the reloc-wrapper.
25297
25298 2008-04-13  Bruno Haible  <bruno@clisp.org>
25299
25300         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
25301
25302 2008-04-13  Bruno Haible  <bruno@clisp.org>
25303
25304         Fix AIX compilation failure introduced on 2008-04-02.
25305         * tests/test-frexp.c (exp): Undefine before redefining.
25306         * tests/test-frexpl.c (exp): Likewise.
25307
25308 2008-04-13  Bruno Haible  <bruno@clisp.org>
25309
25310         Work around a HP-UX stdio bug.
25311         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
25312         * tests/test-ftello.c (main): Likewise.
25313         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
25314         * doc/posix-functions/ftello.texi: Likewise.
25315
25316 2008-04-13  Bruno Haible  <bruno@clisp.org>
25317
25318         Make test-signbit pass on HP-UX/hppa.
25319         * tests/test-signbit.c (minus_zerol): New variable.
25320         (test_signbitl): Use it.
25321
25322 2008-04-13  Bruno Haible  <bruno@clisp.org>
25323
25324         Make truncl work on OSF/1 4.0.
25325         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
25326         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
25327         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
25328         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
25329         HAVE_DECL_TRUNCL.
25330         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
25331         HAVE_DECL_TRUNCL.
25332         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
25333
25334 2008-04-13  Bruno Haible  <bruno@clisp.org>
25335
25336         * lib/unictype.h: Remove trailing comma from enumeration definitions.
25337
25338 2008-04-13  Bruno Haible  <bruno@clisp.org>
25339
25340         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
25341         expression, so as to avoid HP-UX 11 cc compiler bug.
25342
25343 2008-04-13  Bruno Haible  <bruno@clisp.org>
25344
25345         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
25346
25347 2008-04-13  Bruno Haible  <bruno@clisp.org>
25348
25349         * lib/git-merge-changelog.c: Remove empty declaration outside of
25350         functions.
25351
25352 2008-04-13  Bruno Haible  <bruno@clisp.org>
25353
25354         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
25355
25356 2008-04-13  Bruno Haible  <bruno@clisp.org>
25357
25358         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
25359         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
25360         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
25361         also if it exists but lacks definitions of the SHUT_* macros.
25362         * modules/sys_socket (Description): Update.
25363         Reported by Elbert Pol <e.pol@chello.nl>.
25364
25365 2008-04-13  Bruno Haible  <bruno@clisp.org>
25366
25367         * lib/localcharset.c (OS2): Don't redefine if already defined.
25368         Reported by Elbert Pol <e.pol@chello.nl>.
25369
25370 2008-04-13  Bruno Haible  <bruno@clisp.org>
25371
25372         * lib/binary-io.h [__EMX__]: Include <io.h>.
25373         Reported by Elbert Pol <e.pol@chello.nl>.
25374
25375 2008-04-12  Bruno Haible  <bruno@clisp.org>
25376
25377         * lib/fpucw.h: Enable the definitions also for x86_64.
25378         Needed for NetBSD/x86_64.
25379         Reported by Thomas Klausner <tk@giga.or.at>.
25380
25381 2008-04-12  Bruno Haible  <bruno@clisp.org>
25382
25383         * tests/test-strtod.c: Include isnand.h.
25384         (main): Use isnand instead of isnan.
25385         Reported by Jim Meyering.
25386
25387 2008-04-12  Bruno Haible  <bruno@clisp.org>
25388
25389         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
25390         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
25391
25392 2008-04-12  Jim Meyering  <meyering@redhat.com>
25393
25394         * m4/math_h.m4 (gl_MATH_H): Fix typos.
25395
25396 2008-04-12  Bruno Haible  <bruno@clisp.org>
25397
25398         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
25399         Reported by Elbert Pol <e.pol@chello.nl>.
25400
25401 2008-04-12  Eric Blake  <ebb9@byu.net>
25402
25403         Work around Solaris 10 math.h bug.
25404         * m4/math_h.m4 (gl_MATH_H): Check for bug.
25405         (gl_MATH_H_DEFAULTS): Set up default.
25406         * modules/math (Makefile.am): Replace new indicators.
25407         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
25408         * tests/test-math.c (main): Test this.
25409         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
25410         * doc/posix-headers/math.texi (math.h): Mention bug.
25411         Reported by Nelson H. F. Beebe and Jim Meyering.
25412
25413 2008-04-11  Bruno Haible  <bruno@clisp.org>
25414
25415         Adapt to future versions of Apple GCC.
25416         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
25417         Reported by Peter O'Gorman <peter@pogma.com>.
25418
25419 2008-04-11  Bruno Haible  <bruno@clisp.org>
25420
25421         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
25422
25423 2008-04-11  Bruno Haible  <bruno@clisp.org>
25424
25425         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
25426
25427         * modules/getaddrinfo-tests (Makefile.am): Define
25428         test_getaddrinfo_LDADD.
25429
25430 2008-04-11  Bruno Haible  <bruno@clisp.org>
25431
25432         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
25433         (init): Fix syntax error.
25434         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
25435         is declared.
25436
25437 2008-04-11  Bruno Haible  <bruno@clisp.org>
25438
25439         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
25440         * modules/glob (Depends-on): Add stdbool.
25441
25442 2008-04-11  Bruno Haible  <bruno@clisp.org>
25443
25444         * lib/trim.c: Include <string.h>.
25445
25446 2008-04-11  Eric Blake  <ebb9@byu.net>
25447
25448         Avoid compile failure on OS/2.
25449         * lib/regex_internal.h (internal_function): Disable optimization
25450         on OS/2 (__EMX__), where it caused compiler error.
25451         Reported by Elbert Pol.
25452
25453 2008-04-11  Bruno Haible  <bruno@clisp.org>
25454
25455         Flush the standard error stream before aborting. Needed on mingw.
25456         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
25457         * tests/test-array_list.c (ASSERT): Likewise.
25458         * tests/test-array_oset.c (ASSERT): Likewise.
25459         * tests/test-avltree_list.c (ASSERT): Likewise.
25460         * tests/test-avltree_oset.c (ASSERT): Likewise.
25461         * tests/test-avltreehash_list.c (ASSERT): Likewise.
25462         * tests/test-binary-io.c (ASSERT): Likewise.
25463         * tests/test-byteswap.c (ASSERT): Likewise.
25464         * tests/test-c-ctype.c (ASSERT): Likewise.
25465         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
25466         * tests/test-c-strcasestr.c (ASSERT): Likewise.
25467         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
25468         * tests/test-c-strstr.c (ASSERT): Likewise.
25469         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
25470         * tests/test-canonicalize.c (ASSERT): Likewise.
25471         * tests/test-carray_list.c (ASSERT): Likewise.
25472         * tests/test-ceilf1.c (ASSERT): Likewise.
25473         * tests/test-ceilf2.c (ASSERT): Likewise.
25474         * tests/test-ceill.c (ASSERT): Likewise.
25475         * tests/test-count-one-bits.c (ASSERT): Likewise.
25476         * tests/test-fbufmode.c (ASSERT): Likewise.
25477         * tests/test-fflush2.c (ASSERT): Likewise.
25478         * tests/test-floorf1.c (ASSERT): Likewise.
25479         * tests/test-floorf2.c (ASSERT): Likewise.
25480         * tests/test-floorl.c (ASSERT): Likewise.
25481         * tests/test-fopen.c (ASSERT): Likewise.
25482         * tests/test-fpending.c (ASSERT): Likewise.
25483         * tests/test-fprintf-posix.c (ASSERT): Likewise.
25484         * tests/test-fpurge.c (ASSERT): Likewise.
25485         * tests/test-freadable.c (ASSERT): Likewise.
25486         * tests/test-freadahead.c (ASSERT): Likewise.
25487         * tests/test-freading.c (ASSERT): Likewise.
25488         * tests/test-freadptr.c (ASSERT): Likewise.
25489         * tests/test-freadptr2.c (ASSERT): Likewise.
25490         * tests/test-freadseek.c (ASSERT): Likewise.
25491         * tests/test-freopen.c (ASSERT): Likewise.
25492         * tests/test-frexp.c (ASSERT): Likewise.
25493         * tests/test-frexpl.c (ASSERT): Likewise.
25494         * tests/test-fseek.c (ASSERT): Likewise.
25495         * tests/test-fseeko.c (ASSERT): Likewise.
25496         * tests/test-fstrcmp.c (ASSERT): Likewise.
25497         * tests/test-ftell.c (ASSERT): Likewise.
25498         * tests/test-ftello.c (ASSERT): Likewise.
25499         * tests/test-func.c (ASSERT): Likewise.
25500         * tests/test-fwritable.c (ASSERT): Likewise.
25501         * tests/test-fwriting.c (ASSERT): Likewise.
25502         * tests/test-getdelim.c (ASSERT): Likewise.
25503         * tests/test-getline.c (ASSERT): Likewise.
25504         * tests/test-i-ring.c (ASSERT): Likewise.
25505         * tests/test-iconv-utf.c (ASSERT): Likewise.
25506         * tests/test-iconv.c (ASSERT): Likewise.
25507         * tests/test-isfinite.c (ASSERT): Likewise.
25508         * tests/test-isnand.c (ASSERT): Likewise.
25509         * tests/test-isnanf.c (ASSERT): Likewise.
25510         * tests/test-isnanl.h (ASSERT): Likewise.
25511         * tests/test-ldexpl.c (ASSERT): Likewise.
25512         * tests/test-linked_list.c (ASSERT): Likewise.
25513         * tests/test-linkedhash_list.c (ASSERT): Likewise.
25514         * tests/test-localename.c (ASSERT): Likewise.
25515         * tests/test-lseek.c (ASSERT): Likewise.
25516         * tests/test-mbscasecmp.c (ASSERT): Likewise.
25517         * tests/test-mbscasestr1.c (ASSERT): Likewise.
25518         * tests/test-mbscasestr2.c (ASSERT): Likewise.
25519         * tests/test-mbscasestr3.c (ASSERT): Likewise.
25520         * tests/test-mbscasestr4.c (ASSERT): Likewise.
25521         * tests/test-mbschr.c (ASSERT): Likewise.
25522         * tests/test-mbscspn.c (ASSERT): Likewise.
25523         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
25524         * tests/test-mbspbrk.c (ASSERT): Likewise.
25525         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
25526         * tests/test-mbsrchr.c (ASSERT): Likewise.
25527         * tests/test-mbsspn.c (ASSERT): Likewise.
25528         * tests/test-mbsstr1.c (ASSERT): Likewise.
25529         * tests/test-mbsstr2.c (ASSERT): Likewise.
25530         * tests/test-mbsstr3.c (ASSERT): Likewise.
25531         * tests/test-memchr2.c (ASSERT): Likewise.
25532         * tests/test-memmem.c (ASSERT): Likewise.
25533         * tests/test-open.c (ASSERT): Likewise.
25534         * tests/test-printf-frexp.c (ASSERT): Likewise.
25535         * tests/test-printf-frexpl.c (ASSERT): Likewise.
25536         * tests/test-printf-posix.c (ASSERT): Likewise.
25537         * tests/test-quotearg.c (ASSERT): Likewise.
25538         * tests/test-rbtree_list.c (ASSERT): Likewise.
25539         * tests/test-rbtree_oset.c (ASSERT): Likewise.
25540         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
25541         * tests/test-round1.c (ASSERT): Likewise.
25542         * tests/test-roundf1.c (ASSERT): Likewise.
25543         * tests/test-roundl.c (ASSERT): Likewise.
25544         * tests/test-signbit.c (ASSERT): Likewise.
25545         * tests/test-sleep.c (ASSERT): Likewise.
25546         * tests/test-snprintf-posix.c (ASSERT): Likewise.
25547         * tests/test-snprintf.c (ASSERT): Likewise.
25548         * tests/test-sprintf-posix.c (ASSERT): Likewise.
25549         * tests/test-stat-time.c (ASSERT): Likewise.
25550         * tests/test-strcasestr.c (ASSERT): Likewise.
25551         * tests/test-strerror.c (ASSERT): Likewise.
25552         * tests/test-striconv.c (ASSERT): Likewise.
25553         * tests/test-striconveh.c (ASSERT): Likewise.
25554         * tests/test-striconveha.c (ASSERT): Likewise.
25555         * tests/test-strsignal.c (ASSERT): Likewise.
25556         * tests/test-strstr.c (ASSERT): Likewise.
25557         * tests/test-strtod.c (ASSERT): Likewise.
25558         * tests/test-trunc1.c (ASSERT): Likewise.
25559         * tests/test-trunc2.c (ASSERT): Likewise.
25560         * tests/test-truncf1.c (ASSERT): Likewise.
25561         * tests/test-truncf2.c (ASSERT): Likewise.
25562         * tests/test-truncl.c (ASSERT): Likewise.
25563         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
25564         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
25565         * tests/test-vasnprintf.c (ASSERT): Likewise.
25566         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
25567         * tests/test-vasprintf.c (ASSERT): Likewise.
25568         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
25569         * tests/test-vprintf-posix.c (ASSERT): Likewise.
25570         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
25571         * tests/test-vsnprintf.c (ASSERT): Likewise.
25572         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
25573         * tests/test-wcwidth.c (ASSERT): Likewise.
25574         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
25575         * tests/test-xprintf-posix.c (ASSERT): Likewise.
25576         * tests/test-xvasprintf.c (ASSERT): Likewise.
25577         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
25578         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
25579         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
25580         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
25581         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
25582         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
25583         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
25584         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
25585         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
25586         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
25587         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
25588         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
25589         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
25590         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
25591         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
25592         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
25593         * tests/unictype/test-block_list.c (ASSERT): Likewise.
25594         * tests/unictype/test-block_of.c (ASSERT): Likewise.
25595         * tests/unictype/test-block_test.c (ASSERT): Likewise.
25596         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
25597         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
25598         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
25599         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
25600         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
25601         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
25602         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
25603         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
25604         * tests/unictype/test-combining.c (ASSERT): Likewise.
25605         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
25606         * tests/unictype/test-digit.c (ASSERT): Likewise.
25607         * tests/unictype/test-mirror.c (ASSERT): Likewise.
25608         * tests/unictype/test-numeric.c (ASSERT): Likewise.
25609         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
25610         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
25611         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
25612         * tests/unictype/test-scripts.c (ASSERT): Likewise.
25613         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
25614         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
25615         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
25616         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
25617         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
25618         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
25619         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
25620         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
25621         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
25622         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
25623         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
25624         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
25625         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
25626         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
25627         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
25628         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
25629         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
25630         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
25631         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
25632         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
25633         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
25634         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
25635         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
25636         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
25637         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
25638         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
25639         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
25640         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
25641         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
25642         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
25643         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
25644         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
25645         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
25646         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
25647         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
25648         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
25649         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
25650         Reported by Eric Blake.
25651
25652 2008-04-11  Bruno Haible  <bruno@clisp.org>
25653
25654         * lib/wchar.in.h: Tweak comment.
25655
25656 2008-04-11  Bruno Haible  <bruno@clisp.org>
25657
25658         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
25659         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
25660         gl_COMMON.
25661         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
25662
25663 2008-04-11  Bruno Haible  <bruno@clisp.org>
25664
25665         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
25666
25667 2008-04-11  Simon Josefsson  <simon@josefsson.org>
25668
25669         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
25670         of attempting to use non-existing /dev/*random.  Based on patch
25671         from Adam Strzelecki <ono@java.pl> in
25672         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
25673
25674 2008-04-08  Bruno Haible  <bruno@clisp.org>
25675
25676         Add tentative support for emx+gcc.
25677         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
25678         * lib/fpurge.c (fpurge): Likewise.
25679         * lib/freadable.c (freadable): Likewise.
25680         * lib/freadahead.c (freadahead): Likewise.
25681         * lib/freading.c (freading): Likewise.
25682         * lib/freadptr.c (freadptr): Likewise.
25683         * lib/freadseek.c (freadptrinc): Likewise.
25684         * lib/fseeko.c (rpl_fseeko): Likewise.
25685         * lib/fseterr.c (fseterr): Likewise.
25686         * lib/fwritable.c (fwritable): Likewise.
25687         * lib/fwriting.c (fwriting): Likewise.
25688         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
25689
25690 2008-04-09  Eric Blake  <ebb9@byu.net>
25691
25692         Avoid some autoconf warnings.
25693         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
25694         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
25695         * m4/afs.m4 (gl_AFS): Likewise.
25696         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
25697         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
25698         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
25699         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
25700         (gl_INTEGER_TYPE_SUFFIX): Likewise.
25701         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
25702         (AC_CHECK_DECLS_ONCE): Likewise.
25703         Rename file...
25704         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
25705         gnulib-tool requires autoconf 2.59 or better.
25706         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
25707
25708 2008-04-08  Eric Blake  <ebb9@byu.net>
25709
25710         Use 'git describe --match' if present (added in git 1.5.5).
25711         * build-aux/git-version-gen: Limit result to tags that match 'v*'
25712         if possible.
25713
25714 2008-04-08  Bruno Haible  <bruno@clisp.org>
25715
25716         Add tentative support for OpenServer.
25717         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
25718         _ptr, _cnt.
25719         * lib/fpurge.c (fpurge): Likewise.
25720         * lib/freadable.c (freadable): Likewise.
25721         * lib/freadahead.c (freadahead): Likewise.
25722         * lib/freading.c (freading): Likewise.
25723         * lib/freadptr.c (freadptr): Likewise.
25724         * lib/freadseek.c (freadptrinc): Likewise.
25725         * lib/fseeko.c (rpl_fseeko): Likewise.
25726         * lib/fseterr.c (fseterr): Likewise.
25727         * lib/fwritable.c (fwritable): Likewise.
25728         * lib/fwriting.c (fwriting): Likewise.
25729         Reported by Roger Cornelius <rac@tenzing.org> and
25730         Brian K. White <brian@aljex.com>.
25731
25732 2008-04-06  Jim Meyering  <meyering@redhat.com>
25733
25734         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
25735
25736 2008-04-06  Bruno Haible  <bruno@clisp.org>
25737
25738         Avoid possible error with non-ASCII bytes in UTF-8 locales.
25739         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
25740         * tests/test-printf-posix.sh: Likewise.
25741         * tests/test-vfprintf-posix.sh: Likewise.
25742         * tests/test-vprintf-posix.sh: Likewise.
25743         * tests/test-xprintf-posix.sh: Likewise.
25744
25745 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25746
25747         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
25748         hide error from 'ls', needed on OS/2.
25749         Report by Elbert Pol <elbert.pol@gmail.com>.
25750
25751 2008-04-04  Eric Blake  <ebb9@byu.net>
25752
25753         Make test-fseeko.c failures meaningful.
25754         * tests/test-fseeko.c: Print line number on failure.
25755         * tests/test-fseek.c: Likewise.
25756         Reported by Nelson H. F. Beebe.
25757
25758         Improve strtod bug detection check.
25759         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
25760         required for Solaris 10.
25761         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
25762
25763 2008-04-04  Bruno Haible  <bruno@clisp.org>
25764
25765         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
25766         by m4/setenv.m4.
25767
25768 2008-04-03  Eric Blake  <ebb9@byu.net>
25769
25770         Ensure sane .version contents.
25771         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
25772         version string.
25773         * build-aux/git-version-gen: Improve documentation.
25774
25775         Make GNU make output nicer.
25776         * top/GNUmakefile [!_have-Makefile]: Add dependency on
25777         MAKECMDGOALS to enforce message for all command line targets.  Set
25778         srcdir for use in maint.mk.
25779
25780         Another maintainer tweak.
25781         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
25782         a target that regenerates version.
25783
25784 2008-04-03  Jim Meyering  <meyering@redhat.com>
25785
25786         vc-list-files: don't cause coreutils "make po-check" failure
25787         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
25788
25789 2008-04-03  Eric Blake  <ebb9@byu.net>
25790
25791         Allow VPATH usage of vc-list-files.
25792         * build-aux/vc-list-files (scriptversion): Add timestamp.
25793         (options): Add --help, --version, -C.
25794         (CVS): Support installed cvsu.
25795
25796 2008-04-02  Bruno Haible  <bruno@clisp.org>
25797
25798         Avoid some "statement with no effect" warnings from gcc.
25799         * tests/test-wctype.c (main): Explicitly ignore unused values.
25800         Reported by Jim Meyering.
25801
25802 2008-04-02  Jim Meyering  <meyering@redhat.com>
25803
25804         Avoid some warnings from "gcc -Wshadow".
25805         * tests/test-frexp.c (exp): Define to a different identifier.
25806         * tests/test-frexpl.c (exp): Likewise.
25807
25808 2008-04-03  Jim Meyering  <meyering@redhat.com>
25809
25810         bootstrap: remove dangling *.[ch] symlinks from lib
25811         * build-aux/bootstrap [dangling symlink removal]: Move find's
25812         -depth option to precede all others, to avoid a warning.
25813         Remove *.[ch] files too, and from "$source_base" (usually lib/).
25814
25815 2008-04-02  Bruno Haible  <bruno@clisp.org>
25816
25817         Avoid some warnings from "gcc -Wshadow".
25818         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
25819         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
25820         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
25821         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
25822         Reported by Jim Meyering.
25823
25824 2008-04-01  Bruno Haible  <bruno@clisp.org>
25825
25826         Fix test to work on IRIX 6.5 with cc.
25827         * tests/test-math.c (numeric_equal): New function.
25828         (main): Use it.
25829
25830 2008-04-01  Bruno Haible  <bruno@clisp.org>
25831
25832         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
25833
25834 2008-04-01  Bruno Haible  <bruno@clisp.org>
25835
25836         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
25837         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
25838         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
25839         (Depends-on): Remove math.
25840
25841         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
25842         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
25843         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
25844         (Depends-on): Remove math.
25845
25846         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
25847         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
25848         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
25849         (Depends-on): Remove math.
25850         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
25851         (Depends-on): Remove math.
25852
25853         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
25854         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
25855         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
25856         (Depends-on): Remove math.
25857         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
25858         (Depends-on): Remove math.
25859
25860         * tests/test-round1.c: Include nan.h.
25861         (main): Use NaNd instead of NAN.
25862         * modules/round-tests (Files): Add tests/nan.h.
25863
25864         * tests/test-trunc1.c: Include nan.h.
25865         (main): Use NaNd instead of NAN.
25866         * modules/trunc-tests (Files): Add tests/nan.h.
25867
25868         * tests/test-roundf1.c: Include nan.h.
25869         (main): Use NaNf instead of NAN.
25870         * modules/roundf-tests (Files): Add tests/nan.h.
25871
25872         * tests/test-truncf1.c: Include nan.h.
25873         (main): Use NaNf instead of NAN.
25874         * modules/truncf-tests (Files): Add tests/nan.h.
25875
25876         * tests/test-ceilf1.c: Include nan.h.
25877         (main): Use NaNf instead of NAN.
25878         * modules/ceilf-tests (Files): Add tests/nan.h.
25879
25880         * tests/test-floorf1.c: Include nan.h.
25881         (main): Use NaNf instead of NAN.
25882         * modules/floorf-tests (Files): Add tests/nan.h.
25883
25884         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
25885         (main): Use NaNf instead of NAN.
25886         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
25887
25888         * tests/test-isnand.c: Include nan.h instead of <math.h>.
25889         (main): Use NaNd instead of NAN.
25890         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
25891
25892         * tests/test-frexp.c: Include nan.h.
25893         (main): Use NaNd instead of NAN.
25894         * modules/frexp-tests (Files): Add tests/nan.h.
25895
25896         * lib/isnan.c: Don't include <math.h>.
25897         (FUNC): Don't use NAN macro.
25898         * modules/isnand-nolibm (Depends-on): Remove math.
25899         * modules/isnanf-nolibm (Depends-on): Remove math.
25900         * modules/isnanl (Depends-on): Remove math.
25901         * modules/isnanl-nolibm (Depends-on): Remove math.
25902
25903         * tests/nan.h: New file.
25904
25905 2008-04-01  Eric Blake  <ebb9@byu.net>
25906
25907         Fix typos.
25908         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
25909         values to be the right type.
25910
25911         For now, cater to gnulib strtod inaccuracies.
25912         * tests/test-strtod.c (main): Allow 1-ulp error on expected
25913         fractional results.  While not as nice from a QoI perspective, it
25914         is a quicker patch than correctly implementing decimal to binary
25915         rounding.
25916
25917 2008-03-31  Eric Blake  <ebb9@byu.net>
25918
25919         Guarantee a definition of NAN.
25920         * lib/math.in.h (NAN): Define if missing.
25921         * tests/test-math.c (main): Test it.
25922         * doc/posix-headers/math.texi (math.h): Document this.
25923         * lib/isnan.c (rpl_isnand): Use it.
25924         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
25925         * tests/test-floorf1.c (NaN): Likewise.
25926         * tests/test-frexp.c (NaN): Likewise.
25927         * tests/test-isnand.c (NaN): Likewise.
25928         * tests/test-isnanf.c (NaN): Likewise.
25929         * tests/test-round1.c (NaN): Likewise.
25930         * tests/test-roundf1.c (NaN): Likewise.
25931         * tests/test-snprintf-posix.h (NaN): Likewise.
25932         * tests/test-sprintf-posix.h (NaN): Likewise.
25933         * tests/test-trunc1.c (NaN): Likewise.
25934         * tests/test-truncf1.c (NaN): Likewise.
25935         * tests/test-vasnprintf-posix.c (NaN): Likewise.
25936         * tests/test-vasprintf-posix.c (NaN): Likewise.
25937         * modules/isnand-nolibm (Depends-on): Add math.
25938         * modules/isnanf-nolibm (Depends-on): Likewise.
25939         * modules/isnanl (Depends-on): Likewise.
25940         * modules/isnanl-nolibm (Depends-on): Likewise.
25941         * modules/snprintf-posix-tests (Depends-on): Likewise.
25942         * modules/sprintf-posix-tests (Depends-on): Likewise.
25943         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
25944         * modules/vsprintf-posix-tests (Depends-on): Likewise.
25945         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
25946         * modules/vasprintf-posix-tests (Depends-on): Likewise.
25947
25948 2008-03-31  Bruno Haible  <bruno@clisp.org>
25949
25950         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
25951         * doc/posix-functions/strtod.texi: Likewise.
25952
25953 2008-03-31  Bruno Haible  <bruno@clisp.org>
25954
25955         * tests/test-strtod.c (main): Don't use C99 syntax.
25956
25957 2008-03-31  Bruno Haible  <bruno@clisp.org>
25958
25959         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
25960         Reported by Eric Blake.
25961
25962 2008-03-31  Jim Meyering  <meyering@redhat.com>
25963
25964         Don't compare actual signbit return values.
25965         * tests/test-strtod.c (main): Rather, compare only their
25966         zero/non-zero nature.
25967
25968 2008-03-31  Eric Blake  <ebb9@byu.net>
25969
25970         More strtod documentation.
25971         * doc/posix-functions/strtod.texi (strtod): Interpret more test
25972         failures as distinct bugs.
25973
25974 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
25975
25976         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
25977         Problem reported by Erik Benada in
25978         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
25979
25980 2008-03-30  Bruno Haible  <bruno@clisp.org>
25981
25982         * tests/test-strtod.c: Add comments about which assertion fails on which
25983         platform.
25984         * doc/posix-functions/strtod.texi: Add info about many more platforms.
25985
25986 2008-03-30  Eric Blake  <ebb9@byu.net>
25987
25988         Test signbit behavior on zeros.
25989         * tests/test-signbit.c (test_signbitf): Add tests for zero.
25990         (test_signbitd, test_signbitl): Likewise.
25991
25992         More strtod touchups.
25993         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
25994         sign of negative underflow, for now.  Use .5, not .1.
25995         * doc/posix-functions/strtod.texi (strtod): Mention these
25996         limitations.
25997         Reported by Jim Meyering.
25998
25999 2008-03-30  Bruno Haible  <bruno@clisp.org>
26000
26001         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
26002         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
26003
26004 2008-03-30  Bruno Haible  <bruno@clisp.org>
26005
26006         Avoid failure when attempting to return empty iconv results on some
26007         platforms.
26008         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
26009         allocation, don't report ENOMEM when the resulting string is empty.
26010
26011 2008-03-30  Bruno Haible  <bruno@clisp.org>
26012
26013         Fix buffer overrun.
26014         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
26015         Don't consider the width for tmp_length. Check count against tmp_length
26016         before doing the padding. Ensure enough allocation during padding.
26017
26018 2008-03-30  Eric Blake  <ebb9@byu.net>
26019
26020         strtod touchups.
26021         * lib/strtod.c (strtod): Avoid compiler warnings.
26022         Reported by Jim Meyering.
26023
26024 2008-03-30  Bruno Haible  <bruno@clisp.org>
26025
26026         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
26027         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
26028         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
26029         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
26030         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
26031         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
26032         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
26033         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
26034
26035         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
26036         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
26037         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
26038         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
26039         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
26040         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
26041         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
26042         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
26043
26044         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
26045         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
26046         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
26047         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
26048         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
26049         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
26050         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
26051         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
26052
26053         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
26054         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
26055
26056         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
26057         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
26058
26059         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
26060         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
26061
26062         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
26063         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
26064         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
26065
26066         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
26067         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
26068         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
26069
26070         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
26071         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
26072         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
26073
26074         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
26075         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
26076         * modules/vasprintf (Depends-on): Add EOVERFLOW.
26077
26078         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
26079         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
26080         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
26081         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
26082         (Depends-on): Add EOVERFLOW.
26083         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
26084         (Depends-on): Add EOVERFLOW.
26085         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
26086         (Depends-on): Add EOVERFLOW.
26087         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
26088         (Depends-on): Add EOVERFLOW.
26089         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
26090         (Depends-on): Add EOVERFLOW.
26091         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
26092         (Depends-on): Add EOVERFLOW.
26093         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
26094         (Depends-on): Add EOVERFLOW.
26095         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
26096         (Depends-on): Add EOVERFLOW.
26097
26098         * lib/sprintf.c (EOVERFLOW): Remove fallback.
26099         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
26100         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
26101
26102         * lib/snprintf.c (EOVERFLOW): Remove fallback.
26103         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
26104         * modules/snprintf (Depends-on): Add EOVERFLOW.
26105
26106         * lib/poll.c (EOVERFLOW): Remove fallback.
26107         * modules/poll (Depends-on): Add EOVERFLOW.
26108
26109         * lib/getugroups.c (EOVERFLOW): Remove fallback.
26110         * modules/getugroups (Depends-on): Add EOVERFLOW.
26111
26112         * lib/getdelim.c (EOVERFLOW): Remove fallback.
26113         * modules/getdelim (Depends-on): Add EOVERFLOW.
26114
26115         * lib/ftell.c (EOVERFLOW): Remove fallback.
26116         * modules/ftell (Depends-on): Add EOVERFLOW.
26117
26118         * lib/fprintf.c (EOVERFLOW): Remove fallback.
26119         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
26120         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
26121
26122         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
26123
26124         * modules/EOVERFLOW-tests: New file.
26125         * tests/test-EOVERFLOW.c: New file.
26126
26127         * modules/EOVERFLOW: New file.
26128         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
26129
26130 2008-03-30  Bruno Haible  <bruno@clisp.org>
26131
26132         Fix bug introduced on 2007-06-10.
26133         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
26134         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
26135
26136 2008-03-30  Bruno Haible  <bruno@clisp.org>
26137
26138         Improve freadseek's efficiency after ungetc.
26139         * lib/freadseek.c: Include freadahead.h.
26140         (freadptrinc): New function, extracted from freadseek.
26141         (freadseek): Use it in a loop. Use freadahead to determine the number
26142         of loop iterations.
26143         * modules/freadseek (Depends-on): Add freadahead.
26144         (configure.ac): Require AC_C_INLINE.
26145
26146 2008-03-30  Bruno Haible  <bruno@clisp.org>
26147
26148         * lib/freadseek.c (freadseek): Don't ignore the return value of
26149         freadptr.
26150
26151 2008-03-29  Eric Blake  <ebb9@byu.net>
26152
26153         Add hex float support.
26154         * modules/strtod (Depends-on): Add c-ctype.
26155         (Link): Mention POW_LIB.
26156         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
26157         whitespace between 'e' and exponent.
26158         * tests/test-strtod.c (main): Enable hex float tests.
26159         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
26160         now provides.
26161
26162         Document various strtod bugs, with some fixes.
26163         * doc/posix-functions/strtod.texi (strtod): Document bugs with
26164         "-0x", "inf", "nan", and hex constants.
26165         * doc/posix-functions/atof.texi (atof): Likewise.
26166         * modules/stdlib (Makefile.am): Support strtod.
26167         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
26168         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
26169         detect additional strtod bugs.
26170         * lib/stdlib.in.h (rpl_strtod): Add declarations.
26171         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
26172         bool where appropriate.  Parse 'inf' and 'nan'.
26173         * tests/test-strtod.c: New file.
26174         * modules/strtod (Depends-on): Add stdbool, stdlib.
26175         (configure.ac): Turn on module indicator.
26176         * modules/strtod-tests: New module.
26177
26178 2008-03-29  Eric Blake  <ebb9@byu.net>
26179
26180         Fix ftell on mingw.
26181         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
26182         * modules/ftell-tests (Depends-on): Add binary-io.
26183         * modules/ftello-tests (Depends-on): Likewise.
26184         * tests/test-ftell.c (main): Enhance test to cover behavior after
26185         ungetc.  Enforce binary mode.
26186         * tests/test-ftello.c (main): Likewise.
26187
26188         Pass test-freadseek on cygwin.
26189         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
26190         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
26191         ungetc buffer.
26192
26193         * tests/test-fflush2.c (main): Fix typo.
26194
26195 2008-03-29  Bruno Haible  <bruno@clisp.org>
26196
26197         * tests/test-fflush2.c (main): Temporarily disable the contents of
26198         this test.
26199         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
26200         Reported by Eric Blake.
26201
26202 2008-03-28  Simon Josefsson  <simon@josefsson.org>
26203
26204         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
26205         (GC_SHA224_DIGEST_SIZE): Add.
26206
26207         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
26208         (gc_hash_digest_length): Likewise.
26209         (gc_hash_buffer): Likewise.
26210
26211 2008-03-25  Bruno Haible  <bruno@clisp.org>
26212
26213         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
26214         detail which gettext release to use.
26215         Reported by Simon Josefsson.
26216
26217 2008-03-26  Jim Meyering  <meyering@redhat.com>
26218
26219         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
26220         * modules/gnumakefile (clean-GNUmakefile): Also, use
26221         test ... && ... || : syntax rather than if-then ... fi.
26222
26223         gnumakefile: Don't double-quote-expand $(VPATH) value.
26224         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
26225
26226 2008-03-24  Eric Blake  <ebb9@byu.net>
26227
26228         Alter GNUmakefile to install into top directory.
26229         * modules/maintainer-makefile: Split, and add dependency...
26230         * modules/gnumakefile: to this new module.
26231         * build-aux/GNUmakefile: Move...
26232         * top/GNUmakefile: ...here.
26233         * build-aux/maint.mk: Move...
26234         * top/maint.mk: ...here.
26235         * MODULES.html.sh (Support for maintaining...): Document new
26236         module.
26237
26238 2008-03-23  Bruno Haible  <bruno@clisp.org>
26239
26240         * gnulib-tool: New options --vc-files, --no-vc-files.
26241         (func_usage): Document them.
26242         (vc_files): New variable.
26243         (func_import): Consider vc_files.
26244         (func_create_testdir): Set vc_files to empty.
26245         Suggested by Jim Meyering and Karl Berry.
26246
26247 2008-03-23  Bruno Haible  <bruno@clisp.org>
26248
26249         Fix regex compilation error on HP-UX 11.
26250         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
26251         * modules/regex (Files): Add m4/mbstate_t.m4.
26252         Reported by Ton Voon <ton.voon@altinity.com>.
26253
26254 2008-03-23  Bruno Haible  <bruno@clisp.org>
26255
26256         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
26257
26258 2008-03-23  Eric Blake  <ebb9@byu.net>
26259             Bruno Haible  <bruno@clisp.org>
26260
26261         Install files from top/ in the destination directory.
26262         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
26263         augmentation also for the files from top/.
26264         (func_import, func_create_testdir): Rewrite file names:
26265         top/filename -> filename.
26266
26267 2008-03-23  Bruno Haible  <bruno@clisp.org>
26268
26269         Tweak "gnulib --version" output.
26270         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
26271
26272 2008-03-23  Bruno Haible  <bruno@clisp.org>
26273
26274         Tweak "gnulib --version" output.
26275         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
26276         rather than contents of ChangeLog, when possible.
26277
26278 2008-03-21  Eric Blake  <ebb9@byu.net>
26279
26280         More --version tweaks.
26281         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
26282         date of last ChangeLog entry.
26283
26284 2008-03-21  Jim Meyering  <meyering@redhat.com>
26285
26286         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
26287
26288 2008-03-20  Eric Blake  <ebb9@byu.net>
26289
26290         VPATH fix.
26291         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
26292
26293 2008-03-20  Simon Josefsson  <simon@josefsson.org>
26294
26295         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
26296         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
26297
26298 2008-03-20  Eric Blake  <ebb9@byu.net>
26299
26300         Sync GNUmakefile with coreutils.
26301         * build-aux/GNUmakefile (have-Makefile): Rename...
26302         (_have-Makefile): ...to this, for namespace consideration.
26303         (GNUmakefile.cfg): Include, if present.
26304         (_autoreconf): Define a default.
26305         (_is-dist-target): New rule for rebuilds to pick up intra-release
26306         version.
26307         (maint-cfg.mk): Rename...
26308         (cfg.mk): ...to this.
26309
26310 2008-03-18  Jim Meyering  <meyering@redhat.com>
26311
26312         New script and module: mktempd
26313         * MODULES.html.sh (maint+release support): Add mktempd.
26314         * build-aux/mktempd: New file.
26315         * modules/mktempd: New file.
26316
26317 2008-03-15  Jim Meyering  <meyering@redhat.com>
26318
26319         Undo last change.
26320         * lib/sha1.c, lib/md5.c: 63 != ~63.
26321         Reported by Andreas Schwab.
26322
26323         sha1.c, md5.c: Hoist a redundant expression.
26324         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
26325         "ctx->buflen" only once, before calling *_process_block.
26326         * lib/md5.c (md5_process_bytes): Likewise.
26327
26328 2008-03-14  Eric Blake  <ebb9@byu.net>
26329
26330         Bump copyright year in files generated by gnulib-tool.
26331         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
26332         gnulib-tool, rather than hard-coding it.
26333
26334         Fix 'gnulib-tool --version' output to work with git.
26335         * gnulib-tool (func_gnulib_dir): New function, extracted from...
26336         (startup): ...here.
26337         (func_version): Use it to invoke git-version-gen, rather than
26338         relying on CVS keyword expansion.  Modernize wording.
26339         (cvsdatestamp, last_checkin_date, version): Kill unused
26340         variables.
26341
26342 2008-03-12  Jim Meyering  <meyering@redhat.com>
26343
26344         Recognize optional cast of the argument to free.
26345         * build-aux/useless-if-before-free: Update regexps.
26346
26347         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
26348
26349 2008-03-11  Bruno Haible  <bruno@clisp.org>
26350
26351         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
26352         by a single package.
26353         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
26354         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
26355         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
26356         Reported by Sam Steingold <sds@gnu.org>.
26357
26358 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
26359
26360         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
26361         repositories.
26362
26363 2008-03-11  Bruno Haible  <bruno@clisp.org>
26364
26365         Avoid conflicts between local macro definitions.
26366         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
26367         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
26368
26369 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
26370             Bruno Haible  <bruno@clisp.org>
26371
26372         Make va_copy work with some version of xlc on AIX 5.1.
26373         * lib/stdarg.in.h: New file.
26374         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
26375         On AIX, use a <stdarg.h> file substitute.
26376         * modules/stdarg (Files): Add lib/stdarg.in.h.
26377         (Depends-on): Add include_next.
26378         (Makefile.am): Build a stdarg.h substitute if requested.
26379         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
26380
26381 2008-03-10  Bruno Haible  <bruno@clisp.org>
26382
26383         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
26384         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
26385         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
26386
26387 2008-03-10  Bruno Haible  <bruno@clisp.org>
26388
26389         * modules/stdlib (Depends-on): Add include_next, remove
26390         absolute-header.
26391
26392 2008-03-09  Bruno Haible  <bruno@clisp.org>
26393
26394         * lib/freadahead.h (freadahead): Document more precisely.
26395         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
26396         the sum of both buffer sizes.
26397         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
26398         * NEWS: Document the change.
26399
26400 2008-03-09  Bruno Haible  <bruno@clisp.org>
26401
26402         Extend freadptr to return also the buffer size.
26403         * lib/freadptr.h (freadptr): Add sizep argument.
26404         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
26405         (freadptr): Add sizep argument. Determine buffer size like freadahead
26406         does.
26407         * tests/test-freadptr.c: Don't include freadahead.h.
26408         (main): Adapt for new calling convention of freadptr.
26409         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
26410         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
26411         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
26412         tests/test-freadptr2.sh.
26413         (Depends): Remove freadahead.
26414         (TESTS): Add test-freadptr2.sh.
26415         (check_PROGRAMS): Add test-freadptr2.
26416
26417 2008-03-09  Bruno Haible  <bruno@clisp.org>
26418
26419         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
26420         Report and solution by Simon Josefsson.
26421
26422 2008-03-06  Bruno Haible  <bruno@clisp.org>
26423
26424         Make fflush after ungetc work on BSD platforms.
26425         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
26426         * tests/test-fflush2.c: New file.
26427         * tests/test-fflush2.sh: New file.
26428         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
26429         tests/test-fflush2.c.
26430         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
26431         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
26432
26433 2008-03-06  Eric Blake  <ebb9@byu.net>
26434
26435         Likewise for ftello.
26436         * modules/ftello (Dependencies): Add extensions.
26437         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
26438
26439 2008-03-06  Bruno Haible  <bruno@clisp.org>
26440
26441         * modules/fseeko (Dependencies): Add extensions.
26442         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
26443         Needed on glibc systems.
26444
26445 2008-03-06  Bruno Haible  <bruno@clisp.org>
26446
26447         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
26448         email address.
26449         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
26450
26451 2008-03-06  Bruno Haible  <bruno@clisp.org>
26452
26453         * users.txt: Add libgnupdf.
26454
26455 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
26456
26457         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
26458         (Header File Substitutes, Function Substitutes,
26459         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
26460         (Build robot for gnulib): Fix typo.
26461
26462 2008-03-06  Bruno Haible  <bruno@clisp.org>
26463
26464         * doc/gnulib-tool.texi (VCS Issues): Small updates.
26465         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
26466
26467 2008-03-06  Bruno Haible  <bruno@clisp.org>
26468
26469         * doc/func.texi: New file, extracted from doc/gnulib.texi.
26470         * doc/gnulib.texi: Include it.
26471
26472 2008-03-06  Simon Josefsson  <simon@josefsson.org>
26473
26474         * modules/func (License): Change license to unlimited; there was
26475         no LGPL parts in the module anyway.
26476
26477 2008-03-06  Simon Josefsson  <simon@josefsson.org>
26478
26479         * modules/__func__: Renamed to modules/func.
26480         * modules/__func__-tests: Renamed to modules/func-tests.
26481         * tests/test-__func__.c: Renamed to tests/test-func.c.
26482         * m4/__func__.m4: Renamed to m4/func.m4.
26483         * doc/gnulib.texi (__func__): Section renamed to func.
26484         Suggested by Eric Blake <ebb9@byu.net>.
26485
26486 2008-03-06  Simon Josefsson  <simon@josefsson.org>
26487
26488         * doc/gnulib.texi (__func__): Use C99 terminology when talking
26489         about __func__.  Make example self-contained.  Suggested by Eric
26490         Blake <ebb9@byu.net>.
26491
26492         * tests/test-__func__.c (main): Avoid extraneous () around __func.
26493         Suggested by Eric Blake <ebb9@byu.net>.
26494
26495 2008-03-06  Simon Josefsson  <simon@josefsson.org>
26496
26497         * modules/__func__: New file.
26498         * modules/__func__-tests: New file.
26499         * tests/test-__func__.c: New file.
26500         * m4/__func__.m4: New file.
26501         * doc/gnulib.texi (__func__): Document __func__ module.
26502
26503 2008-03-05  Simon Josefsson  <simon@josefsson.org>
26504
26505         * modules/byteswap (License): Re-license as LGPLv2+.
26506
26507 2008-03-05  Simon Josefsson  <simon@josefsson.org>
26508
26509         * doc/Makefile: Add pdf target.
26510
26511 2008-03-05  Simon Josefsson  <simon@josefsson.org>
26512
26513         * modules/inline (License): Use 'unlimited', since there are only
26514         *.m4 files in this module.
26515
26516 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
26517             Bruno Haible  <bruno@clisp.org>
26518
26519         Add support for HP C 7.1 on OpenVMS 8.3.
26520         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
26521
26522 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
26523
26524         Update VMS specifics.
26525         * lib/getopt.c [VMS]: Remove include of unixlib.h.
26526
26527 2008-03-02  Jim Meyering  <meyering@redhat.com>
26528
26529         Remove the last dependency on the "free" module.
26530         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
26531         Reported by Bob Proulx.
26532
26533         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
26534
26535         Remove useless "if" tests before free.  Deprecate "free" module.
26536         * doc/posix-functions/free.texi: Mention that this
26537         module is no longer useful.
26538         * modules/free (Notice): Say this module is obsolete.
26539         * modules/readutmp (Depends-on): Remove free.
26540         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
26541         * lib/putenv.c (putenv): Likewise.
26542         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
26543         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
26544         * tests/test-c-strcasestr.c (main): Likewise.
26545         * tests/test-c-strstr.c (main): Likewise.
26546         * tests/test-mbscasestr1.c (main): Likewise.
26547         * tests/test-mbscasestr2.c (main): Likewise.
26548         * tests/test-mbsstr1.c (main): Likewise.
26549         * tests/test-mbsstr2.c (main): Likewise.
26550         * tests/test-memmem.c (main): Likewise.
26551         * tests/test-strcasestr.c (main): Likewise.
26552         * tests/test-striconv.c (main): Likewise.
26553         * tests/test-striconveh.c (main): Likewise.
26554         * tests/test-striconveha.c (main): Likewise.
26555         * tests/test-strstr.c (main): Likewise.
26556
26557         * build-aux/git-version-gen: Adjust a comment and the Usage string.
26558
26559         bootstrap: sync from coreutils again
26560         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
26561
26562 2008-03-01  Jim Meyering  <meyering@redhat.com>
26563
26564         bootstrap: sync from coreutils
26565         * build-aux/bootstrap (update_po_files): Copy a .po file into place
26566         also when the target doesn't exist.
26567
26568 2008-03-01  Eric Blake  <ebb9@byu.net>
26569
26570         Fix bugs in last patch.
26571         * lib/memchr2.c (memchr2): Fix typo.
26572         * tests/test-memchr2.c: Test previous bug, and don't use GNU
26573         extension.
26574         Reported by Bruce Korb.
26575
26576         New module 'memchr2'.
26577         * modules/memchr2: New file.
26578         * modules/memchr2-tests: Likewise.
26579         * lib/memchr2.h: Likewise.
26580         * lib/memchr2.c: Likewise, based on memchr.c.
26581         * tests/test-memchr2.c: New test.
26582         * MODULES.html.sh (String handling): Add memchr2.
26583
26584 2008-02-29  Bruno Haible  <bruno@clisp.org>
26585
26586         * modules/freadseek-tests: New file.
26587         * tests/test-freadseek.sh: New file.
26588         * tests/test-freadseek.c: New file.
26589
26590         New module 'freadseek'.
26591         * modules/freadseek: New file.
26592         * lib/freadseek.h: New file.
26593         * lib/freadseek.c: New file.
26594         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
26595
26596 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
26597
26598         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
26599         wydawca.
26600
26601         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
26602         program_invocation_name and program_invocation_short_name are
26603         present.
26604
26605 2008-02-28  Bruno Haible  <bruno@clisp.org>
26606
26607         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
26608         * tests/test-freadptr.sh: Also test non-seekable stdin.
26609
26610 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
26611
26612         * build-aux/bootstrap (source_base, m4_base)
26613         (doc_base, tests_base): New variables.
26614         (gnulib_tool_options): Do not hardcode base directories, use
26615         the above variables instead.
26616
26617 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
26618
26619         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
26620
26621 2008-02-28  Bruno Haible  <bruno@clisp.org>
26622
26623         * modules/freadptr-tests: New file.
26624         * tests/test-freadptr.sh: New file.
26625         * tests/test-freadptr.c: New file.
26626
26627         New module 'freadptr'.
26628         * modules/freadptr: New file.
26629         * lib/freadptr.h: New file.
26630         * lib/freadptr.c: New file.
26631         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
26632
26633 2008-02-26  Karl Berry  <karl@freefriends.org>
26634
26635         Sync from Libtool:
26636         * libltdl/argz.c (argz_add, argz_count): New functions.
26637         * libltdl/argz.in.h: Declare them.
26638         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
26639
26640 2008-02-22  Bruno Haible  <bruno@clisp.org>
26641
26642         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
26643         is a pointer type.  Needed for HP-UX 10.
26644         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
26645         * doc/posix-functions/gmtime_r.texi: Likewise.
26646         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
26647
26648 2008-02-24  Bruno Haible  <bruno@clisp.org>
26649
26650         * modules/environ-tests: New file.
26651         * tests/test-environ.c: New file.
26652
26653         New module 'environ'.
26654         * modules/environ: New file.
26655         * lib/unistd.in.h (environ): New declaration.
26656         * m4/environ.m4: New file.
26657         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
26658         after use.
26659         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
26660         HAVE_DECL_ENVIRON.
26661         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
26662         HAVE_DECL_ENVIRON.
26663         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
26664         wrong claim that 'environ' is missing on some systems.
26665         * modules/execute (Depends-on): Add environ.
26666         * lib/execute.c (environ): Remove fallback declaration.
26667         * modules/pipe (Depends-on): Add environ.
26668         * lib/pipe.c (environ): Remove fallback declaration.
26669         * modules/setenv (Depends-on): Add environ.
26670         * lib/setenv.c (environ): Remove fallback declaration.
26671         * modules/unsetenv (Depends-on): Add environ.
26672         * lib/unsetenv.c (environ): Remove fallback declaration.
26673         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
26674         m4/environ.m4.
26675         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
26676         (gl_PREREQ_UNSETENV): Likewise.
26677
26678 2008-02-24  Bruno Haible  <bruno@clisp.org>
26679
26680         * doc/posix-functions/environ.texi: Document the MacOS X problem.
26681
26682 2008-02-20  Bob Proulx  <bob@proulx.com>
26683
26684         Enable use of older two part flavor 'git describe'.
26685         * build-aux/git-version-gen: If using the older two part flavor of
26686         git version then recreate the third part now present in the
26687         newer three part flavor of git describe.
26688
26689 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
26690
26691         * lib/fts.c (fts_build): Typo correction to comment.
26692
26693 2008-02-17  Bruno Haible  <bruno@clisp.org>
26694
26695         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
26696         generating no-op conflicts.
26697
26698 2008-02-17  Bruno Haible  <bruno@clisp.org>
26699
26700         Speed up by 10%.
26701         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
26702         result_entries, rather than an index-based loop.
26703
26704 2008-02-17  Bruno Haible  <bruno@clisp.org>
26705
26706         Speed up by 25%.
26707         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
26708         'hashcode_cached'.
26709         (entry_create): New function.
26710         (entry_hashcode): Use the cached hashcode if possible.
26711         (read_changelog_file, try_split_merged_entry): Use entry_create.
26712
26713 2008-02-17  Bruno Haible  <bruno@clisp.org>
26714
26715         Speed up from O(n^2) to O(n) for long ChangeLog files.
26716         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
26717         (read_changelog_file): Change implementation of entries_reversed list
26718         to rbtreehash.
26719         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
26720
26721 2008-02-17  Bruno Haible  <bruno@clisp.org>
26722
26723         New option --split-merged-entry.
26724         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
26725         (find_paragraph_end, try_split_merged_entry): New functions.
26726         (long_options): Add option --split-merged-entry.
26727         (usage): Document option --split-merged-entry.
26728         (main): Implement option --split-merged-entry.
26729         Reported by Eric Blake.
26730
26731 2008-02-17  Bruno Haible  <bruno@clisp.org>
26732
26733         * lib/git-merge-changelog.c: Include c-strstr.h.
26734         (main): Support the "git pull --rebase" situation.
26735         * modules/git-merge-changelog (Depends-on): Add c-strstr.
26736         Reported by Eric Blake.
26737
26738 2008-02-16  Eric Blake  <ebb9@byu.net>
26739
26740         Avoid doubling \ in common case of "c-maybe" quoting style.
26741         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
26742         eliding outer quotes.
26743         * lib/quotearg.h: Document this.
26744         * tests/test-quotearg.c (result_strings, inputs, results_g)
26745         (flag_results, locale_results): Test it by adding a new string to
26746         each test group.
26747         (compare_strings): Test new string.
26748
26749 2008-02-13  Eric Blake  <ebb9@byu.net>
26750
26751         Avoid trigraph quoting in default output.
26752         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
26753         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
26754         unless explicitly requested.
26755         * tests/test-quotearg.c (flag_results, main): Add additional tests.
26756
26757 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
26758
26759         Don't rely on signed integer overflowing to negative value.
26760         * lib/getugroups.c (getugroups): Include <limits.h>.
26761         Instead, compare against INT_MAX, and increment only if the test passes.
26762
26763 2008-02-13  Jim Meyering  <meyering@redhat.com>
26764         and Eric Blake  <ebb9@byu.net>
26765
26766         Avoid shadowing warning and compile errors on Linux.
26767         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
26768         forwarding macros on Linux.
26769         (dcgettext): Define a stub, for Linux.
26770         (results_g, main): Avoid warnings.
26771
26772 2008-02-12  Eric Blake  <ebb9@byu.net>
26773
26774         Silence warning in last patch.
26775         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
26776
26777         Quotearg part 4: add tests, fix c-maybe colon quoting.
26778         * lib/quotearg.h: Improve documentation.
26779         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
26780         escapes when adding outer quotes.  When quoting trigraphs, use
26781         valid C notation.  When quoting NUL, omit extra characters if next
26782         character is not digit.  Alter prototype.
26783         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
26784         callers.
26785         * modules/quotearg-tests: New module.
26786         * tests/test-quotearg.c: New test.
26787
26788 2008-02-07  Eric Blake  <ebb9@byu.net>
26789
26790         Quotearg part 3: add flag to control outer quote elision.
26791         * lib/quotearg.h (c_maybe_quoting_style): New style.
26792         (enum quoting_flags): Better documentation of flags.
26793         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
26794         c-maybe style.
26795         (quotearg_buffer_restyled): Handle new flag to elide outer
26796         quotes.
26797
26798         Quotearg part 2: add flag that can control NUL elision.
26799         * lib/quotearg.h (set_quoting_flags): New prototype.
26800         * lib/quotearg.c (struct quoting_options): Add flag field.
26801         (set_quoting_flags): New function.
26802         (quotearg_buffer_restyled): Add flags parameter.
26803         (quotearg_alloc_mem): Set the flag if length cannot be returned.
26804         (quotearg_n_options): Set the flag, since length cannot be
26805         returned.
26806         (quoting_options_from_style): Default flags correctly.
26807
26808         Quotearg part 1: more wrappers, restore quotearg_char state.
26809         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
26810         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
26811         (quotearg_colon_mem): New wrappers.
26812         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
26813         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
26814         functions.
26815         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
26816         (quotearg_colon_mem): New functions.
26817
26818 2008-02-11  Bruno Haible  <bruno@clisp.org>
26819
26820         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
26821         library in the current directory: it does not work with parallel make.
26822         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26823
26824 2008-02-11  Bruno Haible  <bruno@clisp.org>
26825
26826         * .gitattributes: New file.
26827
26828 2008-02-11  Jim Meyering  <meyering@redhat.com>
26829
26830         useless-if-before-free: Fix reversed exit values.
26831         * build-aux/useless-if-before-free: Use correct values
26832         for EXIT_MATCH and EXIT_NO_MATCH.
26833
26834         * build-aux/useless-if-before-free: Close stdout carefully.
26835
26836 2008-02-10  Bruno Haible  <bruno@clisp.org>
26837
26838         New module 'git-merge-changelog'.
26839         * modules/git-merge-changelog: New file.
26840         * lib/git-merge-changelog.c: New file.
26841
26842 2008-02-10  Jim Meyering  <meyering@redhat.com>
26843
26844         useless-if-before-free: New option: --list (-l).
26845
26846         useless-if-before-free: Don't exit immediately upon open failure.
26847         * build-aux/useless-if-before-free: Exit 2 for errors.
26848         Upon failure to open a file, don't exit immediately.
26849         Rather, just warn and continue with any remaining files.
26850
26851 2008-02-10  Bruno Haible  <bruno@clisp.org>
26852
26853         New abstract list operation 'node_set_value'.
26854         * lib/gl_list.h (gl_list_node_set_value): New function.
26855         (struct gl_list_implementation): New field node_set_value.
26856         * lib/gl_list.c (gl_list_node_set_value): New function.
26857         * lib/gl_array_list.c (gl_array_node_set_value): New function.
26858         (gl_array_list_implementation): Update.
26859         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
26860         (gl_carray_list_implementation): Update.
26861         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
26862         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
26863         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
26864         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
26865         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
26866         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
26867         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
26868         Update.
26869         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
26870         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
26871         (gl_sublist_list_implementation): Update.
26872
26873 2008-02-10  Bruno Haible  <bruno@clisp.org>
26874
26875         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
26876         Needed when ELEMENT is #defined to 'some_type *'.
26877
26878 2008-02-10  Jim Meyering  <meyering@redhat.com>
26879
26880         New script and module: useless-if-before-free
26881         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
26882         * build-aux/useless-if-before-free: New file.
26883         * modules/useless-if-before-free: New file.
26884
26885         * build-aux/gitlog-to-changelog: Use committer date, not author date.
26886
26887         xstrtol_error: Fix typo.
26888         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
26889         s/exit_failure/exit_status/.
26890
26891 2008-02-09  Jim Meyering  <meyering@redhat.com>
26892
26893         New script and module: gitlog-to-changelog
26894         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
26895         * modules/gitlog-to-changelog: New file.
26896         * build-aux/gitlog-to-changelog: New file.
26897
26898 2008-02-08  Jim Meyering  <meyering@redhat.com>
26899
26900         Avoid two "parameter unused" warnings.
26901         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
26902         Mark "st" as used.
26903
26904         Use "git COMMAND", not "git-COMMAND".
26905         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
26906         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
26907         * build-aux/git-version-gen: Use "git status", not "git-status".
26908
26909 2008-02-07  Bruno Haible  <bruno@clisp.org>
26910
26911         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
26912         Avoids a crash on Windows Vista.
26913         Reported by Adam Strzelecki <ono@java.pl> via
26914         Simon Josefsson <simon@josefsson.org>.
26915
26916 2008-02-06  Bruno Haible  <bruno@clisp.org>
26917
26918         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
26919         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
26920         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
26921         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
26922         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
26923         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
26924         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
26925         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
26926         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
26927         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
26928         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
26929         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
26930         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
26931         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
26932         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
26933         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
26934         left-adjust flag.
26935         * tests/test-snprintf-posix.h (test_function): Likewise.
26936         * tests/test-sprintf-posix.h (test_function): Likewise.
26937         * tests/test-vasprintf-posix.c (test_function): Likewise.
26938         * doc/posix-functions/fprintf.texi: Update.
26939         * doc/posix-functions/printf.texi: Update.
26940         * doc/posix-functions/snprintf.texi: Update.
26941         * doc/posix-functions/sprintf.texi: Update.
26942         * doc/posix-functions/vfprintf.texi: Update.
26943         * doc/posix-functions/vprintf.texi: Update.
26944         * doc/posix-functions/vsnprintf.texi: Update.
26945         * doc/posix-functions/vsprintf.texi: Update.
26946         Reported by Peter Fales <psfales@alcatel-lucent.com>.
26947
26948 2008-02-06  Bruno Haible  <bruno@clisp.org>
26949
26950         Fix bug introduced on 2008-01-26.
26951         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
26952
26953 2008-02-06  Bruno Haible  <bruno@clisp.org>
26954
26955         Fix bug introduced on 2007-06-10.
26956         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
26957         !NEED_PRINTF_FLAG_ZERO.
26958
26959 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
26960
26961         getloadavg: use libperfstat on AIX5
26962         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
26963
26964 2008-02-03  Bruno Haible  <bruno@clisp.org>
26965
26966         * lib/diffseq.h: Add comments about required #includes.
26967         Reported by Michael Biggs <gnulib@doubleplum.net>.
26968
26969 2008-02-01  Bruno Haible  <bruno@clisp.org>
26970
26971         * users.txt: Add gnuit.
26972
26973 2008-01-31  Bruno Haible  <bruno@clisp.org>
26974
26975         * lib/md4.c (set_uint32): Mark as inline.
26976         * lib/md5.c (set_uint32): Likewise.
26977         * lib/sha1.c (set_uint32): Likewise.
26978         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
26979         * m4/md5.m4 (gl_MD5): Likewise.
26980         * m4/sha1.m4 (gl_SHA1): Likewise.
26981
26982 2008-01-31  Jim Meyering  <meyering@redhat.com>
26983
26984         Use "sizeof VAR", rather than a literal "4".
26985         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
26986         * lib/md4.c (md4_read_ctx): Likewise.
26987         * lib/sha1.c (sha1_read_ctx): Likewise.
26988
26989 2008-01-31  Simon Josefsson  <simon@josefsson.org>
26990
26991         * tests/test-sha1.c: New file, based on test-md5.c.
26992
26993         * modules/crypto/sha1-tests: New file.
26994
26995 2008-01-31  Simon Josefsson  <simon@josefsson.org>
26996
26997         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
26998
26999 2008-01-31  Jim Meyering  <meyering@redhat.com>
27000
27001         Prefer "sizeof v" over the equivalent "4".
27002         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
27003         * lib/md5.c (set_uint32): Likewise.
27004         * lib/sha1.c (set_uint32): Likewise.
27005
27006 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27007
27008         * lib/sha1.c (set_uint32): Mark function as static.
27009
27010 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27011
27012         md2: clarify comments to say that alignment is not required.
27013         * lib/md2.h: Remove warning about alignment in comment.
27014         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
27015         never been required.
27016
27017 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27018
27019         md4: adapt alignment constraint fix from sha1.
27020         * lib/md4.c (set_uint32): New function, from sha1.c
27021         (md4_read_ctx): Use it.
27022         (md4_finish_ctx): Doc fix.
27023         * lib/md4.h: Doc fix.
27024
27025 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27026
27027         md5: adapt alignment constraint fix from sha1.
27028         * lib/md5.c (set_uint32): New function, from sha1.c
27029         (md5_read_ctx): Use it.
27030         (md5_finish_ctx): Doc fix.
27031         * lib/md5.h: Doc fix.
27032
27033 2008-01-30  Peter Palfrader  <weasel@debian.org>
27034
27035         sha1: remove the result buffer alignment constraint
27036         * lib/sha1.c (set_uint32): New function.
27037         (sha1_read_ctx): Rewrite to remove the result buffer alignment
27038         constraint.
27039         (sha1_finish_ctx): Remove comment warning about alignment constraint.
27040         * lib/sha1.h: Likewise.
27041
27042 2008-01-30  Andreas Schwab  <schwab@suse.de>
27043             Bruno Haible  <bruno@clisp.org>
27044
27045         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
27046         correct definition of LDBL_MIN_EXP.
27047
27048 2008-01-30  Karl Berry  <karl@gnu.org>
27049
27050         * config/srclist-update: try to preserve x bit on updates.
27051         * config/srclistvars.sh: update for karl.
27052
27053 2008-01-29  Jim Meyering  <meyering@redhat.com>
27054
27055         vasnprintf.c: Avoid warning about unused label
27056         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
27057         "overflow" label definition and associated code with the
27058         same cpp condition that guards the sole use of that label.
27059
27060 2008-01-26  Bruno Haible  <bruno@clisp.org>
27061
27062         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
27063         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
27064         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
27065         * lib/isnanl-nolibm.h (isnanl): Likewise.
27066         Reported by Paul Eggert <eggert@cs.ucla.edu>.
27067
27068 2008-01-26  Bruno Haible  <bruno@clisp.org>
27069
27070         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
27071         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
27072
27073 2008-01-26  Bruno Haible  <bruno@clisp.org>
27074
27075         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
27076         GCC >= 4.0 built-in.
27077         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
27078
27079 2008-01-26  Bruno Haible  <bruno@clisp.org>
27080
27081         Rename isnan, applicable to 'double' only, to isnand.
27082         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
27083         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
27084         (configure.ac): Update.
27085         (Include): Replace "isnan.h" with "isnand.h".
27086         * m4/isnand.m4: Renamed from m4/isnan.m4.
27087         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
27088         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
27089         instead of isnan.c.
27090         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
27091         instead of HAVE_ISNAN_IN_LIBC.
27092         (isnand): Renamed from isnan.
27093         * lib/isnand.c: New file.
27094         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
27095         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
27096         (Makefile.am): Update.
27097         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
27098         Include isnand.h instead of isnan.h.
27099         (main): Test isnand instead of isnan.
27100         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
27101         isnan-nolibm.
27102         * modules/frexp (Depends-on): Likewise.
27103         * modules/frexp-tests (Depends-on): Likewise.
27104         * modules/frexp-nolibm (Depends-on): Likewise.
27105         * modules/frexp-nolibm-tests (Depends-on): Likewise.
27106         * modules/isfinite (Depends-on): Likewise.
27107         * modules/round-tests (Depends-on): Likewise.
27108         * modules/signbit (Depends-on): Likewise.
27109         * modules/signbit-tests (Depends-on): Likewise.
27110         * modules/snprintf-posix (Depends-on): Likewise.
27111         * modules/sprintf-posix (Depends-on): Likewise.
27112         * modules/trunc-tests (Depends-on): Likewise.
27113         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
27114         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
27115         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
27116         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
27117         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
27118         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
27119         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
27120         * modules/vasnprintf-posix (Depends-on): Likewise.
27121         * modules/vasprintf-posix (Depends-on): Likewise.
27122         * modules/vfprintf-posix (Depends-on): Likewise.
27123         * modules/vsnprintf-posix (Depends-on): Likewise.
27124         * modules/vsprintf-posix (Depends-on): Likewise.
27125         * lib/frexp.c: Include isnand.h instead of isnan.h.
27126         (ISNAN): Set to isnand instead of isnan.
27127         * lib/isfinite.c: Include isnand.h instead of isnan.h.
27128         (gl_isfinited): Use isnand instead of isnan.
27129         * lib/signbitd.c: Include isnand.h instead of isnan.h.
27130         (gl_signbitd): Use isnand instead of isnan.
27131         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
27132         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
27133         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
27134         (main): Use isnand instead of isnan.
27135         * tests/test-round1.c: Include isnand.h.
27136         (main): Use isnand instead of isnan.
27137         * tests/test-round2.c: Include isnand.h instead of isnan.h.
27138         (ISNAN): Set to isnand instead of isnan.
27139         * tests/test-trunc1.c: Include isnand.h.
27140         (main): Use isnand instead of isnan.
27141         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
27142         (equal): Use isnand instead of isnan.
27143         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
27144         isnand-nolibm.
27145         * NEWS: Mention the change.
27146
27147 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
27148             Bruno Haible  <bruno@clisp.org>
27149
27150         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
27151         the GCC builtins for signbits are present and set
27152         REPLACE_SIGNBIT_USING_GCC if so.
27153         * lib/math.in.h (signbit): Define using GCC builtins if
27154         REPLACE_SIGNBIT_USING_GCC is set.
27155         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
27156         REPLACE_SIGNBIT_USING_GCC.
27157         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
27158
27159 2008-01-25  Jim Meyering  <meyering@redhat.com>
27160
27161         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
27162         * lib/poll.c: Include <config.h>, not "config.h".
27163         * tests/test-getaddrinfo.c: Likewise.
27164
27165 2008-01-25  Simon Josefsson  <simon@josefsson.org>
27166
27167         * modules/sockets-tests: New file.
27168
27169 2008-01-24  Simon Josefsson  <simon@josefsson.org>
27170
27171         * modules/sockets: New module, can be used to call WSA_Startup and
27172         WSA_Cleanup when needed.
27173
27174         * lib/sockets.h, lib/sockets.c: New files.
27175
27176         * m4/sockets.m4: New file.
27177
27178         * tests/test-sockets.c: New file.
27179
27180 2008-01-19  Bruno Haible  <bruno@clisp.org>
27181
27182         * doc/posix-headers: Renamed from doc/headers.
27183         * doc/posix-functions: Renamed from doc/functions.
27184         * doc/gnulib.texi: Update.
27185
27186 2008-01-19  Bruno Haible  <bruno@clisp.org>
27187
27188         * doc/glibc-functions/strcasestr.texi: Include contents of
27189         doc/functions/strcasestr.texi, fixing the list of platforms.
27190         * doc/functions/strcasestr.texi: Remove file.
27191
27192 2008-01-19  Bruno Haible  <bruno@clisp.org>
27193
27194         * doc/glibc-functions/memmem.texi: Include contents of
27195         doc/functions/memmem.texi.
27196         * doc/functions/memmem.texi: Remove file.
27197
27198 2008-01-18  Bruno Haible  <bruno@clisp.org>
27199
27200         * doc/glibc-functions/*.texi: New files.
27201         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
27202         to use the new files.
27203
27204 2008-01-17  Bruno Haible  <bruno@clisp.org>
27205
27206         * tests/test-gethostname.c (main): Fix printf statement.
27207
27208 2008-01-17  Simon Josefsson  <simon@josefsson.org>
27209
27210         * modules/gethostname-tests: New file.
27211
27212         * tests/test-gethostname.c: New file.
27213
27214 2008-01-17  Simon Josefsson  <simon@josefsson.org>
27215
27216         * lib/gethostname.c: Include string.h unconditionally, strncpy is
27217         used by the UNAME case.  Reported by Bruno Haible
27218         <bruno@clisp.org>.
27219
27220 2008-01-17  Eric Blake  <ebb9@byu.net>
27221
27222         Convert c-strcasestr to be more efficient.
27223         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
27224         (Depends-on): Add c-strcase, remove malloca, strnlen.
27225         * tests/test-c-strcasestr.c (main): Enhance test.
27226         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
27227
27228 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
27229
27230         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
27231         Use it in creating po/Makevars.
27232
27233 2008-01-15  Simon Josefsson  <simon@josefsson.org>
27234
27235         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
27236         Applications that requires it should initialize libgcrypt
27237         manually.
27238
27239 2008-01-16  Simon Josefsson  <simon@josefsson.org>
27240
27241         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
27242
27243 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
27244
27245         Fix problem with getdate on mingw32 reported by Simon Josefsson
27246         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
27247         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
27248         tzname", when deciding whether to declare tzname.
27249         * lib/strftime.c (tzname): Likewise.
27250
27251 2008-01-15  Bruno Haible  <bruno@clisp.org>
27252
27253         Work around a MacOS X 10.5 bug in frexpl().
27254         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
27255         * doc/functions/frexpl.texi: Document the bug.
27256         Reported by Elias Pipping <pipping@gentoo.org>.
27257
27258 2008-01-14  Eric Blake  <ebb9@byu.net>
27259
27260         Touch up previous patch.
27261         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
27262         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
27263
27264         Convert strcasestr module to use Two-Way algorithm.
27265         * modules/strcasestr-simple: New module, based on the old
27266         strcasestr, but with Two-Way rather than KMP.
27267         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
27268         * lib/string.in.h (rpl_strcasestr): Declare.
27269         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
27270         performance.
27271         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
27272         * modules/string (Makefile.am): Support strcasestr.
27273         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
27274         * modules/strcasestr-tests (Depends-on): Check for alarm.
27275         * tests/test-strcasestr.c: Augment test.
27276         * lib/str-two-way.h: Clean up stray macro.
27277         * NEWS: Document new module.
27278         * MODULES.html.sh (string handling): Likewise.
27279         * doc/functions/strcasestr.texi: New file.
27280         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
27281         here, since it is not a POSIX function.
27282
27283 2008-01-14  Colin Watson  <cjwatson@debian.org>
27284             Bruno Haible  <bruno@clisp.org>
27285
27286         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
27287         works fine; if not, set REPLACE_STRSIGNAL.
27288         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
27289         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
27290         REPLACE_STRSIGNAL.
27291         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
27292         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
27293         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
27294
27295 2008-01-14  Bruno Haible  <bruno@clisp.org>
27296
27297         * modules/strsignal (Include): Change to <string.h>.
27298
27299 2008-01-14  Colin Watson  <cjwatson@debian.org>
27300
27301         * modules/argp (Notice): Add a notice recommending to change
27302         XGETTEXT_OPTIONS.
27303         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
27304
27305 2008-01-13  Colin Watson  <cjwatson@debian.org>
27306
27307         * modules/strsignal-tests: New file.
27308         * tests/test-strsignal.c: New file.
27309
27310         * lib/strsignal.c: New file, from glibc with modifications.
27311         * lib/siglist.h: New file, from glibc with modifications.
27312         * lib/string.in.h (strsignal): New declaration.
27313         * m4/strsignal.m4: New file.
27314         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
27315         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
27316         * modules/strsignal: New file.
27317         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
27318         HAVE_DECL_STRSIGNAL.
27319
27320 2008-01-13  Bruno Haible  <bruno@clisp.org>
27321
27322         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
27323         locale encoding is not ASCII. Needed for OpenBSD 4.0.
27324         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
27325         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
27326
27327 2008-01-13  Bruno Haible  <bruno@clisp.org>
27328
27329         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
27330         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
27331         * lib/argp.h (__attribute__): Likewise.
27332         * lib/c-stack.c (__attribute__): Likewise.
27333         * lib/error.h (__attribute__): Likewise.
27334         * lib/fts.c (__attribute__): Likewise.
27335         * lib/openat.h (__attribute__): Likewise.
27336         * lib/stdio.in.h (__attribute__): Likewise.
27337         * lib/string.in.h (__attribute__): Likewise.
27338         * lib/utimens.c (__attribute__): Likewise.
27339         * lib/vasnprintf.h (__attribute__): Likewise.
27340         * lib/xalloc.h (__attribute__): Likewise.
27341         * lib/xprintf.h (__attribute__): Likewise.
27342         * lib/xstrtol.h (__attribute__): Likewise.
27343         * lib/xvasprintf.h (__attribute__): Likewise.
27344
27345 2008-01-12  Bruno Haible  <bruno@clisp.org>
27346
27347         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
27348         * doc/glibc-headers/a.out.texi: New file.
27349         * doc/glibc-headers/aliases.texi: New file.
27350         * doc/glibc-headers/alloca.texi: New file.
27351         * doc/glibc-headers/ar.texi: New file.
27352         * doc/glibc-headers/argp.texi: New file.
27353         * doc/glibc-headers/argz.texi: New file.
27354         * doc/glibc-headers/byteswap.texi: New file.
27355         * doc/glibc-headers/crypt.texi: New file.
27356         * doc/glibc-headers/endian.texi: New file.
27357         * doc/glibc-headers/envz.texi: New file.
27358         * doc/glibc-headers/err.texi: New file.
27359         * doc/glibc-headers/error.texi: New file.
27360         * doc/glibc-headers/execinfo.texi: New file.
27361         * doc/glibc-headers/fpu_control.texi: New file.
27362         * doc/glibc-headers/fstab.texi: New file.
27363         * doc/glibc-headers/fts.texi: New file.
27364         * doc/glibc-headers/getopt.texi: New file.
27365         * doc/glibc-headers/ieee754.texi: New file.
27366         * doc/glibc-headers/ifaddrs.texi: New file.
27367         * doc/glibc-headers/libintl.texi: New file.
27368         * doc/glibc-headers/mcheck.texi: New file.
27369         * doc/glibc-headers/mntent.texi: New file.
27370         * doc/glibc-headers/obstack.texi: New file.
27371         * doc/glibc-headers/paths.texi: New file.
27372         * doc/glibc-headers/printf.texi: New file.
27373         * doc/glibc-headers/pty.texi: New file.
27374         * doc/glibc-headers/resolv.texi: New file.
27375         * doc/glibc-headers/shadow.texi: New file.
27376         * doc/glibc-headers/sysexits.texi: New file.
27377         * doc/glibc-headers/ttyent.texi: New file.
27378
27379 2008-01-12  Jim Meyering  <meyering@redhat.com>
27380
27381         announce-gen: emit Gnulib's git-based version string.
27382         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
27383         New option --gnulib-version=V, where V is expected to be
27384         the output of running git describe in the gnulib directory.
27385         (get_tool_versions): Request feedback on xdelta.  I suspect it's
27386         not useful, and plan to stop publishing an xdelta file with each
27387         coreutils release.
27388
27389         * build-aux/announce-gen: Also check for lzma-compressed files.
27390
27391 2008-01-11  Bruno Haible  <bruno@clisp.org>
27392
27393         * tests/test-memmem.c (main): Increase maximum allowed time.
27394         * tests/test-strstr.c (main): Likewise.
27395
27396 2008-01-11  Bruno Haible  <bruno@clisp.org>
27397
27398         * doc/functions/memmem.texi: Add more precisions about platforms.
27399         * doc/functions/strstr.texi: Likewise.
27400
27401 2008-01-10  Eric Blake  <ebb9@byu.net>
27402
27403         * m4/strstr.m4: Delete cruft from copy-n-paste.
27404         Reported by Bruno Haible.
27405
27406 2008-01-10  Bruno Haible  <bruno@clisp.org>
27407
27408         Make c-strstr rely on strstr.
27409         * lib/c-strstr.c: Don't include str-kmp.h.
27410         (c_strstr): Define in terms of strstr.
27411         * modules/c-strstr (Files): Remove lib/str-kmp.h.
27412         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
27413
27414 2008-01-10  Bruno Haible  <bruno@clisp.org>
27415
27416         * doc/gnulib.texi (String Functions in C Locale): New section.
27417         * doc/c-ctype.texi: New file.
27418         * doc/c-strcase.texi: New file.
27419         * doc/c-strcaseeq.texi: New file.
27420         * doc/c-strcasestr.texi: New file.
27421         * doc/c-strstr.texi: New file.
27422         * doc/c-strtod.texi: New file.
27423         * doc/c-strtold.texi: New file.
27424
27425 2008-01-10  Eric Blake  <ebb9@byu.net>
27426
27427         * lib/relocatable.h: Fix a comment.
27428
27429 2008-01-10  Eric Blake  <ebb9@byu.net>
27430
27431         Share two-way algorithm.
27432         * lib/str-two-way.h: New file, merged from...
27433         * lib/memmem.c: ...here...
27434         * lib/strstr.c: ...and here.
27435         * modules/memmem (Files): Use it.
27436         * modules/strstr (Files): Likewise.
27437
27438         Avoid quadratic strstr implementations.
27439         * lib/strstr.c: New file.
27440         * m4/strstr.m4: Likewise.
27441         * modules/strstr: Likewise.
27442         * modules/strstr-tests: Likewise.
27443         * tests/test-strstr.c: Likewise.
27444         * lib/string.in.h (rpl_strstr): Declare.
27445         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
27446         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
27447         * modules/string (Makefile.am): Likewise.
27448         * MODULES.html.sh (string handling): Mention new module.
27449         * doc/functions/strstr.texi (strstr): Document the bug.
27450
27451 2008-01-10  Bruno Haible  <bruno@clisp.org>
27452
27453         * lib/relocatable.h (relocate): State whether result is freshly
27454         allocated or not.
27455         * lib/relocatable.c (relocate): Return a freshly allocated string
27456         instead of a pointer to a privately held string.
27457         Reported by Sylvain Beucler <beuc@gnu.org>.
27458
27459 2008-01-10  Colin Watson  <cjwatson@debian.org>
27460
27461         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
27462         s/S_ISNLK/S_ISLNK/.
27463
27464 2008-01-09  Bruno Haible  <bruno@clisp.org>
27465
27466         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
27467         and other files.
27468         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
27469         if it's only a guess.
27470         * modules/memmem: Simplify by depending on memmem-simple.
27471
27472 2008-01-09  Bruno Haible  <bruno@clisp.org>
27473
27474         Work around OpenBSD 4.0 tdelete() bug.
27475         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
27476         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
27477         macros and don't redefine the enum values.
27478         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
27479         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
27480         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
27481
27482 2008-01-09  Bruno Haible  <bruno@clisp.org>
27483
27484         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
27485         (main): Don't perform the tests if setlocale did not install a UTF-8
27486         locale. Needed on OpenBSD 4.0.
27487         * modules/wcwidth-tests (Depends-on): Add localcharset.
27488
27489 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
27490
27491         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
27492         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
27493         * NEWS: announce this.
27494         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
27495
27496 2008-01-09  Simon Josefsson  <simon@josefsson.org>
27497         and Eric Blake  <ebb9@byu.net>
27498
27499         Add memmem-simple module.
27500         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
27501         (gl_FUNC_MEMMEM): Separate performance from presence checks.
27502         * modules/memmem-simple: New file.
27503         * modules/memmem (Description): Tweak.
27504         * MODULES.html.sh (string handling): Mention new module.
27505         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
27506         addressed by memmem-simple.
27507         * NEWS: Document the difference.
27508
27509 2008-01-09  Eric Blake  <ebb9@byu.net>
27510
27511         Give gcc some memmem optimization hints.
27512         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
27513         (strcasestr): Declare as pure.
27514         * modules/memmem (Maintainer): Claim my implementation.
27515
27516 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27517
27518         Support AIX 6.1 and higher.
27519         * build-aux/config.libpath: Likewise.
27520         * build-aux/config.rpath: Likewise.
27521
27522 2008-01-08  Jim Meyering  <meyering@redhat.com>
27523             Bruno Haible  <bruno@clisp.org>
27524
27525         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
27526         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
27527         Reported by Peter Fales in
27528         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
27529
27530 2008-01-08  Bruno Haible  <bruno@clisp.org>
27531
27532         * modules/unictype/category-of (Depends-on): Add
27533         unictype/category-none.
27534         * modules/unictype/category-and-tests (Depends-on): Add
27535         unictype/category-{L,N,Lu,Nd}.
27536         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
27537         * modules/unictype/category-or-tests (Depends-on): Add
27538         unictype/category-{L,N}.
27539         * modules/unictype/category-name-tests (Depends-on): Add
27540         unictype/category-{Z,Nl}.
27541         Reported by Simon Josefsson.
27542
27543 2008-01-08  Bruno Haible  <bruno@clisp.org>
27544
27545         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
27546         convention better.
27547         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
27548         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
27549         Reported by Peter Miller <millerp@canb.auug.org.au>.
27550
27551 2008-01-08  Eric Blake  <ebb9@byu.net>
27552
27553         Rewrite memmem to guarantee linear complexity without malloc.
27554         * lib/memmem.c (memmem): Use Two-Way rather than
27555         Knuth-Morris-Pratt, to allow O(1) space usage.
27556         (critical_factorization, two_way_short_needle)
27557         (two_way_long_needle): New functions.
27558         (knuth_morris_pratt): Delete.
27559         * modules/memmem (Depends-on): No longer need malloca or stdbool.
27560         Add stdint.
27561         * tests/test-memmem.c (main): Add tests for periodic needle and
27562         sublinear performance.
27563         * doc/functions/memmem.texi (memmem): Document other deficiencies
27564         in cygwin and older glibc.
27565
27566 2008-01-08  Bruno Haible  <bruno@clisp.org>
27567
27568         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
27569         augmentation.
27570
27571 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
27572
27573         Add a configure time option: --disable-acl.
27574         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
27575         AC_ARG_ENABLE(acl).
27576
27577 2008-01-06  Simon Josefsson  <simon@josefsson.org>
27578
27579         * tests/test-localename.c: Don't include obsolete "setenv.h".
27580
27581         * modules/localename-tests (Depends-on): Need unsetenv.
27582
27583 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27584
27585         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
27586
27587 2008-01-06  Colin Watson  <cjwatson@debian.org>
27588
27589         * users.txt: Add man-db.
27590
27591 2008-01-07  Bruno Haible  <bruno@clisp.org>
27592
27593         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
27594         previous section name.
27595
27596 2008-01-07  Bruno Haible  <bruno@clisp.org>
27597
27598         * lib/progname.c (set_program_name): Don't strip off a leading
27599         "lt-" prefix outside a .libs directory.
27600         Suggested by Paul Eggert.
27601
27602 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
27603             Bruno Haible  <bruno@clisp.org>
27604
27605         Improve memory cleanup in 'relocatable' module.
27606         * lib/relocatable.h (compute_curr_prefix): Change return type to
27607         'char *'.
27608         * lib/relocatable.c (compute_curr_prefix): Change return type to
27609         'char *'. Free curr_installdir after use.
27610         (relocate): Free curr_prefix_better after use.
27611         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
27612
27613 2008-01-01  Bruno Haible  <bruno@clisp.org>
27614
27615         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
27616         failure on older glibc systems.
27617         Reported by Peter Fales <psfales@alcatel-lucent.com>.
27618
27619 2008-01-05  Eric Blake  <ebb9@byu.net>
27620
27621         Avoid quadratic system memmem.
27622         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
27623         Reported by Ralf Wildenhues.
27624
27625         Fix memmem test for mingw.
27626         * modules/memmem-tests (configure.ac): Check for alarm.
27627         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
27628         it.
27629         * doc/functions/memmem.texi: New file.
27630         * doc/gnulib.texi (Function Substitutes): Add memmem.
27631         Reported by Bruno Haible.
27632
27633 2008-01-04  Bruno Haible  <bruno@clisp.org>
27634
27635         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
27636         Require gl_HEADER_STRINGS_H_DEFAULTS, not
27637         gl_HEADER_STRING_H_DEFAULTS.
27638
27639 2008-01-04  Eric Blake  <ebb9@byu.net>
27640
27641         Shorten duration of memmem test.
27642         * tests/test-memmem.c (main): Use alarm to declare failure if test
27643         is taking too long.
27644         Reported by Ralf Wildenhues.
27645
27646 2007-12-21  Simon Josefsson  <simon@josefsson.org>
27647
27648         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
27649         string, needed by strerror.
27650
27651 2008-01-03  Colin Watson  <cjwatson@debian.org>
27652             Bruno Haible  <bruno@clisp.org>
27653
27654         * doc/gnulib-tool.texi (Localization): New section.
27655
27656 2008-01-02  Bruno Haible  <bruno@clisp.org>
27657
27658         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
27659         variables to 'unsigned char *' type.
27660         Reported by Paul Eggert.
27661
27662 2008-01-02  Jim Meyering  <jim@meyering.net>
27663
27664         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
27665
27666 2007-12-31  Jim Meyering  <jim@meyering.net>
27667
27668         Avoid use of private FTS type name.
27669         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
27670
27671 2007-12-30  Karl Berry  <karl@gnu.org>
27672
27673         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
27674         work around defect in Texinfo and/or the standalone Info browser.
27675
27676 2007-12-30  Bruno Haible  <bruno@clisp.org>
27677
27678         Unify 5 copies of the KMP code.
27679         * lib/str-kmp.h: New file.
27680         * lib/c-strcasestr.c: Include str-kmp.h.
27681         (knuth_morris_pratt): Remove function.
27682         (c_strcasestr): Update.
27683         * lib/c-strstr.c: Include str-kmp.h.
27684         (knuth_morris_pratt): Remove function.
27685         (c_strcasestr): Update.
27686         * lib/mbscasestr.c: Include str-kmp.h.
27687         (knuth_morris_pratt_unibyte): Remove function.
27688         * lib/mbsstr.c: Include str-kmp.h.
27689         (knuth_morris_pratt_unibyte): Remove function.
27690         * lib/strcasestr.c: Include str-kmp.h.
27691         (knuth_morris_pratt): Remove function.
27692         (strcasestr): Update.
27693         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
27694         * modules/c-strstr (Files): Likewise.
27695         * modules/mbscasestr (Files): Likewise.
27696         * modules/mbsstr (Files): Likewise.
27697         * modules/strcasestr (Files): Likewise.
27698         Suggested by Paul Eggert.
27699
27700 2007-12-30  Bruno Haible  <bruno@clisp.org>
27701
27702         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
27703         defined.
27704
27705 2007-12-30  Bruno Haible  <bruno@clisp.org>
27706
27707         * lib/xmalloca.h: Include xalloc.h.
27708         (xnmalloca): New macro.
27709
27710 2007-12-30  Bruno Haible  <bruno@clisp.org>
27711
27712         * lib/malloca.h (nmalloca): New macro.
27713         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
27714         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
27715         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
27716         knuth_morris_pratt_multibyte): Likewise.
27717         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
27718         knuth_morris_pratt_multibyte): Likewise.
27719         * lib/memmem.c (knuth_morris_pratt): Likewise.
27720         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
27721
27722 2007-12-25  Bruno Haible  <bruno@clisp.org>
27723
27724         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
27725         * lib/glob.c: Don't include openat.h.
27726         (link_exists2_p): Add back the code that deals with the
27727         !GLOB_ALTDIRFUNC case.
27728         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
27729         let it do the filename concatenation.
27730         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
27731         * modules/glob (Depends-on): Remove openat.
27732
27733 2007-12-31  Bruno Haible  <bruno@clisp.org>
27734
27735         * modules/dirfd (License): Change to LGPLv2+.
27736         Approved by Jim Meyering.
27737
27738 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
27739
27740         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
27741         when multiplying M by sizeof (size_t).
27742
27743 2007-12-10  Martin Lambers  <marlam@marlam.de>
27744
27745         Override getpagesize on mingw.
27746         * lib/getpagesize.c: New file.
27747         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
27748         * modules/getpagesize (Files): Add lib/getpagesize.c.
27749         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
27750         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
27751         REPLACE_GETPAGESIZE.
27752         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
27753
27754 2007-12-25  Bruno Haible  <bruno@clisp.org>
27755
27756         * modules/localcharset (Notice): New field.
27757         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
27758         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
27759
27760 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
27761             Bruno Haible  <bruno@clisp.org>
27762
27763         Avoid using the syntax symbol() in formatted documentation.
27764         * MODULES.html.sh (func_module): When replacing symbol() with a
27765         hyperlink, remove the parentheses. Show an error if some remain.
27766         Recognize and render the '...' syntax.
27767         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
27768         Rework. Add paragraph about GCC's inlining.
27769         * doc/alloca.texi: Likewise.
27770         * doc/error.texi: Remove parentheses from symbol reference.
27771         * doc/gnulib-intro.texi: Likewise.
27772         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
27773         * modules/fnmatch (Description): Reword to say "the ... function".
27774         * modules/full-read (Description): Likewise.
27775         * modules/full-write (Description): Likewise.
27776         * modules/safe-read (Description): Likewise.
27777         * modules/safe-write (Description): Likewise.
27778         * modules/strchrnul (Description): Likewise.
27779         * modules/trim (Description): Likewise.
27780         * modules/error (Description): Remove parentheses from symbol
27781         references.
27782         * modules/verror (Description): Likewise.
27783         Reported by Karl Berry.
27784
27785 2007-12-25  Bruno Haible  <bruno@clisp.org>
27786
27787         Fixup after 2007-10-16 commit.
27788         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
27789
27790 2007-12-24  Bruno Haible  <bruno@clisp.org>
27791
27792         Make --enable-relocatable work with DESTDIR.
27793         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
27794         to compute installdir from destprog.
27795         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
27796         also set the RELOC_DESTDIR variable.
27797         Reported by Левашев Иван <octagram@bluebottle.com>.
27798
27799 2007-12-24  Bruno Haible  <bruno@clisp.org>
27800
27801         Fix link error due to xalloc_die().
27802         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
27803         of xreadlink.
27804         * lib/relocwrapper.c: Update comments.
27805         * build-aux/install-reloc: Remove xreadlink.c from file list.
27806         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
27807         xreadlink.c.
27808         Reported by Левашев Иван <octagram@bluebottle.com>.
27809
27810 2007-12-24  Bruno Haible  <bruno@clisp.org>
27811
27812         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
27813         * lib/setenv.h: Remove file.
27814         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
27815         lib/setenv.h.
27816         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
27817         (Depends-on): Add stdlib.
27818         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
27819         gl_FUNC_UNSETENV.
27820         (Include): Replace setenv.h with <stdlib.h>.
27821         * modules/unsetenv: New file.
27822         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
27823         * lib/unsetenv.c: Include <stdlib.h> first.
27824         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
27825         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
27826         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
27827         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
27828         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
27829         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
27830         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
27831         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
27832         * doc/functions/unsetenv.texi: Update.
27833         * modules/xsetenv (Depends-on): Add unsetenv.
27834         * modules/getdate (Depends-on): Likewise.
27835         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
27836         * lib/xsetenv.c: Don't include setenv.h.
27837         * lib/getdate.y: Likewise.
27838         * lib/relocwrapper.c: Likewise.
27839         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
27840         (Depends-on): Add stdlib.
27841         * NEWS: Mention the changes.
27842         Reported by Левашев Иван <octagram@bluebottle.com>.
27843
27844 2007-12-23  Bruno Haible  <bruno@clisp.org>
27845
27846         * lib/memmem.c (memmem): Use lowercase variable names. Tab
27847         indentation.
27848
27849 2007-12-23  Bruno Haible  <bruno@clisp.org>
27850
27851         * lib/c-strcasestr.c: Add more comments.
27852         * lib/c-strstr.c: Likewise.
27853         * lib/mbscasestr.c: Likewise.
27854         * lib/mbsstr.c: Likewise.
27855         * lib/strcasestr.c: Likewise.
27856         * lib/memmem.c: Likewise.
27857
27858 2007-12-23  Bruno Haible  <bruno@clisp.org>
27859
27860         * tests/test-memmem.c: Include <string.h> first.
27861
27862 2007-12-22  Bruno Haible  <bruno@clisp.org>
27863
27864         * gnulib-tool (func_create_testdir): Change $auxdir while generating
27865         the contents of $testsbase.
27866         Reported by Ralf Wildenhues.
27867
27868 2007-12-22  Bruno Haible  <bruno@clisp.org>
27869
27870         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
27871         two variables local_ldadd_before, local_ldadd_last.
27872
27873 2007-12-20  Eric Blake  <ebb9@byu.net>
27874
27875         Work around circular library issue when cross-compiling.
27876         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
27877         that progname.o does not need to pull in rpl_memcmp.
27878
27879 2007-12-19  Eric Blake  <ebb9@byu.net>
27880
27881         Fix memmem to avoid O(n^2) worst-case complexity.
27882         * lib/memmem.c (knuth_morris_pratt): New function.
27883         (memmem): Use it if first few naive iterations fail.
27884         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
27885         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
27886         * modules/memchr (License): Likewise.
27887         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
27888         malloca.
27889         * tests/test-memmem.c: Rewrite, borrowing ideas from
27890         test-mbsstr1.c; the old version wouldn't even compile!
27891         * modules/memmem-tests: New file.
27892         * lib/string.in.h (rpl_memmem): Add declaration.
27893         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
27894         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
27895         REPLACE_MEMMEM.
27896
27897 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
27898
27899         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
27900         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
27901         before any system include files, and undef after them all.  This
27902         should fix a problem on VMS reported by John E. Malmberg in
27903         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
27904
27905 2007-12-17  Eric Blake  <ebb9@byu.net>
27906
27907         Revert addition of verify, for BSD/OS.
27908         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
27909         can't handle large files, for the sake of obsolete platforms.
27910         * modules/fseeko (Depends-on): Remove verify.
27911         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
27912         * doc/functions/ftello.texi (ftello): Likewise.
27913         * doc/functions/fgetpos.texi (fgetpos): Likewise.
27914         Reported by Larry Jones.
27915
27916 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
27917
27918         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
27919         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
27920
27921 2007-12-17  Jim Meyering  <meyering@redhat.com>
27922
27923         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
27924         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
27925         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
27926         * modules/getcwd (Depends-on): Add openat.
27927         Reported by Petr Salinger.
27928
27929 2007-12-17  Bruno Haible  <bruno@clisp.org>
27930
27931         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
27932         avoid a segmentation fault of the configure test on x86_64 systems.
27933
27934 2007-12-15  Jim Meyering  <meyering@redhat.com>
27935
27936         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
27937
27938 2007-12-13  Eric Blake  <ebb9@byu.net>
27939
27940         Another fseek test.
27941         * tests/test-fseek.c (main): Also test ungetc handling.
27942         * tests/test-fseeko.c (main): Likewise.
27943         * modules/fseeko (Depends-on): Add verify.
27944         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
27945         large.
27946         Reported by Larry Jones.
27947
27948         Fix fseeko on mingw.
27949         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
27950         seek.
27951
27952         Beef up fseek tests.
27953         * tests/test-fseek.c (main): Also test eof handling.
27954         * tests/test-fseeko.c (main): Likewise.
27955         Reported by Larry Jones.
27956
27957 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
27958
27959         Fix fseeko on BSD-based platforms.
27960         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
27961         successful seek.
27962
27963 2007-12-12  Eric Blake  <ebb9@byu.net>
27964
27965         Allow circular dependency of separate libtests.a
27966         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
27967         when use_libtests.
27968
27969 2007-12-11  Eric Blake  <ebb9@byu.net>
27970
27971         Fix bug with -0.0L in previous patch.
27972         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
27973         * tests/test-isnan.c (main): Also test on zeroes.
27974         * tests/test-isnanf.c (main): Likewise.
27975         * tests/test-isnanl.h (main): Likewise.
27976
27977         Detect pseudo-denormals on x86 even when cross-compiling.
27978         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
27979         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
27980         invalid bit patterns that happen to satisfy ==.
27981
27982         Avoid link failures with separate libtests.a.
27983         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
27984         last, to satisfy circular dependencies.
27985
27986 2007-12-11  Eric Blake  <ebb9@byu.net>
27987         and Bruno Haible  <bruno@clisp.org>
27988
27989         Fix OpenBSD 4.0 <float.h> handling of long double.
27990         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
27991         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
27992         * doc/headers/float.texi (float.h): Document OpenBSD bug.
27993
27994 2007-12-11  Jim Meyering  <meyering@redhat.com>
27995
27996         * users.txt: Add libvirt.
27997
27998         Support versions of autoconf prior to 2.59c.
27999         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
28000         if it is not already defined.
28001
28002 2007-12-09  Bruno Haible  <bruno@clisp.org>
28003
28004         Let 'gnulib-tool --import' collect sources needed for the tests in
28005         tests/ rather than in lib/.
28006         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
28007         argument. If true, add rules to generate libtests.a, and put libtests.a
28008         into $(LDADD). Consider source files in subdirectories and set
28009         uses_subdirs.
28010         (func_emit_initmacro_start, func_emit_initmacro_end,
28011         func_emit_initmacro_done): Pass all arguments explicitly.
28012         (func_import): Determine two module lists main_modules,
28013         testsrelated_modules. Determine use_libtests. Determine two variables
28014         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
28015         instead of just sed_transform_lib_file. Determine two variables
28016         main_files and testsrelated_files. Compute 'files' as the union of
28017         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
28018         func_add_or_update. In the generated gnulib-comp.m4, collect the
28019         object files for tests/ in different variables than those for lib/.
28020         Substitute LIBTESTS_LIBDEPS.
28021         (func_create_testdir): Combine the uses_subdirs results from
28022         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
28023
28024 2007-12-09  Bruno Haible  <bruno@clisp.org>
28025
28026         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
28027         the build-aux directory.
28028
28029 2007-12-09  Bruno Haible  <bruno@clisp.org>
28030
28031         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
28032         introduced on 2006-09-09.
28033
28034 2007-12-07  Jim Meyering  <meyering@redhat.com>
28035
28036         Let these macros work also with autoconf-2.59.
28037         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
28038         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
28039         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
28040
28041 2007-12-06  Jim Meyering  <meyering@redhat.com>
28042
28043         Avoid a configure-time syntax error in gl_FUNC_ACL.
28044         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
28045         function in each branch, before testing the cache variable.
28046
28047 2007-12-04  Eric Blake  <ebb9@byu.net>
28048
28049         Make scripts executable.
28050         * build-aux/config.guess: Add execute permissions.
28051         * build-aux/config.sub: Likewise.
28052         * build-aux/gendocs.sh: Likewise.
28053
28054         Fix frexp on mingw.
28055         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
28056         cross-compiling.
28057         * doc/functions/frexp.texi (frexp): Document the bug.
28058
28059         Make cygwin fseeko check more reliable.
28060         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
28061         version numbers, rather than unrelated feature check.
28062         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
28063         * doc/functions/ftello.texi (ftello): Likewise.
28064         Reported by Bruno Haible.
28065
28066         * m4/strerror.m4: Bump version number.
28067
28068 2007-12-03  Bruno Haible  <bruno@clisp.org>
28069
28070         * doc/functions/mprotect.texi: Mention the mingw problem.
28071
28072 2007-12-03  Eric Blake  <ebb9@byu.net>
28073
28074         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
28075         REPLACE_STRERROR is initialized before this macro.
28076
28077 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
28078
28079         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
28080         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
28081         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
28082         put -lsec in even for programs other than 'ls'.  This fixes a problem
28083         for gettext reported by Bruno Haible in
28084         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
28085         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
28086         Add support for Solaris 10.  This isn't efficient, but should get the
28087         job done for now.
28088
28089 2007-12-03  James Youngman  <jay@gnu.org>
28090
28091         * doc/regexprops-generic.texi: change "an close-group" to "a
28092         close-group" and "illegal" to "not allowed".
28093
28094 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28095
28096         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
28097         pr_byname.h. Needed for the rare case when the maintainer has done
28098         "make maintainer-clean" in the source directory and then attempts a
28099         build outside the source directory.
28100         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
28101         scripts_byname.h.
28102
28103 2007-12-02  Martin Lambers <marlam@marlam.de>
28104             Bruno Haible  <bruno@clisp.org>
28105
28106         * lib/getpagesize.h: Remove file.
28107         * lib/unistd.in.h: Include declaration of getpagesize here.
28108         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
28109         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
28110         HAVE_SYS_PARAM_H.
28111         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
28112         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
28113         * modules/getpagesize (Files): Remove lib/getpagesize.h.
28114         (Depends-on): Add unistd.
28115         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
28116         (Include): Use <unistd.h> instead of getpagesize.h.
28117         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
28118         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
28119         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
28120         gl_GETPAGESIZE invocation, already handled by module dependency.
28121         * lib/pagealign_alloc.c: Don't include getpagesize.h.
28122
28123 2007-12-02  Bruno Haible  <bruno@clisp.org>
28124
28125         * modules/strings-tests: New file.
28126         * tests/test-strings.c: New file.
28127
28128         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
28129         * lib/strings.in.h: New file.
28130         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
28131         * m4/strings_h.m4: New file.
28132         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
28133         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
28134         * modules/strings: New file.
28135         * modules/string (Makefile.am): Update.
28136         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
28137         Reported by Karl Berry.
28138
28139 2007-12-01  Eric Blake  <ebb9@byu.net>
28140
28141         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
28142         accomodate fix in cygwin 1.5.25.
28143
28144 2007-12-01  Jim Meyering  <meyering@redhat.com>
28145
28146         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
28147         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
28148         that would inhibit utf8-optimization of a regexp containing line-
28149         or buffer-anchors, e.g., `^', `$'.
28150
28151 2007-11-30  Bruno Haible  <bruno@clisp.org>
28152
28153         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
28154         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
28155         glthread_recursive_lock_init.
28156         * lib/lock.c (glthread_recursive_lock_init)
28157         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
28158         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
28159
28160 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
28161
28162         New function qset_acl, like set_acl but with syscall semantics.
28163         * lib/acl.h (qset_acl): New decl.
28164         * lib/acl.c (qset_acl): New function.
28165         (set_acl): Use new function.  Use more-consistent diagnostics.
28166
28167 2007-11-28  Jim Meyering  <meyering@redhat.com>
28168
28169         * modules/physmem (License): Change from GPL to LGPLv2+.
28170
28171 2007-11-26  Bruno Haible  <bruno@clisp.org>
28172
28173         * lib/vasnprintf.c (decode_long_double): Don't abort if the
28174         'long double' type has excess precision.
28175         Reported by Jim Meyering in
28176         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
28177
28178 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28179
28180         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
28181         Sync from <http://gnu.org/licenses>.
28182         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
28183         with license text from same location.
28184         * doc/maintain.texi, doc/standards.texi:  Sync from
28185         <http://savannah.gnu.org/projects/gnustandards>.
28186
28187 2007-11-22  Ondřej Vašík  <ovasik@redhat.com>
28188         and Jim Meyering  <meyering@redhat.com>
28189
28190         Adjust getdate' grammar to accept a slightly more regular language.
28191         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
28192         Before, the former was rejected.
28193         * lib/getdate.y (digits_to_date_time): New function, factored
28194         out of ...
28195         (number): ...here.  Just call digits_to_date_time.
28196         (hybrid): New non-terminal to handle an <unsigned number,
28197         signed relative offset> sequence consistently.
28198
28199 2007-11-18  Jim Meyering  <meyering@redhat.com>
28200
28201         Pull my changes from coreutils:
28202         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
28203         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
28204         use of $gnulib_tool_option_extras, so that it's separated from the
28205         preceding argument.
28206
28207         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
28208         * build-aux/bootstrap (cp_mark_as_generated): Create any required
28209         parent destination directories before copying a file into place.
28210
28211 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
28212
28213         bootstrap: work also with 4-argument variant of AC_INIT
28214         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
28215
28216 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28217
28218         Port test-getaddrinfo to Solaris.
28219         Problem reported by Bruno Haible in
28220         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
28221         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
28222         explanation of setting 'hints'.
28223         Don't reject an implementation merely because it returns EAI_SERVICE.
28224         (EAI_SERVICE): Define to 0 if not defined.
28225
28226 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
28227
28228         The license of gnu-make and posix-shell is now "GPLed build tool".
28229         * modules/gnu-make (License): Likewise.
28230         * modules/posix-shell (License): Likewise.
28231
28232         New module posix-shell, for determining a POSIX shell
28233         or perhaps something that is close enough to a POSIX shell.
28234         * m4/posix-shell.m4: New file.
28235         * modules/posix-shell: New file.
28236
28237         * MODULES.html.sh: Mention new module.
28238
28239         New module gnu-make, for determining whether we're using GNU Make.
28240         * m4/gnu-make.m4: New file.
28241         * modules/gnu-make: New file.
28242         * MODULES.html.sh: Mention new module.
28243
28244 2007-11-14  Jim Meyering  <meyering@redhat.com>
28245
28246         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
28247         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
28248         use this macro to create a function _definition_.
28249         Remove useless "#undef ARGMATCH_DIE".
28250
28251 2007-11-14  Bruno Haible  <bruno@clisp.org>
28252
28253         * lib/config.charset: Update for OpenBSD 4.1.
28254         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
28255
28256 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
28257
28258         Document 64-bit #if problems in stdint.texi.
28259         * doc/headers/stdint.texi (stdint.h): Mention problems with
28260         64-bit-#if, and how to work around them.
28261
28262         Don't insist on 'long long int' support in the preprocessor.  It
28263         breaks too many things.  For example, PRIdMAX still uses a 'long
28264         long int' format with the latest Sun compiler, even though
28265         HAVE_LONG_LONG_INT isn't defined due to that compiler's
28266         preprocessor problem.  This causes the latest coreutils to dump
28267         core on Solaris 10 sparc with the Sun C compiler.
28268         Instead, fix the 2007-10-16 problem in a different way, by evaluating
28269         the troublesome expressions at configure-time, not at #if-time.
28270         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
28271         preprocessor.
28272         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
28273         compile-time C checks, done at 'configure'-time.
28274         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
28275         * modules/inttypes (Makefile): Substitute the new symbols that
28276         gl_INTTYPES_H now generates.
28277         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
28278
28279 2007-11-12  Bruno Haible  <bruno@clisp.org>
28280
28281         Tests for Unicode character classification functions.
28282
28283         * modules/unictype/bidicategory-byname-tests: New file.
28284         * modules/unictype/bidicategory-name-tests: New file.
28285         * modules/unictype/bidicategory-of-tests: New file.
28286         * modules/unictype/bidicategory-test-tests: New file.
28287         * modules/unictype/block-list-tests: New file.
28288         * modules/unictype/block-of-tests: New file.
28289         * modules/unictype/block-test-tests: New file.
28290         * modules/unictype/category-C-tests: New file.
28291         * modules/unictype/category-Cc-tests: New file.
28292         * modules/unictype/category-Cf-tests: New file.
28293         * modules/unictype/category-Cn-tests: New file.
28294         * modules/unictype/category-Co-tests: New file.
28295         * modules/unictype/category-Cs-tests: New file.
28296         * modules/unictype/category-L-tests: New file.
28297         * modules/unictype/category-Ll-tests: New file.
28298         * modules/unictype/category-Lm-tests: New file.
28299         * modules/unictype/category-Lo-tests: New file.
28300         * modules/unictype/category-Lt-tests: New file.
28301         * modules/unictype/category-Lu-tests: New file.
28302         * modules/unictype/category-M-tests: New file.
28303         * modules/unictype/category-Mc-tests: New file.
28304         * modules/unictype/category-Me-tests: New file.
28305         * modules/unictype/category-Mn-tests: New file.
28306         * modules/unictype/category-N-tests: New file.
28307         * modules/unictype/category-Nd-tests: New file.
28308         * modules/unictype/category-Nl-tests: New file.
28309         * modules/unictype/category-No-tests: New file.
28310         * modules/unictype/category-P-tests: New file.
28311         * modules/unictype/category-Pc-tests: New file.
28312         * modules/unictype/category-Pd-tests: New file.
28313         * modules/unictype/category-Pe-tests: New file.
28314         * modules/unictype/category-Pf-tests: New file.
28315         * modules/unictype/category-Pi-tests: New file.
28316         * modules/unictype/category-Po-tests: New file.
28317         * modules/unictype/category-Ps-tests: New file.
28318         * modules/unictype/category-S-tests: New file.
28319         * modules/unictype/category-Sc-tests: New file.
28320         * modules/unictype/category-Sk-tests: New file.
28321         * modules/unictype/category-Sm-tests: New file.
28322         * modules/unictype/category-So-tests: New file.
28323         * modules/unictype/category-Z-tests: New file.
28324         * modules/unictype/category-Zl-tests: New file.
28325         * modules/unictype/category-Zp-tests: New file.
28326         * modules/unictype/category-Zs-tests: New file.
28327         * modules/unictype/category-and-not-tests: New file.
28328         * modules/unictype/category-and-tests: New file.
28329         * modules/unictype/category-byname-tests: New file.
28330         * modules/unictype/category-name-tests: New file.
28331         * modules/unictype/category-none-tests: New file.
28332         * modules/unictype/category-of-tests: New file.
28333         * modules/unictype/category-or-tests: New file.
28334         * modules/unictype/category-test-withtable-tests: New file.
28335         * modules/unictype/combining-class-tests: New file.
28336         * modules/unictype/ctype-alnum-tests: New file.
28337         * modules/unictype/ctype-alpha-tests: New file.
28338         * modules/unictype/ctype-blank-tests: New file.
28339         * modules/unictype/ctype-cntrl-tests: New file.
28340         * modules/unictype/ctype-digit-tests: New file.
28341         * modules/unictype/ctype-graph-tests: New file.
28342         * modules/unictype/ctype-lower-tests: New file.
28343         * modules/unictype/ctype-print-tests: New file.
28344         * modules/unictype/ctype-punct-tests: New file.
28345         * modules/unictype/ctype-space-tests: New file.
28346         * modules/unictype/ctype-upper-tests: New file.
28347         * modules/unictype/ctype-xdigit-tests: New file.
28348         * modules/unictype/decimal-digit-tests: New file.
28349         * modules/unictype/digit-tests: New file.
28350         * modules/unictype/mirror-tests: New file.
28351         * modules/unictype/numeric-tests: New file.
28352         * modules/unictype/property-alphabetic-tests: New file.
28353         * modules/unictype/property-ascii-hex-digit-tests: New file.
28354         * modules/unictype/property-bidi-arabic-digit-tests: New file.
28355         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
28356         * modules/unictype/property-bidi-block-separator-tests: New file.
28357         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
28358         * modules/unictype/property-bidi-common-separator-tests: New file.
28359         * modules/unictype/property-bidi-control-tests: New file.
28360         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
28361         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
28362         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
28363         * modules/unictype/property-bidi-european-digit-tests: New file.
28364         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
28365         * modules/unictype/property-bidi-left-to-right-tests: New file.
28366         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
28367         * modules/unictype/property-bidi-other-neutral-tests: New file.
28368         * modules/unictype/property-bidi-pdf-tests: New file.
28369         * modules/unictype/property-bidi-segment-separator-tests: New file.
28370         * modules/unictype/property-bidi-whitespace-tests: New file.
28371         * modules/unictype/property-byname-tests: New file.
28372         * modules/unictype/property-combining-tests: New file.
28373         * modules/unictype/property-composite-tests: New file.
28374         * modules/unictype/property-currency-symbol-tests: New file.
28375         * modules/unictype/property-dash-tests: New file.
28376         * modules/unictype/property-decimal-digit-tests: New file.
28377         * modules/unictype/property-default-ignorable-code-point-tests: New file.
28378         * modules/unictype/property-deprecated-tests: New file.
28379         * modules/unictype/property-diacritic-tests: New file.
28380         * modules/unictype/property-extender-tests: New file.
28381         * modules/unictype/property-format-control-tests: New file.
28382         * modules/unictype/property-grapheme-base-tests: New file.
28383         * modules/unictype/property-grapheme-extend-tests: New file.
28384         * modules/unictype/property-grapheme-link-tests: New file.
28385         * modules/unictype/property-hex-digit-tests: New file.
28386         * modules/unictype/property-hyphen-tests: New file.
28387         * modules/unictype/property-id-continue-tests: New file.
28388         * modules/unictype/property-id-start-tests: New file.
28389         * modules/unictype/property-ideographic-tests: New file.
28390         * modules/unictype/property-ids-binary-operator-tests: New file.
28391         * modules/unictype/property-ids-trinary-operator-tests: New file.
28392         * modules/unictype/property-ignorable-control-tests: New file.
28393         * modules/unictype/property-iso-control-tests: New file.
28394         * modules/unictype/property-join-control-tests: New file.
28395         * modules/unictype/property-left-of-pair-tests: New file.
28396         * modules/unictype/property-line-separator-tests: New file.
28397         * modules/unictype/property-logical-order-exception-tests: New file.
28398         * modules/unictype/property-lowercase-tests: New file.
28399         * modules/unictype/property-math-tests: New file.
28400         * modules/unictype/property-non-break-tests: New file.
28401         * modules/unictype/property-not-a-character-tests: New file.
28402         * modules/unictype/property-numeric-tests: New file.
28403         * modules/unictype/property-other-alphabetic-tests: New file.
28404         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
28405         * modules/unictype/property-other-grapheme-extend-tests: New file.
28406         * modules/unictype/property-other-id-continue-tests: New file.
28407         * modules/unictype/property-other-id-start-tests: New file.
28408         * modules/unictype/property-other-lowercase-tests: New file.
28409         * modules/unictype/property-other-math-tests: New file.
28410         * modules/unictype/property-other-uppercase-tests: New file.
28411         * modules/unictype/property-paired-punctuation-tests: New file.
28412         * modules/unictype/property-paragraph-separator-tests: New file.
28413         * modules/unictype/property-pattern-syntax-tests: New file.
28414         * modules/unictype/property-pattern-white-space-tests: New file.
28415         * modules/unictype/property-private-use-tests: New file.
28416         * modules/unictype/property-punctuation-tests: New file.
28417         * modules/unictype/property-quotation-mark-tests: New file.
28418         * modules/unictype/property-radical-tests: New file.
28419         * modules/unictype/property-sentence-terminal-tests: New file.
28420         * modules/unictype/property-soft-dotted-tests: New file.
28421         * modules/unictype/property-space-tests: New file.
28422         * modules/unictype/property-terminal-punctuation-tests: New file.
28423         * modules/unictype/property-test-tests: New file.
28424         * modules/unictype/property-titlecase-tests: New file.
28425         * modules/unictype/property-unassigned-code-value-tests: New file.
28426         * modules/unictype/property-unified-ideograph-tests: New file.
28427         * modules/unictype/property-uppercase-tests: New file.
28428         * modules/unictype/property-variation-selector-tests: New file.
28429         * modules/unictype/property-white-space-tests: New file.
28430         * modules/unictype/property-xid-continue-tests: New file.
28431         * modules/unictype/property-xid-start-tests: New file.
28432         * modules/unictype/property-zero-width-tests: New file.
28433         * modules/unictype/scripts-tests: New file.
28434         * modules/unictype/syntax-c-ident-tests: New file.
28435         * modules/unictype/syntax-c-whitespace-tests: New file.
28436         * modules/unictype/syntax-java-ident-tests: New file.
28437         * modules/unictype/syntax-java-whitespace-tests: New file.
28438         * tests/unictype/test-bidi_byname.c: New file.
28439         * tests/unictype/test-bidi_name.c: New file.
28440         * tests/unictype/test-bidi_of.c: New file.
28441         * tests/unictype/test-bidi_test.c: New file.
28442         * tests/unictype/test-block_list.c: New file.
28443         * tests/unictype/test-block_of.c: New file.
28444         * tests/unictype/test-block_test.c: New file.
28445         * tests/unictype/test-categ_and.c: New file.
28446         * tests/unictype/test-categ_and_not.c: New file.
28447         * tests/unictype/test-categ_byname.c: New file.
28448         * tests/unictype/test-categ_name.c: New file.
28449         * tests/unictype/test-categ_none.c: New file.
28450         * tests/unictype/test-categ_of.c: New file.
28451         * tests/unictype/test-categ_or.c: New file.
28452         * tests/unictype/test-categ_test_withtable.c: New file.
28453         * tests/unictype/test-combining.c: New file.
28454         * tests/unictype/test-decdigit.c: New file.
28455         * tests/unictype/test-digit.c: New file.
28456         * tests/unictype/test-mirror.c: New file.
28457         * tests/unictype/test-numeric.c: New file.
28458         * tests/unictype/test-pr_byname.c: New file.
28459         * tests/unictype/test-pr_test.c: New file.
28460         * tests/unictype/test-predicate-part1.h: New file.
28461         * tests/unictype/test-predicate-part2.h: New file.
28462         * tests/unictype/test-scripts.c: New file.
28463         * tests/unictype/test-sy_c_ident.c: New file.
28464         * tests/unictype/test-sy_java_ident.c: New file.
28465
28466         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
28467         for Unicode 5.0.0.
28468         * tests/unictype/test-categ_Cc.c: Likewise.
28469         * tests/unictype/test-categ_Cf.c: Likewise.
28470         * tests/unictype/test-categ_Cn.c: Likewise.
28471         * tests/unictype/test-categ_Co.c: Likewise.
28472         * tests/unictype/test-categ_Cs.c: Likewise.
28473         * tests/unictype/test-categ_L.c: Likewise.
28474         * tests/unictype/test-categ_Ll.c: Likewise.
28475         * tests/unictype/test-categ_Lm.c: Likewise.
28476         * tests/unictype/test-categ_Lo.c: Likewise.
28477         * tests/unictype/test-categ_Lt.c: Likewise.
28478         * tests/unictype/test-categ_Lu.c: Likewise.
28479         * tests/unictype/test-categ_M.c: Likewise.
28480         * tests/unictype/test-categ_Mc.c: Likewise.
28481         * tests/unictype/test-categ_Me.c: Likewise.
28482         * tests/unictype/test-categ_Mn.c: Likewise.
28483         * tests/unictype/test-categ_N.c: Likewise.
28484         * tests/unictype/test-categ_Nd.c: Likewise.
28485         * tests/unictype/test-categ_Nl.c: Likewise.
28486         * tests/unictype/test-categ_No.c: Likewise.
28487         * tests/unictype/test-categ_P.c: Likewise.
28488         * tests/unictype/test-categ_Pc.c: Likewise.
28489         * tests/unictype/test-categ_Pd.c: Likewise.
28490         * tests/unictype/test-categ_Pe.c: Likewise.
28491         * tests/unictype/test-categ_Pf.c: Likewise.
28492         * tests/unictype/test-categ_Pi.c: Likewise.
28493         * tests/unictype/test-categ_Po.c: Likewise.
28494         * tests/unictype/test-categ_Ps.c: Likewise.
28495         * tests/unictype/test-categ_S.c: Likewise.
28496         * tests/unictype/test-categ_Sc.c: Likewise.
28497         * tests/unictype/test-categ_Sk.c: Likewise.
28498         * tests/unictype/test-categ_Sm.c: Likewise.
28499         * tests/unictype/test-categ_So.c: Likewise.
28500         * tests/unictype/test-categ_Z.c: Likewise.
28501         * tests/unictype/test-categ_Zl.c: Likewise.
28502         * tests/unictype/test-categ_Zp.c: Likewise.
28503         * tests/unictype/test-categ_Zs.c: Likewise.
28504         * tests/unictype/test-ctype_alnum.c: Likewise.
28505         * tests/unictype/test-ctype_alpha.c: Likewise.
28506         * tests/unictype/test-ctype_blank.c: Likewise.
28507         * tests/unictype/test-ctype_cntrl.c: Likewise.
28508         * tests/unictype/test-ctype_digit.c: Likewise.
28509         * tests/unictype/test-ctype_graph.c: Likewise.
28510         * tests/unictype/test-ctype_lower.c: Likewise.
28511         * tests/unictype/test-ctype_print.c: Likewise.
28512         * tests/unictype/test-ctype_punct.c: Likewise.
28513         * tests/unictype/test-ctype_space.c: Likewise.
28514         * tests/unictype/test-ctype_upper.c: Likewise.
28515         * tests/unictype/test-ctype_xdigit.c: Likewise.
28516         * tests/unictype/test-decdigit.h: Likewise.
28517         * tests/unictype/test-digit.h: Likewise.
28518         * tests/unictype/test-numeric.h: Likewise.
28519         * tests/unictype/test-pr_alphabetic.c: Likewise.
28520         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
28521         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
28522         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
28523         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
28524         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
28525         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
28526         * tests/unictype/test-pr_bidi_control.c: Likewise.
28527         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
28528         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
28529         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
28530         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
28531         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
28532         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
28533         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
28534         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
28535         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
28536         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
28537         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
28538         * tests/unictype/test-pr_combining.c: Likewise.
28539         * tests/unictype/test-pr_composite.c: Likewise.
28540         * tests/unictype/test-pr_currency_symbol.c: Likewise.
28541         * tests/unictype/test-pr_dash.c: Likewise.
28542         * tests/unictype/test-pr_decimal_digit.c: Likewise.
28543         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
28544         * tests/unictype/test-pr_deprecated.c: Likewise.
28545         * tests/unictype/test-pr_diacritic.c: Likewise.
28546         * tests/unictype/test-pr_extender.c: Likewise.
28547         * tests/unictype/test-pr_format_control.c: Likewise.
28548         * tests/unictype/test-pr_grapheme_base.c: Likewise.
28549         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
28550         * tests/unictype/test-pr_grapheme_link.c: Likewise.
28551         * tests/unictype/test-pr_hex_digit.c: Likewise.
28552         * tests/unictype/test-pr_hyphen.c: Likewise.
28553         * tests/unictype/test-pr_id_continue.c: Likewise.
28554         * tests/unictype/test-pr_id_start.c: Likewise.
28555         * tests/unictype/test-pr_ideographic.c: Likewise.
28556         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
28557         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
28558         * tests/unictype/test-pr_ignorable_control.c: Likewise.
28559         * tests/unictype/test-pr_iso_control.c: Likewise.
28560         * tests/unictype/test-pr_join_control.c: Likewise.
28561         * tests/unictype/test-pr_left_of_pair.c: Likewise.
28562         * tests/unictype/test-pr_line_separator.c: Likewise.
28563         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
28564         * tests/unictype/test-pr_lowercase.c: Likewise.
28565         * tests/unictype/test-pr_math.c: Likewise.
28566         * tests/unictype/test-pr_non_break.c: Likewise.
28567         * tests/unictype/test-pr_not_a_character.c: Likewise.
28568         * tests/unictype/test-pr_numeric.c: Likewise.
28569         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
28570         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
28571         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
28572         * tests/unictype/test-pr_other_id_continue.c: Likewise.
28573         * tests/unictype/test-pr_other_id_start.c: Likewise.
28574         * tests/unictype/test-pr_other_lowercase.c: Likewise.
28575         * tests/unictype/test-pr_other_math.c: Likewise.
28576         * tests/unictype/test-pr_other_uppercase.c: Likewise.
28577         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
28578         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
28579         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
28580         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
28581         * tests/unictype/test-pr_private_use.c: Likewise.
28582         * tests/unictype/test-pr_punctuation.c: Likewise.
28583         * tests/unictype/test-pr_quotation_mark.c: Likewise.
28584         * tests/unictype/test-pr_radical.c: Likewise.
28585         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
28586         * tests/unictype/test-pr_soft_dotted.c: Likewise.
28587         * tests/unictype/test-pr_space.c: Likewise.
28588         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
28589         * tests/unictype/test-pr_titlecase.c: Likewise.
28590         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
28591         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
28592         * tests/unictype/test-pr_uppercase.c: Likewise.
28593         * tests/unictype/test-pr_variation_selector.c: Likewise.
28594         * tests/unictype/test-pr_white_space.c: Likewise.
28595         * tests/unictype/test-pr_xid_continue.c: Likewise.
28596         * tests/unictype/test-pr_xid_start.c: Likewise.
28597         * tests/unictype/test-pr_zero_width.c: Likewise.
28598         * tests/unictype/test-sy_c_whitespace.c: Likewise.
28599         * tests/unictype/test-sy_java_whitespace.c: Likewise.
28600
28601 2007-11-12  Bruno Haible  <bruno@clisp.org>
28602
28603         Unicode character classification functions.
28604         * lib/unictype.h: New file.
28605         * modules/unictype/base: New file.
28606         * modules/unictype/category-L: New file.
28607         * modules/unictype/category-Lu: New file.
28608         * modules/unictype/category-Ll: New file.
28609         * modules/unictype/category-Lt: New file.
28610         * modules/unictype/category-Lm: New file.
28611         * modules/unictype/category-Lo: New file.
28612         * modules/unictype/category-M: New file.
28613         * modules/unictype/category-Mn: New file.
28614         * modules/unictype/category-Mc: New file.
28615         * modules/unictype/category-Me: New file.
28616         * modules/unictype/category-N: New file.
28617         * modules/unictype/category-Nd: New file.
28618         * modules/unictype/category-Nl: New file.
28619         * modules/unictype/category-No: New file.
28620         * modules/unictype/category-P: New file.
28621         * modules/unictype/category-Pc: New file.
28622         * modules/unictype/category-Pd: New file.
28623         * modules/unictype/category-Ps: New file.
28624         * modules/unictype/category-Pe: New file.
28625         * modules/unictype/category-Pi: New file.
28626         * modules/unictype/category-Pf: New file.
28627         * modules/unictype/category-Po: New file.
28628         * modules/unictype/category-S: New file.
28629         * modules/unictype/category-Sm: New file.
28630         * modules/unictype/category-Sc: New file.
28631         * modules/unictype/category-Sk: New file.
28632         * modules/unictype/category-So: New file.
28633         * modules/unictype/category-Z: New file.
28634         * modules/unictype/category-Zs: New file.
28635         * modules/unictype/category-Zl: New file.
28636         * modules/unictype/category-Zp: New file.
28637         * modules/unictype/category-C: New file.
28638         * modules/unictype/category-Cc: New file.
28639         * modules/unictype/category-Cf: New file.
28640         * modules/unictype/category-Cs: New file.
28641         * modules/unictype/category-Co: New file.
28642         * modules/unictype/category-Cn: New file.
28643         * modules/unictype/category-or: New file.
28644         * modules/unictype/category-of: New file.
28645         * modules/unictype/category-test: New file.
28646         * modules/unictype/category-test-withtable: New file.
28647         * modules/unictype/category-byname: New file.
28648         * modules/unictype/category-none: New file.
28649         * modules/unictype/category-and: New file.
28650         * modules/unictype/category-and-not: New file.
28651         * modules/unictype/category-name: New file.
28652         * modules/unictype/combining-class: New file.
28653         * modules/unictype/category-all: New file.
28654         * modules/unictype/bidicategory-all: New file.
28655         * modules/unictype/bidicategory-byname: New file.
28656         * modules/unictype/bidicategory-name: New file.
28657         * modules/unictype/bidicategory-of: New file.
28658         * modules/unictype/bidicategory-test: New file.
28659         * modules/unictype/decimal-digit: New file.
28660         * modules/unictype/digit: New file.
28661         * modules/unictype/numeric: New file.
28662         * modules/unictype/mirror: New file.
28663         * modules/unictype/property-white-space: New file.
28664         * modules/unictype/property-alphabetic: New file.
28665         * modules/unictype/property-other-alphabetic: New file.
28666         * modules/unictype/property-not-a-character: New file.
28667         * modules/unictype/property-default-ignorable-code-point: New file.
28668         * modules/unictype/property-other-default-ignorable-code-point: New
28669         file.
28670         * modules/unictype/property-deprecated: New file.
28671         * modules/unictype/property-logical-order-exception: New file.
28672         * modules/unictype/property-variation-selector: New file.
28673         * modules/unictype/property-private-use: New file.
28674         * modules/unictype/property-unassigned-code-value: New file.
28675         * modules/unictype/property-uppercase: New file.
28676         * modules/unictype/property-other-uppercase: New file.
28677         * modules/unictype/property-lowercase: New file.
28678         * modules/unictype/property-other-lowercase: New file.
28679         * modules/unictype/property-titlecase: New file.
28680         * modules/unictype/property-soft-dotted: New file.
28681         * modules/unictype/property-id-start: New file.
28682         * modules/unictype/property-other-id-start: New file.
28683         * modules/unictype/property-id-continue: New file.
28684         * modules/unictype/property-other-id-continue: New file.
28685         * modules/unictype/property-xid-start: New file.
28686         * modules/unictype/property-xid-continue: New file.
28687         * modules/unictype/property-pattern-white-space: New file.
28688         * modules/unictype/property-pattern-syntax: New file.
28689         * modules/unictype/property-join-control: New file.
28690         * modules/unictype/property-grapheme-base: New file.
28691         * modules/unictype/property-grapheme-extend: New file.
28692         * modules/unictype/property-other-grapheme-extend: New file.
28693         * modules/unictype/property-grapheme-link: New file.
28694         * modules/unictype/property-bidi-control: New file.
28695         * modules/unictype/property-bidi-left-to-right: New file.
28696         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
28697         * modules/unictype/property-bidi-arabic-right-to-left: New file.
28698         * modules/unictype/property-bidi-european-digit: New file.
28699         * modules/unictype/property-bidi-eur-num-separator: New file.
28700         * modules/unictype/property-bidi-eur-num-terminator: New file.
28701         * modules/unictype/property-bidi-arabic-digit: New file.
28702         * modules/unictype/property-bidi-common-separator: New file.
28703         * modules/unictype/property-bidi-block-separator: New file.
28704         * modules/unictype/property-bidi-segment-separator: New file.
28705         * modules/unictype/property-bidi-whitespace: New file.
28706         * modules/unictype/property-bidi-non-spacing-mark: New file.
28707         * modules/unictype/property-bidi-boundary-neutral: New file.
28708         * modules/unictype/property-bidi-pdf: New file.
28709         * modules/unictype/property-bidi-embedding-or-override: New file.
28710         * modules/unictype/property-bidi-other-neutral: New file.
28711         * modules/unictype/property-hex-digit: New file.
28712         * modules/unictype/property-ascii-hex-digit: New file.
28713         * modules/unictype/property-ideographic: New file.
28714         * modules/unictype/property-unified-ideograph: New file.
28715         * modules/unictype/property-radical: New file.
28716         * modules/unictype/property-ids-binary-operator: New file.
28717         * modules/unictype/property-ids-trinary-operator: New file.
28718         * modules/unictype/property-zero-width: New file.
28719         * modules/unictype/property-space: New file.
28720         * modules/unictype/property-non-break: New file.
28721         * modules/unictype/property-iso-control: New file.
28722         * modules/unictype/property-format-control: New file.
28723         * modules/unictype/property-dash: New file.
28724         * modules/unictype/property-hyphen: New file.
28725         * modules/unictype/property-punctuation: New file.
28726         * modules/unictype/property-line-separator: New file.
28727         * modules/unictype/property-paragraph-separator: New file.
28728         * modules/unictype/property-quotation-mark: New file.
28729         * modules/unictype/property-sentence-terminal: New file.
28730         * modules/unictype/property-terminal-punctuation: New file.
28731         * modules/unictype/property-currency-symbol: New file.
28732         * modules/unictype/property-math: New file.
28733         * modules/unictype/property-other-math: New file.
28734         * modules/unictype/property-paired-punctuation: New file.
28735         * modules/unictype/property-left-of-pair: New file.
28736         * modules/unictype/property-combining: New file.
28737         * modules/unictype/property-composite: New file.
28738         * modules/unictype/property-decimal-digit: New file.
28739         * modules/unictype/property-numeric: New file.
28740         * modules/unictype/property-diacritic: New file.
28741         * modules/unictype/property-extender: New file.
28742         * modules/unictype/property-ignorable-control: New file.
28743         * modules/unictype/property-test: New file.
28744         * modules/unictype/property-byname: New file.
28745         * modules/unictype/property-all: New file.
28746         * modules/unictype/scripts: New file.
28747         * modules/unictype/scripts-all: New file.
28748         * modules/unictype/block-of: New file.
28749         * modules/unictype/block-test: New file.
28750         * modules/unictype/block-list: New file.
28751         * modules/unictype/block-all: New file.
28752         * modules/unictype/syntax-c-whitespace: New file.
28753         * modules/unictype/syntax-java-whitespace: New file.
28754         * modules/unictype/syntax-c-ident: New file.
28755         * modules/unictype/syntax-java-ident: New file.
28756         * modules/unictype/ctype-alnum: New file.
28757         * modules/unictype/ctype-alpha: New file.
28758         * modules/unictype/ctype-cntrl: New file.
28759         * modules/unictype/ctype-digit: New file.
28760         * modules/unictype/ctype-graph: New file.
28761         * modules/unictype/ctype-lower: New file.
28762         * modules/unictype/ctype-print: New file.
28763         * modules/unictype/ctype-punct: New file.
28764         * modules/unictype/ctype-space: New file.
28765         * modules/unictype/ctype-upper: New file.
28766         * modules/unictype/ctype-xdigit: New file.
28767         * modules/unictype/ctype-blank: New file.
28768         * lib/unictype/bidi_byname.c: New file.
28769         * lib/unictype/bidi_name.c: New file.
28770         * lib/unictype/bidi_of.c: New file.
28771         * lib/unictype/bidi_test.c: New file.
28772         * lib/unictype/bitmap.h: New file.
28773         * lib/unictype/block_test.c: New file.
28774         * lib/unictype/blocks.c: New file.
28775         * lib/unictype/categ_C.c: New file.
28776         * lib/unictype/categ_Cc.c: New file.
28777         * lib/unictype/categ_Cf.c: New file.
28778         * lib/unictype/categ_Cn.c: New file.
28779         * lib/unictype/categ_Co.c: New file.
28780         * lib/unictype/categ_Cs.c: New file.
28781         * lib/unictype/categ_L.c: New file.
28782         * lib/unictype/categ_Ll.c: New file.
28783         * lib/unictype/categ_Lm.c: New file.
28784         * lib/unictype/categ_Lo.c: New file.
28785         * lib/unictype/categ_Lt.c: New file.
28786         * lib/unictype/categ_Lu.c: New file.
28787         * lib/unictype/categ_M.c: New file.
28788         * lib/unictype/categ_Mc.c: New file.
28789         * lib/unictype/categ_Me.c: New file.
28790         * lib/unictype/categ_Mn.c: New file.
28791         * lib/unictype/categ_N.c: New file.
28792         * lib/unictype/categ_Nd.c: New file.
28793         * lib/unictype/categ_Nl.c: New file.
28794         * lib/unictype/categ_No.c: New file.
28795         * lib/unictype/categ_P.c: New file.
28796         * lib/unictype/categ_Pc.c: New file.
28797         * lib/unictype/categ_Pd.c: New file.
28798         * lib/unictype/categ_Pe.c: New file.
28799         * lib/unictype/categ_Pf.c: New file.
28800         * lib/unictype/categ_Pi.c: New file.
28801         * lib/unictype/categ_Po.c: New file.
28802         * lib/unictype/categ_Ps.c: New file.
28803         * lib/unictype/categ_S.c: New file.
28804         * lib/unictype/categ_Sc.c: New file.
28805         * lib/unictype/categ_Sk.c: New file.
28806         * lib/unictype/categ_Sm.c: New file.
28807         * lib/unictype/categ_So.c: New file.
28808         * lib/unictype/categ_Z.c: New file.
28809         * lib/unictype/categ_Zl.c: New file.
28810         * lib/unictype/categ_Zp.c: New file.
28811         * lib/unictype/categ_Zs.c: New file.
28812         * lib/unictype/categ_and.c: New file.
28813         * lib/unictype/categ_and_not.c: New file.
28814         * lib/unictype/categ_byname.c: New file.
28815         * lib/unictype/categ_name.c: New file.
28816         * lib/unictype/categ_none.c: New file.
28817         * lib/unictype/categ_of.c: New file.
28818         * lib/unictype/categ_or.c: New file.
28819         * lib/unictype/categ_test.c: New file.
28820         * lib/unictype/combining.c: New file.
28821         * lib/unictype/ctype_alnum.c: New file.
28822         * lib/unictype/ctype_alpha.c: New file.
28823         * lib/unictype/ctype_blank.c: New file.
28824         * lib/unictype/ctype_cntrl.c: New file.
28825         * lib/unictype/ctype_digit.c: New file.
28826         * lib/unictype/ctype_graph.c: New file.
28827         * lib/unictype/ctype_lower.c: New file.
28828         * lib/unictype/ctype_print.c: New file.
28829         * lib/unictype/ctype_punct.c: New file.
28830         * lib/unictype/ctype_space.c: New file.
28831         * lib/unictype/ctype_upper.c: New file.
28832         * lib/unictype/ctype_xdigit.c: New file.
28833         * lib/unictype/decdigit.c: New file.
28834         * lib/unictype/digit.c: New file.
28835         * lib/unictype/identsyntaxmap.h: New file.
28836         * lib/unictype/mirror.c: New file.
28837         * lib/unictype/numeric.c: New file.
28838         * lib/unictype/pr_alphabetic.c: New file.
28839         * lib/unictype/pr_ascii_hex_digit.c: New file.
28840         * lib/unictype/pr_bidi_arabic_digit.c: New file.
28841         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
28842         * lib/unictype/pr_bidi_block_separator.c: New file.
28843         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
28844         * lib/unictype/pr_bidi_common_separator.c: New file.
28845         * lib/unictype/pr_bidi_control.c: New file.
28846         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
28847         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
28848         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
28849         * lib/unictype/pr_bidi_european_digit.c: New file.
28850         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
28851         * lib/unictype/pr_bidi_left_to_right.c: New file.
28852         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
28853         * lib/unictype/pr_bidi_other_neutral.c: New file.
28854         * lib/unictype/pr_bidi_pdf.c: New file.
28855         * lib/unictype/pr_bidi_segment_separator.c: New file.
28856         * lib/unictype/pr_bidi_whitespace.c: New file.
28857         * lib/unictype/pr_byname.c: New file.
28858         * lib/unictype/pr_byname.gperf: New file.
28859         * lib/unictype/pr_combining.c: New file.
28860         * lib/unictype/pr_composite.c: New file.
28861         * lib/unictype/pr_currency_symbol.c: New file.
28862         * lib/unictype/pr_dash.c: New file.
28863         * lib/unictype/pr_decimal_digit.c: New file.
28864         * lib/unictype/pr_default_ignorable_code_point.c: New file.
28865         * lib/unictype/pr_deprecated.c: New file.
28866         * lib/unictype/pr_diacritic.c: New file.
28867         * lib/unictype/pr_extender.c: New file.
28868         * lib/unictype/pr_format_control.c: New file.
28869         * lib/unictype/pr_grapheme_base.c: New file.
28870         * lib/unictype/pr_grapheme_extend.c: New file.
28871         * lib/unictype/pr_grapheme_link.c: New file.
28872         * lib/unictype/pr_hex_digit.c: New file.
28873         * lib/unictype/pr_hyphen.c: New file.
28874         * lib/unictype/pr_id_continue.c: New file.
28875         * lib/unictype/pr_id_start.c: New file.
28876         * lib/unictype/pr_ideographic.c: New file.
28877         * lib/unictype/pr_ids_binary_operator.c: New file.
28878         * lib/unictype/pr_ids_trinary_operator.c: New file.
28879         * lib/unictype/pr_ignorable_control.c: New file.
28880         * lib/unictype/pr_iso_control.c: New file.
28881         * lib/unictype/pr_join_control.c: New file.
28882         * lib/unictype/pr_left_of_pair.c: New file.
28883         * lib/unictype/pr_line_separator.c: New file.
28884         * lib/unictype/pr_logical_order_exception.c: New file.
28885         * lib/unictype/pr_lowercase.c: New file.
28886         * lib/unictype/pr_math.c: New file.
28887         * lib/unictype/pr_non_break.c: New file.
28888         * lib/unictype/pr_not_a_character.c: New file.
28889         * lib/unictype/pr_numeric.c: New file.
28890         * lib/unictype/pr_other_alphabetic.c: New file.
28891         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
28892         * lib/unictype/pr_other_grapheme_extend.c: New file.
28893         * lib/unictype/pr_other_id_continue.c: New file.
28894         * lib/unictype/pr_other_id_start.c: New file.
28895         * lib/unictype/pr_other_lowercase.c: New file.
28896         * lib/unictype/pr_other_math.c: New file.
28897         * lib/unictype/pr_other_uppercase.c: New file.
28898         * lib/unictype/pr_paired_punctuation.c: New file.
28899         * lib/unictype/pr_paragraph_separator.c: New file.
28900         * lib/unictype/pr_pattern_syntax.c: New file.
28901         * lib/unictype/pr_pattern_white_space.c: New file.
28902         * lib/unictype/pr_private_use.c: New file.
28903         * lib/unictype/pr_punctuation.c: New file.
28904         * lib/unictype/pr_quotation_mark.c: New file.
28905         * lib/unictype/pr_radical.c: New file.
28906         * lib/unictype/pr_sentence_terminal.c: New file.
28907         * lib/unictype/pr_soft_dotted.c: New file.
28908         * lib/unictype/pr_space.c: New file.
28909         * lib/unictype/pr_terminal_punctuation.c: New file.
28910         * lib/unictype/pr_test.c: New file.
28911         * lib/unictype/pr_titlecase.c: New file.
28912         * lib/unictype/pr_unassigned_code_value.c: New file.
28913         * lib/unictype/pr_unified_ideograph.c: New file.
28914         * lib/unictype/pr_uppercase.c: New file.
28915         * lib/unictype/pr_variation_selector.c: New file.
28916         * lib/unictype/pr_white_space.c: New file.
28917         * lib/unictype/pr_xid_continue.c: New file.
28918         * lib/unictype/pr_xid_start.c: New file.
28919         * lib/unictype/pr_zero_width.c: New file.
28920         * lib/unictype/scripts.c: New file.
28921         * lib/unictype/sy_c_ident.c: New file.
28922         * lib/unictype/sy_c_whitespace.c: New file.
28923         * lib/unictype/sy_java_ident.c: New file.
28924         * lib/unictype/sy_java_whitespace.c: New file.
28925
28926         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
28927         Unicode 5.0.0.
28928         * lib/unictype/blocks.h: Likewise.
28929         * lib/unictype/categ_C.h: Likewise.
28930         * lib/unictype/categ_Cc.h: Likewise.
28931         * lib/unictype/categ_Cf.h: Likewise.
28932         * lib/unictype/categ_Cn.h: Likewise.
28933         * lib/unictype/categ_Co.h: Likewise.
28934         * lib/unictype/categ_Cs.h: Likewise.
28935         * lib/unictype/categ_L.h: Likewise.
28936         * lib/unictype/categ_Ll.h: Likewise.
28937         * lib/unictype/categ_Lm.h: Likewise.
28938         * lib/unictype/categ_Lo.h: Likewise.
28939         * lib/unictype/categ_Lt.h: Likewise.
28940         * lib/unictype/categ_Lu.h: Likewise.
28941         * lib/unictype/categ_M.h: Likewise.
28942         * lib/unictype/categ_Mc.h: Likewise.
28943         * lib/unictype/categ_Me.h: Likewise.
28944         * lib/unictype/categ_Mn.h: Likewise.
28945         * lib/unictype/categ_N.h: Likewise.
28946         * lib/unictype/categ_Nd.h: Likewise.
28947         * lib/unictype/categ_Nl.h: Likewise.
28948         * lib/unictype/categ_No.h: Likewise.
28949         * lib/unictype/categ_P.h: Likewise.
28950         * lib/unictype/categ_Pc.h: Likewise.
28951         * lib/unictype/categ_Pd.h: Likewise.
28952         * lib/unictype/categ_Pe.h: Likewise.
28953         * lib/unictype/categ_Pf.h: Likewise.
28954         * lib/unictype/categ_Pi.h: Likewise.
28955         * lib/unictype/categ_Po.h: Likewise.
28956         * lib/unictype/categ_Ps.h: Likewise.
28957         * lib/unictype/categ_S.h: Likewise.
28958         * lib/unictype/categ_Sc.h: Likewise.
28959         * lib/unictype/categ_Sk.h: Likewise.
28960         * lib/unictype/categ_Sm.h: Likewise.
28961         * lib/unictype/categ_So.h: Likewise.
28962         * lib/unictype/categ_Z.h: Likewise.
28963         * lib/unictype/categ_Zl.h: Likewise.
28964         * lib/unictype/categ_Zp.h: Likewise.
28965         * lib/unictype/categ_Zs.h: Likewise.
28966         * lib/unictype/categ_of.h: Likewise.
28967         * lib/unictype/combining.h: Likewise.
28968         * lib/unictype/ctype_alnum.h: Likewise.
28969         * lib/unictype/ctype_alpha.h: Likewise.
28970         * lib/unictype/ctype_blank.h: Likewise.
28971         * lib/unictype/ctype_cntrl.h: Likewise.
28972         * lib/unictype/ctype_digit.h: Likewise.
28973         * lib/unictype/ctype_graph.h: Likewise.
28974         * lib/unictype/ctype_lower.h: Likewise.
28975         * lib/unictype/ctype_print.h: Likewise.
28976         * lib/unictype/ctype_punct.h: Likewise.
28977         * lib/unictype/ctype_space.h: Likewise.
28978         * lib/unictype/ctype_upper.h: Likewise.
28979         * lib/unictype/ctype_xdigit.h: Likewise.
28980         * lib/unictype/decdigit.h: Likewise.
28981         * lib/unictype/digit.h: Likewise.
28982         * lib/unictype/mirror.h: Likewise.
28983         * lib/unictype/numeric.h: Likewise.
28984         * lib/unictype/pr_alphabetic.h: Likewise.
28985         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
28986         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
28987         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
28988         * lib/unictype/pr_bidi_block_separator.h: Likewise.
28989         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
28990         * lib/unictype/pr_bidi_common_separator.h: Likewise.
28991         * lib/unictype/pr_bidi_control.h: Likewise.
28992         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
28993         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
28994         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
28995         * lib/unictype/pr_bidi_european_digit.h: Likewise.
28996         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
28997         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
28998         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
28999         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
29000         * lib/unictype/pr_bidi_pdf.h: Likewise.
29001         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
29002         * lib/unictype/pr_bidi_whitespace.h: Likewise.
29003         * lib/unictype/pr_combining.h: Likewise.
29004         * lib/unictype/pr_composite.h: Likewise.
29005         * lib/unictype/pr_currency_symbol.h: Likewise.
29006         * lib/unictype/pr_dash.h: Likewise.
29007         * lib/unictype/pr_decimal_digit.h: Likewise.
29008         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
29009         * lib/unictype/pr_deprecated.h: Likewise.
29010         * lib/unictype/pr_diacritic.h: Likewise.
29011         * lib/unictype/pr_extender.h: Likewise.
29012         * lib/unictype/pr_format_control.h: Likewise.
29013         * lib/unictype/pr_grapheme_base.h: Likewise.
29014         * lib/unictype/pr_grapheme_extend.h: Likewise.
29015         * lib/unictype/pr_grapheme_link.h: Likewise.
29016         * lib/unictype/pr_hex_digit.h: Likewise.
29017         * lib/unictype/pr_hyphen.h: Likewise.
29018         * lib/unictype/pr_id_continue.h: Likewise.
29019         * lib/unictype/pr_id_start.h: Likewise.
29020         * lib/unictype/pr_ideographic.h: Likewise.
29021         * lib/unictype/pr_ids_binary_operator.h: Likewise.
29022         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
29023         * lib/unictype/pr_ignorable_control.h: Likewise.
29024         * lib/unictype/pr_iso_control.h: Likewise.
29025         * lib/unictype/pr_join_control.h: Likewise.
29026         * lib/unictype/pr_left_of_pair.h: Likewise.
29027         * lib/unictype/pr_line_separator.h: Likewise.
29028         * lib/unictype/pr_logical_order_exception.h: Likewise.
29029         * lib/unictype/pr_lowercase.h: Likewise.
29030         * lib/unictype/pr_math.h: Likewise.
29031         * lib/unictype/pr_non_break.h: Likewise.
29032         * lib/unictype/pr_not_a_character.h: Likewise.
29033         * lib/unictype/pr_numeric.h: Likewise.
29034         * lib/unictype/pr_other_alphabetic.h: Likewise.
29035         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
29036         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
29037         * lib/unictype/pr_other_id_continue.h: Likewise.
29038         * lib/unictype/pr_other_id_start.h: Likewise.
29039         * lib/unictype/pr_other_lowercase.h: Likewise.
29040         * lib/unictype/pr_other_math.h: Likewise.
29041         * lib/unictype/pr_other_uppercase.h: Likewise.
29042         * lib/unictype/pr_paired_punctuation.h: Likewise.
29043         * lib/unictype/pr_paragraph_separator.h: Likewise.
29044         * lib/unictype/pr_pattern_syntax.h: Likewise.
29045         * lib/unictype/pr_pattern_white_space.h: Likewise.
29046         * lib/unictype/pr_private_use.h: Likewise.
29047         * lib/unictype/pr_punctuation.h: Likewise.
29048         * lib/unictype/pr_quotation_mark.h: Likewise.
29049         * lib/unictype/pr_radical.h: Likewise.
29050         * lib/unictype/pr_sentence_terminal.h: Likewise.
29051         * lib/unictype/pr_soft_dotted.h: Likewise.
29052         * lib/unictype/pr_space.h: Likewise.
29053         * lib/unictype/pr_terminal_punctuation.h: Likewise.
29054         * lib/unictype/pr_titlecase.h: Likewise.
29055         * lib/unictype/pr_unassigned_code_value.h: Likewise.
29056         * lib/unictype/pr_unified_ideograph.h: Likewise.
29057         * lib/unictype/pr_uppercase.h: Likewise.
29058         * lib/unictype/pr_variation_selector.h: Likewise.
29059         * lib/unictype/pr_white_space.h: Likewise.
29060         * lib/unictype/pr_xid_continue.h: Likewise.
29061         * lib/unictype/pr_xid_start.h: Likewise.
29062         * lib/unictype/pr_zero_width.h: Likewise.
29063         * lib/unictype/scripts.h: Likewise.
29064         * lib/unictype/scripts_byname.gperf: Likewise.
29065         * lib/unictype/sy_c_ident.h: Likewise.
29066         * lib/unictype/sy_c_whitespace.h: Likewise.
29067         * lib/unictype/sy_java_ident.h: Likewise.
29068         * lib/unictype/sy_java_whitespace.h: Likewise.
29069
29070         * lib/unictype/Makefile: New file.
29071         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
29072         glibc.
29073         * lib/unictype/3level.h: New file, copied from glibc.
29074         * lib/unictype/3levelbit.h: New file.
29075
29076 2007-11-11  Bruno Haible  <bruno@clisp.org>
29077
29078         * modules/gperf: New file.
29079         * modules/iconv_open (Depends-on): Add it.
29080         (Makefile.am): Remove the GPERF definition.
29081
29082 2007-11-11  Bruno Haible  <bruno@clisp.org>
29083
29084         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
29085         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
29086
29087 2007-11-11  Bruno Haible  <bruno@clisp.org>
29088
29089         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
29090         (usage): Remove function.
29091
29092 2007-11-11  Bruno Haible  <bruno@clisp.org>
29093
29094         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
29095         gl_FUNC_CEILF_LIBS.
29096         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
29097         gl_FUNC_CEIL_LIBS.
29098         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
29099         gl_FUNC_CEILL_LIBS.
29100         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
29101         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
29102         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
29103
29104 2007-11-11  Bruno Haible  <bruno@clisp.org>
29105
29106         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
29107         roundf were declared but do not exist on functions.
29108         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
29109         roundl were declared but do not exist on functions.
29110         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
29111         HAVE_FLOORL_AND_CEILL, respectively.
29112         Needed for Sun C on Solaris 10.
29113
29114 2007-11-11  Bruno Haible  <bruno@clisp.org>
29115
29116         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
29117         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
29118         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
29119         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
29120         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
29121         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
29122         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
29123         HAVE_DECL_ROUNDF.
29124         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
29125         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
29126         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
29127         of HAVE_DECL_ROUND*.
29128         * modules/math (Makefile.am): Update.
29129
29130 2007-11-10  Bruno Haible  <bruno@clisp.org>
29131
29132         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
29133         ptrdiff_t as m4/intl.m4.
29134
29135 2007-11-10  Jim Meyering  <meyering@redhat.com>
29136
29137         Avoid link failure for the argmatch test.
29138         * tests/test-argmatch.c (usage): Define function to avoid a link
29139         failure: argmatch_die requires a usage function.
29140
29141 2007-11-09  Bruno Haible  <bruno@clisp.org>
29142
29143         * doc/functions/snprintf.texi: Mention BeOS deficiency.
29144         * doc/functions/vsnprintf.texi: Likewise.
29145         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
29146         with a size argument < 2.
29147
29148 2007-11-09  Bruno Haible  <bruno@clisp.org>
29149
29150         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
29151         buffer. Fixes an inefficiency introduced on 2007-11-03.
29152
29153 2007-11-09  Bruno Haible  <bruno@clisp.org>
29154
29155         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
29156         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
29157
29158 2007-11-08  Jim Meyering  <meyering@redhat.com>
29159
29160         Change cache variable name prefix "jm_" to "gl_" everywhere.
29161         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
29162         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
29163         * m4/uptime.m4: s/gl_/jm_/
29164
29165 2007-11-07  Bruno Haible  <bruno@clisp.org>
29166
29167         Update to GNU gettext 0.17.
29168         * m4/intl.m4: Update to GNU gettext 0.17.
29169         * m4/po.m4: Likewise.
29170         * modules/gettext (Files): Remove m4/ulonglong.m4.
29171         (configure.ac): Require gettext infrastructure from version 0.17.
29172
29173 2007-11-06  Bruno Haible  <bruno@clisp.org>
29174
29175         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
29176         symbolic values are not defined in a public header.
29177         * lib/freadable.c (freadable) [QNX]: Likewise.
29178         * lib/freadahead.c (freadahead) [QNX]: Likewise.
29179         * lib/freading.c (freading) [QNX]: Likewise.
29180         * lib/fseterr.c (fseterr) [QNX]: Likewise.
29181         * lib/fwritable.c (fwritable) [QNX]: Likewise.
29182         * lib/fwriting.c (fwriting) [QNX]: Likewise.
29183         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
29184         Reported by Alain Magloire.
29185
29186         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
29187
29188 2007-11-05  Bruno Haible  <bruno@clisp.org>
29189
29190         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
29191         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
29192         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
29193         Reported by Eric Blake.
29194
29195 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29196             Bruno Haible  <bruno@clisp.org>
29197
29198         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
29199         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
29200         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
29201         (malloc): Undefine also before including <stdlib.h>.
29202         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
29203         Needed on OSF/1 4.0.
29204
29205 2007-11-05  Jim Meyering  <meyering@redhat.com>
29206
29207         git-version-gen: sync from coreutils.
29208         * build-aux/git-version-gen: Add comments.
29209         Change the first '-' to '.' in the snapshot version string,
29210         e.g., 6.9-377-08144 -> 6.9.377-08144
29211         Remove first parameter.
29212         Don't declare a version "-dirty" merely because a time
29213         stamp has changed.
29214
29215 2007-11-04  Bruno Haible  <bruno@clisp.org>
29216
29217         * lib/lock.h: Protect all macro definitions containing an 'if'
29218         statement through a "do { ... } while (0)".
29219         * lib/tls.h: Likewise.
29220
29221 2007-11-04  Bruno Haible  <bruno@clisp.org>
29222
29223         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
29224
29225 2007-11-04  Bruno Haible  <bruno@clisp.org>
29226
29227         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
29228         * modules/fprintf-posix (Depends-on): Add nocrash.
29229         * modules/snprintf-posix (Depends-on): Likewise.
29230         * modules/sprintf-posix (Depends-on): Likewise.
29231         * modules/vasnprintf-posix (Depends-on): Likewise.
29232         * modules/vasprintf-posix (Depends-on): Likewise.
29233         * modules/vfprintf-posix (Depends-on): Likewise.
29234         * modules/vsnprintf-posix (Depends-on): Likewise.
29235         * modules/vsprintf-posix (Depends-on): Likewise.
29236         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
29237         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
29238         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
29239         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
29240         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
29241         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
29242         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
29243
29244 2007-11-04  Bruno Haible  <bruno@clisp.org>
29245
29246         * modules/nocrash: New file.
29247         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
29248         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
29249
29250 2007-11-04  Bruno Haible  <bruno@clisp.org>
29251
29252         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
29253         precision handling.
29254         * tests/test-vasprintf-posix.c (test_function): Likewise.
29255         * tests/test-snprintf-posix.h (test_function): Likewise.
29256         * tests/test-sprintf-posix.h (test_function): Likewise.
29257
29258         Fix *printf behaviour for large precisions on mingw and BeOS.
29259         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
29260         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
29261         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
29262         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
29263         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
29264         gl_PRINTF_PRECISION and test its result. Invoke
29265         gl_PREREQ_VASNPRINTF_PRECISION.
29266         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29267         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29268         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29269         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29270         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29271         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
29272         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29273         * doc/functions/fprintf.texi: Update.
29274         * doc/functions/printf.texi: Update.
29275         * doc/functions/snprintf.texi: Update.
29276         * doc/functions/sprintf.texi: Update.
29277         * doc/functions/vfprintf.texi: Update.
29278         * doc/functions/vprintf.texi: Update.
29279         * doc/functions/vsnprintf.texi: Update.
29280         * doc/functions/vsprintf.texi: Update.
29281
29282 2007-11-04  Bruno Haible  <bruno@clisp.org>
29283
29284         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
29285
29286 2007-11-04  Bruno Haible  <bruno@clisp.org>
29287
29288         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
29289         Reported by Sylvain Beucler <beuc@gnu.org>.
29290
29291 2007-11-03  Bruno Haible  <bruno@clisp.org>
29292
29293         * tests/test-fprintf-posix2.sh: New file.
29294         * tests/test-fprintf-posix2.c: New file.
29295         * modules/fprintf-posix-tests (Files): Add them.
29296         (TESTS): Add test-fprintf-posix2.sh.
29297         (configure.ac): Check for getrlimit and setrlimit.
29298         (check_PROGRAMS): Add test-fprintf-posix2.
29299
29300         * tests/test-printf-posix2.sh: New file.
29301         * tests/test-printf-posix2.c: New file.
29302         * modules/printf-posix-tests (Files): Add them.
29303         (TESTS): Add test-printf-posix2.sh.
29304         (configure.ac): Check for getrlimit and setrlimit.
29305         (check_PROGRAMS): Add test-printf-posix2.
29306
29307         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
29308         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
29309         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
29310         (decode_double): New function, copied from decode_long_double.
29311         (scale10_round_decimal_decoded): New function, extracted from
29312         scale10_round_decimal_long_double.
29313         (scale10_round_decimal_long_double): Use it.
29314         (scale10_round_decimal_double): New function.
29315         (floorlog10): New function.
29316         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
29317         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
29318         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
29319         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
29320         gl_PRINTF_ENOMEM and test its result. Invoke
29321         gl_PREREQ_VASNPRINTF_ENOMEM.
29322         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29323         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29324         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29325         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29326         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29327         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
29328         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29329         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
29330         * modules/snprintf-posix (Depends-on): Likewise.
29331         * modules/sprintf-posix (Depends-on): Likewise.
29332         * modules/vasnprintf-posix (Depends-on): Likewise.
29333         * modules/vasprintf-posix (Depends-on): Likewise.
29334         * modules/vfprintf-posix (Depends-on): Likewise.
29335         * modules/vsnprintf-posix (Depends-on): Likewise.
29336         * modules/vsprintf-posix (Depends-on): Likewise.
29337         * doc/functions/fprintf.texi: Update.
29338         * doc/functions/printf.texi: Update.
29339         * doc/functions/snprintf.texi: Update.
29340         * doc/functions/sprintf.texi: Update.
29341         * doc/functions/vfprintf.texi: Update.
29342         * doc/functions/vprintf.texi: Update.
29343         * doc/functions/vsnprintf.texi: Update.
29344         * doc/functions/vsprintf.texi: Update.
29345
29346 2007-11-03  Bruno Haible  <bruno@clisp.org>
29347
29348         * modules/frexp-nolibm-tests: New file.
29349
29350         * modules/frexp-nolibm: New file.
29351         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
29352
29353 2007-11-03  Bruno Haible  <bruno@clisp.org>
29354
29355         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
29356         value is C99 compliant.
29357         Needed for OSF/1 5.1.
29358
29359 2007-11-03  Bruno Haible  <bruno@clisp.org>
29360
29361         Fix out-of-memory handling of vasnprintf.
29362         * lib/printf-parse.c: Include <errno.h>.
29363         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
29364         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
29365         is already set.
29366
29367 2007-11-02  Eric Blake  <ebb9@byu.net>
29368
29369         Fix tests on cygwin.
29370         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
29371
29372 2007-11-01  Bruno Haible  <bruno@clisp.org>
29373
29374         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
29375         warning.
29376         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
29377         needed for POSIX compatibility.
29378
29379 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
29380
29381         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
29382         for compatibility with GNU.
29383
29384 2007-11-01  Bruno Haible  <bruno@clisp.org>
29385
29386         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
29387         (putenv): Renamed from rpl_putenv. Change argument type from
29388         'const char *' to 'char *'.
29389         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
29390         of defining putenv in config.h, just set REPLACE_PUTENV.
29391         * modules/putenv (Depends-on): Add stdlib.
29392         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
29393         (Include): Use <stdlib.h>.
29394         * lib/stdlib.in.h (putenv): New declaration.
29395         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
29396         REPLACE_PUTENV.
29397         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
29398         REPLACE_PUTENV.
29399         Needed for MacOS X 10.5.0.
29400         Reported by Peter O'Gorman <peter@pogma.com>.
29401
29402 2007-11-01  Jim Meyering  <meyering@redhat.com>
29403
29404         Treat an empty date string exactly like "0".
29405         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
29406         if the remaining date string (to be parsed) is empty, use "0".
29407         Reported by Mischa Molhoek and discussed in this thread:
29408         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
29409
29410 2007-10-31  Bruno Haible  <bruno@clisp.org>
29411
29412         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
29413         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
29414         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
29415         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
29416         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
29417         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
29418
29419 2007-10-31  Bruno Haible  <bruno@clisp.org>
29420
29421         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
29422         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
29423         (AC_TYPE_LONG_LONG_INT): Use it.
29424         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
29425         it as well.
29426         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
29427         to m4/longlong.m4.
29428         * modules/stdint (Files): Remove m4/ulonglong.m4.
29429         * modules/strtoull (Files): Use m4/longlong.m4 instead of
29430         m4/ulonglong.m4.
29431         * modules/strtoumax (Files): Likewise.
29432
29433 2007-10-30  Bruno Haible  <bruno@clisp.org>
29434
29435         * modules/xvasprintf-posix: New file.
29436         Suggested by Eric Blake.
29437
29438 2007-10-30  Bruno Haible  <bruno@clisp.org>
29439
29440         * modules/xprintf-posix-tests: New file.
29441         * tests/test-xprintf-posix.sh: New file.
29442         * tests/test-xprintf-posix.c: New file.
29443         * tests/test-xfprintf-posix.c: New file.
29444
29445         * modules/xprintf-posix: New file.
29446
29447 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29448
29449         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
29450         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
29451         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
29452
29453 2007-10-29  Bruno Haible  <bruno@clisp.org>
29454
29455         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
29456         contain the special marker '_cv_'.
29457         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
29458         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
29459         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
29460         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
29461         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
29462         Reported by Ralf Wildenhues.
29463
29464 2007-10-29  Bruno Haible  <bruno@clisp.org>
29465
29466         * gnulib-tool (func_import): When --lgpl is not specified, set
29467         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
29468         GPLv3.
29469         Reported by Simon Josefsson.
29470
29471 2007-10-28  Bruno Haible  <bruno@clisp.org>
29472
29473         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
29474         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
29475         HAVE_DECL_ISFINITE.
29476         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
29477         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
29478         HAVE_DECL_ISFINITE.
29479
29480 2007-10-28  Bruno Haible  <bruno@clisp.org>
29481
29482         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
29483         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
29484
29485 2007-10-28  Bruno Haible  <bruno@clisp.org>
29486
29487         Fix link errors with Sun C 5.0 on Solaris 10.
29488         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
29489         function is declared but not present in the compiler's libm.
29490         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
29491         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
29492         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
29493         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
29494         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
29495         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
29496         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
29497         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
29498         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
29499         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
29500         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
29501         HAVE_DECL_FLOORL.
29502
29503 2007-10-28  Bruno Haible  <bruno@clisp.org>
29504
29505         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
29506         gl_FUNC_FLOORL. Cache the result.
29507         (gl_FUNC_FLOORL): Use it.
29508         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
29509         gl_FUNC_CEILL. Cache the result.
29510         (gl_FUNC_CEILL): Use it.
29511
29512         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
29513         gl_FUNC_FLOOR. Cache the result.
29514         (gl_FUNC_FLOOR): Use it.
29515         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
29516         gl_FUNC_CEIL. Cache the result.
29517         (gl_FUNC_CEIL): Use it.
29518
29519         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
29520         gl_FUNC_FLOORF. Cache the result.
29521         (gl_FUNC_FLOORF): Use it.
29522         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
29523         gl_FUNC_CEILF. Cache the result.
29524         (gl_FUNC_CEILF): Use it.
29525
29526 2007-10-28  Bruno Haible  <bruno@clisp.org>
29527
29528         * gnulib-tool: Allow specifying the LGPL version number through
29529         --lgpl=2 or --lgpl=3.
29530         (func_usage): Document --lgpl with argument.
29531         Handle --lgpl=... arguments.
29532         (func_import): Recognize also gl_LGPL calls with an argument. When
29533         --lgpl=2 is used and the module's license is just LGPL, report an
29534         error. Set sed_transform_lib_file according to the lgpl variable. In
29535         the generated files, use --lgpl or gl_LGPL invocations with argument,
29536         if necessary.
29537         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
29538         an LGPv2+ license.
29539         * doc/gnulib-tool.texi (Modified imports): Update explanation of
29540         gl_LGPL macro.
29541
29542 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29543             Bruno Haible  <bruno@clisp.org>
29544
29545         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
29546         (u16_uctomb_aux): Likewise.
29547         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
29548         !HAVE_INLINE.
29549         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
29550
29551 2007-10-28  Bruno Haible  <bruno@clisp.org>
29552
29553         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
29554         Invoke AM_GETTEXT_OPTION if it exists.
29555         * modules/vasprintf: Likewise.
29556         * modules/verror: Likewise.
29557         * modules/xprintf: Likewise.
29558         * modules/xvasprintf: Likewise.
29559
29560 2007-10-27  Ben Pfaff  <blp@gnu.org>
29561
29562         * lib/math.in.h: Define isfinite macro and prototypes for
29563         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
29564         implementations.
29565         * m4/math_h.m4: New substitutions for isfinite module.
29566         * lib/isfinite.c: New file.
29567         * m4/isfinite.m4: New file.
29568         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
29569         * modules/isfinite: New file.
29570         * modules/isfinite-tests: New file.
29571         * tests/tests-isfinite.c: New file.
29572         * doc/functions/isfinite.texi: Mention isfinite module.
29573         * MODULES.html.sh: Mention new module.
29574
29575 2007-10-27  Ben Pfaff  <blp@gnu.org>
29576
29577         Ralf Wildenhues reported that Tru64 4.0D declares the round
29578         functions but does not have definitions.
29579         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
29580         cannot be found in any library, set the output variable to
29581         "missing" instead of "".
29582         * m4/round.m4: Also use our substitute if we cannot find round in
29583         any library, even if it is declared.
29584         * m4/roundf.m4: Likewise for roundf.
29585         * m4/roundl.m4: Likewise for roundl.
29586         * lib/math.in.h: Undefine roundf, round, roundl before defining
29587         their replacements, to allow for hypothetical systems where these
29588         may be defined as macros but not available in libraries.
29589
29590 2007-10-27  Bruno Haible  <bruno@clisp.org>
29591
29592         * doc/gnulib.texi: Invoke @firstparagraphindent.
29593         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
29594         changes in gnulib.
29595         (Source changes): New section.
29596
29597 2007-10-26  Bruno Haible  <bruno@clisp.org>
29598
29599         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
29600         borrowed from autoconf.
29601
29602 2007-10-26  Bruno Haible  <bruno@clisp.org>
29603
29604         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
29605         strerror returned the empty string. Needed on HP-UX 11.00.
29606
29607 2007-10-24  Micah Cowan  <micah@cowan.name>
29608
29609         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
29610         * build-aux/bootstrap: Remove support for now-unnecessary option,
29611         --cvs-user, and envvars CVS_USER, CVS_RSH.
29612
29613 2007-10-24  Jim Meyering  <meyering@redhat.com>
29614
29615         Avoid diagnostics from sha1sum when there is no cached checksum.
29616         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
29617         if the po.s1 file hasn't been created yet.
29618
29619         * build-aux/bootstrap: Sync from coreutils:
29620         2007-10-24  Jim Meyering  <meyering@redhat.com>
29621         Get gnulib from the git repository, not from an obsolete cvs one.
29622         * build-aux/bootstrap: Suggestion from Micah Cowan.
29623         2007-10-04  Jim Meyering  <jim@meyering.net>
29624         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
29625         (update_po_files): Work also when there are no .po files in po/.
29626
29627 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
29628
29629         * README: Append ".git" to git and cg examples.
29630         Problem reported by Benoit Sigoure.
29631
29632 2007-10-23  Micah Cowan  <micah@cowan.name>
29633
29634         * users.txt: Add wget.
29635
29636 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29637
29638         Fix linking of some unistdio tests on FreeBSD.
29639         * modules/unistdio/u16-vsnprintf-tests
29640         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
29641         * modules/unistdio/u16-vsprintf-tests
29642         (test_u16_vsnprintf1_LDADD): Likewise.
29643         * modules/unistdio/u32-vsnprintf-tests
29644         (test_u32_vsnprintf1_LDADD): Likewise.
29645         * modules/unistdio/u32-vsprintf-tests
29646         (test_u32_vsprintf1_LDADD): Likewise.
29647         * modules/unistdio/u8-vsnprintf-tests
29648         (test_u8_vsnprintf1_LDADD): Likewise.
29649         * modules/unistdio/u8-vsprintf-tests
29650         (test_u8_vsprintf1_LDADD): Likewise.
29651         * modules/unistdio/ulc-vsnprintf-tests
29652         (test_ulc_vsnprintf1_LDADD): Likewise.
29653         * modules/unistdio/ulc-vsprintf-tests
29654         (test_ulc_vsprintf1_LDADD): Likewise.
29655
29656         Fix linking of some uniconv tests on FreeBSD.
29657         * modules/uniconv/u16-conv-from-enc-tests
29658         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
29659         * modules/uniconv/u16-conv-to-enc-tests
29660         (test_u16_conv_to_enc_LDADD): Likewise.
29661         * modules/uniconv/u16-strconv-from-enc-tests
29662         (test_u16_strconv_from_enc_LDADD): Likewise.
29663         * modules/uniconv/u16-strconv-to-enc-tests
29664         (test_u16_strconv_to_enc_LDADD): Likewise.
29665         * modules/uniconv/u32-conv-from-enc-tests
29666         (test_u32_conv_from_enc_LDADD): Likewise.
29667         * modules/uniconv/u32-conv-to-enc-tests
29668         (test_u32_conv_to_enc_LDADD): Likewise.
29669         * modules/uniconv/u32-strconv-from-enc-tests
29670         (test_u32_strconv_from_enc_LDADD): Likewise.
29671         * modules/uniconv/u32-strconv-to-enc-tests
29672         (test_u32_strconv_to_enc_LDADD): Likewise.
29673         * modules/uniconv/u8-conv-from-enc-tests
29674         (test_u8_conv_from_enc_LDADD): Likewise.
29675         * modules/uniconv/u8-conv-to-enc-tests
29676         (test_u8_conv_to_enc_LDADD): Likewise.
29677         * modules/uniconv/u8-strconv-from-enc-tests
29678         (test_u8_strconv_from_enc_LDADD): Likewise.
29679         * modules/uniconv/u8-strconv-to-enc-tests
29680         (test_u8_strconv_to_enc_LDADD): Likewise.
29681
29682 2007-10-22  Bruno Haible  <bruno@clisp.org>
29683
29684         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
29685         size.
29686
29687 2007-10-22  Eric Blake  <ebb9@byu.net>
29688
29689         Tweak x*printf documentation.
29690         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
29691         variable name and comments.
29692         Suggested by Bruno Haible.
29693
29694 2007-10-22  Bruno Haible  <bruno@clisp.org>
29695
29696         * lib/acl.c (copy_acl): Fix file name in comment.
29697
29698 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
29699
29700         Fix Tru64 problem with stdbool.h.
29701         * lib/stdbool.in.h (false, true):
29702         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
29703         Don't declare as an enum in this situation; it runs afoul of Tru64.
29704         Problem reported by Steven M. Schweda in
29705         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
29706
29707 2007-10-22  Eric Blake  <ebb9@byu.net>
29708
29709         Also wrap vf?printf.
29710         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
29711         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
29712         (xvprintf, xvfprintf): New functions.
29713
29714 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29715
29716         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
29717         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
29718
29719         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
29720         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
29721
29722 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
29723
29724         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
29725         by Bruno Haible.
29726
29727 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29728
29729         * lib/getloadavg.c
29730         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
29731         Undef `sys' after including sys/table.h, for Tru64 4.0D.
29732
29733         * tests/test-i-ring.c: Work for C89.
29734
29735 2007-10-22  Bruno Haible  <bruno@clisp.org>
29736
29737         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
29738         -1u, in preprocessor expression, so that we don't test for the bug
29739         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
29740         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
29741
29742 2007-10-22  Eric Blake  <ebb9@byu.net>
29743
29744         * tests/test-yesno.sh: Silence stderr during test.
29745
29746 2007-10-22  Simon Josefsson  <simon@josefsson.org>
29747
29748         * modules/crypto/gc-camellia: New file.
29749
29750         * m4/gc-camellia.m4: New file.
29751
29752         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
29753
29754         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
29755
29756 2007-10-22  Simon Josefsson  <simon@josefsson.org>
29757
29758         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
29759         --help to stdout.  Reported by sms@antinode.org (Steven
29760         M. Schweda).
29761
29762 2007-10-22  Simon Josefsson  <simon@josefsson.org>
29763
29764         * users.txt: Fix link to libksba.
29765
29766 2007-10-21  Ben Pfaff  <blp@gnu.org>
29767
29768         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
29769         round.c roundf implementation that depends on floorf and ceilf to
29770         be tested unconditionally.
29771
29772 2007-10-21  Ben Pfaff  <blp@gnu.org>
29773
29774         * m4/check-libm-func.m4: Removed.
29775         * m4/check-math-lib.m4: New file.
29776         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
29777         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
29778         definition and lack of AC_LIBOBJ([roundf]).
29779         * m4/roundl.m4: Ditto, and similarly for roundl.
29780         * modules/round: Reference new m4 file.
29781         * modules/roundf: Ditto.
29782         * modules/roundl: Ditto.
29783         * tests/test-round2.c (main): Use ROUND instead of round.
29784         Bug report from Bruno Haible.
29785
29786 2007-10-21  Bruno Haible  <bruno@clisp.org>
29787
29788         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
29789         context.
29790
29791 2007-10-21  Bruno Haible  <bruno@clisp.org>
29792
29793         * tests/test-wcwidth.c (main): Allow negative result for some control
29794         characters.
29795
29796         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
29797         Needed on OSF/1 5.1.
29798
29799 2007-10-21  Bruno Haible  <bruno@clisp.org>
29800
29801         * tests/test-floorf1.c: Include isnanf.h.
29802         (main): Use isnanf() instead of isnan().
29803         * tests/test-ceilf1.c: Include isnanf.h.
29804         (main): Use isnanf() instead of isnan().
29805         * tests/test-truncf1.c: Include isnanf.h.
29806         (main): Use isnanf() instead of isnan().
29807         * tests/test-roundf1.c: Include isnanf.h.
29808         (main): Use isnanf() instead of isnan().
29809
29810 2007-10-21  Eric Blake  <ebb9@byu.net>
29811
29812         * users.txt: Update URL for m4.
29813
29814 2007-10-21  Bruno Haible  <bruno@clisp.org>
29815
29816         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
29817
29818 2007-10-21  Bruno Haible  <bruno@clisp.org>
29819
29820         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
29821         Git's management files if the CVS files are not present.
29822
29823 2007-10-20  Bruno Haible  <bruno@clisp.org>
29824
29825         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
29826         gcc-3.4.x.
29827
29828 2007-10-20  Ben Pfaff  <blp@gnu.org>
29829
29830         * lib/math.in.h: Declare round, roundf, roundl if we are providing
29831         implementations.
29832         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
29833         * lib/round.c: New file.
29834         * lib/roundf.c: New file.
29835         * lib/roundl.c: New file.
29836         * m4/round.m4: New file.
29837         * m4/roundf.m4: New file.
29838         * m4/roundl.m4: New file.
29839         * m4/check-libm-func-m4: New file.
29840         * modules/math: Replace round, roundf, roundl related @VARS@ in
29841         math.in.h.
29842         * modules/round: New file.
29843         * modules/round-tests: New file.
29844         * modules/roundf: New file.
29845         * modules/roundf-tests: New file.
29846         * modules/roundl: New file.
29847         * modules/roundl-tests: New file.
29848         * tests/test-round1.c: New file.
29849         * tests/test-round2.c: New file.
29850         * tests/test-roundf1.c: New file.
29851         * tests/test-roundf2.c: New file.
29852         * tests/test-roundl.c: New file.
29853         * doc/functions/round.texi: Mention round module.
29854         * doc/functions/roundf.texi: Mention roundf module.
29855         * doc/functions/roundl.texi: Mention roundl module.
29856         * MODULES.html.sh: Mention new modules.
29857         Thanks to Bruno Haible for suggestions.
29858
29859 2007-10-20  Jim Meyering  <meyering@redhat.com>
29860
29861         * lib/xprintf.c: Include <config.h> unconditionally.
29862
29863         Change xprintf's license to GPL.
29864         * modules/xprintf (License): s/LGPL/GPL/, since this module
29865         depends on modules (exit and exitfail) which are GPL.
29866         Suggestion from Bruno Haible.
29867
29868         xprintf fixes.
29869         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
29870         Use a clearer diagnostic.
29871         Patch from Bruno Haible.
29872
29873 2007-10-20  Bruno Haible  <bruno@clisp.org>
29874
29875         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
29876         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
29877         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
29878
29879 2007-10-20  Bruno Haible  <bruno@clisp.org>
29880
29881         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
29882         precision in the comparison result > x - 1 or similar.
29883         * tests/test-ceilf2.c (correct_result_p): Likewise.
29884         * tests/test-truncf2.c (correct_result_p): Likewise.
29885         * tests/test-trunc2.c (correct_result_p): Likewise.
29886         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
29887
29888 2007-10-20  Bruno Haible  <bruno@clisp.org>
29889
29890         * modules/ceil: New file.
29891         * m4/ceil.m4: New file.
29892         * doc/functions/ceil.texi: Mention the 'ceil' module.
29893
29894 2007-10-20  Bruno Haible  <bruno@clisp.org>
29895
29896         * modules/floor: New file.
29897         * m4/floor.m4: New file.
29898         * doc/functions/floor.texi: Mention the 'floor' module.
29899
29900 2007-10-20  Bruno Haible  <bruno@clisp.org>
29901
29902         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
29903         of %a.
29904         * modules/floorf-tests (Depends-on): Likewise.
29905         * modules/truncf-tests (Depends-on): Likewise.
29906         * modules/trunc-tests (Depends-on): Likewise.
29907         Reported by Ben Pfaff.
29908
29909 2007-10-19  Jim Meyering  <meyering@redhat.com>
29910
29911         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
29912         Don't bother testing specific errno values.  Just test ferror.
29913
29914         New module: xprintf
29915         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
29916
29917 2007-10-19  Bruno Haible  <bruno@clisp.org>
29918
29919         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
29920         syntax.
29921         * modules/javaexec (Makefile.am): Likewise.
29922         * modules/relocatable-prog (Makefile.am): Likewise.
29923         Suggested by Jim Meyering.
29924
29925 2007-10-18  Bruno Haible  <bruno@clisp.org>
29926
29927         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
29928         Reported by Jim Meyering.
29929
29930 2007-10-18  Eric Blake  <ebb9@byu.net>
29931
29932         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
29933
29934 2007-10-18  Bruno Haible  <bruno@clisp.org>
29935
29936         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
29937         the format string into writable memory. Needed in Fortify conditions.
29938
29939 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
29940             Bruno Haible  <bruno@clisp.org>
29941
29942         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
29943         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
29944         * modules/trim (Depends-on): Add mbchar.
29945         (configure.ac): Add gl_FUNC_MBRTOWC.
29946         (Makefile.am): Augment lib_SOURCES.
29947
29948 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
29949
29950         Modify glob.c to use fstatat and dirfd, to simplify it.
29951         Suggested by Eric Blake.
29952         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
29953         Don't include <stdbool.h>; not used.
29954         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
29955         (link_exists_p): Simplify implementation, since we can now assume
29956         dirfd and fstatat.
29957         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
29958
29959 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29960
29961         * gnulib-tool (func_get_dependencies): Fix sed script to
29962         match only tests.
29963
29964 2007-10-17  Bruno Haible  <bruno@clisp.org>
29965
29966         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
29967         allow locale names without encoding suffix.
29968         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
29969         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
29970
29971 2007-10-16  Bruno Haible  <bruno@clisp.org>
29972
29973         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
29974         * lib/getgroups.c (getgroups): Likewise.
29975         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
29976
29977 2007-10-16  Bruno Haible  <bruno@clisp.org>
29978
29979         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
29980         * modules/malloc-posix (License): Likewise.
29981         * modules/realloc-posix (License): Likewise.
29982         * modules/calloc-posix (License): Likewise.
29983         * modules/intprops (License): Change from GPL to LGPL, with
29984         Paul Eggert's approval.
29985
29986 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
29987
29988         Merge glibc changes into lib/glob.c.
29989
29990         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
29991         2007-10-15 04:59:03 UTC.  Here are the changes:
29992
29993         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
29994
29995         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
29996
29997         * lib/glob.c: Add some branch prediction throughout.
29998
29999         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
30000
30001         [BZ #5103]
30002         * lib/glob.c (glob): Recognize patterns starting \/.
30003
30004         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
30005
30006         [BZ #3996]
30007         * lib/glob.c (attribute_hidden): Define if not defined.
30008         (glob): Unescape dirname, filename or username when needed and not
30009         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
30010         is NULL.  Handle unescaped [ in pattern without closing ].
30011         Don't pass GLOB_CHECK down to recursive glob for directories.
30012         (__glob_pattern_type): New function.
30013         (__glob_pattern_p): Implement using __glob_pattern_type.
30014         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
30015         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
30016         Remove unreachable code.
30017
30018         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
30019
30020         * lib/glob.c (glob_in_dir): Add some comments and asserts to
30021         explain why there are no leaks.
30022
30023         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
30024
30025         [BZ #3253]
30026         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
30027         time, rather allocate increasingly bigger arrays of pointers, if
30028         possible with alloca, if too large with malloc.
30029
30030 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
30031
30032         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
30033         Problem reported by H.Merijn Brand in
30034         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
30035         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
30036         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
30037
30038 2007-10-15  Bruno Haible  <bruno@clisp.org>
30039
30040         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
30041         with explicit rpl_ prefix.
30042         * lib/fopen.c (fopen): Likewise.
30043         * lib/freopen.c (freopen): Likewise.
30044         * lib/iconv.c (iconv): Likewise.
30045         * lib/iconv_close.c (iconv_close): Likewise.
30046
30047 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30048
30049         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
30050
30051 2007-10-15  Bruno Haible  <bruno@clisp.org>
30052
30053         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
30054         <stddef.h> instead of <stdlib.h> since we only need NULL.
30055         Reported by Ben Pfaff <blp@cs.stanford.edu>.
30056
30057 2007-10-15  Bruno Haible  <bruno@clisp.org>
30058
30059         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
30060         Replace paragraph talking about LIBOBJS.
30061         Reported by Colin Watson <cjwatson@debian.org>.
30062
30063 2007-10-15  Bruno Haible  <bruno@clisp.org>
30064
30065         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
30066         <stdlib.h> before using NULL.
30067
30068 2007-10-15  Simon Josefsson  <simon@josefsson.org>
30069
30070         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
30071         Reported by Albert Chin <china@thewrittenword.com>.
30072
30073 2007-10-14  Bruno Haible  <bruno@clisp.org>
30074
30075         * modules/iconv_open-utf-tests: New file.
30076         * tests/test-iconv-utf.c: New file.
30077
30078         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
30079         * modules/iconv_open-utf: New file.
30080         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
30081         (iconv, iconv_close): New declarations.
30082         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
30083         be defined.
30084         (iconv_open): Add special handling of conversion between UTF-8 and
30085         UTF-{16,32}{BE,LE}.
30086         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
30087         * lib/iconv_close.c: New file.
30088         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
30089         gl_FUNC_ICONV_OPEN.
30090         (gl_FUNC_ICONV_OPEN): Use it.
30091         (gl_FUNC_ICONV_OPEN_UTF): New macro.
30092         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
30093         and REPLACE_ICONV_UTF.
30094         * modules/iconv_open (Depends-on): Add c-strcase.
30095         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
30096         ICONV_CONST.
30097         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
30098
30099 2007-10-13  Albert Chin  <china@thewrittenword.com>
30100             Bruno Haible  <bruno@clisp.org>
30101
30102         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
30103         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
30104
30105 2007-10-13  Bruno Haible  <bruno@clisp.org>
30106
30107         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
30108         defined, use the ISO C99 inline semantics.
30109         * lib/argp.h (ARGP_EI): Likewise.
30110
30111 2007-10-13  Bruno Haible  <bruno@clisp.org>
30112
30113         Handle 'inline' change in gcc 4.3.0.
30114         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
30115         argp_fmtstream_write, argp_fmtstream_set_lmargin,
30116         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
30117         argp_fmtstream_point): Disable 'extern' declaration if the function
30118         definition is going to be provided inline.
30119         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
30120         semantics, not the ISO C99 inline semantics.
30121         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
30122         'extern' declaration if the function definition is going to be provided
30123         inline.
30124         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
30125         the GNU C inline semantics, not the ISO C99 inline semantics. With
30126         GCC 4.2, avoid a warning.
30127
30128 2007-10-13  Bruno Haible  <bruno@clisp.org>
30129
30130         * lib/freading.h (freading): Enable the use of __freading for
30131         glibc >= 2.7.
30132         * lib/freading.c (freading): Likewise.
30133
30134 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
30135
30136         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
30137         "warning: C99 inline functions are not supported; using GNU89".
30138
30139 2007-10-12  Bruno Haible  <bruno@clisp.org>
30140
30141         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
30142         of 2.
30143         * tests/test-ceilf2.c: New file.
30144         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
30145
30146         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
30147         * modules/ceilf-tests: Update.
30148
30149 2007-10-12  Bruno Haible  <bruno@clisp.org>
30150
30151         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
30152         of 2.
30153         * tests/test-floorf2.c: New file.
30154         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
30155
30156         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
30157         * modules/floorf-tests: Update.
30158
30159 2007-10-12  Bruno Haible  <bruno@clisp.org>
30160
30161         * tests/test-trunc2.c: New file.
30162         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
30163
30164         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
30165         * modules/trunc-tests: Update.
30166
30167 2007-10-12  Bruno Haible  <bruno@clisp.org>
30168
30169         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
30170         of 2.
30171         * tests/test-truncf2.c: New file.
30172         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
30173
30174         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
30175         * modules/truncf-tests: Update.
30176
30177 2007-10-11  Eric Blake  <ebb9@byu.net>
30178
30179         Don't claim strerror is broken on Interix.
30180         * doc/functions/strerror.texi (strerror): Known broken systems are
30181         now Solaris 8, and not Interix.
30182         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
30183         Interix on cross-compile.
30184         Reported by Martin Koeppe in
30185         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
30186
30187 2007-10-11  Bruno Haible  <bruno@clisp.org>
30188
30189         * modules/i-ring-tests: New file.
30190         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
30191         instead of assert.
30192
30193 2007-10-11  Bruno Haible  <bruno@clisp.org>
30194
30195         * modules/filenamecat-tests: New file.
30196         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
30197         * lib/filenamecat.c: Remove test code.
30198
30199 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
30200
30201         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
30202
30203         * lib/strerror.c: Include <string.h> always, to test interface,
30204         and to remove the need for the dummy.
30205         Include intprops.h to compute width instead of doing it ourselves
30206         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
30207         (strerror): Define it to return NULL if there's no system strerror.
30208         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
30209         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
30210         ancient pre-strerror Unix systems well any more.  Saying "unknown
30211         system error" is enough.
30212         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
30213         simpler strerror.c implementation.
30214         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
30215         Simplify the tests to reflect the simpler strerror implementation.
30216         * modules/strerror (Depends-on): Add intprops.
30217
30218 2007-10-09  Eric Blake  <ebb9@byu.net>
30219
30220         Silence test-fpending.
30221         * modules/fpending-tests (Files): Add wrapper script.
30222         * tests/test-fpending.sh: New file.
30223
30224 2007-10-09  Bruno Haible  <bruno@clisp.org>
30225
30226         * MODULES.html.sh (func_module): Don't create a hyperlink for
30227         function names like 'printf_frexp'.
30228         (Misc): Add crc, memxor.
30229         (Characteristics of floating types): New section.
30230         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
30231         isnanf-nolibm, signbit, trunc, truncf, truncl.
30232         (Enhancements for ISO C 99 functions): New subsection Input/output.
30233         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
30234         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
30235         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
30236         (Compatibility checks for POSIX:2001 functions): Add clock-time.
30237         (Enhancements for POSIX:2001 functions): Add chdir-long.
30238         (File system functions): Add areadlink, chdir-safer, read-file.
30239         Remove cycle-check.
30240         (File system as inode set): New section.
30241         (Date and time): Add gethrxtime.
30242         (Multithreading): Add openmp.
30243         (Internationalization functions): Add localename.
30244         (Unicode string functions): Add unistr/u*-mbsnlen.
30245         (Support for maintaining and releasing projects): Add git-version-gen.
30246         (Lone files): Remove directories.
30247
30248 2007-10-08  Ben Pfaff  <blp@gnu.org>
30249
30250         * lib/xmalloca.h: Fix typo in comment.
30251
30252 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
30253
30254         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
30255         when avoiding problems with integer overflow.  Use a portable test
30256         instead.
30257
30258 2007-10-08  Simon Josefsson  <simon@josefsson.org>
30259
30260         * modules/dummy (License): Change to LGPLv2+.
30261         * modules/float (License): Likewise
30262         * modules/realloc (License): Likewise
30263         * modules/stdlib (License): Likewise
30264
30265 2007-10-07  Bruno Haible  <bruno@clisp.org>
30266
30267         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
30268         * floor.c (TWO_MANT_DIG): Likewise.
30269         * ceil.c (TWO_MANT_DIG): Likewise.
30270         Reported by Ben Pfaff.
30271
30272 2007-10-07  Bruno Haible  <bruno@clisp.org>
30273
30274         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
30275         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
30276         * lib/frexp.c (FUNC): Likewise.
30277         * lib/printf-frexp.h (printf_frexp): Likewise.
30278         * lib/printf-frexpl.h (printf_frexpl): Likewise.
30279         * lib/printf-frexp.c (FUNC): Likewise.
30280         Suggested by Jim Meyering.
30281
30282 2007-10-07  Jim Meyering  <meyering@redhat.com>
30283
30284         Make xnanosleep's integer overflow test more robust.
30285         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
30286         so that gcc-4.3.0 doesn't optimize away this test for overflow.
30287
30288 2007-10-07  Bruno Haible  <bruno@clisp.org>
30289
30290         * NEWS: Mention the license change.
30291
30292         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
30293         abbreviations in the modules files.
30294
30295         Change copyright notice from GPLv2+ to GPLv3+.
30296         * README: Change copyright notice.
30297         * MODULES.html.sh: Likewise.
30298         * build-aux/bootstrap.conf: Likewise.
30299         * build-aux/config.libpath: Likewise.
30300         * build-aux/csharpcomp.sh.in: Likewise.
30301         * build-aux/csharpexec.sh.in: Likewise.
30302         * build-aux/install-reloc: Likewise.
30303         * build-aux/javacomp.sh.in: Likewise.
30304         * build-aux/javaexec.sh.in: Likewise.
30305         * build-aux/ldd.sh.in: Likewise.
30306         * build-aux/reloc-ldflags: Likewise.
30307         * build-aux/relocatable.sh.in: Likewise.
30308         * build-aux/x-to-1.in: Likewise.
30309         * check-module: Likewise.
30310         * config/srclistvars.sh: Likewise.
30311         * gnulib-tool: Likewise.
30312         * lib/acl-internal.h: Likewise.
30313         * lib/acl.c: Likewise.
30314         * lib/acl.h: Likewise.
30315         * lib/acl_entries.c: Likewise.
30316         * lib/areadlink-with-size.c: Likewise.
30317         * lib/areadlink.c: Likewise.
30318         * lib/areadlink.h: Likewise.
30319         * lib/argmatch.c: Likewise.
30320         * lib/argmatch.h: Likewise.
30321         * lib/argp-ba.c: Likewise.
30322         * lib/argp-eexst.c: Likewise.
30323         * lib/argp-fmtstream.c: Likewise.
30324         * lib/argp-fmtstream.h: Likewise.
30325         * lib/argp-fs-xinl.c: Likewise.
30326         * lib/argp-help.c: Likewise.
30327         * lib/argp-namefrob.h: Likewise.
30328         * lib/argp-parse.c: Likewise.
30329         * lib/argp-pin.c: Likewise.
30330         * lib/argp-pv.c: Likewise.
30331         * lib/argp-pvh.c: Likewise.
30332         * lib/argp-xinl.c: Likewise.
30333         * lib/argp.h: Likewise.
30334         * lib/at-func.c: Likewise.
30335         * lib/atanl.c: Likewise.
30336         * lib/backupfile.c: Likewise.
30337         * lib/backupfile.h: Likewise.
30338         * lib/basename.c: Likewise.
30339         * lib/binary-io.h: Likewise.
30340         * lib/byteswap.in.h: Likewise.
30341         * lib/c-stack.c: Likewise.
30342         * lib/c-stack.h: Likewise.
30343         * lib/c-strcasestr.c: Likewise.
30344         * lib/c-strcasestr.h: Likewise.
30345         * lib/c-strstr.c: Likewise.
30346         * lib/c-strstr.h: Likewise.
30347         * lib/c-strtod.c: Likewise.
30348         * lib/calloc.c: Likewise.
30349         * lib/canon-host.c: Likewise.
30350         * lib/canon-host.h: Likewise.
30351         * lib/canonicalize-lgpl.c: Likewise.
30352         * lib/canonicalize.c: Likewise.
30353         * lib/canonicalize.h: Likewise.
30354         * lib/ceil.c: Likewise.
30355         * lib/ceilf.c: Likewise.
30356         * lib/ceill.c: Likewise.
30357         * lib/chdir-long.c: Likewise.
30358         * lib/chdir-long.h: Likewise.
30359         * lib/chdir-safer.c: Likewise.
30360         * lib/chdir-safer.h: Likewise.
30361         * lib/chown.c: Likewise.
30362         * lib/classpath.c: Likewise.
30363         * lib/classpath.h: Likewise.
30364         * lib/clean-temp.c: Likewise.
30365         * lib/clean-temp.h: Likewise.
30366         * lib/cloexec.c: Likewise.
30367         * lib/close-stream.c: Likewise.
30368         * lib/closein.c: Likewise.
30369         * lib/closein.h: Likewise.
30370         * lib/closeout.c: Likewise.
30371         * lib/closeout.h: Likewise.
30372         * lib/concat-filename.c: Likewise.
30373         * lib/copy-file.c: Likewise.
30374         * lib/copy-file.h: Likewise.
30375         * lib/count-one-bits.h: Likewise.
30376         * lib/crc.c: Likewise.
30377         * lib/crc.h: Likewise.
30378         * lib/creat-safer.c: Likewise.
30379         * lib/csharpcomp.c: Likewise.
30380         * lib/csharpcomp.h: Likewise.
30381         * lib/csharpexec.c: Likewise.
30382         * lib/csharpexec.h: Likewise.
30383         * lib/cycle-check.c: Likewise.
30384         * lib/cycle-check.h: Likewise.
30385         * lib/diacrit.c: Likewise.
30386         * lib/diacrit.h: Likewise.
30387         * lib/diffseq.h: Likewise.
30388         * lib/dirchownmod.c: Likewise.
30389         * lib/dirent.in.h: Likewise.
30390         * lib/dirfd.c: Likewise.
30391         * lib/dirfd.h: Likewise.
30392         * lib/dirname.c: Likewise.
30393         * lib/dirname.h: Likewise.
30394         * lib/dummy.c: Likewise.
30395         * lib/dup-safer.c: Likewise.
30396         * lib/dup2.c: Likewise.
30397         * lib/eealloc.h: Likewise.
30398         * lib/error.c: Likewise.
30399         * lib/error.h: Likewise.
30400         * lib/euidaccess.c: Likewise.
30401         * lib/exclude.c: Likewise.
30402         * lib/exclude.h: Likewise.
30403         * lib/execute.c: Likewise.
30404         * lib/execute.h: Likewise.
30405         * lib/exitfail.c: Likewise.
30406         * lib/exitfail.h: Likewise.
30407         * lib/expl.c: Likewise.
30408         * lib/fatal-signal.c: Likewise.
30409         * lib/fatal-signal.h: Likewise.
30410         * lib/fbufmode.c: Likewise.
30411         * lib/fbufmode.h: Likewise.
30412         * lib/fchdir.c: Likewise.
30413         * lib/fchmodat.c: Likewise.
30414         * lib/fchownat.c: Likewise.
30415         * lib/fcntl--.h: Likewise.
30416         * lib/fcntl-safer.h: Likewise.
30417         * lib/fcntl.in.h: Likewise.
30418         * lib/fd-safer.c: Likewise.
30419         * lib/fflush.c: Likewise.
30420         * lib/file-has-acl.c: Likewise.
30421         * lib/file-set.c: Likewise.
30422         * lib/file-type.c: Likewise.
30423         * lib/file-type.h: Likewise.
30424         * lib/fileblocks.c: Likewise.
30425         * lib/filemode.c: Likewise.
30426         * lib/filemode.h: Likewise.
30427         * lib/filename.h: Likewise.
30428         * lib/filenamecat.c: Likewise.
30429         * lib/filenamecat.h: Likewise.
30430         * lib/findprog.c: Likewise.
30431         * lib/findprog.h: Likewise.
30432         * lib/float.in.h: Likewise.
30433         * lib/floor.c: Likewise.
30434         * lib/floorf.c: Likewise.
30435         * lib/floorl.c: Likewise.
30436         * lib/fopen-safer.c: Likewise.
30437         * lib/fopen.c: Likewise.
30438         * lib/fpending.c: Likewise.
30439         * lib/fpending.h: Likewise.
30440         * lib/fprintf.c: Likewise.
30441         * lib/fprintftime.h: Likewise.
30442         * lib/fpucw.h: Likewise.
30443         * lib/fpurge.c: Likewise.
30444         * lib/fpurge.h: Likewise.
30445         * lib/freadable.c: Likewise.
30446         * lib/freadable.h: Likewise.
30447         * lib/freadahead.c: Likewise.
30448         * lib/freadahead.h: Likewise.
30449         * lib/freading.c: Likewise.
30450         * lib/freading.h: Likewise.
30451         * lib/free.c: Likewise.
30452         * lib/freopen.c: Likewise.
30453         * lib/frexp.c: Likewise.
30454         * lib/frexpl.c: Likewise.
30455         * lib/fseek.c: Likewise.
30456         * lib/fseterr.c: Likewise.
30457         * lib/fseterr.h: Likewise.
30458         * lib/fstatat.c: Likewise.
30459         * lib/fstrcmp.c: Likewise.
30460         * lib/fstrcmp.h: Likewise.
30461         * lib/fsusage.c: Likewise.
30462         * lib/fsusage.h: Likewise.
30463         * lib/ftell.c: Likewise.
30464         * lib/ftello.c: Likewise.
30465         * lib/fts-cycle.c: Likewise.
30466         * lib/fts.c: Likewise.
30467         * lib/fts_.h: Likewise.
30468         * lib/full-read.c: Likewise.
30469         * lib/full-read.h: Likewise.
30470         * lib/full-write.c: Likewise.
30471         * lib/full-write.h: Likewise.
30472         * lib/fwritable.c: Likewise.
30473         * lib/fwritable.h: Likewise.
30474         * lib/fwriteerror.c: Likewise.
30475         * lib/fwriteerror.h: Likewise.
30476         * lib/fwriting.c: Likewise.
30477         * lib/fwriting.h: Likewise.
30478         * lib/gcd.c: Likewise.
30479         * lib/gcd.h: Likewise.
30480         * lib/getcwd.c: Likewise.
30481         * lib/getdate.h: Likewise.
30482         * lib/getdate.y: Likewise.
30483         * lib/getdomainname.c: Likewise.
30484         * lib/getdomainname.h: Likewise.
30485         * lib/getgroups.c: Likewise.
30486         * lib/gethostname.c: Likewise.
30487         * lib/gethrxtime.c: Likewise.
30488         * lib/gethrxtime.h: Likewise.
30489         * lib/getloadavg.c: Likewise.
30490         * lib/getndelim2.c: Likewise.
30491         * lib/getndelim2.h: Likewise.
30492         * lib/getnline.c: Likewise.
30493         * lib/getnline.h: Likewise.
30494         * lib/getopt.c: Likewise.
30495         * lib/getopt.in.h: Likewise.
30496         * lib/getopt1.c: Likewise.
30497         * lib/getopt_int.h: Likewise.
30498         * lib/getpagesize.h: Likewise.
30499         * lib/getsubopt.c: Likewise.
30500         * lib/gettime.c: Likewise.
30501         * lib/getugroups.c: Likewise.
30502         * lib/getugroups.h: Likewise.
30503         * lib/getusershell.c: Likewise.
30504         * lib/gl_anyavltree_list1.h: Likewise.
30505         * lib/gl_anyavltree_list2.h: Likewise.
30506         * lib/gl_anyhash_list1.h: Likewise.
30507         * lib/gl_anyhash_list2.h: Likewise.
30508         * lib/gl_anylinked_list1.h: Likewise.
30509         * lib/gl_anylinked_list2.h: Likewise.
30510         * lib/gl_anyrbtree_list1.h: Likewise.
30511         * lib/gl_anyrbtree_list2.h: Likewise.
30512         * lib/gl_anytree_list1.h: Likewise.
30513         * lib/gl_anytree_list2.h: Likewise.
30514         * lib/gl_anytree_oset.h: Likewise.
30515         * lib/gl_anytreehash_list1.h: Likewise.
30516         * lib/gl_anytreehash_list2.h: Likewise.
30517         * lib/gl_array_list.c: Likewise.
30518         * lib/gl_array_list.h: Likewise.
30519         * lib/gl_array_oset.c: Likewise.
30520         * lib/gl_array_oset.h: Likewise.
30521         * lib/gl_avltree_list.c: Likewise.
30522         * lib/gl_avltree_list.h: Likewise.
30523         * lib/gl_avltree_oset.c: Likewise.
30524         * lib/gl_avltree_oset.h: Likewise.
30525         * lib/gl_avltreehash_list.c: Likewise.
30526         * lib/gl_avltreehash_list.h: Likewise.
30527         * lib/gl_carray_list.c: Likewise.
30528         * lib/gl_carray_list.h: Likewise.
30529         * lib/gl_linked_list.c: Likewise.
30530         * lib/gl_linked_list.h: Likewise.
30531         * lib/gl_linkedhash_list.c: Likewise.
30532         * lib/gl_linkedhash_list.h: Likewise.
30533         * lib/gl_list.c: Likewise.
30534         * lib/gl_list.h: Likewise.
30535         * lib/gl_oset.c: Likewise.
30536         * lib/gl_oset.h: Likewise.
30537         * lib/gl_rbtree_list.c: Likewise.
30538         * lib/gl_rbtree_list.h: Likewise.
30539         * lib/gl_rbtree_oset.c: Likewise.
30540         * lib/gl_rbtree_oset.h: Likewise.
30541         * lib/gl_rbtreehash_list.c: Likewise.
30542         * lib/gl_rbtreehash_list.h: Likewise.
30543         * lib/gl_sublist.c: Likewise.
30544         * lib/gl_sublist.h: Likewise.
30545         * lib/group-member.c: Likewise.
30546         * lib/group-member.h: Likewise.
30547         * lib/hard-locale.c: Likewise.
30548         * lib/hard-locale.h: Likewise.
30549         * lib/hash-pjw.c: Likewise.
30550         * lib/hash-pjw.h: Likewise.
30551         * lib/hash-triple.c: Likewise.
30552         * lib/hash.c: Likewise.
30553         * lib/hash.h: Likewise.
30554         * lib/human.c: Likewise.
30555         * lib/human.h: Likewise.
30556         * lib/i-ring.c: Likewise.
30557         * lib/i-ring.h: Likewise.
30558         * lib/idcache.c: Likewise.
30559         * lib/imaxabs.c: Likewise.
30560         * lib/imaxdiv.c: Likewise.
30561         * lib/inet_pton.c: Likewise.
30562         * lib/inet_pton.h: Likewise.
30563         * lib/intprops.h: Likewise.
30564         * lib/inttostr.c: Likewise.
30565         * lib/inttostr.h: Likewise.
30566         * lib/inttypes.in.h: Likewise.
30567         * lib/isapipe.c: Likewise.
30568         * lib/isdir.c: Likewise.
30569         * lib/isnan.c: Likewise.
30570         * lib/isnan.h: Likewise.
30571         * lib/isnanf.c: Likewise.
30572         * lib/isnanf.h: Likewise.
30573         * lib/isnanl-nolibm.h: Likewise.
30574         * lib/isnanl.c: Likewise.
30575         * lib/isnanl.h: Likewise.
30576         * lib/javacomp.c: Likewise.
30577         * lib/javacomp.h: Likewise.
30578         * lib/javaexec.c: Likewise.
30579         * lib/javaexec.h: Likewise.
30580         * lib/javaversion.c: Likewise.
30581         * lib/javaversion.h: Likewise.
30582         * lib/javaversion.java: Likewise.
30583         * lib/lbrkprop.h: Likewise.
30584         * lib/lchmod.h: Likewise.
30585         * lib/lchown.c: Likewise.
30586         * lib/ldexpl.c: Likewise.
30587         * lib/linebreak.c: Likewise.
30588         * lib/linebreak.h: Likewise.
30589         * lib/linebuffer.c: Likewise.
30590         * lib/linebuffer.h: Likewise.
30591         * lib/locale.in.h: Likewise.
30592         * lib/logl.c: Likewise.
30593         * lib/long-options.c: Likewise.
30594         * lib/long-options.h: Likewise.
30595         * lib/lstat.c: Likewise.
30596         * lib/lstat.h: Likewise.
30597         * lib/math.in.h: Likewise.
30598         * lib/mbchar.c: Likewise.
30599         * lib/mbchar.h: Likewise.
30600         * lib/mbfile.h: Likewise.
30601         * lib/mbiter.h: Likewise.
30602         * lib/mbscasecmp.c: Likewise.
30603         * lib/mbscasestr.c: Likewise.
30604         * lib/mbschr.c: Likewise.
30605         * lib/mbscspn.c: Likewise.
30606         * lib/mbslen.c: Likewise.
30607         * lib/mbsncasecmp.c: Likewise.
30608         * lib/mbsnlen.c: Likewise.
30609         * lib/mbspbrk.c: Likewise.
30610         * lib/mbspcasecmp.c: Likewise.
30611         * lib/mbsrchr.c: Likewise.
30612         * lib/mbssep.c: Likewise.
30613         * lib/mbsspn.c: Likewise.
30614         * lib/mbsstr.c: Likewise.
30615         * lib/mbstok_r.c: Likewise.
30616         * lib/mbswidth.c: Likewise.
30617         * lib/mbswidth.h: Likewise.
30618         * lib/mbuiter.h: Likewise.
30619         * lib/memcasecmp.c: Likewise.
30620         * lib/memcasecmp.h: Likewise.
30621         * lib/memchr.c: Likewise.
30622         * lib/memcmp.c: Likewise.
30623         * lib/memcoll.c: Likewise.
30624         * lib/memcoll.h: Likewise.
30625         * lib/memcpy.c: Likewise.
30626         * lib/memrchr.c: Likewise.
30627         * lib/mkancesdirs.c: Likewise.
30628         * lib/mkdir-p.c: Likewise.
30629         * lib/mkdir-p.h: Likewise.
30630         * lib/mkdir.c: Likewise.
30631         * lib/mkdirat.c: Likewise.
30632         * lib/mkdtemp.c: Likewise.
30633         * lib/mkstemp-safer.c: Likewise.
30634         * lib/mkstemp.c: Likewise.
30635         * lib/modechange.c: Likewise.
30636         * lib/modechange.h: Likewise.
30637         * lib/mountlist.c: Likewise.
30638         * lib/mountlist.h: Likewise.
30639         * lib/mpsort.c: Likewise.
30640         * lib/nanosleep.c: Likewise.
30641         * lib/obstack.c: Likewise.
30642         * lib/obstack.h: Likewise.
30643         * lib/open-safer.c: Likewise.
30644         * lib/open.c: Likewise.
30645         * lib/openat-die.c: Likewise.
30646         * lib/openat-priv.h: Likewise.
30647         * lib/openat-proc.c: Likewise.
30648         * lib/openat.c: Likewise.
30649         * lib/openat.h: Likewise.
30650         * lib/pagealign_alloc.c: Likewise.
30651         * lib/pagealign_alloc.h: Likewise.
30652         * lib/physmem.c: Likewise.
30653         * lib/physmem.h: Likewise.
30654         * lib/pipe-safer.c: Likewise.
30655         * lib/pipe.c: Likewise.
30656         * lib/pipe.h: Likewise.
30657         * lib/posixtm.c: Likewise.
30658         * lib/posixtm.h: Likewise.
30659         * lib/posixver.c: Likewise.
30660         * lib/printf-frexp.c: Likewise.
30661         * lib/printf-frexp.h: Likewise.
30662         * lib/printf-frexpl.c: Likewise.
30663         * lib/printf-frexpl.h: Likewise.
30664         * lib/printf.c: Likewise.
30665         * lib/progname.c: Likewise.
30666         * lib/progname.h: Likewise.
30667         * lib/progreloc.c: Likewise.
30668         * lib/putenv.c: Likewise.
30669         * lib/quote.c: Likewise.
30670         * lib/quote.h: Likewise.
30671         * lib/quotearg.c: Likewise.
30672         * lib/quotearg.h: Likewise.
30673         * lib/raise.c: Likewise.
30674         * lib/readline.c: Likewise.
30675         * lib/readline.h: Likewise.
30676         * lib/readlink.c: Likewise.
30677         * lib/readtokens.c: Likewise.
30678         * lib/readtokens.h: Likewise.
30679         * lib/readtokens0.c: Likewise.
30680         * lib/readtokens0.h: Likewise.
30681         * lib/readutmp.c: Likewise.
30682         * lib/readutmp.h: Likewise.
30683         * lib/realloc.c: Likewise.
30684         * lib/relocwrapper.c: Likewise.
30685         * lib/rename-dest-slash.c: Likewise.
30686         * lib/rename.c: Likewise.
30687         * lib/rmdir.c: Likewise.
30688         * lib/rpmatch.c: Likewise.
30689         * lib/safe-read.c: Likewise.
30690         * lib/safe-read.h: Likewise.
30691         * lib/safe-write.c: Likewise.
30692         * lib/safe-write.h: Likewise.
30693         * lib/same-inode.h: Likewise.
30694         * lib/same.c: Likewise.
30695         * lib/same.h: Likewise.
30696         * lib/save-cwd.c: Likewise.
30697         * lib/save-cwd.h: Likewise.
30698         * lib/savedir.c: Likewise.
30699         * lib/savedir.h: Likewise.
30700         * lib/savewd.c: Likewise.
30701         * lib/savewd.h: Likewise.
30702         * lib/search.in.h: Likewise.
30703         * lib/setenv.c: Likewise.
30704         * lib/setenv.h: Likewise.
30705         * lib/settime.c: Likewise.
30706         * lib/sh-quote.c: Likewise.
30707         * lib/sh-quote.h: Likewise.
30708         * lib/sig2str.c: Likewise.
30709         * lib/sig2str.h: Likewise.
30710         * lib/signal.in.h: Likewise.
30711         * lib/signbitd.c: Likewise.
30712         * lib/signbitf.c: Likewise.
30713         * lib/signbitl.c: Likewise.
30714         * lib/sigprocmask.c: Likewise.
30715         * lib/sincosl.c: Likewise.
30716         * lib/sleep.c: Likewise.
30717         * lib/sprintf.c: Likewise.
30718         * lib/sqrtl.c: Likewise.
30719         * lib/stat-time.h: Likewise.
30720         * lib/stdio--.h: Likewise.
30721         * lib/stdio-safer.h: Likewise.
30722         * lib/stdlib--.h: Likewise.
30723         * lib/stdlib-safer.h: Likewise.
30724         * lib/stdlib.in.h: Likewise.
30725         * lib/stpcpy.c: Likewise.
30726         * lib/stpncpy.c: Likewise.
30727         * lib/strchrnul.c: Likewise.
30728         * lib/strcspn.c: Likewise.
30729         * lib/strerror.c: Likewise.
30730         * lib/strftime.c: Likewise.
30731         * lib/strftime.h: Likewise.
30732         * lib/striconveh.c: Likewise.
30733         * lib/striconveh.h: Likewise.
30734         * lib/striconveha.c: Likewise.
30735         * lib/striconveha.h: Likewise.
30736         * lib/stripslash.c: Likewise.
30737         * lib/strnlen1.c: Likewise.
30738         * lib/strnlen1.h: Likewise.
30739         * lib/strtod.c: Likewise.
30740         * lib/strtoimax.c: Likewise.
30741         * lib/strtok_r.c: Likewise.
30742         * lib/strtol.c: Likewise.
30743         * lib/strtoll.c: Likewise.
30744         * lib/strtoul.c: Likewise.
30745         * lib/strtoull.c: Likewise.
30746         * lib/sysexits.in.h: Likewise.
30747         * lib/tempname.c: Likewise.
30748         * lib/tempname.h: Likewise.
30749         * lib/timespec.h: Likewise.
30750         * lib/tls.c: Likewise.
30751         * lib/tls.h: Likewise.
30752         * lib/tmpdir.c: Likewise.
30753         * lib/tmpdir.h: Likewise.
30754         * lib/tmpfile-safer.c: Likewise.
30755         * lib/tmpfile.c: Likewise.
30756         * lib/trigl.c: Likewise.
30757         * lib/trigl.h: Likewise.
30758         * lib/trim.c: Likewise.
30759         * lib/trim.h: Likewise.
30760         * lib/trunc.c: Likewise.
30761         * lib/truncf.c: Likewise.
30762         * lib/truncl.c: Likewise.
30763         * lib/tsearch.c: Likewise.
30764         * lib/unicodeio.c: Likewise.
30765         * lib/unicodeio.h: Likewise.
30766         * lib/unistd--.h: Likewise.
30767         * lib/unistd-safer.h: Likewise.
30768         * lib/unistdio/ulc-fprintf.c: Likewise.
30769         * lib/unistdio/ulc-vfprintf.c: Likewise.
30770         * lib/unlinkdir.c: Likewise.
30771         * lib/unlinkdir.h: Likewise.
30772         * lib/unlocked-io.h: Likewise.
30773         * lib/unsetenv.c: Likewise.
30774         * lib/userspec.c: Likewise.
30775         * lib/utime.c: Likewise.
30776         * lib/utimecmp.c: Likewise.
30777         * lib/utimecmp.h: Likewise.
30778         * lib/utimens.c: Likewise.
30779         * lib/verify.h: Likewise.
30780         * lib/verror.c: Likewise.
30781         * lib/verror.h: Likewise.
30782         * lib/version-etc-fsf.c: Likewise.
30783         * lib/version-etc.c: Likewise.
30784         * lib/version-etc.h: Likewise.
30785         * lib/vfprintf.c: Likewise.
30786         * lib/vprintf.c: Likewise.
30787         * lib/vsprintf.c: Likewise.
30788         * lib/w32spawn.h: Likewise.
30789         * lib/wait-process.c: Likewise.
30790         * lib/wait-process.h: Likewise.
30791         * lib/wcwidth.c: Likewise.
30792         * lib/write-any-file.c: Likewise.
30793         * lib/xalloc-die.c: Likewise.
30794         * lib/xalloc.h: Likewise.
30795         * lib/xasprintf.c: Likewise.
30796         * lib/xgetcwd.c: Likewise.
30797         * lib/xgetcwd.h: Likewise.
30798         * lib/xgetdomainname.c: Likewise.
30799         * lib/xgetdomainname.h: Likewise.
30800         * lib/xgethostname.c: Likewise.
30801         * lib/xmalloc.c: Likewise.
30802         * lib/xmalloca.c: Likewise.
30803         * lib/xmalloca.h: Likewise.
30804         * lib/xmemcoll.c: Likewise.
30805         * lib/xnanosleep.c: Likewise.
30806         * lib/xreadlink.c: Likewise.
30807         * lib/xreadlink.h: Likewise.
30808         * lib/xsetenv.c: Likewise.
30809         * lib/xsetenv.h: Likewise.
30810         * lib/xstriconv.c: Likewise.
30811         * lib/xstriconv.h: Likewise.
30812         * lib/xstrndup.c: Likewise.
30813         * lib/xstrndup.h: Likewise.
30814         * lib/xstrtod.c: Likewise.
30815         * lib/xstrtod.h: Likewise.
30816         * lib/xstrtol-error.c: Likewise.
30817         * lib/xstrtol.c: Likewise.
30818         * lib/xstrtol.h: Likewise.
30819         * lib/xtime.h: Likewise.
30820         * lib/xvasprintf.c: Likewise.
30821         * lib/xvasprintf.h: Likewise.
30822         * lib/yesno.c: Likewise.
30823         * lib/yesno.h: Likewise.
30824         * posix-modules: Likewise.
30825         * tests/test-alloca-opt.c: Likewise.
30826         * tests/test-arcfour.c: Likewise.
30827         * tests/test-arctwo.c: Likewise.
30828         * tests/test-argmatch.c: Likewise.
30829         * tests/test-argp-2.sh: Likewise.
30830         * tests/test-argp.c: Likewise.
30831         * tests/test-arpa_inet.c: Likewise.
30832         * tests/test-array_list.c: Likewise.
30833         * tests/test-array_oset.c: Likewise.
30834         * tests/test-atexit.c: Likewise.
30835         * tests/test-avltree_list.c: Likewise.
30836         * tests/test-avltree_oset.c: Likewise.
30837         * tests/test-avltreehash_list.c: Likewise.
30838         * tests/test-base64.c: Likewise.
30839         * tests/test-binary-io.c: Likewise.
30840         * tests/test-byteswap.c: Likewise.
30841         * tests/test-c-ctype.c: Likewise.
30842         * tests/test-c-strcasecmp.c: Likewise.
30843         * tests/test-c-strcasestr.c: Likewise.
30844         * tests/test-c-strncasecmp.c: Likewise.
30845         * tests/test-c-strstr.c: Likewise.
30846         * tests/test-canonicalize-lgpl.c: Likewise.
30847         * tests/test-canonicalize.c: Likewise.
30848         * tests/test-carray_list.c: Likewise.
30849         * tests/test-ceilf.c: Likewise.
30850         * tests/test-ceill.c: Likewise.
30851         * tests/test-count-one-bits.c: Likewise.
30852         * tests/test-crc.c: Likewise.
30853         * tests/test-dirname.c: Likewise.
30854         * tests/test-fbufmode.c: Likewise.
30855         * tests/test-fcntl.c: Likewise.
30856         * tests/test-fflush.c: Likewise.
30857         * tests/test-floorf.c: Likewise.
30858         * tests/test-floorl.c: Likewise.
30859         * tests/test-fopen.c: Likewise.
30860         * tests/test-fprintf-posix.c: Likewise.
30861         * tests/test-fprintf-posix.h: Likewise.
30862         * tests/test-fpurge.c: Likewise.
30863         * tests/test-freadable.c: Likewise.
30864         * tests/test-freadahead.c: Likewise.
30865         * tests/test-freading.c: Likewise.
30866         * tests/test-freopen.c: Likewise.
30867         * tests/test-frexp.c: Likewise.
30868         * tests/test-frexpl.c: Likewise.
30869         * tests/test-fseek.c: Likewise.
30870         * tests/test-fseeko.c: Likewise.
30871         * tests/test-fseterr.c: Likewise.
30872         * tests/test-fstrcmp.c: Likewise.
30873         * tests/test-ftell.c: Likewise.
30874         * tests/test-ftello.c: Likewise.
30875         * tests/test-fwritable.c: Likewise.
30876         * tests/test-fwriting.c: Likewise.
30877         * tests/test-getaddrinfo.c: Likewise.
30878         * tests/test-getpass.c: Likewise.
30879         * tests/test-gettimeofday.c: Likewise.
30880         * tests/test-hmac-md5.c: Likewise.
30881         * tests/test-hmac-sha1.c: Likewise.
30882         * tests/test-iconv.c: Likewise.
30883         * tests/test-iconvme.c: Likewise.
30884         * tests/test-inttypes.c: Likewise.
30885         * tests/test-isnan.c: Likewise.
30886         * tests/test-isnanf.c: Likewise.
30887         * tests/test-isnanl-nolibm.c: Likewise.
30888         * tests/test-isnanl.c: Likewise.
30889         * tests/test-isnanl.h: Likewise.
30890         * tests/test-ldexpl.c: Likewise.
30891         * tests/test-linked_list.c: Likewise.
30892         * tests/test-linkedhash_list.c: Likewise.
30893         * tests/test-locale.c: Likewise.
30894         * tests/test-localename.c: Likewise.
30895         * tests/test-lock.c: Likewise.
30896         * tests/test-lseek.c: Likewise.
30897         * tests/test-malloca.c: Likewise.
30898         * tests/test-math.c: Likewise.
30899         * tests/test-mbscasecmp.c: Likewise.
30900         * tests/test-mbscasestr1.c: Likewise.
30901         * tests/test-mbscasestr2.c: Likewise.
30902         * tests/test-mbscasestr3.c: Likewise.
30903         * tests/test-mbscasestr4.c: Likewise.
30904         * tests/test-mbschr.c: Likewise.
30905         * tests/test-mbscspn.c: Likewise.
30906         * tests/test-mbsncasecmp.c: Likewise.
30907         * tests/test-mbspbrk.c: Likewise.
30908         * tests/test-mbspcasecmp.c: Likewise.
30909         * tests/test-mbsrchr.c: Likewise.
30910         * tests/test-mbsspn.c: Likewise.
30911         * tests/test-mbsstr1.c: Likewise.
30912         * tests/test-mbsstr2.c: Likewise.
30913         * tests/test-mbsstr3.c: Likewise.
30914         * tests/test-md5.c: Likewise.
30915         * tests/test-memmem.c: Likewise.
30916         * tests/test-netinet_in.c: Likewise.
30917         * tests/test-open.c: Likewise.
30918         * tests/test-printf-frexp.c: Likewise.
30919         * tests/test-printf-frexpl.c: Likewise.
30920         * tests/test-printf-posix.c: Likewise.
30921         * tests/test-printf-posix.h: Likewise.
30922         * tests/test-rbtree_list.c: Likewise.
30923         * tests/test-rbtree_oset.c: Likewise.
30924         * tests/test-rbtreehash_list.c: Likewise.
30925         * tests/test-read-file.c: Likewise.
30926         * tests/test-rijndael.c: Likewise.
30927         * tests/test-search.c: Likewise.
30928         * tests/test-signbit.c: Likewise.
30929         * tests/test-sleep.c: Likewise.
30930         * tests/test-snprintf-posix.c: Likewise.
30931         * tests/test-snprintf-posix.h: Likewise.
30932         * tests/test-snprintf.c: Likewise.
30933         * tests/test-sprintf-posix.c: Likewise.
30934         * tests/test-sprintf-posix.h: Likewise.
30935         * tests/test-stat-time.c: Likewise.
30936         * tests/test-stdbool.c: Likewise.
30937         * tests/test-stdint.c: Likewise.
30938         * tests/test-stdio.c: Likewise.
30939         * tests/test-stdlib.c: Likewise.
30940         * tests/test-stpncpy.c: Likewise.
30941         * tests/test-strcasestr.c: Likewise.
30942         * tests/test-striconv.c: Likewise.
30943         * tests/test-striconveh.c: Likewise.
30944         * tests/test-striconveha.c: Likewise.
30945         * tests/test-string.c: Likewise.
30946         * tests/test-sys_select.c: Likewise.
30947         * tests/test-sys_socket.c: Likewise.
30948         * tests/test-sys_stat.c: Likewise.
30949         * tests/test-sys_time.c: Likewise.
30950         * tests/test-sysexits.c: Likewise.
30951         * tests/test-time.c: Likewise.
30952         * tests/test-tls.c: Likewise.
30953         * tests/test-trunc.c: Likewise.
30954         * tests/test-truncf.c: Likewise.
30955         * tests/test-truncl.c: Likewise.
30956         * tests/test-unistd.c: Likewise.
30957         * tests/test-vasnprintf-posix.c: Likewise.
30958         * tests/test-vasnprintf-posix2.c: Likewise.
30959         * tests/test-vasnprintf.c: Likewise.
30960         * tests/test-vasprintf-posix.c: Likewise.
30961         * tests/test-vasprintf.c: Likewise.
30962         * tests/test-verify.c: Likewise.
30963         * tests/test-vfprintf-posix.c: Likewise.
30964         * tests/test-vprintf-posix.c: Likewise.
30965         * tests/test-vsnprintf-posix.c: Likewise.
30966         * tests/test-vsnprintf.c: Likewise.
30967         * tests/test-vsprintf-posix.c: Likewise.
30968         * tests/test-wchar.c: Likewise.
30969         * tests/test-wctype.c: Likewise.
30970         * tests/test-wcwidth.c: Likewise.
30971         * tests/test-xstrtol.c: Likewise.
30972         * tests/test-xvasprintf.c: Likewise.
30973         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
30974         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
30975         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
30976         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
30977         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
30978         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
30979         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
30980         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
30981         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
30982         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
30983         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
30984         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
30985         * tests/uniname/test-uninames.c: Likewise.
30986         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
30987         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
30988         * tests/unistdio/test-u16-printf1.h: Likewise.
30989         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
30990         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
30991         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
30992         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
30993         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
30994         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
30995         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
30996         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
30997         * tests/unistdio/test-u32-printf1.h: Likewise.
30998         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
30999         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
31000         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
31001         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
31002         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
31003         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
31004         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
31005         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
31006         * tests/unistdio/test-u8-printf1.h: Likewise.
31007         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
31008         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
31009         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
31010         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
31011         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
31012         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
31013         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
31014         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
31015         * tests/unistdio/test-ulc-printf1.h: Likewise.
31016         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
31017         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
31018         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
31019         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
31020         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
31021         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
31022         * tests/uniwidth/test-u16-strwidth.c: Likewise.
31023         * tests/uniwidth/test-u16-width.c: Likewise.
31024         * tests/uniwidth/test-u32-strwidth.c: Likewise.
31025         * tests/uniwidth/test-u32-width.c: Likewise.
31026         * tests/uniwidth/test-u8-strwidth.c: Likewise.
31027         * tests/uniwidth/test-u8-width.c: Likewise.
31028         * tests/uniwidth/test-uc_width.c: Likewise.
31029         * config/srclist-update: Likewise.
31030         (fixlicense): Update to GPLv3+.
31031
31032         Change copyright notice from LGPLv2.1+ to LGPLv3+.
31033         * tests/test-tsearch.c: Change copyright notice.
31034
31035         Change copyright notice from LGPLv2.0+ to LGPLv3+.
31036         * lib/c-strcaseeq.h: Change copyright notice.
31037         * lib/streq.h: Likewise.
31038         * lib/uniconv.h: Likewise.
31039         * lib/uniconv/u-conv-from-enc.h: Likewise.
31040         * lib/uniconv/u-conv-to-enc.h: Likewise.
31041         * lib/uniconv/u-strconv-from-enc.h: Likewise.
31042         * lib/uniconv/u-strconv-to-enc.h: Likewise.
31043         * lib/uniconv/u16-conv-from-enc.c: Likewise.
31044         * lib/uniconv/u16-conv-to-enc.c: Likewise.
31045         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
31046         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
31047         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
31048         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
31049         * lib/uniconv/u32-conv-from-enc.c: Likewise.
31050         * lib/uniconv/u32-conv-to-enc.c: Likewise.
31051         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
31052         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
31053         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
31054         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
31055         * lib/uniconv/u8-conv-from-enc.c: Likewise.
31056         * lib/uniconv/u8-conv-to-enc.c: Likewise.
31057         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
31058         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
31059         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
31060         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
31061         * lib/uniname.h: Likewise.
31062         * lib/uniname/uniname.c: Likewise.
31063         * lib/unistdio.h: Likewise.
31064         * lib/unistdio/u-asnprintf.h: Likewise.
31065         * lib/unistdio/u-asprintf.h: Likewise.
31066         * lib/unistdio/u-printf-args.c: Likewise.
31067         * lib/unistdio/u-printf-args.h: Likewise.
31068         * lib/unistdio/u-printf-parse.h: Likewise.
31069         * lib/unistdio/u-snprintf.h: Likewise.
31070         * lib/unistdio/u-sprintf.h: Likewise.
31071         * lib/unistdio/u-vasprintf.h: Likewise.
31072         * lib/unistdio/u-vsnprintf.h: Likewise.
31073         * lib/unistdio/u-vsprintf.h: Likewise.
31074         * lib/unistdio/u16-asnprintf.c: Likewise.
31075         * lib/unistdio/u16-asprintf.c: Likewise.
31076         * lib/unistdio/u16-printf-parse.c: Likewise.
31077         * lib/unistdio/u16-snprintf.c: Likewise.
31078         * lib/unistdio/u16-sprintf.c: Likewise.
31079         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
31080         * lib/unistdio/u16-u16-asprintf.c: Likewise.
31081         * lib/unistdio/u16-u16-snprintf.c: Likewise.
31082         * lib/unistdio/u16-u16-sprintf.c: Likewise.
31083         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
31084         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
31085         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
31086         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
31087         * lib/unistdio/u16-vasnprintf.c: Likewise.
31088         * lib/unistdio/u16-vasprintf.c: Likewise.
31089         * lib/unistdio/u16-vsnprintf.c: Likewise.
31090         * lib/unistdio/u16-vsprintf.c: Likewise.
31091         * lib/unistdio/u32-asnprintf.c: Likewise.
31092         * lib/unistdio/u32-asprintf.c: Likewise.
31093         * lib/unistdio/u32-printf-parse.c: Likewise.
31094         * lib/unistdio/u32-snprintf.c: Likewise.
31095         * lib/unistdio/u32-sprintf.c: Likewise.
31096         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
31097         * lib/unistdio/u32-u32-asprintf.c: Likewise.
31098         * lib/unistdio/u32-u32-snprintf.c: Likewise.
31099         * lib/unistdio/u32-u32-sprintf.c: Likewise.
31100         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
31101         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
31102         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
31103         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
31104         * lib/unistdio/u32-vasnprintf.c: Likewise.
31105         * lib/unistdio/u32-vasprintf.c: Likewise.
31106         * lib/unistdio/u32-vsnprintf.c: Likewise.
31107         * lib/unistdio/u32-vsprintf.c: Likewise.
31108         * lib/unistdio/u8-asnprintf.c: Likewise.
31109         * lib/unistdio/u8-asprintf.c: Likewise.
31110         * lib/unistdio/u8-printf-parse.c: Likewise.
31111         * lib/unistdio/u8-snprintf.c: Likewise.
31112         * lib/unistdio/u8-sprintf.c: Likewise.
31113         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
31114         * lib/unistdio/u8-u8-asprintf.c: Likewise.
31115         * lib/unistdio/u8-u8-snprintf.c: Likewise.
31116         * lib/unistdio/u8-u8-sprintf.c: Likewise.
31117         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
31118         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
31119         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
31120         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
31121         * lib/unistdio/u8-vasnprintf.c: Likewise.
31122         * lib/unistdio/u8-vasprintf.c: Likewise.
31123         * lib/unistdio/u8-vsnprintf.c: Likewise.
31124         * lib/unistdio/u8-vsprintf.c: Likewise.
31125         * lib/unistdio/ulc-asnprintf.c: Likewise.
31126         * lib/unistdio/ulc-asprintf.c: Likewise.
31127         * lib/unistdio/ulc-printf-parse.c: Likewise.
31128         * lib/unistdio/ulc-snprintf.c: Likewise.
31129         * lib/unistdio/ulc-sprintf.c: Likewise.
31130         * lib/unistdio/ulc-vasnprintf.c: Likewise.
31131         * lib/unistdio/ulc-vasprintf.c: Likewise.
31132         * lib/unistdio/ulc-vsnprintf.c: Likewise.
31133         * lib/unistdio/ulc-vsprintf.c: Likewise.
31134         * lib/unistr.h: Likewise.
31135         * lib/unistr/u-cpy-alloc.h: Likewise.
31136         * lib/unistr/u-cpy.h: Likewise.
31137         * lib/unistr/u-endswith.h: Likewise.
31138         * lib/unistr/u-move.h: Likewise.
31139         * lib/unistr/u-set.h: Likewise.
31140         * lib/unistr/u-startswith.h: Likewise.
31141         * lib/unistr/u-stpcpy.h: Likewise.
31142         * lib/unistr/u-stpncpy.h: Likewise.
31143         * lib/unistr/u-strcat.h: Likewise.
31144         * lib/unistr/u-strcpy.h: Likewise.
31145         * lib/unistr/u-strcspn.h: Likewise.
31146         * lib/unistr/u-strdup.h: Likewise.
31147         * lib/unistr/u-strlen.h: Likewise.
31148         * lib/unistr/u-strncat.h: Likewise.
31149         * lib/unistr/u-strncpy.h: Likewise.
31150         * lib/unistr/u-strnlen.h: Likewise.
31151         * lib/unistr/u-strpbrk.h: Likewise.
31152         * lib/unistr/u-strspn.h: Likewise.
31153         * lib/unistr/u-strstr.h: Likewise.
31154         * lib/unistr/u-strtok.h: Likewise.
31155         * lib/unistr/u16-check.c: Likewise.
31156         * lib/unistr/u16-chr.c: Likewise.
31157         * lib/unistr/u16-cmp.c: Likewise.
31158         * lib/unistr/u16-cpy-alloc.c: Likewise.
31159         * lib/unistr/u16-cpy.c: Likewise.
31160         * lib/unistr/u16-endswith.c: Likewise.
31161         * lib/unistr/u16-mblen.c: Likewise.
31162         * lib/unistr/u16-mbsnlen.c: Likewise.
31163         * lib/unistr/u16-mbtouc-aux.c: Likewise.
31164         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
31165         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
31166         * lib/unistr/u16-mbtouc.c: Likewise.
31167         * lib/unistr/u16-mbtoucr.c: Likewise.
31168         * lib/unistr/u16-move.c: Likewise.
31169         * lib/unistr/u16-next.c: Likewise.
31170         * lib/unistr/u16-prev.c: Likewise.
31171         * lib/unistr/u16-set.c: Likewise.
31172         * lib/unistr/u16-startswith.c: Likewise.
31173         * lib/unistr/u16-stpcpy.c: Likewise.
31174         * lib/unistr/u16-stpncpy.c: Likewise.
31175         * lib/unistr/u16-strcat.c: Likewise.
31176         * lib/unistr/u16-strchr.c: Likewise.
31177         * lib/unistr/u16-strcmp.c: Likewise.
31178         * lib/unistr/u16-strcpy.c: Likewise.
31179         * lib/unistr/u16-strcspn.c: Likewise.
31180         * lib/unistr/u16-strdup.c: Likewise.
31181         * lib/unistr/u16-strlen.c: Likewise.
31182         * lib/unistr/u16-strmblen.c: Likewise.
31183         * lib/unistr/u16-strmbtouc.c: Likewise.
31184         * lib/unistr/u16-strncat.c: Likewise.
31185         * lib/unistr/u16-strncmp.c: Likewise.
31186         * lib/unistr/u16-strncpy.c: Likewise.
31187         * lib/unistr/u16-strnlen.c: Likewise.
31188         * lib/unistr/u16-strpbrk.c: Likewise.
31189         * lib/unistr/u16-strrchr.c: Likewise.
31190         * lib/unistr/u16-strspn.c: Likewise.
31191         * lib/unistr/u16-strstr.c: Likewise.
31192         * lib/unistr/u16-strtok.c: Likewise.
31193         * lib/unistr/u16-to-u32.c: Likewise.
31194         * lib/unistr/u16-to-u8.c: Likewise.
31195         * lib/unistr/u16-uctomb-aux.c: Likewise.
31196         * lib/unistr/u16-uctomb.c: Likewise.
31197         * lib/unistr/u32-check.c: Likewise.
31198         * lib/unistr/u32-chr.c: Likewise.
31199         * lib/unistr/u32-cmp.c: Likewise.
31200         * lib/unistr/u32-cpy-alloc.c: Likewise.
31201         * lib/unistr/u32-cpy.c: Likewise.
31202         * lib/unistr/u32-endswith.c: Likewise.
31203         * lib/unistr/u32-mblen.c: Likewise.
31204         * lib/unistr/u32-mbsnlen.c: Likewise.
31205         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
31206         * lib/unistr/u32-mbtouc.c: Likewise.
31207         * lib/unistr/u32-mbtoucr.c: Likewise.
31208         * lib/unistr/u32-move.c: Likewise.
31209         * lib/unistr/u32-next.c: Likewise.
31210         * lib/unistr/u32-prev.c: Likewise.
31211         * lib/unistr/u32-set.c: Likewise.
31212         * lib/unistr/u32-startswith.c: Likewise.
31213         * lib/unistr/u32-stpcpy.c: Likewise.
31214         * lib/unistr/u32-stpncpy.c: Likewise.
31215         * lib/unistr/u32-strcat.c: Likewise.
31216         * lib/unistr/u32-strchr.c: Likewise.
31217         * lib/unistr/u32-strcmp.c: Likewise.
31218         * lib/unistr/u32-strcpy.c: Likewise.
31219         * lib/unistr/u32-strcspn.c: Likewise.
31220         * lib/unistr/u32-strdup.c: Likewise.
31221         * lib/unistr/u32-strlen.c: Likewise.
31222         * lib/unistr/u32-strmblen.c: Likewise.
31223         * lib/unistr/u32-strmbtouc.c: Likewise.
31224         * lib/unistr/u32-strncat.c: Likewise.
31225         * lib/unistr/u32-strncmp.c: Likewise.
31226         * lib/unistr/u32-strncpy.c: Likewise.
31227         * lib/unistr/u32-strnlen.c: Likewise.
31228         * lib/unistr/u32-strpbrk.c: Likewise.
31229         * lib/unistr/u32-strrchr.c: Likewise.
31230         * lib/unistr/u32-strspn.c: Likewise.
31231         * lib/unistr/u32-strstr.c: Likewise.
31232         * lib/unistr/u32-strtok.c: Likewise.
31233         * lib/unistr/u32-to-u16.c: Likewise.
31234         * lib/unistr/u32-to-u8.c: Likewise.
31235         * lib/unistr/u32-uctomb.c: Likewise.
31236         * lib/unistr/u8-check.c: Likewise.
31237         * lib/unistr/u8-chr.c: Likewise.
31238         * lib/unistr/u8-cmp.c: Likewise.
31239         * lib/unistr/u8-cpy-alloc.c: Likewise.
31240         * lib/unistr/u8-cpy.c: Likewise.
31241         * lib/unistr/u8-endswith.c: Likewise.
31242         * lib/unistr/u8-mblen.c: Likewise.
31243         * lib/unistr/u8-mbsnlen.c: Likewise.
31244         * lib/unistr/u8-mbtouc-aux.c: Likewise.
31245         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
31246         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
31247         * lib/unistr/u8-mbtouc.c: Likewise.
31248         * lib/unistr/u8-mbtoucr.c: Likewise.
31249         * lib/unistr/u8-move.c: Likewise.
31250         * lib/unistr/u8-next.c: Likewise.
31251         * lib/unistr/u8-prev.c: Likewise.
31252         * lib/unistr/u8-set.c: Likewise.
31253         * lib/unistr/u8-startswith.c: Likewise.
31254         * lib/unistr/u8-stpcpy.c: Likewise.
31255         * lib/unistr/u8-stpncpy.c: Likewise.
31256         * lib/unistr/u8-strcat.c: Likewise.
31257         * lib/unistr/u8-strchr.c: Likewise.
31258         * lib/unistr/u8-strcmp.c: Likewise.
31259         * lib/unistr/u8-strcpy.c: Likewise.
31260         * lib/unistr/u8-strcspn.c: Likewise.
31261         * lib/unistr/u8-strdup.c: Likewise.
31262         * lib/unistr/u8-strlen.c: Likewise.
31263         * lib/unistr/u8-strmblen.c: Likewise.
31264         * lib/unistr/u8-strmbtouc.c: Likewise.
31265         * lib/unistr/u8-strncat.c: Likewise.
31266         * lib/unistr/u8-strncmp.c: Likewise.
31267         * lib/unistr/u8-strncpy.c: Likewise.
31268         * lib/unistr/u8-strnlen.c: Likewise.
31269         * lib/unistr/u8-strpbrk.c: Likewise.
31270         * lib/unistr/u8-strrchr.c: Likewise.
31271         * lib/unistr/u8-strspn.c: Likewise.
31272         * lib/unistr/u8-strstr.c: Likewise.
31273         * lib/unistr/u8-strtok.c: Likewise.
31274         * lib/unistr/u8-to-u16.c: Likewise.
31275         * lib/unistr/u8-to-u32.c: Likewise.
31276         * lib/unistr/u8-uctomb-aux.c: Likewise.
31277         * lib/unistr/u8-uctomb.c: Likewise.
31278         * lib/unitypes.h: Likewise.
31279         * lib/uniwidth.h: Likewise.
31280         * lib/uniwidth/cjk.h: Likewise.
31281         * lib/uniwidth/u16-strwidth.c: Likewise.
31282         * lib/uniwidth/u16-width.c: Likewise.
31283         * lib/uniwidth/u32-strwidth.c: Likewise.
31284         * lib/uniwidth/u32-width.c: Likewise.
31285         * lib/uniwidth/u8-strwidth.c: Likewise.
31286         * lib/uniwidth/u8-width.c: Likewise.
31287         * lib/uniwidth/width.c: Likewise.
31288
31289 2007-10-07  Bruno Haible  <bruno@clisp.org>
31290
31291         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
31292         The file is still under LGPL (see modules/inttypes).
31293
31294 2007-10-06  Bruno Haible  <bruno@clisp.org>
31295
31296         * modules/trunc (Dependencies): Add 'extensions'.
31297         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
31298         Reported by Ben Pfaff <blp@gnu.org>.
31299
31300 2007-10-06  Bruno Haible  <bruno@clisp.org>
31301
31302         * modules/freopen-tests: New file.
31303         * tests/test-freopen.c: New file.
31304
31305         * modules/fopen-tests: New file.
31306         * tests/test-fopen.c: New file.
31307
31308         * modules/fopen: New file.
31309         * lib/fopen.c: New file.
31310         * m4/fopen.m4: New file.
31311         * modules/freopen: New file.
31312         * lib/freopen.c: New file.
31313         * m4/freopen.m4: New file.
31314         * lib/stdio.in.h (fopen, freopen): New declarations.
31315         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
31316         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
31317         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
31318         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
31319         * doc/functions/fopen.texi: Mention the 'fopen' module.
31320         * doc/functions/freopen.texi: Mention the 'freopen' module.
31321
31322 2007-10-06  Bruno Haible  <bruno@clisp.org>
31323
31324         * modules/open-tests: New file.
31325         * tests/test-open.c: New file.
31326
31327         * modules/open: New file.
31328         * lib/open.c: New file.
31329         * m4/open.m4: New file.
31330         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
31331         lib/open.c does.
31332         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
31333         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
31334         macros.
31335         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
31336         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
31337         REPLACE_OPEN.
31338         * doc/functions/open.texi: Mention the 'open' module.
31339
31340 2007-10-04  Bruno Haible  <bruno@clisp.org>
31341
31342         * modules/ceill-tests: New file.
31343         * tests/test-ceill.c: New file.
31344
31345         * modules/ceill: New file.
31346         * lib/ceill.c: Replace entire file.
31347         * m4/ceill.m4: New file.
31348         * lib/math.in.h (ceill): Replace declaration.
31349         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
31350         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
31351         * doc/functions/ceill.texi: Mention the 'ceill' module.
31352         * modules/mathl (Files): Remove lib/ceill.c.
31353         (Depends-on): Add ceill.
31354
31355 2007-10-04  Bruno Haible  <bruno@clisp.org>
31356
31357         * modules/ceilf-tests: New file.
31358         * tests/test-ceilf.c: New file.
31359
31360         * modules/ceilf: New file.
31361         * lib/ceil.c: New file.
31362         * lib/ceilf.c: New file.
31363         * m4/ceilf.m4: New file.
31364         * lib/math.in.h (ceilf): New declaration.
31365         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
31366         HAVE_DECL_CEILF.
31367         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
31368         HAVE_DECL_CEILF.
31369         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
31370
31371 2007-10-04  Bruno Haible  <bruno@clisp.org>
31372
31373         * modules/floorl-tests: New file.
31374         * tests/test-floorl.c: New file.
31375
31376         * modules/floorl: New file.
31377         * lib/floorl.c: Replace entire file.
31378         * m4/floorl.m4: New file.
31379         * lib/math.in.h (floorl): Replace declaration.
31380         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
31381         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
31382         * doc/functions/floorl.texi: Mention the 'floorl' module.
31383         * modules/mathl (Files): Remove lib/floorl.c.
31384         (Depends-on): Add floorl.
31385
31386 2007-10-04  Bruno Haible  <bruno@clisp.org>
31387
31388         * modules/floorf-tests: New file.
31389         * tests/test-floorf.c: New file.
31390
31391         * modules/floorf: New file.
31392         * lib/floor.c: New file.
31393         * lib/floorf.c: New file.
31394         * m4/floorf.m4: New file.
31395         * lib/math.in.h (floorf): New declaration.
31396         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
31397         HAVE_DECL_FLOORF.
31398         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
31399         HAVE_DECL_FLOORF.
31400         * doc/functions/floorf.texi: Mention the 'floorf' module.
31401
31402 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
31403             Bruno Haible  <bruno@clisp.org>
31404
31405         Advertise for the Git server instead of the CVS server.
31406         * doc/gnulib-intro.texi (Steady Development): Mention the Git
31407         repository instead of the CVS one.
31408         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
31409         about all VCS systems generically.
31410         * doc/gnulib.texi (Introduction): Capitalize `Git'.
31411
31412 2007-10-04  Bruno Haible  <bruno@clisp.org>
31413
31414         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
31415         means.
31416         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
31417
31418 2007-10-04  Bruno Haible  <bruno@clisp.org>
31419
31420         * modules/truncl-tests: New file.
31421         * tests/test-truncl.c: New file.
31422
31423         * modules/truncl: New file.
31424         * lib/truncl.c: New file.
31425         * m4/truncl.m4: New file.
31426         * lib/math.in.h (truncl): New declaration.
31427         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
31428         HAVE_DECL_TRUNCL.
31429         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
31430         HAVE_DECL_TRUNCL.
31431         * doc/functions/truncl.texi: Mention the 'truncl' module.
31432
31433 2007-10-04  Bruno Haible  <bruno@clisp.org>
31434
31435         * modules/truncf-tests: New file.
31436         * tests/test-truncf.c: New file.
31437
31438         * modules/truncf: New file.
31439         * lib/trunc.c: Make paramerizable through USE_* macros.
31440         * lib/truncf.c: New file.
31441         * m4/truncf.m4: New file.
31442         * lib/math.in.h (truncf): New declaration.
31443         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
31444         HAVE_DECL_TRUNCF.
31445         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
31446         HAVE_DECL_TRUNCF.
31447         * doc/functions/truncf.texi: Mention the 'truncf' module.
31448
31449 2007-10-03  Bruno Haible  <bruno@clisp.org>
31450
31451         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
31452         augmentation also for tests modules.
31453         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
31454         * modules/atexit-tests (Makefile.am): Likewise.
31455         * modules/binary-io-tests (Makefile.am): Likewise.
31456         * modules/c-strcase-tests (Makefile.am): Likewise.
31457         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
31458         * modules/canonicalize-tests (Makefile.am): Likewise.
31459         * modules/closein-tests (Makefile.am): Likewise.
31460         * modules/fprintf-posix-tests (Makefile.am): Likewise.
31461         * modules/freadahead-tests (Makefile.am): Likewise.
31462         * modules/fseek-tests (Makefile.am): Likewise.
31463         * modules/fseeko-tests (Makefile.am): Likewise.
31464         * modules/ftell-tests (Makefile.am): Likewise.
31465         * modules/ftello-tests (Makefile.am): Likewise.
31466         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
31467         * modules/isnanl-tests (Makefile.am): Likewise.
31468         * modules/lseek-tests (Makefile.am): Likewise.
31469         * modules/mbscasecmp-tests (Makefile.am): Likewise.
31470         * modules/mbscasestr-tests (Makefile.am): Likewise.
31471         * modules/mbschr-tests (Makefile.am): Likewise.
31472         * modules/mbscspn-tests (Makefile.am): Likewise.
31473         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
31474         * modules/mbspbrk-tests (Makefile.am): Likewise.
31475         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
31476         * modules/mbsrchr-tests (Makefile.am): Likewise.
31477         * modules/mbsspn-tests (Makefile.am): Likewise.
31478         * modules/mbsstr-tests (Makefile.am): Likewise.
31479         * modules/printf-posix-tests (Makefile.am): Likewise.
31480         * modules/snprintf-posix-tests (Makefile.am): Likewise.
31481         * modules/sprintf-posix-tests (Makefile.am): Likewise.
31482         * modules/tsearch-tests (Makefile.am): Likewise.
31483         * modules/uniname/uniname-tests (Makefile.am): Likewise.
31484         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
31485         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
31486         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
31487         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
31488         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
31489         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
31490         * modules/vprintf-posix-tests (Makefile.am): Likewise.
31491         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
31492         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
31493         * modules/xstrtoimax-tests (Makefile.am): Likewise.
31494         * modules/xstrtol-tests (Makefile.am): Likewise.
31495         * modules/xstrtoumax-tests (Makefile.am): Likewise.
31496         * modules/yesno-tests (Makefile.am): Likewise.
31497
31498 2007-10-03  Bruno Haible  <bruno@clisp.org>
31499
31500         * modules/trunc-tests: New file.
31501         * tests/test-trunc.c: New file.
31502
31503         * modules/trunc: New file.
31504         * lib/trunc.c: New file.
31505         * m4/trunc.m4: New file.
31506         * lib/math.in.h (trunc): New declaration.
31507         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
31508         HAVE_DECL_TRUNC.
31509         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
31510         HAVE_DECL_TRUNC.
31511         * doc/functions/trunc.texi: Mention the 'trunc' module.
31512
31513 2007-10-03  Bruno Haible  <bruno@clisp.org>
31514
31515         * tests/test-fpending.c: New file, mostly copied
31516         from coreutils/lib/t-fpending.c.
31517         * modules/fpending-tests: New file.
31518
31519 2007-10-03  Bruno Haible  <bruno@clisp.org>
31520
31521         Port the stdio extensions to QNX (untested).
31522         * lib/fseterr.c (fseterr): Add support for QNX.
31523         * lib/fbufmode.c (fbufmode): Likewise.
31524         * lib/freadable.c (freadable): Likewise.
31525         * lib/fwritable.c (fwritable): Likewise.
31526         * lib/freading.c (freading): Likewise.
31527         * lib/fwriting.c (fwriting): Likewise.
31528         * lib/freadahead.c (freadahed): Likewise.
31529         * lib/fpurge.c (fpurge): Likewise.
31530         * lib/fseeko.c (rpl_fseeko): Likewise.
31531
31532 2007-10-03  Bruno Haible  <bruno@clisp.org>
31533             Jim Meyering  <jim@meyering.net>
31534             Eric Blake  <ebb9@byu.net>
31535
31536         * doc/relocatable.texi: Use @command instead of @program.
31537
31538 2007-10-02  Jim Meyering  <jim@meyering.net>
31539
31540         Perform one more "_.h" -> ".in.h" substitution.
31541         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
31542         instead of unistd_.h here, too.
31543
31544 2007-10-01  Bruno Haible  <bruno@clisp.org>
31545
31546         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
31547         Needed for the alloca-opt module.
31548
31549 2007-09-30  Bruno Haible  <bruno@clisp.org>
31550
31551         * lib/alloca.in.h: Renamed from lib/alloca_.h.
31552         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
31553         alloca_.h.
31554         * lib/argz.in.h: Renamed from lib/argz_.h.
31555         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
31556         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
31557         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
31558         byteswap_.h.
31559         * lib/dirent.in.h: Renamed from lib/dirent_.h.
31560         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
31561         dirent_.h.
31562         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
31563         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
31564         fcntl_.h.
31565         * lib/float.in.h: Renamed from lib/float_.h.
31566         * modules/float (Files, Makefile.am): Use float.in.h instead of
31567         float_.h.
31568         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
31569         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
31570         fnmatch_.h.
31571         * lib/getopt.in.h: Renamed from lib/getopt_.h.
31572         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
31573         getopt_.h.
31574         * lib/glob.in.h: Renamed from lib/glob_.h.
31575         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
31576         * lib/iconv.in.h: Renamed from lib/iconv_.h.
31577         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
31578         iconv_.h.
31579         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
31580         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
31581         inttypes_.h.
31582         * lib/locale.in.h: Renamed from lib/locale_.h.
31583         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
31584         locale_.h.
31585         * lib/math.in.h: Renamed from lib/math_.h.
31586         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
31587         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
31588         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
31589         of netinet_in_.h. Add dependency.
31590         * lib/poll.in.h: Renamed from lib/poll_.h.
31591         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
31592         * lib/search.in.h: Renamed from lib/search_.h.
31593         * modules/search (Files, Makefile.am): Use search.in.h instead of
31594         search_.h.
31595         * lib/signal.in.h: Renamed from lib/signal_.h.
31596         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
31597         _signal.h.
31598         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
31599         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
31600         stdbool_.h.
31601         * lib/stdint.in.h: Renamed from lib/stdint_.h.
31602         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
31603         stdint_.h.
31604         * lib/stdio.in.h: Renamed from lib/stdio_.h.
31605         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
31606         stdio_.h.
31607         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
31608         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
31609         stdlib_.h.
31610         * lib/string.in.h: Renamed from lib/string_.h.
31611         * modules/string (Files, Makefile.am): Use string.in.h instead of
31612         string_.h.
31613         * doc/gnulib-tool.texi (Initial import): Update.
31614         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
31615         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
31616         of sys_select_.h. Add dependency.
31617         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
31618         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
31619         of sys_socket_.h.
31620         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
31621         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
31622         sys_stat_.h.
31623         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
31624         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
31625         sys_time_.h.
31626         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
31627         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
31628         sysexits_.h.
31629         * lib/time.in.h: Renamed from lib/time_.h.
31630         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
31631         * lib/unistd.in.h: Renamed from lib/unistd_.h.
31632         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
31633         unistd_.h.
31634         * lib/wchar.in.h: Renamed from lib/wchar_.h.
31635         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
31636         wchar_.h.
31637         * lib/wctype.in.h: Renamed from lib/wctype_.h.
31638         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
31639         wctype_.h.
31640         * build-aux/bootstrap (slurp): Update.
31641         * lib/.cppi-disable: Update.
31642
31643 2007-09-30  Bruno Haible  <bruno@clisp.org>
31644
31645         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
31646         Needed on BeOS.
31647
31648 2007-09-30  Bruno Haible  <bruno@clisp.org>
31649
31650         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
31651
31652 2007-09-29  Bruno Haible  <bruno@clisp.org>
31653
31654         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
31655
31656 2007-09-29  Bruno Haible  <bruno@clisp.org>
31657
31658         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
31659         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
31660         * build-aux/install-reloc: Compile also areadlink.c.
31661         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
31662
31663 2007-09-29  Bruno Haible  <bruno@clisp.org>
31664
31665         * gnulib-tool (func_emit_initmacro_done): Indentation.
31666
31667 2007-09-29  Bruno Haible  <bruno@clisp.org>
31668
31669         * README: Add CVS checkout update instructions.
31670         Info from Bob Proulx <bob@proulx.com>.
31671
31672 2007-09-28  Eric Blake  <ebb9@byu.net>
31673
31674         Provide move-if-change.
31675         * build-aux/move-if-change: New file, based on best practice
31676         rather than any canonical upstream location.
31677
31678 2007-09-28  Jim Meyering  <jim@meyering.net>
31679
31680         Fix canonicalize loop-detection corner case.
31681         Do not attempt to stat the symlink values stored via seen_triple.
31682         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
31683         on linux-2.6.18, (but not 2.6.22).
31684         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
31685         triple_compare.  The former compares dev,ino,filename, while the latter
31686         would actually stat dirname(filename) when dev and ino were equal.
31687         * lib/hash-triple.c: Install <string.h>.
31688         (STREQ): Define.
31689         (triple_compare_ino_str): New function.
31690         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
31691
31692 2007-09-28  Eric Blake  <ebb9@byu.net>
31693
31694         Enforce that AC_REPLACE_FUNCS files exist.
31695         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
31696         override check for typos.
31697
31698         Fix test-closein on Solaris 10.
31699         * tests/test-closein.c (main): Don't assume stdin can be inherited
31700         closed on all systems.
31701         * tests/test-closein.sh: Likewise.
31702         Reported by Piotr Tarnowski.
31703
31704 2007-09-28  Jim Meyering  <jim@meyering.net>
31705
31706         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
31707
31708 2007-09-27  Jim Meyering  <jim@meyering.net>
31709
31710         canonicalize: Avoid a false-positive cycle failure.
31711         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
31712         Sort.  Remove cycle-check.
31713         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
31714         not cycle-check.h.
31715         (seen_triple): New function.
31716         (canonicalize_filename_mode): Use it instead of cycle-check.
31717         * tests/test-canonicalize.c: Add a test for this bug.
31718         * tests/test-canonicalize.sh: Set up and run the test.
31719
31720         New module, file-set, from coreutils.
31721         * modules/file-set: Define it.
31722         * lib/file-set.c, lib/file-set.h: Implement.
31723
31724         New module, hash-triple, from coreutils.
31725         * modules/hash-triple: Define it.
31726         * lib/hash-triple.c, lib/hash-triple.h: Implement.
31727
31728 2007-09-25  Eric Blake  <ebb9@byu.net>
31729
31730         Fix strerror on Interix.
31731         * lib/string_.h (strerror): Declare replacement.
31732         * doc/functions/strerror.texi (strerror): Document the Interix
31733         shortcoming.
31734         * modules/string (Makefile.am): Support new hooks.
31735         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
31736         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
31737         gl_FUNC_STRERROR_SEPARATE.
31738         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
31739         * lib/strerror.c (rpl_strerror): Provide replacement.
31740         * modules/strerror (Depends-on): Add string.
31741         (configure.ac): Detect use of module.
31742         * tests/test-strerror.c: New file.
31743         * modules/strerror-tests: New test module.
31744         * modules/argp (Depends-on): Add strerror.
31745         * modules/error (Depends-on): Likewise.
31746         Reported by Martin Koeppe.
31747
31748 2007-09-24  Bruno Haible  <bruno@clisp.org>
31749
31750         * README: Update git instructions.
31751
31752 2007-09-24  Eric Blake  <ebb9@byu.net>
31753
31754         Revert fpending breakage from 2007-09-08.
31755         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
31756         __fpending.c.
31757
31758 2007-09-24  Jim Meyering  <jim@meyering.net>
31759
31760         filenamecat.c: Add a test.
31761         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
31762         showing how the function works when DIR is the empty string.
31763
31764 2007-09-21  Simon Josefsson  <simon@josefsson.org>
31765
31766         * tests/test-canonicalize.sh: Turn on executable bit.
31767
31768 2007-09-19  Eric Blake  <ebb9@byu.net>
31769
31770         * README: Update CVS instructions.
31771
31772 2007-09-18  Bruno Haible  <bruno@clisp.org>
31773
31774         * modules/areadlink: New file.
31775         * lib/areadlink.h (areadlink): New declaration.
31776         * lib/areadlink.c: New file, based on lib/xreadlink.c.
31777
31778 2007-09-17  Jim Meyering  <jim@meyering.net>
31779
31780         * lib/savewd.c (ESTALE) [!defined]: Define.
31781         Reported to be required on Interix by Martin Koeppe.
31782
31783 2007-09-17  Bruno Haible  <bruno@clisp.org>
31784
31785         * gnulib-tool (func_version): Use $version.
31786
31787 2007-09-16  Bruno Haible  <bruno@clisp.org>
31788
31789         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
31790         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
31791         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
31792         Reported by Greg Schafer <gschafer@zip.com.au>.
31793
31794 2007-09-15  Bruno Haible  <bruno@clisp.org>
31795
31796         * gnulib-tool (sed): Try a little harder to make bash understand the
31797         alias.
31798         Reported by Bruce Korb <bruce.korb@gmail.com>.
31799
31800 2007-09-13  Eric Blake  <ebb9@byu.net>
31801
31802         * ChangeLog: Remove conflict markers.
31803
31804 2007-09-13  Simon Josefsson  <simon@josefsson.org>
31805
31806         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
31807         Reported by Bruno Haible <bruno@clisp.org>.
31808
31809 2007-09-12  Bruno Haible  <bruno@clisp.org>
31810
31811         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
31812         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
31813         is not defined.
31814
31815 2007-09-12  Eric Blake  <ebb9@byu.net>
31816
31817         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
31818         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
31819         Autoconf definition.
31820         * modules/euidaccess (Depends-on): Add extensions, for
31821         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
31822         * modules/fnmatch (Depends-on): Likewise.
31823         * modules/getaddrinfo (Depends-on): Likewise.
31824         * modules/getdelim (Depends-on): Likewise.
31825         * modules/getline (Depends-on): Likewise.
31826         * modules/getsubopt (Depends-on): Likewise.
31827         * modules/gettext (Depends-on): Likewise.
31828         * modules/group-member (Depends-on): Likewise.
31829         * modules/mbchar (Depends-on): Likewise.
31830         * modules/memmem (Depends-on): Likewise.
31831         * modules/mempcpy (Depends-on): Likewise.
31832         * modules/memrchr (Depends-on): Likewise.
31833         * modules/pagealign_alloc (Depends-on): Likewise.
31834         * modules/readutmp (Depends-on): Likewise.
31835         * modules/stpcpy (Depends-on): Likewise.
31836         * modules/stpncpy (Depends-on): Likewise.
31837         * modules/strchrnul (Depends-on): Likewise.
31838         * modules/strndup (Depends-on): Likewise.
31839         * modules/strsep (Depends-on): Likewise.
31840         * modules/strverscmp (Depends-on): Likewise.
31841         * modules/vasprintf (Depends-on): Likewise.
31842         * modules/wcwidth (Depends-on): Likewise.
31843         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
31844         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
31845         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
31846         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
31847         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
31848         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
31849         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
31850         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
31851         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
31852         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
31853         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
31854         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
31855         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
31856         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
31857         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
31858         * m4/readutmp.m4 (gl_READUTMP): Likewise.
31859         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
31860         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
31861         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
31862         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
31863         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
31864         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
31865         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
31866         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
31867         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
31868         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
31869         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
31870         so that lock.m4 can be used in gettext without extensions module.
31871
31872 2007-09-11  Bruno Haible  <bruno@clisp.org>
31873
31874         * m4/isc-posix.m4: Remove file.
31875         Suggested by Eric Blake.
31876
31877 2007-09-11  Eric Blake  <ebb9@byu.net>
31878
31879         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
31880
31881 2007-09-10  Bruno Haible  <bruno@clisp.org>
31882
31883         * posix-modules: Fix typo in error message.
31884         Reported by Matt <mkraai@beckman.com>.
31885
31886 2007-09-09  Bruno Haible  <bruno@clisp.org>
31887
31888         * doc/functions/getdelim.texi: Update list of platforms lacking the
31889         function.
31890         * doc/functions/getline.texi: Likewise.
31891
31892 2007-09-09  Jim Meyering  <jim@meyering.net>
31893
31894         * lib/hash.c (hash_initialize): Detect calloc failure.
31895         Reported by Bruno Haible.
31896
31897 2007-09-09  Bruno Haible  <bruno@clisp.org>
31898
31899         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
31900         malloc or realloc fails.
31901
31902 2007-09-09  Bruno Haible  <bruno@clisp.org>
31903
31904         * modules/getcwd (Depends-on): Add malloc-posix.
31905         * modules/glob (Depends-on): Likewise.
31906         * modules/putenv (Depends-on): Likewise.
31907         * modules/strdup (Depends-on): Likewise.
31908         * modules/getdelim (Depends-on): Add realloc-posix.
31909         * modules/read-file (Depends-on): Likewise.
31910
31911 2007-09-09  Bruno Haible  <bruno@clisp.org>
31912
31913         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
31914         (gl_FUNC_MALLOC_POSIX): Require it.
31915         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
31916         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
31917         * modules/realloc (Files): Add m4/malloc.m4.
31918         * modules/calloc (Files): Likewise.
31919
31920 2007-09-09  Bruno Haible  <bruno@clisp.org>
31921
31922         * modules/malloc-posix: New file.
31923         * modules/malloc (Depends-on): Add malloc-posix.
31924         * lib/malloc.c: Include errno.h.
31925         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
31926         and a POSIX-compatible malloc into a single function. Set ENOMEM
31927         when returning NULL.
31928         * m4/malloc.m4: New file.
31929         * doc/functions/malloc.texi: Mention the malloc-posix module.
31930         * lib/stdlib_.h (malloc): New declaration.
31931         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
31932         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
31933         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
31934         and HAVE_MALLOC_POSIX.
31935
31936 2007-09-09  Bruno Haible  <bruno@clisp.org>
31937
31938         * modules/realloc-posix: New file.
31939         * modules/realloc (Depends-on): Add realloc-posix.
31940         * lib/realloc.c: Include errno.h.
31941         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
31942         and a POSIX-compatible realloc into a single function. Set ENOMEM
31943         when returning NULL.
31944         * m4/realloc.m4: New file.
31945         * doc/functions/realloc.texi: Mention the realloc-posix module.
31946         * lib/stdlib_.h (realloc): New declaration.
31947         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
31948         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
31949         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
31950         and HAVE_REALLOC_POSIX.
31951
31952 2007-09-09  Bruno Haible  <bruno@clisp.org>
31953
31954         * modules/calloc-posix: New file.
31955         * modules/calloc (Depends-on): Add calloc-posix.
31956         * lib/calloc.c: Include errno.h.
31957         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
31958         and a POSIX-compatible calloc into a single function. Set ENOMEM
31959         when returning NULL.
31960         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
31961         * doc/functions/calloc.texi: Mention the calloc-posix module.
31962         * lib/stdlib_.h (calloc): New declaration.
31963         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
31964         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
31965         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
31966         and HAVE_CALLOC_POSIX.
31967
31968 2007-09-09  Bruno Haible  <bruno@clisp.org>
31969
31970         Allow for modules to show an arbitrary notice.
31971         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
31972         * gnulib-tool: New option --extract-notice.
31973         (func_usage): Document it.
31974         (sed_extract_prog): Update.
31975         (func_get_notice): New function.
31976         (func_modules_notice): New function.
31977         (func_import, func_create_testdir): Invoke it.
31978         Suggested by Jim Meyering.
31979
31980 2007-09-09  Bruno Haible  <bruno@clisp.org>
31981
31982         * gnulib-tool: New options --verbose, --quiet.
31983         (func_usage): Document them.
31984         (verbose): New variable.
31985         (func_execute_command): New function.
31986         (func_import): Don't show the module list and the file list if
31987         $verbose < 0.
31988         (func_create_testdir): Likewise. Use func_execute_command.
31989         (func_create_megatestdir): Use func_execute_command.
31990
31991 2007-09-08  Bruno Haible  <bruno@clisp.org>
31992
31993         * gnulib-tool (func_import): Prefer rsync over wget when available,
31994         for fetching the PO files.
31995
31996 2007-09-08  Bruno Haible  <bruno@clisp.org>
31997
31998         * posix-modules: New file. Portions copied from gnulib-tool.
31999         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
32000
32001 2007-09-08  Jim Meyering  <jim@meyering.net>
32002
32003         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
32004         * lib/fpending.h: Rename from __fpending.h.
32005         * lib/fpending.c: Rename from __fpending.c.
32006         Include "fpending.h", not "__fpending.h".
32007         * lib/__fpending.h, lib/__fpending.c: Remove files.
32008         * modules/fpending (Files): Reflect new file names.
32009         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
32010
32011 2007-09-08  Bruno Haible  <bruno@clisp.org>
32012
32013         * m4/inttypes-h.m4: Remove stub file.
32014
32015 2007-09-07  Simon Josefsson  <simon@josefsson.org>
32016
32017         * doc/headers/stdint.texi: Discuss #include_next issue.
32018
32019 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
32020
32021         * build-aux/bootstrap: Remove obsolete comment about wget --help.
32022
32023 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32024
32025         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
32026         in variable name.
32027
32028 2007-09-03  Jim Meyering  <jim@meyering.net>
32029
32030         New module: git-version-gen.
32031         * modules/git-version-gen: New file.
32032
32033         Import changes from coreutils for bootstrap script.
32034
32035         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
32036
32037         bootstrap: uses rsync to download the .po files
32038         * build-aux/bootstrap (po_download_command_format): New global.
32039         (download_po_files): Use rsync.
32040         (update_po_files): Don't remove .po files after download,
32041         so future rsync runs can take advantage of the copies.
32042
32043         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
32044
32045         Solve the unnecessary-.po-file-regeneration problem once and for all.
32046         * build-aux/bootstrap (download_po_files): New function, renamed from
32047         get_translations.  Now, downloads, but doesn't update LINGUAS.
32048         (update_po_files): New function.
32049
32050         bootstrap: Ignore more.
32051         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
32052         uniwidth to e.g., lib/.gitignore.
32053         (slurp): Handle the sys_stat_.h -> sys mapping, too.
32054
32055         * build-aux/bootstrap: New setting: vc_ignore.
32056         (insert_sorted_if_absent): Create $file if absent.
32057         Adapt to new, possibly empty, list: $vc_ignore.
32058
32059         bootstrap: generate more ignorable names
32060         * build-aux/bootstrap (slurp): When generating ignorable names,
32061         also map .sin to .sed, .gperf to .c, and .y to .c.
32062
32063 2007-09-03  Jim Meyering  <jim@meyering.net>
32064
32065         * build-aux/git-version-gen: New file, from coreutils.  For details, see
32066         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
32067
32068 2007-09-02  Bruno Haible  <bruno@clisp.org>
32069
32070         Fix mis-recognition of 'mcs' on QNX 6.
32071         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
32072         output contains the string "Mono".
32073         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
32074         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
32075
32076 2007-09-01  Bruno Haible  <bruno@clisp.org>
32077
32078         Fix collision between uniwidth/* and linebreak modules.
32079         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
32080         u32_width): Remove declarations.
32081         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
32082         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
32083         streq3, streq2, streq1, streq0): Remove functions.
32084         (STREQ): Remove macro.
32085         (is_cjk_encoding): Remove function.
32086         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
32087         (uc_width, u8_width, u16_width, u32_width): Remove functions.
32088         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
32089         * NEWS: Document the change.
32090
32091 2007-09-01  Bruno Haible  <bruno@clisp.org>
32092
32093         * lib/streq.h: Add double-inclusion guard.
32094
32095 2007-09-01  Karl Berry  <karl@gnu.org>
32096
32097         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
32098
32099 2007-08-28  Jim Meyering  <jim@meyering.net>
32100
32101         Rename mreadlink_with_size to areadlink_with_size.
32102         * NEWS: Document the change.
32103         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
32104         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
32105         * lib/mreadlink.h: Rename this to...
32106         * lib/areadlink.h: ...this.
32107         * modules/mreadlink-with-size: Rename this to...
32108         * modules/areadlink-with-size: ...this.
32109         * lib/canonicalize.c: Reflect the renaming.
32110         * modules/canonicalize: Likewise.
32111
32112 2007-08-26  Bruno Haible  <bruno@clisp.org>
32113
32114         * gnulib-tool (func_import): When deciding which files to remove,
32115         consider also dangling symbolic links.
32116         Reported by Eric Blake.
32117
32118 2007-08-26  Bruno Haible  <bruno@clisp.org>
32119
32120         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
32121
32122 2007-08-23  Simon Josefsson  <simon@josefsson.org>
32123
32124         * lib/readline.c: Don't include getline.h, the prototype is now
32125         found in stdio.h.
32126
32127 2007-08-23  Jim Meyering  <jim@meyering.net>
32128
32129         Getdelim touchup.
32130         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
32131         around the funlockfile call, since funlockfile never sets errno.
32132         Don't set errno upon failed realloc.
32133
32134 2007-08-22  Eric Blake  <ebb9@byu.net>
32135
32136         Getline touchups.
32137         * lib/getdelim.c (getdelim): Revert regression that required *n to
32138         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
32139         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
32140         getdelim, rather than whether implementation is missing.
32141         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
32142         * lib/stdio_.h (getline): Also declare if replacement is
32143         required.
32144         * doc/functions/getdelim.texi: New file.
32145         * doc/functions/getline.texi: Likewise.
32146         * doc/gnulib.texi (Function Substitutes): Add new files.
32147         Reported by Bruno Haible.
32148
32149 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
32150
32151         * users.txt: Add Guile.
32152
32153 2007-08-22  Eric Blake  <ebb9@byu.net>
32154
32155         * tests/test-getdelim.c (main): Use remove, not unlink.
32156         * tests/test-getline.c (main): Likewise.
32157
32158         Move getline and getdelim into stdio.h, per POSIX 200x.
32159         * modules/getline (Files): Remove getline.h.
32160         (Depends-on): Add stdio.
32161         (configure.ac): Add module indicator.
32162         * modules/getdelim (Files): Remove getdelim.h.
32163         (Depends-on): Add stdio.
32164         (configure.ac): Add module indicator.
32165         * modules/stdio (Makefile.am): Work with new indicators.
32166         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
32167         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
32168         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
32169         * lib/getdelim.h: Delete.
32170         * lib/getline.h: Delete.
32171         * lib/stdio_.h (getdelim, getline): Declare.
32172         * modules/getdelim-tests: New module.
32173         * modules/getline-tests: Likewise.
32174         * tests/test-getdelim.c: New file.
32175         * tests/test-getline.c: Likewise.
32176         * NEWS: Document the change.
32177         * lib/getline.c: Update choice of header.
32178         * lib/csharpcomp.c: Likewise.
32179         * lib/getpass.c: Likewise.
32180         * lib/javacomp.c: Likewise.
32181         * lib/javaversion.c: Likewise.
32182         * lib/yesno.c: Likewise.
32183         * lib/getdelim.c: Likewise.
32184         (getdelim): Set errno on failure, and avoid memory leak.
32185
32186 2007-08-19  Bruno Haible  <bruno@clisp.org>
32187
32188         * modules/closein (Depends-on): Add freadahead.
32189         * lib/closein.c: Include freadahead.h.
32190         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
32191         is zero.
32192
32193 2007-08-19  Bruno Haible  <bruno@clisp.org>
32194
32195         * modules/freadahead-tests: New file.
32196         * tests/test-freadahead.sh: New file.
32197         * tests/test-freadahead.c: New file.
32198
32199         * modules/freadahead: New file.
32200         * lib/freadahead.h: New file.
32201         * lib/freadahead.c: New file.
32202         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
32203         fbufmode, fpurge, freadable, fwritable.
32204
32205 2007-08-19  Eric Blake  <ebb9@byu.net>
32206
32207         Test yesno in combination with closein.
32208         * lib/yesno.c (yesno): Document use of stdin.
32209         * modules/yesno-tests (Files): New module.
32210         * tests/test-yesno.c (main): New file.
32211         * tests/test-yesno.sh: Likewise.
32212
32213 2007-08-19  Bruno Haible  <bruno@clisp.org>
32214
32215         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
32216         * lib/fseeko.c (rpl_fseeko): Likewise.
32217         * lib/fseterr.c (fseterr): Likewise.
32218
32219 2007-08-19  Bruno Haible  <bruno@clisp.org>
32220
32221         * tests/test-lseek.c (main): Disable a test for BeOS.
32222         * doc/functions/lseek.texi: Document the BeOS bug.
32223
32224 2007-08-19  Bruno Haible  <bruno@clisp.org>
32225             Eric Blake  <ebb9@byu.net>
32226
32227         * lib/lseek.c: Include <sys/stat.h>.
32228         (rpl_lseek): Add workaround code also for Unix platforms.
32229         Needed for BeOS.
32230         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
32231         * doc/functions/lseek.texi: Document BeOS definiency.
32232
32233 2007-08-18  Bruno Haible  <bruno@clisp.org>
32234
32235         * modules/fstrcmp-tests: New file.
32236         * tests/test-fstrcmp.c: New file.
32237
32238 2007-08-18  Bruno Haible  <bruno@clisp.org>
32239
32240         * modules/fstrcmp: New file, from GNU gettext with modifications.
32241         * lib/fstrcmp.h: New file, from GNU gettext.
32242         * lib/fstrcmp.c: New file, from GNU gettext.
32243         * MODULES.html.sh (String handling): Add fstrcmp.
32244
32245 2007-08-18  Bruno Haible  <bruno@clisp.org>
32246
32247         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
32248         'bool'.
32249         (diag, compareseq): Remove const from the ctxt argument.
32250         (USE_HEURISTIC): Undefine at the end.
32251
32252 2007-08-18  Jim Meyering  <jim@meyering.net>
32253
32254         New file: lib/idcache.h
32255         * NEWS: Mention the addition.
32256         * modules/idcache (Files): Add lib/idcache.h
32257         * lib/idcache.c: Include "idcache.h".
32258         Don't include <sys/types.h>.
32259         Add a FIXME comment.
32260         Move file-scoped "static" declarations to the top.
32261         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
32262
32263 2007-08-17  Bruno Haible  <bruno@clisp.org>
32264         and Paul Eggert  <eggert@cs.ucla.edu>
32265
32266         * MODULES.html.sh: Add diffseq.
32267         * modules/diffseq: New file.
32268         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
32269         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
32270
32271 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
32272
32273         Import changes from coreutils for bootstrap script.
32274
32275         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
32276
32277         * build-aux/bootstrap (slurp): Work even in environments where
32278         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
32279         current code does not slurp files whose names start with ".", and
32280         this looks like it might be a troublesome area.
32281
32282         2007-07-11  Jim Meyering  <jim@meyering.net>
32283
32284         If there's a GPL vN copyright comment, require that N == 3.
32285
32286         2007-07-08  Jim Meyering  <jim@meyering.net>
32287
32288         Run the coreutils-specific code only if tests/Makefile.am.in exists.
32289         * build-aux/bootstrap (mam_template): Move definition out of loop.
32290
32291         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
32292
32293         * build-aux/bootstrap (symlink_to_dir): Rename function from
32294         symlink_to_gnulib.  Add a directory parameter.  Update all
32295         callers.
32296         (cp_mark_as_generated): Also check for -- and link to -- files in
32297         gl/.
32298
32299         2007-07-08  Jim Meyering  <jim@meyering.net>
32300
32301         Adapt to deeper hierarchy in gnulib.
32302         * build-aux/bootstrap (symlink_to_dir): If the destination
32303         directory doesn't exist, create it. This is required at least for
32304         "lib/uniwidth/cjk.h".
32305
32306         2007-05-15  Jim Meyering  <jim@meyering.net>
32307
32308         * build-aux/bootstrap: Now that generated Makefile.am files
32309         are no longer under version control, they must be created at
32310         bootstrap time.
32311
32312 2007-08-14  Ben Pfaff  <blp@gnu.org>
32313
32314         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
32315
32316 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
32317
32318         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
32319         given the changes below.
32320         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
32321         even on hosts that have padding bits beyond the supported 64.
32322
32323 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
32324
32325         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
32326         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
32327         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
32328         depends on it.
32329         (xstrtol_error): Remove.
32330         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
32331         but with a different signature.
32332         (ATTRIBUTE_NORETURN, __attribute__): New macros.
32333         * lib/xstrtol-error.c: Include exitfail.h.
32334         (xstrtol_fatal): New function, with a different signature from the
32335         old xstrtol_error, so that the caller need not worry about passing
32336         in an exit status, or about storage management of the option argument.
32337         (xstrtol_error): Now a static function.  Redo signature to
32338         implement xstrtol_fatal.  Output the correct number of hyphens in
32339         front of the option so that the caller need not worry about
32340         storage management.
32341         (N_): New macro.
32342         (_): Remove; not used now.
32343         * modules/xstrtol: Depend on getopt.
32344         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
32345         of old STRTOL_FATAL_ERROR macro.
32346         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
32347         of test program.
32348         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
32349         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
32350
32351 2007-08-08  Eric Blake  <ebb9@byu.net>
32352
32353         * lib/xstrtol-error.c: Add missing include.
32354
32355         Move xstrtol messages into gnulib domain, when --pobase is used.
32356         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
32357         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
32358         * modules/xstrtol (Files): Distribute new file.
32359         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
32360         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
32361         * tests/test-xstrtol.c: ...into new file.
32362         * tests/test-xstrtoul.c: Also test xstrtoul.
32363         * tests/test-xstrtoimax.c: Also test xstrtoimax.
32364         * tests/test-xstrtoumax.c: Also test xstrtoumax.
32365         * tests/test-xstrtol.sh: Drive the tests.
32366         * tests/test-xstrtoimax.sh: Likewise.
32367         * tests/test-xstrtoumax.sh: Likewise.
32368         * modules/xstrtol-tests: New module.
32369         * modules/xstrtoimax-tests: Likewise.
32370         * modules/xstrtoumax-tests: Likewise.
32371
32372 2007-08-08  Jim Meyering  <jim@meyering.net>
32373
32374         New function: mfile_name_concat.
32375         * lib/filenamecat.c (mfile_name_concat): New function, just like
32376         file_name_concat, but return NULL upon failure rather than exiting
32377         with a diagnostic.
32378         * lib/filenamecat.h: Declare it.
32379
32380 2007-08-07  Bruno Haible  <bruno@clisp.org>
32381
32382         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
32383         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
32384         warning from gcc.
32385         Reported by Eric Blake.
32386
32387 2007-08-07  Simon Josefsson  <simon@josefsson.org>
32388
32389         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
32390         * modules/crypto/arcfour (License): Likewise.
32391         * modules/crypto/des-tests (License): Likewise.
32392         * modules/crypto/gc-arctwo-tests (License): Likewise.
32393         * modules/crypto/gc-des-tests (License): Likewise.
32394         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
32395         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
32396         * modules/crypto/gc-md2-tests (License): Likewise.
32397         * modules/crypto/gc-md4-tests (License): Likewise.
32398         * modules/crypto/gc-md5-tests (License): Likewise.
32399         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
32400         * modules/crypto/gc-rijndael-tests (License): Likewise.
32401         * modules/crypto/gc-sha1-tests (License): Likewise.
32402         * modules/crypto/gc-tests (License): Likewise.
32403         * modules/crypto/hmac-md5 (License): Likewise.
32404         * modules/crypto/hmac-sha1 (License): Likewise.
32405         * modules/crypto/md2-tests (License): Likewise.
32406         * modules/crypto/md4-tests (License): Likewise.
32407         * modules/crypto/md5 (License): Likewise.
32408         * modules/crypto/rijndael (License): Likewise.
32409         * modules/crypto/sha1 (License): Likewise.
32410         * modules/memxor (License): Likewise.
32411
32412 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
32413         and Bruno Haible  <bruno@clisp.org>
32414
32415         * NEWS: Describe interface changes to human, xstrtol.
32416         * lib/human.h: Include <xstrtol.h>.
32417         (human_options): Return enum strtol_error, not int.  Remove
32418         bool arg; take int * instead.
32419         * lib/human.c: Don't include "gettext.h".
32420         (_): Remove; no longer used.
32421         Don't include <xstrtol.h>, since human.h does it.
32422         (human_options): Adjust to abovementioned interface changes.
32423         Do not report error to stderr; that's now the caller's
32424         responsibility.
32425         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
32426         interface change.
32427         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
32428         Str, Argument_type_string.  All uses changed.  Put " argument"
32429         in diagnostics to make them clearer.  Change wording of suffix
32430         message for clarity.
32431         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
32432         Argument_type_string.
32433         (STRTOL_FATAL_WARN): Remove; no longer used.
32434         * modules/human (Depends-on): Remove gettext-h.
32435
32436 2007-08-06  Simon Josefsson  <simon@josefsson.org>
32437
32438         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
32439
32440 2007-07-31  Bruno Haible  <bruno@clisp.org>
32441
32442         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
32443         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
32444         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
32445
32446 2007-07-31  Bruno Haible  <bruno@clisp.org>
32447
32448         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
32449         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
32450
32451 2007-07-30  Bruno Haible  <bruno@clisp.org>
32452
32453         * modules/base64 (License): Use the synonymous term "LGPLv2+".
32454         * modules/c-ctype (License): Likewise.
32455         * modules/c-strcase (License): Likewise.
32456         * modules/check-version (License): Likewise.
32457         * modules/iconv (License): Likewise.
32458         * modules/iconv_open (License): Likewise.
32459         * modules/read-file (License): Likewise.
32460         * modules/striconv (License): Likewise.
32461         * modules/strverscmp (License): Likewise.
32462         * modules/vasprintf (License): Likewise.
32463         * modules/crypto/des (License): Likewise.
32464         * modules/crypto/gc (License): Likewise.
32465         * modules/crypto/gc-arcfour (License): Likewise.
32466         * modules/crypto/gc-arctwo (License): Likewise.
32467         * modules/crypto/gc-des (License): Likewise.
32468         * modules/crypto/gc-hmac-md5 (License): Likewise.
32469         * modules/crypto/gc-hmac-sha1 (License): Likewise.
32470         * modules/crypto/gc-md2 (License): Likewise.
32471         * modules/crypto/gc-md4 (License): Likewise.
32472         * modules/crypto/gc-md5 (License): Likewise.
32473         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
32474         * modules/crypto/gc-random (License): Likewise.
32475         * modules/crypto/gc-rijndael (License): Likewise.
32476         * modules/crypto/gc-sha1 (License): Likewise.
32477         * modules/crypto/md2 (License): Likewise.
32478         * modules/crypto/md4 (License): Likewise.
32479
32480 2007-07-30  Jim Meyering  <jim@meyering.net>
32481
32482         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
32483         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
32484         it has valid stat data.  This bug would cause du not to count the
32485         sizes of inaccessible directories.
32486         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
32487         in <http://bugzilla.redhat.com/250077>.
32488
32489 2007-07-25  Peter O'Gorman  <peter@pogma.com>
32490             Bruno Haible  <bruno@clisp.org>
32491
32492         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
32493         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
32494         #include_next, gives a diagnostic about it, but reports no error in
32495         the exit code.
32496         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
32497
32498 2007-07-24  Ben Pfaff  <blp@gnu.org>
32499
32500         Improve name: "count-one-bits" is better than "popcount".
32501         * MODULES.html.sh: Update name.
32502         * lib/popcount.h: Renamed lib/count-one-bits.h.
32503         (popcount): Renamed count_one_bits.
32504         (popcountl): Renamed count_one_bits_l.
32505         (popcountll): Renamed count_one_bits_ll.
32506         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
32507         * modules/popcount: Renamed module/count-one-bits.
32508         * modules/popcount-tests: Renamed module/count-one-bits-tests.
32509         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
32510
32511 2007-07-23  Ben Pfaff  <blp@gnu.org>
32512
32513         * lib/popcount.h (popcount32): Reduce size of constants, to allow
32514         better code generation, and add U to large constants to avoid
32515         warnings, in non-GCC case.
32516         Suggested by Bruno Haible.
32517
32518 2007-07-23  Ben Pfaff  <blp@gnu.org>
32519
32520         * lib/popcount.h: Use verify_true instead of if...abort.
32521         * modules/popcount: Depend on verify module.
32522         Suggested by Jim Meyering.
32523
32524 2007-07-23  Bruno Haible  <bruno@clisp.org>
32525
32526         * gnulib-tool (func_import): Create a .cvsignore file also when the
32527         directory is not yet in CVS but the toplevel directory is. When
32528         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
32529         Reported by Karl Berry.
32530
32531 2007-07-22  Ben Pfaff  <blp@gnu.org>
32532
32533         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
32534         case.
32535         Suggested by Eric Blake.
32536
32537 2007-07-22  Ben Pfaff  <blp@gnu.org>
32538
32539         New module: popcount.
32540         * MODULES.html.sh: Add popcount.
32541         * modules/popcount: New file.
32542         * modules/popcount-tests: New file.
32543         * tests/test-popcount.c: New file.
32544         * lib/popcount.h: New file.
32545         * m4/popcount.m4: New file.
32546
32547 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
32548
32549         * build-aux/announce-gen: Update to GPLv3.
32550
32551         * build-aux/config.guess: Update from config.
32552
32553 2007-07-21  Bruno Haible  <bruno@clisp.org>
32554
32555         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
32556         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
32557
32558 2007-07-20  Jim Meyering  <jim@meyering.net>
32559
32560         * check-module: Diagnose a self-dependency.
32561
32562 2007-07-19  Bruno Haible  <bruno@clisp.org>
32563
32564         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
32565         empty.
32566         Reported by Eric Blake.
32567
32568 2007-07-18  Bruno Haible  <bruno@clisp.org>
32569
32570         * gnulib-tool: New options --po-base, --po-domain.
32571         (func_usage): Document them.
32572         (pobase, po_domain): New variables.
32573         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
32574         DEFAULT_TEXT_DOMAIN.
32575         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
32576         (func_import): Consider pobase and po_domain. Create a po/ directory.
32577         (func_create_testdir): Set pobase and po_domain to empty.
32578         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
32579         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
32580
32581 2007-07-18  Bruno Haible  <bruno@clisp.org>
32582
32583         * gnulib-tool (func_get_automake_snippet): Synthesize also an
32584         EXTRA_DIST augmentation for files in build-aux/.
32585
32586 2007-07-16  Bruno Haible  <bruno@clisp.org>
32587
32588         * modules/lseek (License): Use the synonymous term "LGPLv2+".
32589         * modules/getdelim (License): Likewise.
32590
32591 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32592
32593         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
32594         * modules/d-type (License): Likewise.
32595         * modules/extensions (License): Likewise.
32596         * modules/fnmatch (License): Likewise.
32597         * modules/fseeko (License): Likewise.
32598         * modules/getaddrinfo (License): Likewise.
32599         * modules/getline (License): Likewise.
32600         * modules/getlogin_r (License): Likewise.
32601         * modules/getpass (License): Likewise.
32602         * modules/gettimeofday (License): Likewise.
32603         * modules/glob (License): Likewise.
32604         * modules/inet_ntop (License): Likewise.
32605         * modules/malloc (License): Likewise.
32606         * modules/malloca (License): Likewise.
32607         * modules/memmem (License): Likewise.
32608         * modules/mempcpy (License): Likewise.
32609         * modules/memset (License): Likewise.
32610         * modules/minmax (License): Likewise.
32611         * modules/mktime (License): Likewise.
32612         * modules/netinet_in (License): Likewise.
32613         * modules/pathmax (License): Likewise.
32614         * modules/poll (License): Likewise.
32615         * modules/regex (License): Likewise.
32616         * modules/snprintf (License): Likewise.
32617         * modules/stdbool (License): Likewise.
32618         * modules/stdint (License): Likewise.
32619         * modules/stdio (License): Likewise.
32620         * modules/strcase (License): Likewise.
32621         * modules/strcasestr (License): Likewise.
32622         * modules/strdup (License): Likewise.
32623         * modules/string (License): Likewise.
32624         * modules/strndup (License): Likewise.
32625         * modules/strnlen (License): Likewise.
32626         * modules/strpbrk (License): Likewise.
32627         * modules/strptime (License): Likewise.
32628         * modules/strsep (License): Likewise.
32629         * modules/sys_select (License): Likewise.
32630         * modules/sys_socket (License): Likewise.
32631         * modules/sys_stat (License): Likewise.
32632         * modules/sys_time (License): Likewise.
32633         * modules/time (License): Likewise.
32634         * modules/time_r (License): Likewise.
32635         * modules/timegm (License): Likewise.
32636         * modules/unistd (License): Likewise.
32637         * modules/vsnprintf (License): Likewise.
32638         * modules/wctype (License): Likewise.
32639
32640 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32641
32642         * modules/argz (License): LGPLv2+.
32643
32644 2007-07-15  Karl Berry  <karl@gnu.org>
32645
32646         * doc/gnulib.texi: revise node structure per new fdl.texi.
32647
32648 2007-07-14  Bruno Haible  <bruno@clisp.org>
32649
32650         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
32651         the output file.
32652         * lib/uniname/uninames.h: Regenerated.
32653
32654 2007-07-14  Karl Berry  <karl@gnu.org>
32655
32656         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
32657         omitting sectioning and index commands.
32658
32659 2007-07-13  Bruno Haible  <bruno@clisp.org>
32660
32661         New gnulib-tool option --more-symlinks.
32662         * gnulib-tool (func_usage): Document --more-symlinks.
32663         (do_copyrights): New variable.
32664         Recognize option --more-symlinks.
32665         (func_import): Don't add a copyright notice transform to
32666         sed_transform_lib_file if do_copyrights is empty.
32667
32668 2007-07-13  Bruno Haible  <bruno@clisp.org>
32669
32670         * lib/vasnprintf.c (decimal_point_char): Define also if
32671         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
32672         && !NEED_PRINTF_DIRECTIVE_A.
32673         Reported by Clemens Koller <clemens.koller@anagramm.de> via
32674         Gary V. Vaughan <gary@gnu.org>.
32675
32676 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
32677
32678         * lib/inttypes_.h: Undo previous change, since it was fixed
32679         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
32680
32681 2007-07-13  Bruno Haible  <bruno@clisp.org>
32682
32683         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
32684         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
32685
32686 2007-07-13  Jim Meyering  <jim@meyering.net>
32687
32688         df: Don't fail for Tru64's "file-on-file mount".
32689         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
32690         so we fall through and use statfs instead.  Details here:
32691         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
32692         Reported by Albert Chin.
32693
32694 2007-07-13  Bruno Haible  <bruno@clisp.org>
32695
32696         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
32697         * modules/configmake (License): Likewise.
32698         * modules/gettext (License): Likewise.
32699         * modules/gettext-h (License): Likewise.
32700         * modules/include_next (License): Likewise.
32701         * modules/link-warning (License): Likewise.
32702         * modules/localcharset (License): Likewise.
32703         * modules/localename (License): Likewise.
32704         * modules/lock (License): Likewise.
32705         * modules/relocatable-lib-lgpl (License): Likewise.
32706         * modules/size_max (License): Likewise.
32707         * modules/vasnprintf (License): Likewise.
32708         * modules/wchar (License): Likewise.
32709         * modules/xsize (License): Likewise.
32710
32711 2007-07-13  Bruno Haible  <bruno@clisp.org>
32712
32713         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
32714         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
32715
32716 2007-07-12  Bruno Haible  <bruno@clisp.org>
32717
32718         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
32719         in the modules files.
32720
32721 2007-07-11  Karl Berry  <karl@gnu.org>
32722
32723         * MODULES.html.sh (func_module): use
32724          sed -e '\|^'"${includefile}"'$|d'
32725          instead of /.../d, to avoid errors on $includefile's containing /.
32726
32727 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
32728
32729         * gnulib-tool (func_import): Avoid duplication of --avoid
32730         statements
32731         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
32732         names to `_' in variable names.
32733
32734 2007-07-10  Eric Blake  <ebb9@byu.net>
32735
32736         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
32737         * NEWS: Document this change.
32738
32739 2007-07-08  Bruno Haible  <bruno@clisp.org>
32740
32741         Update to Unicode 5.0.
32742         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
32743         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
32744         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
32745         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
32746         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
32747         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
32748         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
32749         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
32750         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
32751         U+10A3F, U+1D242..U+1D244.
32752         (nonspacing_table_ind): Update.
32753         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
32754         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
32755
32756 2007-07-08  Bruno Haible  <bruno@clisp.org>
32757
32758         Update to Unicode 5.0.
32759         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
32760         code transform. Extend the name index field of unicode_name_to_code and
32761         unicode_code_to_name from 16 to 24 bits.
32762         * lib/uniname/uniname.c (unicode_character_name,
32763         unicode_name_character): Add the range 0x12xxx to the code transform.
32764         * lib/uniname/uninames.h: Regenerated.
32765         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
32766
32767 2007-07-07  Bruno Haible  <bruno@clisp.org>
32768
32769         * modules/wcwidth-tests: New file.
32770         * tests/test-wcwidth.c: New file.
32771
32772         Work around MacOS X wcwidth() bug.
32773         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
32774         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
32775         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
32776         original wcwidth in non-UTF-8 locales.
32777         * modules/wcwidth (Depends-on): Add localcharset, streq,
32778         uniwidth/width.
32779         * doc/functions/wcwidth.texi: Update.
32780
32781 2007-07-07  Bruno Haible  <bruno@clisp.org>
32782
32783         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
32784         (wcwidth): New declaration.
32785         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
32786         macros.
32787         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
32788         here. Prepare for creating <wchar.h> unconditionally.
32789         * modules/wchar (Depends-on): Add link-warning.
32790         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
32791         REPLACE_WCWIDTH, and GL_LINK_WARNING.
32792         * lib/wcwidth.h: Remove file.
32793         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
32794         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
32795         * modules/wcwidth (Files): Remove lib/wcwidth.h.
32796         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
32797         (Include): Replace wcwidth.h with <wchar.h>.
32798         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
32799         * lib/mbchar.h: Don't include wcwidth.h.
32800         * lib/mbswidth.c: Likewise.
32801         * NEWS: Mention the change.
32802
32803 2007-07-07  Bruno Haible  <bruno@clisp.org>
32804
32805         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
32806         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
32807         definition with an external declaration.
32808         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
32809         defined as a function. Remove AC_C_INLINE requirement.
32810         * modules/wcwidth (Files): Add lib/wcwidth.c.
32811         (Makefile.am): Remove redundant statement.
32812
32813 2007-07-07  Bruno Haible  <bruno@clisp.org>
32814
32815         * MODULES.html.sh (Unicode string functions): Add the new modules.
32816
32817         * tests/uniwidth/test-u32-strwidth.c: New file.
32818         * modules/uniwidth/u32-strwidth-tests: New file.
32819
32820         * lib/uniwidth/u32-strwidth.c: New file.
32821         * modules/uniwidth/u32-strwidth: New file.
32822
32823         * tests/uniwidth/test-u16-strwidth.c: New file.
32824         * modules/uniwidth/u16-strwidth-tests: New file.
32825
32826         * lib/uniwidth/u16-strwidth.c: New file.
32827         * modules/uniwidth/u16-strwidth: New file.
32828
32829         * tests/uniwidth/test-u8-strwidth.c: New file.
32830         * modules/uniwidth/u8-strwidth-tests: New file.
32831
32832         * lib/uniwidth/u8-strwidth.c: New file.
32833         * modules/uniwidth/u8-strwidth: New file.
32834
32835         * tests/uniwidth/test-u32-width.c: New file.
32836         * modules/uniwidth/u32-width-tests: New file.
32837
32838         * lib/uniwidth/u32-width.c: New file.
32839         * modules/uniwidth/u32-width: New file.
32840
32841         * tests/uniwidth/test-u16-width.c: New file.
32842         * modules/uniwidth/u16-width-tests: New file.
32843
32844         * lib/uniwidth/u16-width.c: New file.
32845         * modules/uniwidth/u16-width: New file.
32846
32847         * tests/uniwidth/test-u8-width.c: New file.
32848         * modules/uniwidth/u8-width-tests: New file.
32849
32850         * lib/uniwidth/u8-width.c: New file.
32851         * modules/uniwidth/u8-width: New file.
32852
32853         * tests/uniwidth/test-uc_width.c: New file.
32854         * modules/uniwidth/width-tests: New file.
32855
32856         * lib/uniwidth/width.c: New file, from GNU libiconv.
32857         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
32858         * modules/uniwidth/width: New file.
32859
32860         * lib/uniwidth.h: New file, from GNU libiconv.
32861         * modules/uniwidth/base: New file.
32862
32863 2007-07-07  Bruno Haible  <bruno@clisp.org>
32864
32865         * lib/uniname.h: New file, from GNU gettext.
32866         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
32867         * lib/uniname/uninames.h: New file, from GNU gettext.
32868         * lib/uniname/uniname.c: New file, from GNU gettext.
32869         * tests/uniname/test-uninames.sh: New file.
32870         * tests/uniname/test-uninames.c: New file, from GNU gettext.
32871         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
32872         * modules/uniname/base: New file.
32873         * modules/uniname/uniname: New file.
32874         * modules/uniname/uniname-tests: New file.
32875         * MODULES.html.sh (Unicode string functions): Add the new modules.
32876
32877 2007-07-06  Bruno Haible  <bruno@clisp.org>
32878
32879         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
32880
32881 2007-07-06  Bruno Haible  <bruno@clisp.org>
32882
32883         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
32884         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
32885         includes <cygwin/sys_time.h> which includes <sys/select.h> which
32886         include <sys/time.h>.
32887         Reported by Eric Blake.
32888
32889 2007-07-06  Eric Blake  <ebb9@byu.net>
32890
32891         Fix testing canonicalize on cygwin.
32892         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
32893         Revert patch from 2007-06-19.
32894         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
32895         canonicalize module is also in use.
32896         * tests/test-canonicalize.c: New file.
32897         * tests/test-canonicalize.sh: Likewise.
32898         * modules/canonicalize-tests: Likewise.
32899
32900 2007-07-06  Jim Meyering  <jim@meyering.net>
32901
32902         * lib/getugroups.c (getugroups): Detect getgrent failure.
32903         Adjust comment to reflect reality: this function may return -1.
32904
32905 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
32906
32907         * build-aux/bootstrap (TP_URL,get_translations): Update to use
32908         the new TP address.
32909         (usage): Fix typo
32910         (gnulib_mk): New variable.
32911
32912 2007-07-05  Jim Meyering  <jim@meyering.net>
32913
32914         Don't let endgrent clobber errno, no matter how improbable.
32915         * lib/getugroups.c (getugroups): Save and restore errno around
32916         endgrent call.
32917
32918         Close the group DB even when failing with 2^31 or more members.
32919         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
32920
32921 2007-07-04  Jim Meyering  <jim@meyering.net>
32922
32923         * lib/getugroups.h: New file.
32924         * lib/getugroups.c: Include "getugroups.h".
32925         Remove uses of "register" keyword.
32926         Move local variable, "cp", down into scope where used.
32927         Give "username" parameter the "const" attribute.
32928         * modules/getugroups (Files): Add lib/getugroups.h
32929
32930 2007-07-04  Karl Berry  <karl@gnu.org>
32931
32932         * MODULES.html.sh (func_all_modules): Complete rename of
32933         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
32934
32935 2007-07-02  Bruno Haible  <bruno@clisp.org>
32936
32937         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
32938         mode, when inttypes.h comes from gnulib.
32939         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
32940
32941 2007-07-02  Simon Josefsson  <simon@josefsson.org>
32942
32943         * NEWS: Mention lgpl module name change.
32944
32945         * modules/lgpl-2.1: Renamed from lgpl.
32946
32947         * NEWS: Mention gpl module name change.
32948
32949         * modules/gpl-3.0: New file, based on gpl-2.0.
32950
32951         * modules/gpl-2.0: Renamed from gpl.
32952
32953         * modules/gpl: Fix filename, doc/gpl.texi is now found at
32954         doc/gpl-2.0.texi.
32955
32956 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
32957
32958         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
32959         #define __STDC_LIMIT_MACROS temporarily while including
32960         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
32961         Problem reported by Joel E. Denny in
32962         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
32963
32964 2007-07-01  Bruno Haible  <bruno@clisp.org>
32965
32966         * lib/unistdio.h: New file.
32967         * lib/unistdio/u-asnprintf.h: New file.
32968         * lib/unistdio/u-asprintf.h: New file.
32969         * lib/unistdio/u-printf-args.c: New file.
32970         * lib/unistdio/u-printf-args.h: New file.
32971         * lib/unistdio/u-printf-parse.h: New file.
32972         * lib/unistdio/u-snprintf.h: New file.
32973         * lib/unistdio/u-sprintf.h: New file.
32974         * lib/unistdio/u-vasprintf.h: New file.
32975         * lib/unistdio/u-vsnprintf.h: New file.
32976         * lib/unistdio/u-vsprintf.h: New file.
32977         * lib/unistdio/ulc-asnprintf.c: New file.
32978         * lib/unistdio/ulc-asprintf.c: New file.
32979         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
32980         * lib/unistdio/ulc-printf-parse.c: New file.
32981         * lib/unistdio/ulc-snprintf.c: New file.
32982         * lib/unistdio/ulc-sprintf.c: New file.
32983         * lib/unistdio/ulc-vasnprintf.c: New file.
32984         * lib/unistdio/ulc-vasprintf.c: New file.
32985         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
32986         * lib/unistdio/ulc-vsnprintf.c: New file.
32987         * lib/unistdio/ulc-vsprintf.c: New file.
32988         * lib/unistdio/u8-asnprintf.c: New file.
32989         * lib/unistdio/u8-asprintf.c: New file.
32990         * lib/unistdio/u8-printf-parse.c: New file.
32991         * lib/unistdio/u8-snprintf.c: New file.
32992         * lib/unistdio/u8-sprintf.c: New file.
32993         * lib/unistdio/u8-vasnprintf.c: New file.
32994         * lib/unistdio/u8-vasprintf.c: New file.
32995         * lib/unistdio/u8-vsnprintf.c: New file.
32996         * lib/unistdio/u8-vsprintf.c: New file.
32997         * lib/unistdio/u8-u8-asnprintf.c: New file.
32998         * lib/unistdio/u8-u8-asprintf.c: New file.
32999         * lib/unistdio/u8-u8-snprintf.c: New file.
33000         * lib/unistdio/u8-u8-sprintf.c: New file.
33001         * lib/unistdio/u8-u8-vasnprintf.c: New file.
33002         * lib/unistdio/u8-u8-vasprintf.c: New file.
33003         * lib/unistdio/u8-u8-vsnprintf.c: New file.
33004         * lib/unistdio/u8-u8-vsprintf.c: New file.
33005         * lib/unistdio/u16-asnprintf.c: New file.
33006         * lib/unistdio/u16-asprintf.c: New file.
33007         * lib/unistdio/u16-printf-parse.c: New file.
33008         * lib/unistdio/u16-snprintf.c: New file.
33009         * lib/unistdio/u16-sprintf.c: New file.
33010         * lib/unistdio/u16-vasnprintf.c: New file.
33011         * lib/unistdio/u16-vasprintf.c: New file.
33012         * lib/unistdio/u16-vsnprintf.c: New file.
33013         * lib/unistdio/u16-vsprintf.c: New file.
33014         * lib/unistdio/u16-u16-asnprintf.c: New file.
33015         * lib/unistdio/u16-u16-asprintf.c: New file.
33016         * lib/unistdio/u16-u16-snprintf.c: New file.
33017         * lib/unistdio/u16-u16-sprintf.c: New file.
33018         * lib/unistdio/u16-u16-vasnprintf.c: New file.
33019         * lib/unistdio/u16-u16-vasprintf.c: New file.
33020         * lib/unistdio/u16-u16-vsnprintf.c: New file.
33021         * lib/unistdio/u16-u16-vsprintf.c: New file.
33022         * lib/unistdio/u32-asnprintf.c: New file.
33023         * lib/unistdio/u32-asprintf.c: New file.
33024         * lib/unistdio/u32-printf-parse.c: New file.
33025         * lib/unistdio/u32-snprintf.c: New file.
33026         * lib/unistdio/u32-sprintf.c: New file.
33027         * lib/unistdio/u32-vasnprintf.c: New file.
33028         * lib/unistdio/u32-vasprintf.c: New file.
33029         * lib/unistdio/u32-vsnprintf.c: New file.
33030         * lib/unistdio/u32-vsprintf.c: New file.
33031         * lib/unistdio/u32-u32-asnprintf.c: New file.
33032         * lib/unistdio/u32-u32-asprintf.c: New file.
33033         * lib/unistdio/u32-u32-snprintf.c: New file.
33034         * lib/unistdio/u32-u32-sprintf.c: New file.
33035         * lib/unistdio/u32-u32-vasnprintf.c: New file.
33036         * lib/unistdio/u32-u32-vasprintf.c: New file.
33037         * lib/unistdio/u32-u32-vsnprintf.c: New file.
33038         * lib/unistdio/u32-u32-vsprintf.c: New file.
33039         * tests/unistdio/test-ulc-asnprintf1.c: New file.
33040         * tests/unistdio/test-ulc-asnprintf1.h: New file.
33041         * tests/unistdio/test-ulc-printf1.h: New file.
33042         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
33043         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
33044         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
33045         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
33046         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
33047         * tests/unistdio/test-ulc-vasprintf1.c: New file.
33048         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
33049         * tests/unistdio/test-ulc-vsprintf1.c: New file.
33050         * tests/unistdio/test-u8-asnprintf1.c: New file.
33051         * tests/unistdio/test-u8-asnprintf1.h: New file.
33052         * tests/unistdio/test-u8-printf1.h: New file.
33053         * tests/unistdio/test-u8-vasnprintf1.c: New file.
33054         * tests/unistdio/test-u8-vasnprintf2.c: New file.
33055         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
33056         * tests/unistdio/test-u8-vasnprintf3.c: New file.
33057         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
33058         * tests/unistdio/test-u8-vasprintf1.c: New file.
33059         * tests/unistdio/test-u8-vsnprintf1.c: New file.
33060         * tests/unistdio/test-u8-vsprintf1.c: New file.
33061         * tests/unistdio/test-u16-asnprintf1.c: New file.
33062         * tests/unistdio/test-u16-asnprintf1.h: New file.
33063         * tests/unistdio/test-u16-printf1.h: New file.
33064         * tests/unistdio/test-u16-vasnprintf1.c: New file.
33065         * tests/unistdio/test-u16-vasnprintf2.c: New file.
33066         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
33067         * tests/unistdio/test-u16-vasnprintf3.c: New file.
33068         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
33069         * tests/unistdio/test-u16-vasprintf1.c: New file.
33070         * tests/unistdio/test-u16-vsnprintf1.c: New file.
33071         * tests/unistdio/test-u16-vsprintf1.c: New file.
33072         * tests/unistdio/test-u32-asnprintf1.c: New file.
33073         * tests/unistdio/test-u32-asnprintf1.h: New file.
33074         * tests/unistdio/test-u32-printf1.h: New file.
33075         * tests/unistdio/test-u32-vasnprintf1.c: New file.
33076         * tests/unistdio/test-u32-vasnprintf2.c: New file.
33077         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
33078         * tests/unistdio/test-u32-vasnprintf3.c: New file.
33079         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
33080         * tests/unistdio/test-u32-vasprintf1.c: New file.
33081         * tests/unistdio/test-u32-vsnprintf1.c: New file.
33082         * tests/unistdio/test-u32-vsprintf1.c: New file.
33083         * modules/unistdio/base: New file.
33084         * modules/unistdio/u-printf-args: New file.
33085         * modules/unistdio/ulc-asnprintf: New file.
33086         * modules/unistdio/ulc-asprintf: New file.
33087         * modules/unistdio/ulc-fprintf: New file.
33088         * modules/unistdio/ulc-printf-parse: New file.
33089         * modules/unistdio/ulc-snprintf: New file.
33090         * modules/unistdio/ulc-sprintf: New file.
33091         * modules/unistdio/ulc-vasnprintf: New file.
33092         * modules/unistdio/ulc-vasprintf: New file.
33093         * modules/unistdio/ulc-vfprintf: New file.
33094         * modules/unistdio/ulc-vsnprintf: New file.
33095         * modules/unistdio/ulc-vsprintf: New file.
33096         * modules/unistdio/u8-asnprintf: New file.
33097         * modules/unistdio/u8-asprintf: New file.
33098         * modules/unistdio/u8-printf-parse: New file.
33099         * modules/unistdio/u8-snprintf: New file.
33100         * modules/unistdio/u8-sprintf: New file.
33101         * modules/unistdio/u8-vasnprintf: New file.
33102         * modules/unistdio/u8-vasprintf: New file.
33103         * modules/unistdio/u8-vsnprintf: New file.
33104         * modules/unistdio/u8-vsprintf: New file.
33105         * modules/unistdio/u8-u8-asnprintf: New file.
33106         * modules/unistdio/u8-u8-asprintf: New file.
33107         * modules/unistdio/u8-u8-snprintf: New file.
33108         * modules/unistdio/u8-u8-sprintf: New file.
33109         * modules/unistdio/u8-u8-vasnprintf: New file.
33110         * modules/unistdio/u8-u8-vasprintf: New file.
33111         * modules/unistdio/u8-u8-vsnprintf: New file.
33112         * modules/unistdio/u8-u8-vsprintf: New file.
33113         * modules/unistdio/u16-asnprintf: New file.
33114         * modules/unistdio/u16-asprintf: New file.
33115         * modules/unistdio/u16-printf-parse: New file.
33116         * modules/unistdio/u16-snprintf: New file.
33117         * modules/unistdio/u16-sprintf: New file.
33118         * modules/unistdio/u16-vasnprintf: New file.
33119         * modules/unistdio/u16-vasprintf: New file.
33120         * modules/unistdio/u16-vsnprintf: New file.
33121         * modules/unistdio/u16-vsprintf: New file.
33122         * modules/unistdio/u16-u16-asnprintf: New file.
33123         * modules/unistdio/u16-u16-asprintf: New file.
33124         * modules/unistdio/u16-u16-snprintf: New file.
33125         * modules/unistdio/u16-u16-sprintf: New file.
33126         * modules/unistdio/u16-u16-vasnprintf: New file.
33127         * modules/unistdio/u16-u16-vasprintf: New file.
33128         * modules/unistdio/u16-u16-vsnprintf: New file.
33129         * modules/unistdio/u16-u16-vsprintf: New file.
33130         * modules/unistdio/u32-asnprintf: New file.
33131         * modules/unistdio/u32-asprintf: New file.
33132         * modules/unistdio/u32-printf-parse: New file.
33133         * modules/unistdio/u32-snprintf: New file.
33134         * modules/unistdio/u32-sprintf: New file.
33135         * modules/unistdio/u32-vasnprintf: New file.
33136         * modules/unistdio/u32-vasprintf: New file.
33137         * modules/unistdio/u32-vsnprintf: New file.
33138         * modules/unistdio/u32-vsprintf: New file.
33139         * modules/unistdio/u32-u32-asnprintf: New file.
33140         * modules/unistdio/u32-u32-asprintf: New file.
33141         * modules/unistdio/u32-u32-snprintf: New file.
33142         * modules/unistdio/u32-u32-sprintf: New file.
33143         * modules/unistdio/u32-u32-vasnprintf: New file.
33144         * modules/unistdio/u32-u32-vasprintf: New file.
33145         * modules/unistdio/u32-u32-vsnprintf: New file.
33146         * modules/unistdio/u32-u32-vsprintf: New file.
33147         * modules/unistdio/ulc-asnprintf-tests: New file.
33148         * modules/unistdio/ulc-vasnprintf-tests: New file.
33149         * modules/unistdio/ulc-vasprintf-tests: New file.
33150         * modules/unistdio/ulc-vsnprintf-tests: New file.
33151         * modules/unistdio/ulc-vsprintf-tests: New file.
33152         * modules/unistdio/u8-asnprintf-tests: New file.
33153         * modules/unistdio/u8-vasnprintf-tests: New file.
33154         * modules/unistdio/u8-vasprintf-tests: New file.
33155         * modules/unistdio/u8-vsnprintf-tests: New file.
33156         * modules/unistdio/u8-vsprintf-tests: New file.
33157         * modules/unistdio/u16-asnprintf-tests: New file.
33158         * modules/unistdio/u16-vasnprintf-tests: New file.
33159         * modules/unistdio/u16-vasprintf-tests: New file.
33160         * modules/unistdio/u16-vsnprintf-tests: New file.
33161         * modules/unistdio/u16-vsprintf-tests: New file.
33162         * modules/unistdio/u32-asnprintf-tests: New file.
33163         * modules/unistdio/u32-vasnprintf-tests: New file.
33164         * modules/unistdio/u32-vasprintf-tests: New file.
33165         * modules/unistdio/u32-vsnprintf-tests: New file.
33166         * modules/unistdio/u32-vsprintf-tests: New file.
33167         * MODULES.html.sh (Unicode string functions): Add the new modules.
33168
33169 2007-07-01  Bruno Haible  <bruno@clisp.org>
33170
33171         * lib/sprintf.c (sprintf): Limit the available length estimation,
33172         to avoid address wraparound.
33173         * lib/vsprintf.c (vsprintf): Likewise.
33174         * modules/sprintf-posix (Dependencies): Add stdint.
33175         * modules/vsprintf-posix (Dependencies): Likewise.
33176
33177 2007-07-01  Bruno Haible  <bruno@clisp.org>
33178
33179         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
33180         Windows PATH as well. Conservative double-quoting. Comments.
33181
33182 2007-07-01  Bruno Haible  <bruno@clisp.org>
33183             Eric Blake  <ebb9@byu.net>
33184             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33185
33186         * gnulib-tool (self_abspathname): Fix algorithm to cope with
33187         empty components in $PATH, denoting '.'.
33188
33189 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33190
33191         * gnulib-tool: Fix indentation.
33192         (func_create_megatestdir): Likewise.
33193         Report by Bruno Haible.
33194
33195 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33196
33197         Sync from Automake.
33198         * build-aux/gnupload: Fix shell portability issues with for loops.
33199         Report by Karl Berry.
33200
33201 2007-06-29  Simon Josefsson  <simon@josefsson.org>
33202
33203         * build-aux/maint.mk (POURL): Use translationproject.org.
33204
33205 2007-06-27  Simon Josefsson  <simon@josefsson.org>
33206             Bruno Haible  <bruno@clisp.org>
33207
33208         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
33209         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
33210         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
33211         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
33212         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
33213
33214 2007-06-27  Bruno Haible  <bruno@clisp.org>
33215
33216         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
33217         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
33218
33219 2007-06-26  Karl Berry  <karl@gnu.org>
33220
33221         * MODULES.html.sh: remove xreadlink-with-size.
33222
33223 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
33224
33225         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
33226         method that I hope also handles the double-include problem noted
33227         by Bruno Haible in
33228         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
33229
33230 2007-06-23  Bruno Haible  <bruno@clisp.org>
33231
33232         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
33233         Don't let the 'mostlyclean' target fail if the last subdirectory could
33234         not be removed.
33235         Reported by Karl Berry.
33236
33237 2007-06-23  Bruno Haible  <bruno@clisp.org>
33238
33239         * gnulib-tool (echo): Add a speedier workaround for ksh.
33240         * tests/test-echo.sh: Likewise.
33241
33242 2007-06-23  Bruno Haible  <bruno@clisp.org>
33243
33244         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
33245         * tests/test-echo.sh: Likewise.
33246
33247 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33248
33249         * gnulib-tool (IFS): Initialize early, so we don't set it to
33250         empty later.
33251         (self_abspathname): Rewrite algorithm to set it, reindent.
33252         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
33253         (func_create_megatestdir): Merge some sed scripts.
33254
33255 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
33256
33257         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
33258         exposed by Sun Studio 11 cc on Solaris 8.
33259
33260 2007-06-22  Bruno Haible  <bruno@clisp.org>
33261
33262         * gnulib-tool (echo): Ensure the echo primitive does not interpret
33263         backslashes.
33264         * tests/test-echo.sh: New file.
33265
33266 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33267
33268         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
33269         simplify `sed_replace_build_aux' scripts, they are portable but
33270         echoing them with `echo' is not.
33271         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
33272
33273 2007-06-21  Karl Berry  <karl@gnu.org>
33274
33275         * config/srclist.txt: guess we can't handle the licenses via
33276         srclist at the moment.
33277
33278 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
33279
33280         * MODULES.html.sh: Add include_next.
33281         * modules/include_next: New file.
33282
33283 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
33284
33285         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
33286         INCLUDE_NEXT.
33287         (gl_CHECK_NEXT_HEADERS): New macro.
33288         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
33289         the obsolescent gl_ABSOLUTE_HEADER.
33290         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
33291         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
33292         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
33293         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
33294         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
33295         * m4/math_h.m4 (gl_MATH_H): Likewise.
33296         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
33297         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
33298         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
33299         * m4/stdint.m4 (gl_STDINT_H): Likewise.
33300         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
33301         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
33302         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
33303         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
33304         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
33305         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
33306         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
33307         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
33308         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
33309         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
33310         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
33311         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
33312         * m4/inttypes.m4 (gl_INTTYPES_H): Define
33313         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
33314         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
33315         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
33316         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
33317         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
33318         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
33319         * lib/float_.h: Likewise.
33320         * lib/inttypes_.h: Likewise.
33321         * lib/math_.h: Likewise.
33322         * lib/search_.h: Likewise.
33323         * lib/signal_.h: Likewise.
33324         * lib/stdint_.h: Likewise.
33325         * lib/stdio_.h: Likewise.
33326         * lib/stdlib_.h: Likewise.
33327         * lib/string_.h: Likewise.
33328         * lib/sys_stat_.h: Likewise.
33329         * lib/sys_time_.h: Likewise.
33330         * lib/time_.h: Likewise.
33331         * lib/unistd_.h: Likewise.
33332         * lib/wchar_.h: Likewise.
33333         * lib/wctype_.h: Likewise.
33334         * lib/dirent_.h: Likewise.
33335         * lib/iconv_.h: Likewise.
33336         * lib/locale_.h: Likewise.
33337         * lib/netinet_in_.h: Likewise.
33338         * lib/sys_select_.h: Likewise.
33339         * lib/sys_socket_.h: Likewise.
33340         * lib/sysexits_.h: Likewise.
33341         * modules/fcntl (Depends-on): Depend on include_next, not
33342         absolute_header.
33343         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
33344         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
33345         * modules/fchdir: Likewise.
33346         * modules/float: Likewise.
33347         * modules/iconv_open: Likewise.
33348         * modules/inttypes: Likewise.
33349         * modules/locale: Likewise.
33350         * modules/math: Likewise.
33351         * modules/netinet_in: Likewise.
33352         * modules/search: Likewise.
33353         * modules/signal: Likewise.
33354         * modules/stdint: Likewise.
33355         * modules/stdio: Likewise.
33356         * modules/stdlib: Likewise.
33357         * modules/string: Likewise.
33358         * modules/sys_select: Likewise.
33359         * modules/sys_socket: Likewise.
33360         * modules/sys_stat: Likewise.
33361         * modules/sys_time: Likewise.
33362         * modules/sysexits: Likewise.
33363         * modules/time: Likewise.
33364         * modules/unistd: Likewise.
33365         * modules/wchar: Likewise.
33366         * modules/wctype: Likewise.
33367         * modules/sys_stat: Change maintainer to "all".
33368         * modules/unistd: Likewise.
33369
33370 2007-06-20  Karl Berry  <karl@gnu.org>
33371
33372         * config/srclist.txt: track www changes in license files.
33373
33374 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
33375
33376         * build-aux/bootstrap: Remove stray dot.
33377         Make sure build_aux settings are honored when linking
33378         gnulib_extra_files.
33379
33380 2007-06-19  Eric Blake  <ebb9@byu.net>
33381
33382         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
33383         Allow compilation on cygwin.
33384
33385 2007-06-19  Jim Meyering  <jim@meyering.net>
33386
33387         xreadlink-with-size: Remove module.  No longer used.
33388         Ex-callers now use xreadlink or mreadlink-with-size.
33389         * modules/xreadlink-with-size: Remove module.
33390         * lib/xreadlink-with-size.c: Remove file.
33391         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
33392         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
33393         just before the function definition *is* accurate.
33394
33395         Eliminate one way canonicalize_filename_mode could exit.
33396         * lib/canonicalize.c (canonicalize_filename_mode):
33397         Use mreadlink_with_size, not xreadlink_with_size.
33398
33399 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
33400
33401         Detect porting problems to FreeBSD/arm, which has time_t wider than
33402         long int.  Original problem reported for GNU diff by Xin Li in
33403         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
33404         * modules/getdate (Depends-on): Add intprops, verify.
33405         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
33406         is an integer type no wider than long int.
33407
33408 2007-06-18  Jim Meyering  <jim@meyering.net>
33409
33410         New module: mreadlink-with-size.
33411         * MODULES.html.sh: Add mreadlink-with-size.
33412         * modules/mreadlink-with-size: New module
33413         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
33414         not xreadlink-with-size.
33415         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
33416
33417 2007-06-16  Bruno Haible  <bruno@clisp.org>
33418
33419         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
33420         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
33421         Reported by Gary V. Vaughan <gary@gnu.org>.
33422
33423 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
33424
33425         Revamp lchown so that it lives in unistd.h where it belongs.
33426         * lib/lchown.h: Remove.
33427         * lib/dirchownmod.c: Don't include lib/lchown.h.
33428         * lib/fchownat.c: Likewise.
33429         * lib/openat.c: Likewise.
33430         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
33431         does not follow symlinks.
33432         (EOPNOTSUPP): Define if not defined.
33433         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
33434         is defined to 0.
33435         (lchown): New decl.
33436         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
33437         Do not check for lchown decl.
33438         Set REPLACE_LCHOWN.
33439         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
33440         REPLACE_LCHOWN.
33441         * modules/chown: Make it clear it follows symlinks.
33442         * modules/lchown: Make it clear it doesn't follow symlinks.
33443         (Files): Remove lib/lchown.h
33444         (Depends-on): Add unistd.
33445         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
33446         (Include): Include <unistd.h>, not "lchown.h".
33447         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
33448         REPLACE_LCHOWN.
33449
33450 2007-06-15  Jim Meyering  <jim@meyering.net>
33451
33452         Change license (GPL to LGPL) of fsusage and dependents.
33453         * modules/fsusage (License): Change to LGPL.
33454         * modules/full-read (License): Likewise.
33455         * modules/full-write (License): Likewise.
33456         * modules/safe-read (License): Likewise.
33457         * modules/safe-write (License): Likewise.
33458
33459 2007-06-14  Ben Pfaff  <blp@gnu.org>
33460
33461         Missing part of allocsa -> malloca transition.
33462         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
33463         gl_MALLOCA.
33464
33465 2007-06-12  Bruno Haible  <bruno@clisp.org>
33466
33467         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
33468         to ia64, x86_64, i386.
33469         Reported by Eric Blake.
33470
33471 2007-06-12  Bruno Haible  <bruno@clisp.org>
33472
33473         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
33474         cross-compiling to x86_64.
33475
33476 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
33477
33478         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
33479         glitch reported by Ralf Wildenhues in
33480         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
33481
33482         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
33483         Vin Shelton.
33484
33485 2007-06-11  Bruno Haible  <bruno@clisp.org>
33486
33487         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
33488         replacement string.
33489         Reported by Eric Blake.
33490
33491 2007-06-10  Bruno Haible  <bruno@clisp.org>
33492
33493         Prepare vasnprintf code for use with Unicode strings.
33494         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
33495         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
33496         TYPE_U32_STRING.
33497         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
33498         a_u32_string variants.
33499         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
33500         * lib/printf-args.c: Don't include config.h and the specification
33501         header if PRINTF_FETCHARGS is already defined.
33502         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
33503         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
33504         TYPE_U16_STRING, TYPE_U32_STRING.
33505         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
33506         u16_directive, u16_directives, u32_directive, u32_directives): New
33507         types.
33508         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
33509         New declarations.
33510         * lib/printf-parse.c: Don't include config.h and the specification
33511         header if PRINTF_PARSE is already defined. Eliminate the set of
33512         parameters for WIDE_CHAR_VERSION; the user of this file must provide
33513         them now. Include c-ctype.h.
33514         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
33515         directive and CHAR_T_ONLY_ASCII.
33516         * lib/vasnprintf.c: Don't include config.h and the specification header
33517         if VASNPRINTF is already defined.
33518         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
33519         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
33520         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
33521         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
33522         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
33523         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
33524         code accordingly.
33525         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
33526         pad_ourselves also in this case, with the 'c' and 's' directives, and
33527         with a different notion of "width".
33528         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
33529
33530 2007-06-10  Bruno Haible  <bruno@clisp.org>
33531
33532         * modules/unistr/u32-mbsnlen: New file.
33533         * lib/unistr/u32-mbsnlen.c: New file.
33534
33535         * modules/unistr/u16-mbsnlen: New file.
33536         * lib/unistr/u16-mbsnlen.c: New file.
33537
33538         * modules/unistr/u8-mbsnlen: New file.
33539         * lib/unistr/u8-mbsnlen.c: New file.
33540
33541         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
33542         declarations.
33543
33544 2007-06-10  Bruno Haible  <bruno@clisp.org>
33545
33546         * lib/string_.h (mbsnlen): New declaration.
33547         * lib/mbsnlen.c: New file.
33548         * m4/mbsnlen.m4: New file.
33549         * modules/mbsnlen: New file.
33550         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
33551         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
33552         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
33553
33554 2007-06-10  Bruno Haible  <bruno@clisp.org>
33555
33556         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
33557
33558 2007-06-10  Bruno Haible  <bruno@clisp.org>
33559
33560         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
33561         * lib/mbuiter.h: Likewise.
33562
33563 2007-06-10  Bruno Haible  <bruno@clisp.org>
33564
33565         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
33566         declaration.
33567
33568 2007-06-10  Karl Berry  <karl@gnu.org>
33569
33570         * config/srclist.txt: remove gettext entries, Bruno prefers
33571         to update individually.
33572
33573 2007-06-10  Bruno Haible  <bruno@clisp.org>
33574
33575         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
33576         'maxlen'. Ensure only length + width bytes are allocated, not
33577         length + 1 + width.
33578
33579 2007-06-09  Bruno Haible  <bruno@clisp.org>
33580
33581         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
33582         (CHAR_T): Remove macro.
33583         (VASNPRINTF): Update.
33584
33585 2007-06-09  Bruno Haible  <bruno@clisp.org>
33586
33587         * MODULES.html.sh (Unicode string functions): Add the new modules.
33588
33589         * modules/uniconv/u32-conv-to-enc: New file.
33590         * lib/uniconv/u32-conv-to-enc.c: New file.
33591         * modules/uniconv/u32-conv-to-enc-tests: New file.
33592         * tests/uniconv/test-u32-conv-to-enc.c: New file.
33593
33594         * modules/uniconv/u16-conv-to-enc: New file.
33595         * lib/uniconv/u16-conv-to-enc.c: New file.
33596         * lib/uniconv/u-conv-to-enc.h: New file.
33597         * modules/uniconv/u16-conv-to-enc-tests: New file.
33598         * tests/uniconv/test-u16-conv-to-enc.c: New file.
33599
33600         * modules/uniconv/u8-conv-to-enc: New file.
33601         * lib/uniconv/u8-conv-to-enc.c: New file.
33602         * modules/uniconv/u8-conv-to-enc-tests: New file.
33603         * tests/uniconv/test-u8-conv-to-enc.c: New file.
33604
33605         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
33606         u32_conv_to_encoding): New declarations.
33607
33608 2007-06-09  Bruno Haible  <bruno@clisp.org>
33609
33610         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
33611
33612 2007-06-09  Bruno Haible  <bruno@clisp.org>
33613
33614         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
33615         * modules/malloca: Renamed from modules/allocsa, updated.
33616         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
33617         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
33618         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
33619         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
33620         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
33621         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
33622         * modules/xmalloca: Renamed from modules/xallocsa, updated.
33623         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
33624         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
33625         * modules/c-strcasestr (Depends-on): Update.
33626         * lib/c-strcasestr.c: Update.
33627         * modules/c-strstr (Depends-on): Update.
33628         * lib/c-strstr.c: Update.
33629         * modules/canonicalize-lgpl (Depends-on): Update.
33630         * lib/canonicalize-lgpl.c: Update.
33631         * modules/clean-temp (Depends-on): Update.
33632         * lib/clean-temp.c: Update.
33633         * modules/csharpcomp (Depends-on): Update.
33634         * lib/csharpcomp.c: Update.
33635         * modules/csharpexec (Depends-on): Update.
33636         * lib/csharpexec.c: Update.
33637         * modules/javacomp (Depends-on): Update.
33638         * lib/javacomp.c: Update.
33639         * modules/javaexec (Depends-on): Update.
33640         * lib/javaexec.c: Update.
33641         * modules/mbscasestr (Depends-on): Update.
33642         * lib/mbscasestr.c: Update.
33643         * modules/mbsstr (Depends-on): Update.
33644         * lib/mbsstr.c: Update.
33645         * modules/setenv (Depends-on): Update.
33646         * lib/setenv.c: Update.
33647         * modules/strcasestr (Depends-on): Update.
33648         * lib/strcasestr.c: Update.
33649         * modules/striconveha (Depends-on): Update.
33650         * lib/striconveha.c: Update.
33651         * modules/relocatable-prog-wrapper (Files): Update.
33652         * lib/relocwrapper.c: Update.
33653         * build-aux/install-reloc: Update.
33654         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
33655
33656 2007-06-08  Bruno Haible  <bruno@clisp.org>
33657
33658         Port to uClibc.
33659         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
33660         * lib/fpurge.c (fpurge): Likewise.
33661         * lib/freading.c (freading): Likewise.
33662         * lib/fseeko.c (rpl_fseeko): Likewise.
33663         * lib/fseterr.c (fseterr): Likewise.
33664         * lib/fwriting.c (fwriting): Likewise.
33665         * tests/test-fflush.c (main): Avoid a failure on uClibc.
33666
33667 2007-06-08  Bruno Haible  <bruno@clisp.org>
33668
33669         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
33670         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
33671         * modules/gettext (Files): Add m4/intlmacosx.m4.
33672
33673 2007-06-07  Bruno Haible  <bruno@clisp.org>
33674
33675         * modules/localename-tests: New file.
33676         * tests/test-localename.c: New file.
33677
33678         New module 'localename'.
33679         * lib/localename.h: New file.
33680         * lib/localename.c: New file, from GNU gettext.
33681         * m4/localename.m4: New file.
33682         * modules/localename: New file.
33683
33684 2007-06-07  Bruno Haible  <bruno@clisp.org>
33685
33686         Work around the lack of <wchar.h> on some builds of uClibc.
33687         * doc/headers/wchar.texi: Update.
33688         * lib/wchar_.h: Include <wchar.h> only if it exists.
33689         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
33690         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
33691         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
33692         doesn't exist.
33693         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
33694         * modules/mbfile (Depends-on): Add wchar.
33695         * modules/mbiter (Depends-on): Likewise.
33696         * modules/mbuiter (Depends-on): Likewise.
33697         Reported by Simon Josefsson.
33698
33699 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
33700
33701         Work around problem reported by Steven M. Schweda in
33702         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
33703         Tru64 5.1B with the Compaq compiler environment installed declares
33704         an 'isblank' function but does not define it in the C library.
33705         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
33706         * lib/regex_internal.h (isblank): Likewise.
33707         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
33708         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
33709
33710 2007-06-05  Bruno Haible  <bruno@clisp.org>
33711
33712         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
33713         ia64.
33714         * modules/printf-safe: New file.
33715         * modules/fprintf-posix (Depends-on): Add printf-safe.
33716         * modules/printf-posix (Depends-on): Likewise.
33717         * modules/snprintf-posix (Depends-on): Likewise.
33718         * modules/sprintf-posix (Depends-on): Likewise.
33719         * modules/vasnprintf-posix (Depends-on): Likewise.
33720         * modules/vasprintf-posix (Depends-on): Likewise.
33721         * modules/vfprintf-posix (Depends-on): Likewise.
33722         * modules/vprintf-posix (Depends-on): Likewise.
33723         * modules/vsnprintf-posix (Depends-on): Likewise.
33724         * modules/vsprintf-posix (Depends-on): Likewise.
33725         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
33726         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
33727         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
33728         "no" on i386, x86_64, ia64.
33729         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
33730         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
33731         on i386, x86_64, ia64.
33732         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
33733         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
33734         on i386, x86_64, ia64.
33735         * tests/test-vasnprintf-posix.c: Include float.h.
33736         (LDBL80_WORDS): New macro.
33737         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
33738         on i386, x86_64, ia64.
33739         * tests/test-vasprintf-posix.c: Include float.h.
33740         (LDBL80_WORDS): New macro.
33741         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
33742         on i386, x86_64, ia64.
33743         * tests/test-snprintf-posix.c: Include float.h.
33744         * tests/test-sprintf-posix.c: Likewise.
33745         * tests/test-vsnprintf-posix.c: Likewise.
33746         * tests/test-vsprintf-posix.c: Likewise.
33747
33748 2007-06-05  Bruno Haible  <bruno@clisp.org>
33749
33750         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
33751         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
33752         non-IEEE numbers on i386, x86_64, ia64.
33753         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
33754         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
33755         * tests/test-isnanl.h: Include float.h.
33756         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
33757
33758 2007-06-05  Bruno Haible  <bruno@clisp.org>
33759
33760         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
33761         also the %a / %A. Handle the %a / %A code before this extra handling.
33762
33763 2007-06-05  Bruno Haible  <bruno@clisp.org>
33764
33765         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
33766         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
33767
33768 2007-06-05  Bruno Haible  <bruno@clisp.org>
33769
33770         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
33771         typo in variable name.
33772
33773 2007-06-05  Eric Blake  <ebb9@byu.net>
33774
33775         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
33776         Reported by Simon Josefsson.
33777
33778 2007-06-04  Bruno Haible  <bruno@clisp.org>
33779
33780         Avoid test failures on some PowerPC platforms.
33781         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
33782         Define differently for PowerPC.
33783         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
33784         Reported by Gary V. Vaughan <gary@gnu.org>.
33785
33786 2007-06-02  Bruno Haible  <bruno@clisp.org>
33787
33788         Fix test-stdint failure on FreeBSD/ia64.
33789         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
33790         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
33791         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
33792         * doc/headers/stdint.texi: Update.
33793
33794 2007-06-01  Bruno Haible  <bruno@clisp.org>
33795
33796         * tests/test-binary-io.c (main): Pass a third argument to open().
33797         Reported by Gary V. Vaughan <gary@gnu.org>.
33798
33799 2007-06-01  Bruno Haible  <bruno@clisp.org>
33800
33801         * doc/functions/frexpl.texi: Update for mingw.
33802
33803 2007-06-01  Bruno Haible  <bruno@clisp.org>
33804
33805         * tests/test-lseek.c (main): Disable test of errno for invalid third
33806         argument.
33807         * doc/functions/lseek.texi: Update.
33808         Reported by Gary V. Vaughan <gary@gnu.org>.
33809
33810 2007-05-28  Bruno Haible  <bruno@clisp.org>
33811
33812         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
33813
33814 2007-05-31  Eric Blake  <ebb9@byu.net>
33815
33816         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
33817         cross compiling.
33818
33819 2007-05-30  Eric Blake  <ebb9@byu.net>
33820         and Bruno Haible  <bruno@clisp.org>
33821
33822         Work around mingw test failures exposed by m4-1.4.9b.
33823         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
33824         * tests/test-unistd.c: Disable uid_t and git_t tests for the
33825         moment.
33826
33827 2007-05-30  Bruno Haible  <bruno@clisp.org>
33828
33829         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
33830         assuming that they are closed. Needed on HP-UX 11.
33831
33832 2007-05-29  Bruno Haible  <bruno@clisp.org>
33833
33834         Fix a problem with #include_next.
33835         * lib/dirent_.h: Split the double-inclusion guard.
33836         * lib/fcntl_.h: Likewise.
33837         * lib/float_.h: Likewise.
33838         * lib/iconv_.h: Likewise.
33839         * lib/inttypes_.h: Likewise.
33840         * lib/locale_.h: Likewise.
33841         * lib/math_.h: Likewise.
33842         * lib/netinet_in_.h: Likewise.
33843         * lib/search_.h: Likewise.
33844         * lib/signal_.h: Likewise.
33845         * lib/stdint_.h: Likewise.
33846         * lib/stdio_.h: Likewise.
33847         * lib/stdlib_.h: Likewise.
33848         * lib/string_.h: Likewise.
33849         * lib/sys_select_.h: Likewise.
33850         * lib/sys_socket_.h: Likewise.
33851         * lib/sys_stat_.h: Likewise.
33852         * lib/sys_time_.h: Likewise.
33853         * lib/sysexits_.h: Likewise.
33854         * lib/time_.h: Likewise.
33855         * lib/unistd_.h: Likewise.
33856         * lib/wchar_.h: Likewise.
33857         * lib/wctype_.h: Likewise.
33858
33859 2007-05-29  Bruno Haible  <bruno@clisp.org>
33860
33861         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
33862         for the moment.
33863
33864 2007-05-29  Bruno Haible  <bruno@clisp.org>
33865
33866         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
33867         invocation.
33868         Reported by Eric Blake.
33869
33870 2007-05-29  Bruno Haible  <bruno@clisp.org>
33871
33872         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
33873         compiling case.
33874
33875 2007-05-29  Eric Blake  <ebb9@byu.net>
33876             Bruno Haible  <bruno@clisp.org>
33877
33878         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
33879         cross compiles.
33880
33881 2007-05-28  Eric Blake  <ebb9@byu.net>
33882
33883         * modules/closein-tests (test_closein_LDADD): Support test on
33884         cygwin with libtool.
33885
33886 2007-05-28  Bruno Haible  <bruno@clisp.org>
33887
33888         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
33889         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
33890         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
33891         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
33892         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
33893         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
33894         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
33895         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
33896         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
33897
33898 2007-05-28  Eric Blake  <ebb9@byu.net>
33899
33900         Unconditionally include <config.h> in unit tests.
33901         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
33902         * tests/test-allocsa.c, tests/test-arcfour.c,
33903         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
33904         tests/test-array_list.c, tests/test-array_oset.c,
33905         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
33906         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
33907         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
33908         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
33909         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
33910         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
33911         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
33912         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
33913         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
33914         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
33915         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
33916         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
33917         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
33918         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
33919         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
33920         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
33921         test-md5.c, test-memmem.c, test-printf-posix.c,
33922         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
33923         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
33924         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
33925         test-strcasestr.c, test-striconv.c, test-striconveh.c,
33926         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
33927         test-vasnprintf-posix2.c, test-vasnprintf.c,
33928         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
33929         test-vfprintf-posix.c, test-vprintf-posix.c,
33930         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
33931         test-xvasprintf.c: Likewise.
33932
33933 2007-05-28  Bruno Haible  <bruno@clisp.org>
33934
33935         * gnulib-tool (func_import): Remember the --with-tests command-line
33936         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
33937         Reported by Eric Blake.
33938
33939 2007-05-28  Bruno Haible  <bruno@clisp.org>
33940
33941         * modules/ftell-tests: New file.
33942         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
33943         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
33944
33945         * lib/ftell.c: New file.
33946         * modules/ftell: New file.
33947         * m4/ftell.m4: New file.
33948         * doc/functions/ftell.texi: Update.
33949         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
33950         REPLACE_FTELL.
33951         * lib/stdio_.h (rpl_ftell): New declaration.
33952         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
33953         REPLACE_FTELL.
33954
33955 2007-05-28  Eric Blake  <ebb9@byu.net>
33956
33957         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
33958
33959 2007-05-28  Bruno Haible  <bruno@clisp.org>
33960
33961         * modules/fseek-tests: New file.
33962         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
33963         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
33964
33965         * lib/fseek.c: New file.
33966         * modules/fseek: New file.
33967         * m4/fseek.m4: New file.
33968         * doc/functions/fseek.texi: Update.
33969         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
33970         REPLACE_FSEEK.
33971         * lib/stdio_.h (rpl_fseek): New declaration.
33972         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
33973         REPLACE_FSEEK.
33974
33975 2007-05-28  Bruno Haible  <bruno@clisp.org>
33976
33977         * lib/stdio_.h (fflush): More comments.
33978
33979 2007-05-28  Bruno Haible  <bruno@clisp.org>
33980
33981         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
33982         runtime test.
33983
33984 2007-05-28  Eric Blake  <ebb9@byu.net>
33985
33986         Improve lseek module.
33987         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
33988         * lib/unistd_.h (lseek): Scale back link warning message.
33989         * tests/test-lseek.c: Beef up test.
33990         * tests/test-lseek.sh: Exercise more facets of lseek.
33991         Reported by Bruno Haible.
33992
33993 2007-05-28  Bruno Haible  <bruno@clisp.org>
33994
33995         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
33996         to define.
33997
33998 2007-05-27  Bruno Haible  <bruno@clisp.org>
33999
34000         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
34001
34002 2007-05-27  Bruno Haible  <bruno@clisp.org>
34003
34004         * modules/openmp: New file.
34005         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
34006         Noah Misch.
34007
34008 2007-05-26  Bruno Haible  <bruno@clisp.org>
34009
34010         * modules/chdir-long (Depends-on): Add fchdir.
34011         * modules/chdir-safer (Depends-on): Likewise.
34012         * modules/fts (Depends-on): Likewise.
34013         * modules/fts-lgpl (Depends-on): Likewise.
34014         * modules/openat (Depends-on): Likewise.
34015         * modules/savewd (Depends-on): Likewise.
34016
34017 2007-05-24  Eric Blake  <ebb9@byu.net>
34018
34019         Fix lseek on mingw.
34020         * modules/lseek: New module.
34021         * m4/lseek.m4: New file.
34022         * lib/lseek.c: New file.
34023         * modules/lseek-tests: New file.
34024         * tests/test-lseek.c: New file.
34025         * tests/test-lseek.sh: New file.
34026         * MODULES.html.sh: Document lseek module.
34027         * modules/fflush (Depends-on): Add lseek, fseeko.
34028         * modules/fseeko (Depends-on): Likewise.
34029         * modules/ftello (Depends-on): Likewise.
34030         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
34031         broken.
34032         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
34033         broken.
34034         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
34035         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
34036         * lib/ftello.c (rpl_ftello): Likewise.
34037         * tests/test-fseeko.c (main): Test this.
34038         * tests/test-fseeko.sh: Likewise.
34039         * tests/test-ftello.c (main): Likewise.
34040         * tests/test-ftello.sh: Likewise.
34041         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
34042         implies replacing fseek.
34043         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
34044         HAVE_FTELLO.
34045         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
34046         * modules/unistd (Makefile.am): Likewise.
34047         * lib/unistd_.h (lseek): Declare a replacement.
34048         * doc/functions/lseek.texi (lseek): Document this fix.
34049         * doc/functions/fseek.texi (fseek): Likewise.
34050         * doc/functions/ftell.texi (ftell): Likewise.
34051
34052 2007-05-24  Bruno Haible  <bruno@clisp.org>
34053
34054         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
34055         in the printed representation of a NaN.
34056         * tests/test-vasprintf-posix.c (test_function): Likewise.
34057         * tests/test-snprintf-posix.h (test_function): Likewise.
34058         * tests/test-sprintf-posix.h (test_function): Likewise.
34059         Reported by Eric Blake.
34060
34061 2007-05-23  Eric Blake  <ebb9@byu.net>
34062
34063         Fix fseeko/ftello on cygwin 1.5.24.
34064         * doc/functions/fseeko.texi (fseeko): Document the fix.
34065         * doc/functions/ftello.texi (ftello): Document the fix.
34066         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
34067         * doc/functions/stdout.text (stdout): New file.
34068         * doc/functions/stderr.text (stderr): New file.
34069         * doc/gnulib.texi (Function Substitutes): Use new files.
34070         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
34071         prior to 1.7.0.
34072         * tests/test-ftello.c (main): Likewise for ftello.
34073         * tests/test-fseeko.sh: New file.
34074         * tests/test-ftello.sh: New file.
34075         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
34076         with seekable stdin.
34077         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
34078         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
34079         (gl_REPLACE_FSEEKO): New macro.
34080         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
34081         * modules/fseeko (Files): Distribute fseeko.c.
34082         * modules/ftello (Files): Distribute ftello.c.
34083         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
34084         mode.
34085         * lib/ftello.c (rpl_ftello): New file.
34086         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
34087         fseeko, ftello.
34088         (gl_STDIN_LARGE_OFFSET): New macro.
34089         * modules/stdio (Makefile.am): Perform the replacement.
34090         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
34091
34092 2007-05-23  Bruno Haible  <bruno@clisp.org>
34093
34094         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
34095         GNULIB_POSIXCHECK is defined.
34096
34097 2007-05-21  Bruno Haible  <bruno@clisp.org>
34098
34099         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
34100         Check also the output for NaN arguments. When cross-compiling, guess
34101         no on IRIX.
34102         * lib/vasnprintf.c: Update comments.
34103         * tests/test-vasnprintf-posix.c (strisnan): New function.
34104         (test_function): Use it.
34105         * tests/test-vasprintf-posix.c (strisnan): New function.
34106         (test_function): Use it.
34107         * tests/test-snprintf-posix.h (strisnan): New function.
34108         (test_function): Use it.
34109         * tests/test-sprintf-posix.h (strisnan): New function.
34110         (test_function): Use it.
34111         Reported by Eric Blake.
34112
34113 2007-05-20  Bruno Haible  <bruno@clisp.org>
34114
34115         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
34116         numbers that fails on BeOS.
34117         * doc/functions/frexpl.texi: Update.
34118
34119 2007-05-20  Jim Meyering  <jim@meyering.net>
34120
34121         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
34122         forced upon us by glibc-2.6.
34123
34124 2007-05-20  Bruno Haible  <bruno@clisp.org>
34125
34126         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
34127         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
34128         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
34129         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
34130         NEED_PRINTF_INFINITE.
34131         (is_infinitel): New function.
34132         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
34133         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
34134         gl_PREREQ_VASNPRINTF_INFINITE.
34135         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
34136         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34137         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
34138         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
34139         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
34140         gl_PREREQ_VASNPRINTF_INFINITE.
34141         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
34142         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34143         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34144         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34145         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34146         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34147         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34148         * doc/functions/fprintf.texi: Update.
34149         * doc/functions/printf.texi: Update.
34150         * doc/functions/snprintf.texi: Update.
34151         * doc/functions/sprintf.texi: Update.
34152         * doc/functions/vfprintf.texi: Update.
34153         * doc/functions/vprintf.texi: Update.
34154         * doc/functions/vsnprintf.texi: Update.
34155         * doc/functions/vsprintf.texi: Update.
34156
34157 2007-05-20  Bruno Haible  <bruno@clisp.org>
34158
34159         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
34160         was not found in libc.
34161         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
34162
34163 2007-05-20  Bruno Haible  <bruno@clisp.org>
34164
34165         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
34166         printed as "-nan" instead of "nan".
34167         * tests/test-vasprintf-posix.c (test_function): Likewise.
34168         * tests/test-snprintf-posix.h (test_function): Likewise.
34169         * tests/test-sprintf-posix.h (test_function): Likewise.
34170         Needed for HP-UX 11.
34171
34172 2007-05-20  Jim Meyering  <jim@meyering.net>
34173
34174         Fix buggy test for the fchownat-deref bug.
34175         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
34176         symlink required for the run-test.  Without it, this test would
34177         always declare that fchownat doesn't work, and client code would
34178         unnecessarily use the replacement function with fixed libc.
34179         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
34180         Reported by Greg Schafer.
34181
34182 2007-05-19  Bruno Haible  <bruno@clisp.org>
34183
34184         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
34185         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
34186         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
34187         Needed for IRIX 6.5 and Solaris 2.5.1.
34188
34189 2007-05-19  Bruno Haible  <bruno@clisp.org>
34190
34191         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
34192         (test_function): Skip tests involving -0.0 on platforms where
34193         -0.0 = 0.0.
34194         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
34195         (test_function): Skip tests involving -0.0 on platforms where
34196         -0.0 = 0.0.
34197         * tests/test-snprintf-posix.h (have_minus_zero): New function.
34198         (test_function): Skip tests involving -0.0 on platforms where
34199         -0.0 = 0.0.
34200         * tests/test-sprintf-posix.h (have_minus_zero): New function.
34201         (test_function): Skip tests involving -0.0 on platforms where
34202         -0.0 = 0.0.
34203         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
34204         tests.
34205         * tests/test-printf-posix.h (test_function): Likewise.
34206         * tests/test-printf-posix.output: Remove all -0.0 related results.
34207         Needed for IRIX 6.5.
34208
34209 2007-05-19  Bruno Haible  <bruno@clisp.org>
34210
34211         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
34212         printed as "nan0x7fffffff" instead of "nan".
34213         * tests/test-vasprintf-posix.c (test_function): Likewise.
34214         * tests/test-snprintf-posix.h (test_function): Likewise.
34215         * tests/test-sprintf-posix.h (test_function): Likewise.
34216         * tests/test-fprintf-posix.h (NaN): Remove macro.
34217         (test_function): Remove all NaN related tests.
34218         * tests/test-printf-posix.h (NaN): Remove macro.
34219         (test_function): Remove all NaN related tests.
34220         * tests/test-printf-posix.output: Remove all NaN related results.
34221         Needed for IRIX 6.5.
34222
34223 2007-05-19  Bruno Haible  <bruno@clisp.org>
34224
34225         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
34226         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
34227
34228 2007-05-19  Bruno Haible  <bruno@clisp.org>
34229
34230         * lib/float_.h: New file.
34231         * m4/float_h.m4: New file.
34232         * modules/float: New file.
34233         * modules/isnanl (Dependencies): Add float.
34234         * modules/isnanl-nolibm (Dependencies): Likewise.
34235         * modules/mathl (Dependencies): Likewise.
34236         * modules/printf-frexpl (Dependencies): Likewise.
34237         * modules/signbit (Dependencies): Likewise.
34238         * modules/vasnprintf (Dependencies): Likewise.
34239         * doc/headers/float.texi: Update.
34240
34241 2007-05-19  Jim Meyering  <jim@meyering.net>
34242
34243         * lib/utimens.c (gl_futimens): Rename from futimens,
34244         now that glibc-2.6 declares futimens.
34245         * lib/utimens.h: Likewise.
34246
34247 2007-05-19  Bruno Haible  <bruno@clisp.org>
34248
34249         Avoid test failures on mingw.
34250         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
34251         * tests/test-printf-posix.sh: Likewise.
34252         * tests/test-vfprintf-posix.sh: Likewise.
34253         * tests/test-vprintf-posix.sh: Likewise.
34254
34255 2007-05-19  Bruno Haible  <bruno@clisp.org>
34256
34257         Fix *printf result for NaN, Inf, -0.0 on mingw.
34258         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
34259         * lib/vasnprintf.c: Include math.h and isnan.h.
34260         (is_infinite_or_zero): New function.
34261         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
34262         values in the %f, %F, %e, %E, %g, %G directives.
34263         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
34264         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34265         gl_PRINTF_INFINITE and test its result. Invoke
34266         gl_PREREQ_VASNPRINTF_INFINITE.
34267         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
34268         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34269         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34270         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34271         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34272         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34273         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34274         * doc/functions/fprintf.texi: Update.
34275         * doc/functions/printf.texi: Update.
34276         * doc/functions/snprintf.texi: Update.
34277         * doc/functions/sprintf.texi: Update.
34278         * doc/functions/vfprintf.texi: Update.
34279         * doc/functions/vprintf.texi: Update.
34280         * doc/functions/vsnprintf.texi: Update.
34281         * doc/functions/vsprintf.texi: Update.
34282
34283 2007-05-19  Bruno Haible  <bruno@clisp.org>
34284
34285         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
34286         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
34287         Instead of multiplying with 10^k, set extra_zeroes to k.
34288         (scale10_round_long_double): Remove function.
34289
34290 2007-05-18  Bruno Haible  <bruno@clisp.org>
34291
34292         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
34293         introduced on 2007-05-06.
34294
34295 2007-05-18  Bruno Haible  <bruno@clisp.org>
34296
34297         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
34298         %g directives.
34299         * tests/test-vasprintf-posix.c (test_function): Likewise.
34300         * tests/test-snprintf-posix.h (test_function): Likewise.
34301         * tests/test-sprintf-posix.h (test_function): Likewise.
34302
34303 2007-05-18  Bruno Haible  <bruno@clisp.org>
34304
34305         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
34306         (strmatch): New function.
34307         (test_function): Test the %f directive on numbers of various exponents.
34308         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
34309         (strmatch): New function.
34310         (test_function): Test the %f directive on numbers of various exponents.
34311         * tests/test-snprintf-posix.h (strmatch): New function.
34312         (test_function): Test the %f directive on numbers of various exponents.
34313         * tests/test-sprintf-posix.h (strmatch): New function.
34314         (test_function): Test the %f directive on numbers of various exponents.
34315         * tests/test-snprintf-posix.c (SIZEOF): New macro.
34316         * tests/test-sprintf-posix.c (SIZEOF): New macro.
34317         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
34318         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
34319
34320 2007-05-18  Bruno Haible  <bruno@clisp.org>
34321
34322         Add support for 'long double' number output.
34323         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
34324         * lib/vasnprintf.c: Include math.h and float+.h.
34325         (mp_limb_t): New type.
34326         (GMP_LIMB_BITS): New macro.
34327         (mp_twolimb_t): New type.
34328         (GMP_TWOLIMB_BITS): New macro.
34329         (mpn_t): New type.
34330         (multiply, divide, convert_to_decimal, decode_long_double,
34331         scale10_round_long_double, scale10_round_decimal_long_double,
34332         floorlog10l): New functions.
34333         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
34334         for the %f, %F, %e, %E, %g, %G directives.
34335         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
34336         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34337         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
34338         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
34339         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
34340         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34341         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34342         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34343         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34344         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34345         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34346         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
34347         * modules/snprintf-posix (Depends-on): Likewise.
34348         * modules/sprintf-posix (Depends-on): Likewise.
34349         * modules/vasnprintf-posix (Depends-on): Likewise.
34350         * modules/vasprintf-posix (Depends-on): Likewise.
34351         * modules/vfprintf-posix (Depends-on): Likewise.
34352         * modules/vsnprintf-posix (Depends-on): Likewise.
34353         * modules/vsprintf-posix (Depends-on): Likewise.
34354         * modules/vasnprintf (Files): Add lib/float+.h.
34355         * doc/functions/fprintf.texi: Update.
34356         * doc/functions/printf.texi: Update.
34357         * doc/functions/snprintf.texi: Update.
34358         * doc/functions/sprintf.texi: Update.
34359         * doc/functions/vfprintf.texi: Update.
34360         * doc/functions/vprintf.texi: Update.
34361         * doc/functions/vsnprintf.texi: Update.
34362         * doc/functions/vsprintf.texi: Update.
34363
34364 2007-05-18  Bruno Haible  <bruno@clisp.org>
34365
34366         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
34367
34368 2007-05-18  Bruno Haible  <bruno@clisp.org>
34369
34370         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
34371         for printing 64-bit integers. Needed for mingw.
34372
34373 2007-05-18  Bruno Haible  <bruno@clisp.org>
34374
34375         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
34376         gl_FUNC_FREXPL_WORKS.
34377         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
34378
34379 2007-05-18  Bruno Haible  <bruno@clisp.org>
34380
34381         * modules/frexpl-nolibm-tests: New file.
34382
34383         * modules/frexpl-nolibm: New file.
34384         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
34385
34386 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
34387
34388         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
34389         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
34390         GCC 4.2, which otherwise issues a lot of warnings.
34391         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
34392         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
34393         Likewise.
34394         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
34395         * modules/iconv_open (iconv.h): Likewise.
34396         * modules/locale (locale.h): Likewise.
34397         * modules/netinet_in (netinet/in.h): Likewise.
34398         * modules/sys_select (sys_select.h): Likewise.
34399         * modules/sys_socket (sys/socket.h): Likewise.
34400         * modules/sys_stat (sys/stat.h): Likewise.
34401         * modules/sysexits (sysexits.h): Likewise.
34402         * modules/unistd (unistd.h): Likewise.
34403
34404 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34405
34406         * modules/closein-tests (Makefile.am): Distribute
34407         `test-closein.sh'.
34408
34409 2007-05-17  Bruno Haible  <bruno@clisp.org>
34410
34411         * tests/test-printf-posix.output: Renamed from
34412         tests/test-fprintf-posix.out.
34413         * modules/fprintf-posix-tests: Update.
34414         * modules/printf-posix-tests: Update.
34415         * modules/vfprintf-posix-tests: Update.
34416         * modules/vprintf-posix-tests: Update.
34417         * tests/test-fprintf-posix.sh: Update.
34418         * tests/test-printf-posix.sh: Update.
34419         * tests/test-vfprintf-posix.sh: Update.
34420         * tests/test-vprintf-posix.sh: Update.
34421         Reported by Ralf Wildenhues.
34422
34423 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
34424
34425         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
34426         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
34427         GCC 4.2, which otherwise issues a lot of warnings.
34428         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
34429         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
34430         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
34431         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
34432         it should no longer be needed.
34433         * lib/string_.h: Likewise.
34434         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
34435         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
34436         * modules/inttypes (inttypes.h): Likewise.
34437         * modules/math (math.h): Likewise.
34438         * modules/search (search.h): Likewise.
34439         * modules/signal (signal.h): Likewise.
34440         * modules/stdint (stdint.h): Likewise.
34441         * modules/stdio (stdio.h): Likewise.
34442         * modules/stdlib (stdlib.h): Likewise.
34443         * modules/string (string.h): Likewise.
34444         * modules/sys_time (sys/time.h): Likewise.
34445         * modules/time (time.h): Likewise.
34446         * modules/wchar (wchar.h): Likewise.
34447         * modules/wctype (wtype.h): Likewise.
34448
34449 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
34450
34451         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
34452
34453 2007-05-13  Bruno Haible  <bruno@clisp.org>
34454
34455         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
34456         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
34457         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
34458         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
34459         (gl_PREREQ_STRTOK_R): Don't require it here.
34460
34461 2007-05-13  Bruno Haible  <bruno@clisp.org>
34462
34463         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
34464         when used in C++ mode.
34465
34466 2007-05-12  Bruno Haible  <bruno@clisp.org>
34467
34468         * lib/linebuffer.h: Tweak doc.
34469         * lib/linebuffer.c: Likewise.
34470
34471 2007-05-12  James Youngman  <jay@gnu.org>
34472
34473         * lib/linebuffer.c (readlinebuffer_delim): New function,
34474         like readlinebuffer, but use a caller-specified delimiter.
34475         (readlinebuffer): Just call readlinebuffer_delim with '\n'
34476         as the delimiter.
34477         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
34478
34479 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
34480
34481         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
34482         * modules/openat (Files): Remove openat-die.c.
34483         (Depends-on): Add openat-die.
34484         * modules/openat-die: New module.
34485
34486 2007-05-06  Bruno Haible  <bruno@clisp.org>
34487
34488         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
34489         Update with info about Cygwin.
34490         * doc/functions/fprintf.texi: Update.
34491         * doc/functions/printf.texi: Update.
34492         * doc/functions/snprintf.texi: Update.
34493         * doc/functions/sprintf.texi: Update.
34494         * doc/functions/vfprintf.texi: Update.
34495         * doc/functions/vprintf.texi: Update.
34496         * doc/functions/vsnprintf.texi: Update.
34497         * doc/functions/vsprintf.texi: Update.
34498         Reported by Eric Blake.
34499
34500 2007-05-06  Bruno Haible  <bruno@clisp.org>
34501
34502         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
34503         padding ourselves for the floating-point directives.
34504         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
34505         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
34506         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
34507         gl_PRINTF_FLAG_ZERO and test its result. Invoke
34508         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
34509         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34510         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
34511         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34512         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34513         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34514         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34515         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34516         * tests/test-snprintf-posix.h (test_function): Also check the width
34517         and some flags in the %f directive.
34518         * tests/test-sprintf-posix.h (test_function): Likewise.
34519         * tests/test-vasnprintf-posix.c (test_function): Likewise.
34520         * tests/test-vasprintf-posix.c (test_function): Likewise.
34521         * doc/functions/fprintf.texi: Update.
34522         * doc/functions/printf.texi: Update.
34523         * doc/functions/snprintf.texi: Update.
34524         * doc/functions/sprintf.texi: Update.
34525         * doc/functions/vfprintf.texi: Update.
34526         * doc/functions/vprintf.texi: Update.
34527         * doc/functions/vsnprintf.texi: Update.
34528         * doc/functions/vsprintf.texi: Update.
34529
34530 2007-05-06  Bruno Haible  <bruno@clisp.org>
34531
34532         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
34533         pass the ' flag character to sprintf or snprintf.
34534         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
34535         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
34536         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
34537         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
34538         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
34539         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34540         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
34541         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34542         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34543         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34544         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34545         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34546         * tests/test-snprintf-posix.h (test_function): Also check the grouping
34547         flag.
34548         * tests/test-sprintf-posix.h (test_function): Likewise.
34549         * tests/test-vasnprintf-posix.c (test_function): Likewise.
34550         * tests/test-vasprintf-posix.c (test_function): Likewise.
34551         * doc/functions/fprintf.texi: Update.
34552         * doc/functions/printf.texi: Update.
34553         * doc/functions/snprintf.texi: Update.
34554         * doc/functions/sprintf.texi: Update.
34555         * doc/functions/vfprintf.texi: Update.
34556         * doc/functions/vprintf.texi: Update.
34557         * doc/functions/vsnprintf.texi: Update.
34558         * doc/functions/vsprintf.texi: Update.
34559
34560 2007-05-01  Bruno Haible  <bruno@clisp.org>
34561
34562         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
34563
34564 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
34565
34566         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
34567         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
34568
34569 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
34570
34571         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
34572         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
34573         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
34574
34575 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
34576
34577         * lib/argp-help.c (struct hol_entry): New member `ord'.
34578         (HOL_ENTRY_PTRCMP): Use ord for comparison
34579         (hol_sort): Initialize ord.
34580
34581 2007-05-01  Bruno Haible  <bruno@clisp.org>
34582
34583         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
34584         Reported by Eric Blake.
34585         * doc/gnulib.texi (Function Substitutes): Update.
34586
34587 2007-05-01  Bruno Haible  <bruno@clisp.org>
34588
34589         * doc/functions.texi: Remove file, now redundant through
34590         doc/functions/*.texi.
34591
34592 2007-05-01  Bruno Haible  <bruno@clisp.org>
34593
34594         * modules/argp (Depends-on): Add sleep.
34595
34596 2007-05-01  Bruno Haible  <bruno@clisp.org>
34597
34598         * modules/sleep-tests: New file.
34599         * tests/test-sleep.c: New file.
34600
34601         * modules/sleep: New file.
34602         * lib/sleep.c: New file.
34603         * m4/sleep.m4: New file.
34604         * lib/unistd_.h (sleep): New declaration.
34605         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
34606         HAVE_SLEEP.
34607         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
34608         * doc/functions/sleep.texi: Document the sleep module.
34609
34610 2007-05-01  Bruno Haible  <bruno@clisp.org>
34611
34612         * lib/sigprocmask.h: Remove file.
34613         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
34614         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
34615         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
34616         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
34617         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
34618         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
34619         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
34620         HAVE_SIGSET_T as a shell variable.
34621         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
34622         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
34623         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
34624         (Depends-on): Add signal. Remove verify.
34625         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
34626         (Include): Mention <signal.h> instead of sigprocmask.h.
34627         * NEWS: Mention the change.
34628         * lib/fatal-signal.c: Don't include sigprocmask.h.
34629
34630 2007-05-01  Bruno Haible  <bruno@clisp.org>
34631
34632         * modules/signal: New file.
34633         * lib/signal_.h: New file.
34634         * m4/signal_h.m4: New file.
34635
34636 2007-05-01  Bruno Haible  <bruno@clisp.org>
34637
34638         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
34639         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
34640         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
34641         HAVE_WCTYPE_CTMP_BUG into wctype.h.
34642
34643 2007-05-01  Bruno Haible  <bruno@clisp.org>
34644
34645         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
34646         configure time.
34647         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
34648         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
34649         * modules/sys_stat (Makefile.am): Substitute their values into
34650         sys/stat.h.
34651
34652 2007-05-01  Bruno Haible  <bruno@clisp.org>
34653
34654         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
34655         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
34656         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
34657
34658 2007-05-01  Bruno Haible  <bruno@clisp.org>
34659
34660         * doc/header/assert.texi: Undo last change: don't mention the gnulib
34661         'assert' module here.
34662
34663 2007-05-01  Bruno Haible  <bruno@clisp.org>
34664
34665         * doc/functions/*.texi: New files.
34666         * doc/functions/google-ranking.txt: New file.
34667         * doc/gnulib.texi (Function Substitutes): New chapter.
34668         (ctime, inet_ntoa): Remove sections.
34669         * doc/ctime.texi: Remove file.
34670         * doc/inet_ntoa.texi: Remove file.
34671         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
34672         dependencies.
34673         (%.info): New rule, specifying a --reference-limit.
34674
34675 2007-05-01  Bruno Haible  <bruno@clisp.org>
34676
34677         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
34678
34679 2007-05-01  Bruno Haible  <bruno@clisp.org>
34680
34681         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
34682         the portability of 'mkdir' to mingw systems.
34683
34684 2007-05-01  Bruno Haible  <bruno@clisp.org>
34685
34686         * doc/headers/google-ranking.txt: New file.
34687
34688 2007-04-30  Eric Blake  <ebb9@byu.net>
34689
34690         Prefer fseeko to fseek.
34691         * modules/getpass (Depends-on): Add fseeko.
34692         * lib/getpass.c (getpass): Use fseeko, not fseek.
34693
34694 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
34695
34696         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
34697         assumes the sorting is stable, while most qsort implementations
34698         are not.  Use argument addresses to ensure they never compare as
34699         equal.
34700
34701         * tests/test-argp-2.sh (usage-indent test): Fix output
34702         (func_compare): Restore diff options
34703         * tests/test-argp.c: Restore #include "progname.h"
34704
34705 2007-04-29  Bruno Haible  <bruno@clisp.org>
34706
34707         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
34708         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
34709         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
34710         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34711         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
34712         (configure.ac): Define CHECK_SNPRINTF_POSIX.
34713         (TESTS, check_PROGRAMS): Add test-snprintf.
34714         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
34715         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
34716         (TESTS, check_PROGRAMS): Add test-vsnprintf.
34717         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
34718         assertions that fail on HP-UX, OSF/1, or IRIX.
34719         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
34720
34721 2007-04-29  Bruno Haible  <bruno@clisp.org>
34722
34723         * MODULES.html.sh (posix_functions): Remove 'contents'.
34724
34725 2007-04-29  Karl Berry  <karl@gnu.org>
34726
34727         * config/srclist.txt (gendocs_template_min): new entry.
34728
34729 2007-04-29  Bruno Haible  <bruno@clisp.org>
34730
34731         Work around fpurge bug on BSD systems.
34732         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
34733         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
34734         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
34735         fpurge to rpl_fpurge if the system already has this function.
34736         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
34737         the case where the system already has this function. Correct invariants
34738         on BSD systems.
34739         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
34740         BSD systems.
34741
34742 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
34743
34744         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
34745         proposed by Sven Verdoolaege.
34746
34747         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
34748         options.
34749         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
34750         (usage and help tests): Update
34751
34752 2007-04-29  Bruno Haible  <bruno@clisp.org>
34753
34754         * tests/test-fflush.c (main): Use a file of size 17, not 10.
34755         Print more information in case of failure. Disable a test on BeOS.
34756
34757 2007-04-29  Bruno Haible  <bruno@clisp.org>
34758
34759         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
34760         This helps debugging on systems on which no gdb is available.
34761
34762 2007-04-29  Bruno Haible  <bruno@clisp.org>
34763
34764         * lib/freading.h: Improve comments.
34765         * lib/fwriting.h: Likewise.
34766         * tests/test-freading.c (main): Don't check freading immediately after
34767         repositioning. Needed for glibc.
34768
34769 2007-04-29  Bruno Haible  <bruno@clisp.org>
34770
34771         * lib/freading.c (freading): Trivial simplification.
34772
34773 2007-04-28  Bruno Haible  <bruno@clisp.org>
34774
34775         * tests/test-fwriting.c (main): Also test the interaction between
34776         fflush and fwriting.
34777         * modules/fwriting-tests (Depends-on): Add fflush.
34778
34779         * tests/test-freading.c (main): Also test the interaction between
34780         fflush and freading.
34781         * modules/freading-tests (Depends-on): Add fflush.
34782
34783 2007-04-28  Bruno Haible  <bruno@clisp.org>
34784
34785         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
34786         fseeko and ftello.
34787         Suggested by Eric Blake.
34788
34789 2007-04-28  Jim Meyering  <jim@meyering.net>
34790
34791         Avoid false-negative in gl_STDINT_H's C99 conformance test.
34792         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
34793         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
34794
34795 2007-04-27  Eric Blake  <ebb9@byu.net>
34796
34797         * doc/headers/assert.texi (assert.h): Document assert module use.
34798
34799 2007-04-27  Bruno Haible  <bruno@clisp.org>
34800
34801         * doc/headers/*.texi: New files.
34802         * doc/gnulib.texi (Header File Substitutes): New chapter.
34803         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
34804         dependencies.
34805         (standards.info ,standards.html, standards.dvi): Update dependencies.
34806         (mostlyclean, clean): New targets.
34807
34808 2007-04-27  Bruno Haible  <bruno@clisp.org>
34809
34810         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
34811         * modules/sysexits (Files, Makefile.am): Update.
34812
34813         * lib/sys_socket_.h: Renamed from lib/socket_.h.
34814         * modules/sys_socket (Files, Makefile.am): Update.
34815
34816         * lib/sys_stat_.h: Renamed from lib/stat_.h.
34817         * modules/sys_stat (Files, Makefile.am): Update.
34818
34819 2007-04-27  Eric Blake  <ebb9@byu.net>
34820
34821         * lib/freading.h: Improve comments.
34822         * lib/fwriting.h: Likewise.
34823         * lib/fflush.c: Likewise.
34824
34825         Fix closein for mingw.
34826         * modules/closein-tests: Add tests for closein.
34827         * tests/test-closein.c: New file.
34828         * tests/test-closein.sh: Likewise.
34829         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
34830         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
34831
34832 2007-04-27  Bruno Haible  <bruno@clisp.org>
34833
34834         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
34835         version is < 6.
34836         * lib/math_.h [__DECC]: Likewise.
34837         * lib/stdio_.h [__DECC]: Likewise.
34838         * lib/stdlib_.h [__DECC]: Likewise.
34839         * lib/string_.h [__DECC]: Likewise.
34840         * lib/time_.h [__DECC]: Likewise.
34841         * lib/wchar_.h [__DECC]: Likewise.
34842         * lib/wctype_.h [__DECC]: Likewise.
34843
34844 2007-04-27  Bruno Haible  <bruno@clisp.org>
34845
34846         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
34847
34848 2007-04-27  Bruno Haible  <bruno@clisp.org>
34849
34850         * lib/fflush.c: Add comments.
34851         * modules/fpurge-tests (Depends-on): Add fflush.
34852         * modules/freadable-tests (Depends-on): Likewise.
34853         * modules/fwritable-tests (Depends-on): Likewise.
34854
34855 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
34856
34857         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
34858         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
34859         Report by Bruno Haible <bruno@clisp.org>.
34860
34861 2007-04-26  Eric Blake  <ebb9@byu.net>
34862
34863         Fix fflush on mingw.
34864         * modules/fflush (Depends-on): Add freading.
34865         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
34866         but unread data.
34867
34868 2007-04-26  Eric Blake  <ebb9@byu.net>
34869         and Bruno Haible  <bruno@clisp.org>
34870
34871         Implement freading and fwriting.
34872         * lib/freading.c: New file.
34873         * lib/freading.h: Likewise.
34874         * m4/freading.m4: Likewise.
34875         * modules/freading: Likewise.
34876         * modules/freading-tests: Likewise.
34877         * tests/test-freading.c: Likewise.
34878         * lib/fwriting.c: New file.
34879         * lib/fwriting.h: Likewise.
34880         * m4/fwriting.m4: Likewise.
34881         * modules/fwriting: Likewise.
34882         * modules/fwriting-tests: Likewise.
34883         * tests/test-fwriting.c: Likewise.
34884         * MODULES.html.sh (File stream based Input/Output): Mention them.
34885
34886 2007-04-26  Bruno Haible  <bruno@clisp.org>
34887
34888         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
34889         'long' when we assume it.
34890         Suggested by Eric Blake.
34891
34892 2007-04-26  Bruno Haible  <bruno@clisp.org>
34893
34894         Ensure fseeko, ftello are declared on glibc systems.
34895         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
34896         * modules/fseeko (configure.ac-early): Likewise.
34897         * modules/ftello (configure.ac-early): Likewise.
34898         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
34899         AC_FUNC_FSEEKO for this.
34900         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
34901         (gl_CHECK_FSEEKO): Remove macro.
34902
34903 2007-04-26  Bruno Haible  <bruno@clisp.org>
34904
34905         * tests/test-fflush.c (main): Also check the ftell result after
34906         fflush and fseek/fseeko.
34907         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
34908         file descriptor position cache in the stream.
34909         * lib/fseeko.c (rpl_fseeko): Likewise.
34910
34911 2007-04-26  Bruno Haible  <bruno@clisp.org>
34912
34913         * modules/fflush-tests (Depends-on): Add fseeko.
34914
34915 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
34916             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34917
34918         * lib/argz_.h: ensure error_t definition is obtained in same
34919         mechanism system argz.h would have.
34920         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
34921         argz facilities are known bad.  Err on the side of caution if
34922         cross-compiling.
34923
34924 2007-04-25  Eric Blake  <ebb9@byu.net>
34925
34926         * lib/fpurge.c (includes): Use stdlib.h for free.
34927         * tests/test-fflush.c (main): Also test fflush-fseeko.
34928
34929 2007-04-25  Bruno Haible  <bruno@clisp.org>
34930
34931         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
34932         * lib/fseeko.c: New file.
34933         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
34934         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
34935         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
34936         gl_FUNC_FSEEKO.
34937         (gl_FUNC_FSEEKO): Invoke it.
34938         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
34939         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
34940         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
34941
34942 2007-04-25  Bruno Haible  <bruno@clisp.org>
34943
34944         * modules/fflush (Depends-on): Add ftello.
34945
34946 2007-04-25  Bruno Haible  <bruno@clisp.org>
34947
34948         * modules/ftello-tests: New file.
34949         * tests/test-ftello.c: New file.
34950
34951         * modules/ftello: New file.
34952         * m4/ftello.m4: New file.
34953         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
34954         HAVE_FTELLO.
34955         * lib/stdio_.h (ftello): New declaration.
34956         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
34957         HAVE_FTELLO.
34958
34959 2007-04-25  Bruno Haible  <bruno@clisp.org>
34960
34961         * modules/fseeko-tests: New file.
34962         * tests/test-fseeko.c: New file.
34963
34964         * modules/fseeko: New file.
34965         * m4/fseeko.m4: New file.
34966         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
34967         HAVE_FSEEKO.
34968         * lib/stdio_.h (fseeko): New declaration.
34969         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
34970         HAVE_FSEEKO.
34971
34972 2007-04-25  Bruno Haible  <bruno@clisp.org>
34973
34974         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
34975
34976 2007-04-25  Bruno Haible  <bruno@clisp.org>
34977
34978         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
34979         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
34980         * tests/test-unistd.c: Likewise.
34981         * tests/test-fcntl.c: Likewise.
34982
34983 2007-04-23  Eric Blake  <ebb9@byu.net>
34984
34985         * lib/fflush.c: Fix missing include.
34986         Reported by Bruno Haible.
34987
34988 2007-04-23  Bruno Haible  <bruno@clisp.org>
34989
34990         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
34991         Reported by Eric Blake.
34992
34993 2007-04-23  Bruno Haible  <bruno@clisp.org>
34994
34995         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
34996
34997 2007-04-23  Bruno Haible  <bruno@clisp.org>
34998
34999         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
35000
35001 2007-04-23  Bruno Haible  <bruno@clisp.org>
35002
35003         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
35004         Needed on HP-UX 11.
35005
35006 2007-04-16  Eric Blake  <ebb9@byu.net>
35007
35008         Make fflush rely on fpurge.
35009         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
35010         open coding all variants.
35011         * modules/fflush (Depends-on): Add fpurge and unistd.
35012         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
35013         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
35014
35015         Fix --with-tests compilation on cygwin.
35016         * modules/argmatch-tests (Makefile.am): List gnulib library first
35017         in LDADD.
35018         * modules/argp-tests (Makefile.am): Likewise.
35019         * modules/array-list-tests (Makefile.am): Likewise.
35020         * modules/array-oset-tests (Makefile.am): Likewise.
35021         * modules/avltree-list-tests (Makefile.am): Likewise.
35022         * modules/avltree-oset-tests (Makefile.am): Likewise.
35023         * modules/avltreehash-list-tests (Makefile.am): Likewise.
35024         * modules/carray-list-tests (Makefile.am): Likewise.
35025         * modules/dirname-tests (Makefile.am): Likewise.
35026         * modules/frexp-tests (Makefile.am): Likewise.
35027         * modules/isnanl-tests (Makefile.am): Likewise.
35028         * modules/linked-list-tests (Makefile.am): Likewise.
35029         * modules/linkedhash-list-tests (Makefile.am): Likewise.
35030         * modules/lock-tests (Makefile.am): Likewise.
35031         * modules/rbtree-list-tests (Makefile.am): Likewise.
35032         * modules/rbtree-oset-tests (Makefile.am): Likewise.
35033         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
35034         * modules/tls-tests (Makefile.am): Likewise.
35035         * modules/tsearch-tests (Makefile.am): Likewise.
35036         * modules/xvasprintf-tests (Makefile.am): Likewise.
35037
35038         Fix fpurge for cygwin.
35039         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
35040         value.
35041         * modules/fpurge-tests (Depends-on): Clean up trash.
35042
35043 2007-04-16  Simon Josefsson  <simon@josefsson.org>
35044
35045         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
35046
35047         * m4/autobuild.m4: Re-indent.
35048
35049 2007-04-13  Bruno Haible  <bruno@clisp.org>
35050
35051         * modules/fpurge-tests: New file.
35052         * tests/test-fpurge.c: New file.
35053
35054         * modules/fpurge: New file.
35055         * lib/fpurge.h: New file.
35056         * lib/fpurge.c: New file.
35057         * m4/fpurge.m4: New file.
35058
35059 2007-04-13  Bruno Haible  <bruno@clisp.org>
35060
35061         * modules/fbufmode-tests: New file.
35062         * tests/test-fbufmode.c: New file.
35063
35064         * modules/fbufmode: New file.
35065         * lib/fbufmode.h: New file.
35066         * lib/fbufmode.c: New file.
35067         * m4/fbufmode.m4: New file.
35068
35069 2007-04-13  Bruno Haible  <bruno@clisp.org>
35070
35071         * modules/fwritable-tests: New file.
35072         * tests/test-fwritable.c: New file.
35073
35074         * modules/fwritable: New file.
35075         * lib/fwritable.h: New file.
35076         * lib/fwritable.c: New file.
35077         * m4/fwritable.m4: New file.
35078
35079 2007-04-13  Bruno Haible  <bruno@clisp.org>
35080
35081         * modules/freadable-tests: New file.
35082         * tests/test-freadable.c: New file.
35083
35084         * modules/freadable: New file.
35085         * lib/freadable.h: New file.
35086         * lib/freadable.c: New file.
35087         * m4/freadable.m4: New file.
35088
35089 2007-04-13  Bruno Haible  <bruno@clisp.org>
35090
35091         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
35092         MOSTLYCLEANFILES.
35093
35094 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
35095
35096         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
35097         gzip bootstrap.conf to avoid dragging in i18n machinery.
35098         (gnulib_tool_option): Use it.
35099
35100 2007-04-13  Bruno Haible  <bruno@clisp.org>
35101
35102         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
35103         %F directives.
35104         * tests/test-vasprintf-posix.c (test_function): Likewise.
35105         * tests/test-snprintf-posix.h (test_function): Likewise.
35106         * tests/test-sprintf-posix.h (test_function): Likewise.
35107         * tests/test-fprintf-posix.h (test_function): Likewise.
35108         * tests/test-printf-posix.h (test_function): Likewise.
35109         * tests/test-fprintf-posix.out: Likewise.
35110
35111 2007-04-13  Bruno Haible  <bruno@clisp.org>
35112
35113         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
35114         * modules/tls-tests (configure.ac): Likewise.
35115         Reported by Arto C. Nirkko <anirkko@insel.ch>.
35116
35117 2007-04-13  Bruno Haible  <bruno@clisp.org>
35118
35119         * lib/tls.c (glthread_tls_get): Fix return type.
35120         Patch by Arto C. Nirkko <anirkko@insel.ch>.
35121
35122 2007-04-12  Eric Blake  <ebb9@byu.net>
35123
35124         * modules/gettime (Depends-on): Remove gettime.
35125         Reported by Dmitry V. Levin.
35126
35127 2007-04-12  Bruno Haible  <bruno@clisp.org>
35128
35129         * modules/fflush (Include): Mention <stdio.h>.
35130         * modules/strtoimax (Include): Mention <inttypes.h>.
35131         * modules/strtoumax (Include): Likewise.
35132
35133 2007-04-12  Eric Blake  <ebb9@byu.net>
35134
35135         * .cvsignore: New file.
35136         * .gitignore: Likewise.
35137
35138 2007-04-12  Bruno Haible  <bruno@clisp.org>
35139
35140         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
35141         not before, since $(LDADD) often contains libgnu.a.
35142         * modules/striconv-tests (test_striconv_LDADD): Likewise.
35143         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
35144         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
35145         Needed on Cygwin.
35146
35147 2007-04-12  Eric Blake  <ebb9@byu.net>
35148
35149         Work around glibc's failure to flush stdin on fclose.
35150         * lib/closein.c (close_stdin): Flush stdin before closing.
35151
35152         Work around glibc's failure to reset seekable stdin on exit.
35153         * modules/closein: New module.
35154         * lib/closein.c: New file.
35155         * lib/closein.h: Likewise.
35156         * m4/closein.m4: Likewise.
35157         * MODULES.html.sh (File stream based Input/Output): Document it.
35158
35159 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35160
35161         * gnulib-tool: Rename generated 'autobuild' script to
35162         'do-autobuild' in --create-megatestdir output.
35163
35164         * doc/gnulib.texi (Build robot for gnulib): Fix.
35165
35166 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35167
35168         * modules/sysexits (Depends-on): Add absolute-header.
35169
35170 2007-04-12  Eric Blake  <ebb9@byu.net>
35171
35172         No need to preserve errno on success.
35173         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
35174         Reported by Bruno Haible.
35175
35176 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35177
35178         * MODULES.html.sh (Support for maintaining and releasing
35179         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
35180
35181 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35182
35183         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
35184
35185 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35186
35187         * modules/autobuild: New module.
35188
35189         * m4/autobuild.m4: New file.
35190
35191 2007-04-11  Bruno Haible  <bruno@clisp.org>
35192
35193         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
35194         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
35195         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
35196         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
35197         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35198         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35199         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35200         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
35201         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35202         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35203         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
35204         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35205         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35206         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
35207         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35208         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35209         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
35210         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35211         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35212         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
35213         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35214         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35215         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
35216         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35217         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35218         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
35219         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35220         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35221         Reported by Eric Blake.
35222
35223 2007-04-11  Bruno Haible  <bruno@clisp.org>
35224
35225         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
35226
35227 2007-04-10  Bruno Haible  <bruno@clisp.org>
35228
35229         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
35230         for NaN and Infinity. Needed on FreeBSD 6.1.
35231         * tests/test-vasnprintf-posix.c (test_function): Undo last change
35232         regarding results for "%010a" of Infinity and NaN.
35233         * tests/test-vasprintf-posix.c (test_function): Likewise.
35234         * tests/test-snprintf-posix.h (test_function): Likewise.
35235         * tests/test-sprintf-posix.h (test_function): Likewise.
35236         * tests/test-fprintf-posix.h (test_function): Likewise.
35237         * tests/test-printf-posix.h (test_function): Likewise.
35238         * tests/test-fprintf-posix.out: Likewise.
35239
35240 2007-04-10  Bruno Haible  <bruno@clisp.org>
35241
35242         * modules/locale-tests: New file.
35243         * tests/test-locale.c: New file.
35244
35245         * modules/locale: New file.
35246         * lib/locale_.h: New file.
35247         * m4/locale_h.m4: New file.
35248
35249 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
35250             Bruno Haible  <bruno@clisp.org>
35251
35252         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
35253         be determined, test for availability of the copysignf, copysign,
35254         copysignl functions.
35255         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
35256         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
35257         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
35258
35259 2007-04-09  Eric Blake  <ebb9@byu.net>
35260
35261         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
35262         * modules/stdio (Makefile.am): Support fflush.
35263         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
35264         * modules/fflush: New file.
35265         * lib/fflush.c: Likewise.
35266         * m4/fflush.m4: Likewise.
35267         * modules/fflush-tests: New test.
35268         * tests/test-fflush.c: Likewise.
35269         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
35270
35271 2007-04-06  Bruno Haible  <bruno@clisp.org>
35272
35273         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
35274         (VASNPRINTF): Use signbit for faster determination whether to print a
35275         minus sign.
35276         * modules/vasnprintf (Files): Remove lib/float+.h.
35277         * modules/fprintf-posix (Depends-on): Add signbit.
35278         * modules/snprintf-posix (Depends-on): Likewise.
35279         * modules/sprintf-posix (Depends-on): Likewise.
35280         * modules/vasnprintf-posix (Depends-on): Likewise.
35281         * modules/vasprintf-posix (Depends-on): Likewise.
35282         * modules/vfprintf-posix (Depends-on): Likewise.
35283         * modules/vsnprintf-posix (Depends-on): Likewise.
35284         * modules/vsprintf-posix (Depends-on): Likewise.
35285
35286 2007-04-06  Bruno Haible  <bruno@clisp.org>
35287
35288         * tests/test-frexp.c (main): Test also the sign bit of zero results.
35289         * tests/test-frexpl.c (main): Likewise.
35290         * tests/test-ldexpl.c (main): Likewise.
35291         * modules/frexp-tests (Depends-on): Add signbit.
35292         * modules/frexpl-tests (Depdends-on): Likewise.
35293         * modules/ldexpl-tests (Depdends-on): Likewise.
35294
35295 2007-04-06  Bruno Haible  <bruno@clisp.org>
35296
35297         * modules/signbit-tests: New file.
35298         * tests/test-signbit.c: New file.
35299
35300         * modules/signbit: New file.
35301         * lib/signbitf.c: New file.
35302         * lib/signbitd.c: New file.
35303         * lib/signbitl.c: New file.
35304         * m4/signbit.m4: New file.
35305         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
35306         (signbit): New macro.
35307         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
35308         REPLACE_SIGNBIT.
35309         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
35310         REPLACE_FREXPL into math.h.
35311
35312 2007-04-06  Bruno Haible  <bruno@clisp.org>
35313
35314         * modules/isnanf-nolibm-tests: New file.
35315         * tests/test-isnanf.c: New file.
35316
35317         * modules/isnanf-nolibm: New file.
35318         * lib/isnanf.h: New file.
35319         * lib/isnanf.c: New file.
35320         * lib/isnan.c: Consider the USE_FLOAT macro.
35321         * m4/isnanf.m4: New file.
35322
35323 2007-04-06  Bruno Haible  <bruno@clisp.org>
35324
35325         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
35326         (Link): New section.
35327
35328         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
35329
35330 2007-04-06  Bruno Haible  <bruno@clisp.org>
35331
35332         Assume the 'long double' type.
35333         * m4/longdouble.m4: Remove file.
35334         * config/srclist.txt: Don't mention longdouble.m4.
35335         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
35336         * lib/float+.h: Likewise.
35337         * lib/frexp.c: Likewise.
35338         * lib/printf-args.h: Likewise.
35339         * lib/printf-args.c: Likewise.
35340         * lib/printf-frexp.c: Likewise.
35341         * lib/printf-parse.c: Likewise.
35342         * lib/vasnprintf.c: Likewise.
35343         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
35344         * m4/intl.m4: Likewise.
35345         * m4/isnanl.m4: Likewise.
35346         * m4/printf.m4: Likewise.
35347         * m4/printf-frexpl.m4: Likewise.
35348         * m4/vasnprintf.m4: Likewise.
35349         * modules/allocsa (Files): Remove m4/longdouble.m4.
35350         * modules/gettext (Files): Likewise.
35351         * modules/relocatable-prog-wrapper (Files): Likewise.
35352         * modules/vasnprintf (Files): Likewise.
35353         * modules/isnanl (Files): Likewise.
35354         (Include): Simplify.
35355         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
35356         (Include): Simplify.
35357         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
35358         (Include): Simplify.
35359         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
35360         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35361         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
35362         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35363         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
35364         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35365         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
35366         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35367         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
35368         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35369         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
35370         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35371         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
35372         * tests/test-isnanl.c: Likewise.
35373         * tests/test-snprintf-posix.h: Likewise.
35374         * tests/test-sprintf-posix.h: Likewise.
35375         * tests/test-vasnprintf-posix.c: Likewise.
35376         * tests/test-vasnprintf-posix2.c: Likewise.
35377         * tests/test-vasprintf-posix.c: Likewise.
35378
35379 2007-04-06  Bruno Haible  <bruno@clisp.org>
35380
35381         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
35382         * lib/math_.h [__DECC]: Include the overridden include file through
35383         #include_next, outside the double-inclusion guard.
35384         * lib/stdio_.h [__DECC]: Likewise.
35385         * lib/stdlib_.h [__DECC]: Likewise.
35386         * lib/string_.h [__DECC]: Likewise.
35387         * lib/time_.h [__DECC]: Likewise.
35388         * lib/wchar_.h [__DECC]: Likewise.
35389         * lib/wctype_.h [__DECC]: Likewise.
35390         * lib/inttypes_.h [__DECC]: Likewise.
35391         Reported by Albert Chin <china@thewrittenword.com> in
35392         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
35393
35394 2007-04-04  Eric Blake  <ebb9@byu.net>
35395
35396         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
35397         1.5.x.
35398
35399 2007-04-04  Bruno Haible  <bruno@clisp.org>
35400
35401         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
35402         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
35403
35404 2007-04-04  Bruno Haible  <bruno@clisp.org>
35405
35406         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
35407         results for "%010a" of Infinity and NaN.
35408         * tests/test-vasprintf-posix.c (test_function): Likewise.
35409         * tests/test-snprintf-posix.h (test_function): Likewise.
35410         * tests/test-sprintf-posix.h (test_function): Likewise.
35411         * tests/test-fprintf-posix.h (test_function): Remove these tests.
35412         * tests/test-printf-posix.h (test_function): Likewise.
35413         * tests/test-fprintf-posix.out: Update.
35414         Needed for FreeBSD 6.1.
35415
35416 2007-04-04  Bruno Haible  <bruno@clisp.org>
35417
35418         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
35419         directly used by the gnulib modules nor by gnulib-tool.
35420
35421 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
35422
35423         * DEPENDENCIES: Give overall description of version dependency
35424         desirability.  Use more-typical names for apps.
35425         Add shell, coreutils, diffutils, grep, tar, gzip.
35426
35427 2007-04-04  Simon Josefsson  <simon@josefsson.org>
35428
35429         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
35430
35431 2007-04-04  Karl Berry  <karl@gnu.org>
35432
35433         * MODULES.html.sh (func_module): missing '.
35434
35435 2007-04-03  Bruno Haible  <bruno@clisp.org>
35436
35437         * modules/argmatch-tests (Makefile.am): New variable
35438         test_argmatch_LDADD.
35439         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
35440         * modules/array-list-tests (Makefile.am): New variable
35441         test_array_list_LDADD.
35442         * modules/array-oset-tests (Makefile.am): New variable
35443         test_array_oset_LDADD.
35444         * modules/avltree-list-tests (Makefile.am): New variable
35445         test_avltree_list_LDADD.
35446         * modules/avltree-oset-tests (Makefile.am): New variable
35447         test_avltree_oset_LDADD.
35448         * modules/avltreehash-list-tests (Makefile.am): New variable
35449         test_avltreehash_list_LDADD.
35450         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
35451         test_canonicalize_lgpl_LDADD.
35452         * modules/carray-list-tests (Makefile.am): New variable
35453         test_carray_list_LDADD.
35454         * modules/dirname-tests (Makefile.am): New variable
35455         test_dirname_LDADD.
35456         * modules/linked-list-tests (Makefile.am): New variable
35457         test_linked_list_LDADD.
35458         * modules/linkedhash-list-tests (Makefile.am): New variable
35459         test_linkedhash_list_LDADD.
35460         * modules/rbtree-list-tests (Makefile.am): New variable
35461         test_rbtree_list_LDADD.
35462         * modules/rbtree-oset-tests (Makefile.am): New variable
35463         test_rbtree_oset_LDADD.
35464         * modules/rbtreehash-list-tests (Makefile.am): New variable
35465         test_rbtreehash_list_LDADD.
35466         * modules/xvasprintf-tests (Makefile.am): New variable
35467         test_xvasprintf_LDADD.
35468         Reported by Eric Blake.
35469
35470 2007-04-03  Eric Blake  <ebb9@byu.net>
35471
35472         * DEPENDENCIES: Weaken m4 requirements.
35473
35474 2007-04-03  Bruno Haible  <bruno@clisp.org>
35475
35476         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
35477         * modules/isnanl-tests (configure.ac): Likewise.
35478
35479 2007-04-03  Ben Pfaff  <blp@gnu.org>
35480
35481         * modules/iconv_open: Add $(srcdir)/ to source directory
35482         references in Makefile fragments that call gperf, to fix VPATH
35483         builds.
35484
35485 2007-04-03  Bruno Haible  <bruno@clisp.org>
35486
35487         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
35488         * lib/ldexpl.c: Undo last change.
35489
35490 2007-04-03  Bruno Haible  <bruno@clisp.org>
35491
35492         * modules/printf-frexpl (Depends-on): Undo last change.
35493         (Files): Add m4/ldexpl.m4.
35494
35495 2007-04-03  Bruno Haible  <bruno@clisp.org>
35496
35497         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
35498         * modules/isnanl (Link): New section.
35499
35500         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
35501         * modules/frexp (Link): New section.
35502
35503         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
35504         * modules/frexpl (Link): New section.
35505
35506         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
35507         * modules/ldexpl (Link): New section.
35508
35509 2007-04-03  Bruno Haible  <bruno@clisp.org>
35510
35511         * modules/TEMPLATE-EXTENDED: New file.
35512         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
35513
35514 2007-04-03  Bruno Haible  <bruno@clisp.org>
35515
35516         * DEPENDENCIES: New file.
35517         Suggested by Simon Josefsson.
35518
35519 2007-04-03  Bruno Haible  <bruno@clisp.org>
35520
35521         * doc/gnulib.texi: Escape @.
35522
35523 2007-04-03  James Youngman  <jay@gnu.org>
35524         and Paul Eggert  <eggert@cs.ucla.edu>
35525
35526         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
35527         birthtime on all systems that have birthtime, not just those which
35528         use st_birthtimensec rather than st_birthtim.  Putting zero in
35529         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
35530         that the birth time is not available for files on an NFS mount.
35531
35532 2007-04-03  Simon Josefsson  <simon@josefsson.org>
35533
35534         * modules/memxor: Move back from crypto/, suggested by Bruno.
35535         * modules/crypto/hmac-sha1: Fix memxor dependency.
35536
35537         * modules/crypto/gc: Moved from ../.
35538
35539 2007-04-02  Eric Blake  <ebb9@byu.net>
35540
35541         * lib/ldexpl.c (includes): Avoid libm.
35542
35543         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
35544
35545 2007-04-02  Bruno Haible  <bruno@clisp.org>
35546
35547         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
35548         on IRIX.
35549
35550 2007-04-02  Bruno Haible  <bruno@clisp.org>
35551
35552         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
35553         x86 or x86_64 platforms running MacOS X.
35554         Reported by Ryan Schmidt <@ryandesign.com>.
35555
35556 2007-04-02  Bruno Haible  <bruno@clisp.org>
35557
35558         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
35559         i386.
35560
35561 2007-04-01  Simon Josefsson  <simon@josefsson.org>
35562
35563         * modules/crypto/arcfour: Moved from ../.
35564         * modules/crypto/arcfour-tests: Moved from ../.
35565         * modules/crypto/arctwo: Moved from ../.
35566         * modules/crypto/arctwo-tests: Moved from ../.
35567         * modules/crypto/des: Moved from ../.
35568         * modules/crypto/des-tests: Moved from ../.
35569         * modules/crypto/gc-arcfour: Moved from ../.
35570         * modules/crypto/gc-arcfour-tests: Moved from ../.
35571         * modules/crypto/gc-arctwo: Moved from ../.
35572         * modules/crypto/gc-arctwo-tests: Moved from ../.
35573         * modules/crypto/gc-des: Moved from ../.
35574         * modules/crypto/gc-des-tests: Moved from ../.
35575         * modules/crypto/gc-hmac-md5: Moved from ../.
35576         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
35577         * modules/crypto/gc-hmac-sha1: Moved from ../.
35578         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
35579         * modules/crypto/gc-md2: Moved from ../.
35580         * modules/crypto/gc-md2-tests: Moved from ../.
35581         * modules/crypto/gc-md4: Moved from ../.
35582         * modules/crypto/gc-md4-tests: Moved from ../.
35583         * modules/crypto/gc-md5: Moved from ../.
35584         * modules/crypto/gc-md5-tests: Moved from ../.
35585         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
35586         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
35587         * modules/crypto/gc-random: Moved from ../.
35588         * modules/crypto/gc-rijndael: Moved from ../.
35589         * modules/crypto/gc-rijndael-tests: Moved from ../.
35590         * modules/crypto/gc-sha1: Moved from ../.
35591         * modules/crypto/gc-sha1-tests: Moved from ../.
35592         * modules/crypto/gc-tests: Moved from ../.
35593         * modules/crypto/hmac-md5: Moved from ../.
35594         * modules/crypto/hmac-md5-tests: Moved from ../.
35595         * modules/crypto/hmac-sha1: Moved from ../.
35596         * modules/crypto/hmac-sha1-tests: Moved from ../.
35597         * modules/crypto/md2: Moved from ../.
35598         * modules/crypto/md2-tests: Moved from ../.
35599         * modules/crypto/md4: Moved from ../.
35600         * modules/crypto/md4-tests: Moved from ../.
35601         * modules/crypto/md5: Moved from ../.
35602         * modules/crypto/md5-tests: Moved from ../.
35603         * modules/crypto/memxor: Moved from ../.
35604         * modules/crypto/rijndael: Moved from ../.
35605         * modules/crypto/rijndael-tests: Moved from ../.
35606         * modules/crypto/sha1: Moved from ../.
35607
35608 2007-03-30  James Youngman  <jay@gnu.org>
35609
35610         * tests/test-stat-time.c (prepare_test): use chmod() rather than
35611         rename() to change the ctime of a file (because ctime is unaffected
35612         by rename on jfs2 on AIX 5.1).
35613         (main): Start by doing cleanup, in case a previous run failed leaving
35614         test files behind.
35615
35616 2007-03-31  Bruno Haible  <bruno@clisp.org>
35617
35618         Support old proprietary implementations of iconv.
35619         * modules/iconv_open: New file.
35620         * lib/iconv_.h: New file.
35621         * m4/iconv_h.m4: New file.
35622         * lib/iconv_open.c: New file.
35623         * lib/iconv_open-aix.gperf: New file.
35624         * lib/iconv_open-hpux.gperf: New file.
35625         * lib/iconv_open-irix.gperf: New file.
35626         * lib/iconv_open-osf.gperf: New file.
35627         * m4/iconv_open.m4: New file.
35628         * modules/linebreak (Depends-on): Add iconv_open.
35629         * modules/striconv (Depends-on): Likewise.
35630         * modules/striconveh (Depends-on): Likewise.
35631         * modules/unicodeio (Depends-on): Likewise.
35632         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
35633         (iconv_t)(-1).
35634         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
35635         conversion if cd is (iconv_t)(-1).
35636         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
35637         is not possible.
35638
35639 2007-03-31  Bruno Haible  <bruno@clisp.org>
35640
35641         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
35642         work on Solaris either. Protect also second use of "autodetect_jp".
35643
35644 2007-03-31  Bruno Haible  <bruno@clisp.org>
35645
35646         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
35647         the function is not present.
35648
35649 2007-03-31  Bruno Haible  <bruno@clisp.org>
35650
35651         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
35652         the function is not present.
35653
35654 2007-03-31  Bruno Haible  <bruno@clisp.org>
35655
35656         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
35657         a bug in HP-UX iconv_open().
35658
35659 2007-03-31  Bruno Haible  <bruno@clisp.org>
35660
35661         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
35662         (Mathematics <math.h>): New section, add fpieee.
35663         (Input/output <stdio.h>): Add fseterr.
35664         (Mathematics <math.h>): New section, add printf-frexp.
35665         (Container data structures): Add sublist.
35666         (Core language properties): Add fpucw, inline.
35667         (Functions for greatest-width integer types <inttypes.h>): Add
35668         imaxabs, imaxdiv, inttypes.
35669         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
35670         isnanl-nolibm, ldexp.
35671         (Mathematics <math.h>): New section, add printf-frexpl.
35672         (Support for systems lacking POSIX:2001): Add fprintf-posix,
35673         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
35674         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
35675         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
35676         (Unicode string functions): Add unistr/u*-mbtoucr.
35677         (Java): Add javacomp-script, javaexec-script.
35678         (C#): Add csharpcomp-script, csharpexec-script.
35679         (Support for building libraries and executables): Add havelib,
35680         relocatable-*.
35681         (Support for maintaining and releasing projects): Renamed from
35682         'Support for maintaining and release projects'. Add announce-gen.
35683
35684 2007-03-31  Bruno Haible  <bruno@clisp.org>
35685
35686         * README: Talk primarily about git.
35687         (git and CVS): Renamed from CVS.
35688         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
35689         gnulib is available through git.
35690         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
35691
35692 2007-03-30  Bruno Haible  <bruno@clisp.org>
35693
35694         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
35695         * lib/poll_.h: Likewise.
35696         * lib/stat_.h: Likewise.
35697         * lib/sys_time_.h: Likewise.
35698         * lib/sysexit_.h: Likewise.
35699         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
35700         * lib/stdbool_.h: Likewise.
35701         * lib/byteswap_.h: Add double-inclusion guard.
35702
35703 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
35704
35705         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
35706
35707 2007-03-30  Karl Berry  <karl@gnu.org>
35708
35709         * config/srclist-update: double space after USA in the license
35710         substitution, since that's how it's usually (?) written.
35711
35712 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
35713
35714         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
35715         reported by Bruno Haible.
35716
35717 2007-03-29  Bruno Haible  <bruno@clisp.org>
35718
35719         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
35720         a bug in AIX iconv().
35721
35722 2007-03-29  Bruno Haible  <bruno@clisp.org>
35723
35724         * modules/ldexpl-tests: New file.
35725         * tests/test-ldexpl.c: New file.
35726
35727 2007-03-29  Bruno Haible  <bruno@clisp.org>
35728
35729         * lib/ldexpl.c: Include fpucw.h.
35730         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
35731         multiplication.
35732         * modules/ldexpl (Depends-on): Add fpucw.
35733
35734 2007-03-29  Bruno Haible  <bruno@clisp.org>
35735
35736         * modules/ldexpl: New file.
35737         * m4/ldexpl.m4: New file.
35738         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
35739         set.
35740         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
35741         REPLACE_LDEXPL.
35742         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
35743         REPLACE_LDEXPL.
35744         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
35745         gl_FUNC_LDEXPL_WORKS.
35746         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
35747         * modules/mathl (Files): Remove lib/ldexpl.c.
35748         (Depends-on): Add ldexpl.
35749
35750 2007-03-29  Bruno Haible  <bruno@clisp.org>
35751
35752         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
35753
35754 2007-03-29  Bruno Haible  <bruno@clisp.org>
35755
35756         * tests/test-striconveh.c (main): Don't assume that a direct conversion
35757         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
35758         and possibly also HP-UX.
35759         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
35760         work on AIX, IRIX, HP-UX, OSF/1.
35761         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
35762         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
35763         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
35764         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
35765         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
35766         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
35767
35768 2007-03-29  Bruno Haible  <bruno@clisp.org>
35769
35770         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
35771
35772 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
35773
35774         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
35775         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
35776
35777 2007-03-29  Eric Blake  <ebb9@byu.net>
35778
35779         * lib/acl-internal.h: Remove redundant include.
35780         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
35781         Cygwin when a file is locked.
35782
35783 2007-03-29  Bruno Haible  <bruno@clisp.org>
35784
35785         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
35786         file.
35787         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
35788
35789 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
35790
35791         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
35792         try to remove a parent directory if the child couldn't be removed
35793         (except for the first rmdir, which could fail because the child
35794         doesn't exist).  Problem reported by Jeff Blaine in
35795         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
35796
35797 2007-03-28  Bruno Haible  <bruno@clisp.org>
35798
35799         * lib/striconveh.c (utf8conv_carefully): New function.
35800         (mem_cd_iconveh_internal): Invoke it.
35801
35802 2007-03-28  Bruno Haible  <bruno@clisp.org>
35803
35804         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
35805         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
35806         input.
35807         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
35808         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
35809         unistr/u8-uctomb.
35810
35811 2007-03-28  Bruno Haible  <bruno@clisp.org>
35812
35813         * modules/unistr/u8-mbtoucr: New file.
35814         * lib/unistr/u8-mbtoucr.c: New file.
35815         * modules/unistr/u16-mbtoucr: New file.
35816         * lib/unistr/u16-mbtoucr.c: New file.
35817         * modules/unistr/u16-mbtoucr: New file.
35818         * lib/unistr/u16-mbtoucr.c: New file.
35819         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
35820
35821 2007-03-27  Simon Josefsson  <simon@josefsson.org>
35822             Bruno Haible  <bruno@clisp.org>
35823
35824         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
35825         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
35826         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
35827
35828         * m4/stdio_h.m4: Add stubs for vasprintf too.
35829
35830         * modules/stdio: Support vasprintf in sed command.
35831
35832         * modules/vasprintf: Depend on stdio for prototypes.  Remove
35833         vasprintf.h.  Add stdio module indicator.
35834
35835         * lib/stdio_.h: Declare asprintf and vasprintf, based on
35836         vasprintf.h.
35837
35838         * lib/vasprintf.h: File removed.
35839
35840         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
35841         * lib/vasprintf.c: Ditto.
35842         * lib/xvasprintf.c: Ditto.
35843         * tests/test-vasprintf-posix.c: Ditto.
35844         * tests/test-vasprintf.c: Ditto.
35845
35846 2007-03-27  Bruno Haible  <bruno@clisp.org>
35847
35848         Make vasnprintf multithread-safe.
35849         * lib/vasnprintf.c (decimal_point_char): New function.
35850         (VASNPRINTF): Use it.
35851         Suggested by Simon Josefsson.
35852
35853 2007-03-27  Eric Blake  <ebb9@byu.net>
35854
35855         Support sub-second birthtime on cygwin.
35856         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
35857         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
35858         (get_stat_birthtime): Also work with st_birthtim.
35859
35860 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
35861
35862         * lib/stat-time.h (USE_BIRTHTIME): Remove.
35863         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
35864         (get_stat_birthtime_ns): Do not try to use "spare" fields.
35865         (get_stat_birthtime_ns): Simplify compile-time tests.
35866         (get_stat_birthtime): Change the API to look like
35867         get_stat_mtime etc., except return a negative tv_nsec on error.
35868         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
35869         Don't check for "spare" fields.
35870         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
35871         or for struct stat.st_birthtime, as these tests aren't used.
35872         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
35873
35874 2007-03-27  Bruno Haible  <bruno@clisp.org>
35875
35876         * lib/stat-time.h: Include <sys/stat.h>.
35877
35878 2007-03-27  James Youngman  <jay@gnu.org>
35879
35880         * lib/stat-time.h (get_stat_birthtime): New function for
35881           retrieving st_birthtime as provided by UFS2 (hence *BSD).
35882         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
35883           and its variants.
35884         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
35885         * modules/stat-time-test: New file.
35886         * tests/test-stat-time.c: New test, devised by Bruno Haible.
35887
35888 2007-03-26  Bruno Haible  <bruno@clisp.org>
35889
35890         Better support of signalling NaNs.
35891         * lib/atanl.c: Include isnanl.h.
35892         (atanl): Perform test for NaN at the beginning of the function and
35893         through a call to isnanl.
35894         * lib/cosl.c: Include isnanl.h.
35895         (cosl): Perform test for NaN at the beginning of the function and
35896         through a call to isnanl.
35897         * lib/ldexpl.c: Include isnanl.h.
35898         (ldexpl): Perform test for NaN through a call to isnanl.
35899         * lib/logl.c: Include isnanl.h.
35900         (logl): Perform test for NaN at the beginning of the function and
35901         through a call to isnanl.
35902         * lib/sinl.c: Include isnanl.h.
35903         (sinl): Perform test for NaN at the beginning of the function and
35904         through a call to isnanl.
35905         * lib/sqrtl.c: Include isnanl.h.
35906         (sqrtl): Perform test for NaN at the beginning of the function and
35907         through a call to isnanl.
35908         * lib/tanl.c: Include isnanl.h.
35909         (tanl): Perform test for NaN at the beginning of the function and
35910         through a call to isnanl.
35911         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
35912         * modules/mathl (Depends-on): Add isnanl.
35913
35914 2007-03-26  Eric Blake  <ebb9@byu.net>
35915
35916         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
35917         regression in logic sense of previous patch.
35918
35919 2007-03-26  Bruno Haible  <bruno@clisp.org>
35920
35921         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
35922         unportable shell command "if ! ...".
35923         Reported by Ralf Wildenhues.
35924
35925 2007-03-25  Bruno Haible  <bruno@clisp.org>
35926
35927         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
35928         <sysexits.h> file, and only add EX_CONFIG.
35929         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
35930         absolute file name and whether it is sufficient. Substitute also
35931         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
35932         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
35933         ABSOLUTE_SYSEXITS_H into sysexits.h.
35934
35935 2007-03-25  Bruno Haible  <bruno@clisp.org>
35936
35937         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
35938         hints is NULL.
35939
35940 2007-03-25  Bruno Haible  <bruno@clisp.org>
35941
35942         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
35943         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
35944
35945 2007-03-25  Bruno Haible  <bruno@clisp.org>
35946
35947         * lib/vasnprintf.c: Include langinfo.h.
35948         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
35949         multithread-safe.
35950         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
35951         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
35952         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
35953         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35954         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35955         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35956         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35957         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
35958         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35959         Reported by Simon Josefsson.
35960
35961 2007-03-25  Bruno Haible  <bruno@clisp.org>
35962
35963         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
35964         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
35965         * modules/vasnprintf (Depends-on): Add stdint.
35966
35967 2007-03-25  Bruno Haible  <bruno@clisp.org>
35968
35969         * modules/fpieee: New file.
35970         * m4/fpieee.m4: New file.
35971         * modules/isnan-nolibm (Depends-on): Add fpieee.
35972         * modules/isnanl-nolibm (Depends-on): Add fpieee.
35973         * modules/isnanl (Depends-on): Add fpieee.
35974
35975 2007-03-25  Bruno Haible  <bruno@clisp.org>
35976
35977         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
35978
35979 2007-03-25  Bruno Haible  <bruno@clisp.org>
35980
35981         Avoid test failures on IRIX 6.5.
35982         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
35983         (main): Use it.
35984         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
35985         macros.
35986         (main): Use them.
35987
35988 2007-03-25  Bruno Haible  <bruno@clisp.org>
35989
35990         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
35991         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
35992         exists but doesn't work.
35993         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
35994         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
35995         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
35996         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
35997
35998 2007-03-25  Bruno Haible  <bruno@clisp.org>
35999
36000         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
36001         returns inf. Needed on IRIX 6.5.
36002
36003 2007-03-25  Bruno Haible  <bruno@clisp.org>
36004
36005         * tests/test-frexpl.c: Include isnanl-nolibm.h.
36006         (main): Use isnanl instead of x != x idiom.
36007         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
36008
36009         * tests/test-frexp.c: Include isnan.h.
36010         (main): Use isnan instead of x != x idiom.
36011         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
36012
36013 2007-03-25  Bruno Haible  <bruno@clisp.org>
36014
36015         * tests/test-frexp.c (NaN): New function/macro.
36016         (main): Use it instead of 0.0 / 0.0.
36017         * tests/test-isnan.c (NaN): New function/macro.
36018         (main): Use it instead of 0.0 / 0.0.
36019         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
36020         (test_function): Use it instead of 0.0 / 0.0.
36021         * tests/test-vasprintf-posix.c (NaN): New function/macro.
36022         (test_function): Use it instead of 0.0 / 0.0.
36023         * tests/test-snprintf-posix.h (NaN): New function/macro.
36024         (test_function): Use it instead of 0.0 / 0.0.
36025         * tests/test-sprintf-posix.h (NaN): New function/macro.
36026         (test_function): Use it instead of 0.0 / 0.0.
36027         * tests/test-fprintf-posix.h (NaN): New function/macro.
36028         (test_function): Use it instead of 0.0 / 0.0.
36029         * tests/test-printf-posix.h (NaN): New function/macro.
36030         (test_function): Use it instead of 0.0 / 0.0.
36031
36032         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
36033
36034 2007-03-25  Bruno Haible  <bruno@clisp.org>
36035
36036         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
36037
36038 2007-03-25  Bruno Haible  <bruno@clisp.org>
36039
36040         * lib/regexec.c (merge_state_with_log): Make static.
36041
36042 2007-03-25  Bruno Haible  <bruno@clisp.org>
36043
36044         * lib/trigl.c (kernel_rem_pio2): Make static.
36045
36046 2007-03-25  Bruno Haible  <bruno@clisp.org>
36047
36048         * lib/sincosl.c (sincosl_table): Make static.
36049
36050 2007-03-25  Bruno Haible  <bruno@clisp.org>
36051
36052         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
36053         if the compiler does not support C99.
36054
36055 2007-03-25  Bruno Haible  <bruno@clisp.org>
36056
36057         * modules/time (Makefile.am): Ensure all rule action lines start with a
36058         tab.
36059
36060 2007-03-24  Bruno Haible  <bruno@clisp.org>
36061
36062         * modules/tsearch-tests: New file.
36063         * tests/test-tsearch.sh: New file.
36064         * tests/test-tsearch.c: New file, mostly copied from glibc.
36065
36066         * modules/search-tests: New file.
36067         * tests/test-search.c: New file.
36068
36069         * modules/search: New file.
36070         * lib/search_.h: New file, incorporating lib/tsearch.h.
36071         * m4/search_h.m4: New file.
36072         * lib/tsearch.h: Remove file.
36073         * lib/tsearch.c: Include search.h instead of tsearch.h.
36074         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
36075         HAVE_TSEARCH.
36076         * modules/tsearch (Files): Remove lib/tsearch.h.
36077         (Depends-on): Add search.
36078         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
36079         (Include): Change tsearch.h into search.h.
36080
36081 2007-03-24  Bruno Haible  <bruno@clisp.org>
36082
36083         * modules/fpucw: New file.
36084         * lib/fpucw.h: New file.
36085         * lib/frexp.c: Include fpucw.h.
36086         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
36087         (FUNC): Use them.
36088         * lib/printf-frexp.c: Include fpucw.h.
36089         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
36090         (FUNC): Use them.
36091         * lib/vasnprintf.c: Include fpucw.h.
36092         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
36093         'long double' calculations.
36094         * tests/test-frexpl.c: Include fpucw.h.
36095         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
36096         * tests/test-printf-frexpl.c: Include fpucw.h.
36097         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
36098         * modules/frexpl (Depends-on): Add fpucw.
36099         * modules/printf-frexpl (Depends-on): Likewise.
36100         * modules/fprintf-posix (Depends-on): Likewise.
36101         * modules/snprintf-posix (Depends-on): Likewise.
36102         * modules/sprintf-posix (Depends-on): Likewise.
36103         * modules/vasnprintf-posix (Depends-on): Likewise.
36104         * modules/vasprintf-posix (Depends-on): Likewise.
36105         * modules/vfprintf-posix (Depends-on): Likewise.
36106         * modules/vsnprintf-posix (Depends-on): Likewise.
36107         * modules/vsprintf-posix (Depends-on): Likewise.
36108         * modules/frexpl-tests (Depends-on): Likewise.
36109         * modules/printf-frexpl-tests (Depends-on): Likewise.
36110
36111 2007-03-24  Bruno Haible  <bruno@clisp.org>
36112
36113         * lib/float+.h: New file.
36114         * lib/isnan.c: Include float+.h.
36115         (SIZE): New macro.
36116         (FUNC): Compare only SIZE bytes of the value.
36117         * lib/vasnprintf.c: Include float+.h.
36118         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
36119         SIZEOF_LDBL or SIZEOF_DBL bytes.
36120         * modules/isnan-nolibm (Files): Add lib/float+.h.
36121         * modules/isnanl-nolibm (Files): Add lib/float+.h.
36122         * modules/isnanl (Files): Add lib/float+.h.
36123         * modules/vasnprintf (Files): Add lib/float+.h.
36124
36125 2007-03-24  Bruno Haible  <bruno@clisp.org>
36126
36127         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
36128         include isnanl-nolibm.h.
36129
36130 2007-03-24  Bruno Haible  <bruno@clisp.org>
36131
36132         * tests/test-read-file.c (main): Don't produce spurious output for
36133         expected situations. Make the test fail if it encountered unexpected
36134         results.
36135
36136 2007-03-24  Bruno Haible  <bruno@clisp.org>
36137
36138         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
36139         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
36140
36141 2007-03-24  Bruno Haible  <bruno@clisp.org>
36142
36143         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
36144
36145 2007-03-24  Bruno Haible  <bruno@clisp.org>
36146
36147         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
36148         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
36149
36150         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
36151         * modules/utf8-ucs4: Turn into a symbolic link to module
36152         unistr/u8-mbtouc.
36153
36154         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
36155         utf8-ucs4-unsafe.
36156         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
36157         unistr/u8-mbtouc-unsafe.
36158
36159         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
36160         * modules/utf16-ucs4: Turn into a symbolic link to module
36161         unistr/u16-mbtouc.
36162
36163         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
36164         utf16-ucs4-unsafe.
36165         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
36166         unistr/u16-mbtouc-unsafe.
36167
36168         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
36169         * modules/ucs4-utf8: Turn into a symbolic link to module
36170         unistr/u8-ubtomb.
36171
36172         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
36173         * modules/ucs4-utf16: Turn into a symbolic link to module
36174         unistr/u16-ubtomb.
36175
36176 2007-03-24  Bruno Haible  <bruno@clisp.org>
36177
36178         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
36179         Enable the function only if HAVE_INLINE.
36180         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
36181         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
36182         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
36183         Enable the function only if HAVE_INLINE.
36184         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
36185         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
36186         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
36187         Enable the function only if HAVE_INLINE.
36188         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
36189         Enable the function only if HAVE_INLINE.
36190         * modules/utf8-ucs4: Update.
36191         * modules/utf8-ucs4-unsafe: Update.
36192         * modules/utf16-ucs4: Update.
36193         * modules/utf16-ucs4-unsafe: Update.
36194         * modules/ucs4-utf8: Update.
36195         * modules/ucs4-utf16: Update.
36196
36197 2007-03-24  Bruno Haible  <bruno@clisp.org>
36198
36199         * lib/utf8-ucs4.h: Remove file.
36200         * lib/utf8-ucs4-unsafe.h: Remove file.
36201         * lib/utf16-ucs4.h: Remove file.
36202         * lib/utf16-ucs4-unsafe.h: Remove file.
36203         * lib/ucs4-utf8.h: Remove file.
36204         * lib/ucs4-utf16.h: Remove file.
36205         * lib/unistr.h: Include their previous contents.
36206         * m4/utf-ucs4.m4: Remove file.
36207         * m4/ucs4-utf.m4: Remove file.
36208         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
36209         (Depends-on): Add unistr/base.
36210         (configure.ac): Remove gl_UTF_UCS4.
36211         (Makefile.am): Update.
36212         (Include): Change to unistr.h.
36213         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
36214         (Depends-on): Add unistr/base.
36215         (configure.ac): Remove gl_UTF_UCS4.
36216         (Makefile.am): Update.
36217         (Include): Change to unistr.h.
36218         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
36219         (Depends-on): Add unistr/base.
36220         (configure.ac): Remove gl_UTF_UCS4.
36221         (Makefile.am): Update.
36222         (Include): Change to unistr.h.
36223         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
36224         (Depends-on): Add unistr/base.
36225         (configure.ac): Remove gl_UTF_UCS4.
36226         (Makefile.am): Update.
36227         (Include): Change to unistr.h.
36228         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
36229         (Depends-on): Add unistr/base.
36230         (configure.ac): Remove gl_UCS4_UTF.
36231         (Makefile.am): Update.
36232         (Include): Change to unistr.h.
36233         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
36234         (Depends-on): Add unistr/base.
36235         (configure.ac): Remove gl_UCS4_UTF.
36236         (Makefile.am): Update.
36237         (Include): Change to unistr.h.
36238         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
36239         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
36240         utf8-ucs4-unsafe.h.
36241         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
36242         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
36243         utf16-ucs4-unsafe.h.
36244         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
36245         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
36246         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
36247         * lib/unistr/u8-strchr.c: Likewise.
36248         * lib/unistr/u8-strrchr.c: Likewise.
36249         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
36250         * lib/unistr/u16-strchr.c: Likewise.
36251         * lib/unistr/u16-strrchr.c: Likewise.
36252         * lib/striconveh.c: Update.
36253         * lib/linebreak.c: Update.
36254
36255 2007-03-24  Bruno Haible  <bruno@clisp.org>
36256
36257         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
36258         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
36259
36260 2007-03-22  Bruno Haible  <bruno@clisp.org>
36261
36262         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
36263
36264 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
36265
36266         * MODULES.html.sh (File system functions): New module write-any-file.
36267         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
36268         * m4/write-any-file.m4: New files.
36269
36270 2007-03-23  Eric Blake  <ebb9@byu.net>
36271
36272         * gnulib-tool: Rearrange space-tab sequences, since some editors
36273         like to eat them.
36274
36275 2007-03-23  Eric Blake  <ebb9@byu.net>
36276
36277         * lib/version-etc.c (version_etc_va): Update license wording to
36278         be more concise.  Recommended by Richard Stallman.
36279
36280 2007-03-22  Bruno Haible  <bruno@clisp.org>
36281
36282         * lib/poll.c (MSG_PEEK): New fallback definition.
36283
36284 2007-03-22  Bruno Haible  <bruno@clisp.org>
36285
36286         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
36287         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
36288         (main): Update.
36289         Fixes a compilation error on BeOS.
36290
36291 2007-03-22  Bruno Haible  <bruno@clisp.org>
36292
36293         * modules/frexpl-tests: New file.
36294         * tests/test-frexpl.c: New file.
36295
36296         * modules/frexpl: New file.
36297         * m4/frexpl.m4: New file.
36298         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
36299         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
36300         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
36301         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
36302         (Depends-on): Add frexpl. Remove isnanl-nolibm.
36303         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
36304
36305 2007-03-22  Bruno Haible  <bruno@clisp.org>
36306
36307         * lib/frexpl.c: Share code with lib/frexp.c.
36308         * modules/mathl (Files): Add lib/frexp.c.
36309         (Depends-on): Add isnanl-nolibm.
36310
36311 2007-03-22  Bruno Haible  <bruno@clisp.org>
36312
36313         * modules/printf-frexp (Files): Add m4/frexp.m4.
36314         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
36315         only if the found frexp function actually works.
36316
36317 2007-03-22  Bruno Haible  <bruno@clisp.org>
36318
36319         * lib/frexp.c: Remove older implementation that uses divisions.
36320
36321 2007-03-21  Bruno Haible  <bruno@clisp.org>
36322
36323         * modules/frexp-tests: New file.
36324         * tests/test-frexp.c: New file.
36325
36326         * modules/frexp: New file.
36327         * lib/frexp.c: New file.
36328         * m4/frexp.m4: New file.
36329         * lib/math_.h (frexp): New declaration.
36330         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
36331         REPLACE_FREXP.
36332         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
36333
36334 2007-03-21  Bruno Haible  <bruno@clisp.org>
36335
36336         * modules/isnanl-tests: New file.
36337         * tests/test-isnanl.c: New file.
36338
36339         * modules/isnanl: New file.
36340         * lib/isnanl.h: New file.
36341         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
36342         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
36343         gl_FUNC_ISNANL_WORKS.
36344         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
36345         New macros.
36346
36347 2007-03-21  Bruno Haible  <bruno@clisp.org>
36348
36349         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
36350         lib/isnanl.h.
36351         (Include): Update.
36352         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
36353         * lib/vasnprintf.c: Update.
36354         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
36355         tests/test-isnanl.h, remove tests/test-isnanl.c.
36356         (Makefile.am): Update.
36357         * tests/test-isnanl-nolibm.c: New file.
36358         * tests/test-isnanl.h: New file.
36359         * tests/test-isnanl.c: Remove file.
36360
36361 2007-03-21  Jim Meyering  <jim@meyering.net>
36362
36363         When trying to open ".", treat ESTALE like EACCES.
36364         * lib/savewd.c (savewd_save): Resort to forking not just upon
36365         failure with EACCES, but also when errno is ESTALE.
36366
36367 2007-03-20  Bruno Haible  <bruno@clisp.org>
36368
36369         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
36370         Needed on AIX 5.1. Reported by Matthew Woehlke.
36371
36372 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
36373
36374         Suggestions by Bruno Haible:
36375         * lib/acl-internal.h: Include "gettext.h" rather than rolling
36376         our own.
36377         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
36378         * modules/acl (Depends-on): Add gettext.
36379
36380 2007-03-19  Bruno Haible  <bruno@clisp.org>
36381
36382         * modules/iconvme: Remove file.
36383         * lib/iconvme.h: Remove file.
36384         * lib/iconvme.c: Remove file.
36385         * m4/iconvme.m4: Remove file.
36386
36387 2007-03-19  Bruno Haible  <bruno@clisp.org>
36388
36389         * doc/relocatable-maint.texi: Break long shell script line.
36390         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
36391
36392 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
36393
36394         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
36395         handle file_has_acl.
36396         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
36397         * lib/acl.c: Move header inclusions and related macro defns into
36398         lib/acl-internal.h.
36399         (S_ISLNK): Remove defn, since that's now done for us.
36400         (file_has_acl): Move to lib/file-has-acl.c.
36401         Call acl_trivial if available.  This is the crucial part of the fix.
36402         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
36403         shared within the library.  Rewrite a bit, partly to make it compatible
36404         with the GNU coding style.
36405         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
36406         Remove unnecessary double-quotes.
36407         Don't test for acl_to_text; the build will catch that.
36408         Replace acl_entries if it doesn't exist and it is needed.
36409         Check for -lsec and acl_trivial (as used on Solaris 10).
36410         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
36411         lib/file-has-acl.c.
36412         (Depends-on): Add sys_stat, for S_ISLNK.
36413
36414 2007-03-19  Ben Pfaff  <blp@gnu.org>
36415
36416         * doc/gnulib.texi: Fix typos.
36417         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
36418
36419 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
36420
36421         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
36422         If size is zero here, buf must be zero.
36423
36424 2007-03-19  Simon Josefsson  <simon@josefsson.org>
36425
36426         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
36427         <bruno@clisp.org>.
36428
36429 2007-03-18  Bruno Haible  <bruno@clisp.org>
36430
36431         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
36432         Suggested by Eric Blake.
36433
36434 2007-03-18  Ben Pfaff  <blp@gnu.org>
36435
36436         * doc/relocatable.texi: Recommend using as prefix a directory
36437         that does not exist and will never be created.  Based on
36438         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
36439         and others.
36440
36441 2007-03-17  Bruno Haible  <bruno@clisp.org>
36442
36443         * lib/fchownat.c: Include lchown.h.
36444
36445 2007-03-17  Bruno Haible  <bruno@clisp.org>
36446
36447         Fix endless loop when the given allocated size was > INT_MAX.
36448         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
36449         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
36450         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
36451         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
36452         * lib/sprintf.c (sprintf): Likewise.
36453
36454 2007-03-17  Bruno Haible  <bruno@clisp.org>
36455
36456         * tests/test-argp-2.sh (func_compare): Output a context diff.
36457
36458 2007-03-17  Bruno Haible  <bruno@clisp.org>
36459
36460         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
36461         locale's decimal-point character.
36462
36463 2007-03-17  Bruno Haible  <bruno@clisp.org>
36464
36465         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
36466         before comparing it. Needed because on some platforms (e.g. x86) a
36467         'long double' occupies less bytes than sizeof (long double).
36468
36469 2007-03-17  Bruno Haible  <bruno@clisp.org>
36470
36471         * tests/test-crc.c (main): Make printf statements 64-bit clean.
36472         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
36473         * tests/test-getaddrinfo.c (simple): Likewise.
36474         * tests/test-read-file.c (main): Likewise.
36475
36476 2007-03-17  Bruno Haible  <bruno@clisp.org>
36477
36478         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
36479
36480 2007-03-17  Bruno Haible  <bruno@clisp.org>
36481
36482         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
36483         unused variable.
36484
36485 2007-03-17  Bruno Haible  <bruno@clisp.org>
36486
36487         * tests/test-c-strcasecmp.c: Include c-strcase.h.
36488         * tests/test-c-strncasecmp.c: Likewise.
36489
36490 2007-03-17  Bruno Haible  <bruno@clisp.org>
36491
36492         * modules/stdlib (Depends-on): Add unistd.
36493         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
36494         Needed for MacOS X 10.3.
36495
36496 2007-03-17  Bruno Haible  <bruno@clisp.org>
36497
36498         * lib/unistr/u-strdup.h: Include <stdlib.h>.
36499
36500 2007-03-17  Bruno Haible  <bruno@clisp.org>
36501
36502         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
36503
36504 2007-03-17  Bruno Haible  <bruno@clisp.org>
36505
36506         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
36507         to reflect files copied from gnulib (with or without modifications).
36508         Suggested by Jim Meyering.
36509
36510 2007-03-17  Eric Blake  <ebb9@byu.net>
36511
36512         * NEWS: Document stdlib change from 2007-02-18.
36513
36514 2007-03-17  Jim Meyering  <jim@meyering.net>
36515
36516         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
36517         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
36518         someone uses a name containing shell meta-characters.
36519         Reported by Alfred M. Szmidt.
36520
36521         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
36522
36523 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
36524
36525         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
36526         and copy gettext configuration files only if configure.ac contains
36527         a use of AM_GNU_GETTEXT_VERSION.
36528
36529 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
36530
36531         * build-aux/bootstrap (gnulib_name): New variable.
36532         (gnulib_tool_options): Use it.
36533
36534 2007-03-13  Simon Josefsson  <simon@josefsson.org>
36535
36536         * tests/test-des.c: Use new namespace.
36537
36538 2007-03-15  Bruno Haible  <bruno@clisp.org>
36539
36540         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
36541         Reported by James Youngman <jay@gnu.org>.
36542
36543 2007-03-15  Bruno Haible  <bruno@clisp.org>
36544
36545         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
36546         declared prototype. Needed with cc on OSF/1 5.1.
36547
36548 2007-03-15  Bruno Haible  <bruno@clisp.org>
36549
36550         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
36551         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
36552         (struct gl_list_implementation): Add dispose_fn argument to the
36553         'create_empty', 'create' methods.
36554         (struct gl_list_impl_base): Add field 'dispose_fn'.
36555         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
36556         argument.
36557         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
36558         dispose_fn argument.
36559         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
36560         dispose_fn on the dropped values.
36561         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
36562         dispose_fn argument.
36563         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
36564         dropped values.
36565         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
36566         (gl_tree_remove_node): Call dispose_fn on the dropped value.
36567         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
36568         (gl_tree_remove_node): Call dispose_fn on the dropped value.
36569         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
36570         argument.
36571         (gl_tree_list_free): Call dispose_fn on the dropped values.
36572         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
36573         the dropped values.
36574         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
36575         Add dispose_fn argument.
36576         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
36577         Call dispose_fn on the dropped values.
36578         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
36579         Add dispose_fn argument.
36580         (gl_sublist_create): Initialize the 'dispose_fn' field.
36581         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
36582         * tests/test-array_list.c (main): Update.
36583         * tests/test-carray_list.c (main): Update.
36584         * tests/test-avltree_list.c (main): Update.
36585         * tests/test-rbtree_list.c (main): Update.
36586         * tests/test-avltreehash_list.c (main): Update.
36587         * tests/test-rbtreehash_list.c (main): Update.
36588         * tests/test-linked_list.c (main): Update.
36589         * tests/test-linkedhash_list.c (main): Update.
36590         * tests/test-array_oset.c (main): Update.
36591
36592 2007-03-15  Bruno Haible  <bruno@clisp.org>
36593
36594         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
36595         (gl_oset_create_empty): Add dispose_fn argument.
36596         (struct gl_oset_implementation): Add dispose_fn argument to
36597         'create_empty' method.
36598         (struct gl_oset_impl_base): Add dispose_fn field.
36599         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
36600         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
36601         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
36602         values.
36603         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
36604         (gl_tree_oset_free): Call dispose_fn on the dropped values.
36605         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
36606         dropped value.
36607         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
36608         dropped value.
36609         * tests/test-array_oset.c (main): Update.
36610         * tests/test-avltree_oset.c (main): Update.
36611         * tests/test-rbtree_oset.c (main): Update.
36612         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
36613
36614 2007-03-13  Bruno Haible  <bruno@clisp.org>
36615
36616         * tests/test-stdbool.c (i): Update after last patch.
36617
36618 2007-03-12  Bruno Haible  <bruno@clisp.org>
36619
36620         * lib/quotearg.c: Include <wctype.h> early, before the definition of
36621         the iswprint macro. Needed on Solaris 2.5.1.
36622
36623 2007-03-12  Bruno Haible  <bruno@clisp.org>
36624
36625         * tests/test-printf-frexp.c (main): Declare x as volatile.
36626
36627 2007-03-12  Simon Josefsson  <simon@josefsson.org>
36628
36629         * doc/gnulib.texi (Build robot for gnulib): New section.
36630
36631 2007-03-12  Jim Meyering  <jim@meyering.net>
36632
36633         * build-aux/bootstrap: New file.
36634         * build-aux/bootstrap.conf: New file, from coreutils.
36635
36636 2007-03-11  Bruno Haible  <bruno@clisp.org>
36637
36638         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
36639
36640 2007-03-12  Simon Josefsson  <simon@josefsson.org>
36641
36642         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
36643         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
36644         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
36645
36646 2007-03-11  Bruno Haible  <bruno@clisp.org>
36647
36648         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
36649         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
36650
36651 2007-03-11  Bruno Haible  <bruno@clisp.org>
36652
36653         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
36654         formula. Needed for SunPRO C 5.0.
36655
36656 2007-03-11  Bruno Haible  <bruno@clisp.org>
36657
36658         * modules/long-options (Depends-on): Add getopt.
36659
36660 2007-03-11  Bruno Haible  <bruno@clisp.org>
36661
36662         * modules/modechange (Depends-on): Add stdbool.
36663
36664 2007-03-11  Bruno Haible  <bruno@clisp.org>
36665
36666         * modules/i-ring (Depends-on): Add stdbool.
36667
36668 2007-03-11  Bruno Haible  <bruno@clisp.org>
36669
36670         * modules/gc-des (Depends-on): Add stdbool.
36671
36672 2007-03-11  Bruno Haible  <bruno@clisp.org>
36673
36674         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
36675
36676 2007-03-11  Bruno Haible  <bruno@clisp.org>
36677
36678         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
36679
36680 2007-03-11  Bruno Haible  <bruno@clisp.org>
36681
36682         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
36683
36684 2007-03-11  Bruno Haible  <bruno@clisp.org>
36685
36686         * lib/vasnprintf.c (sprintf): Undefine.
36687
36688 2007-03-11  Bruno Haible  <bruno@clisp.org>
36689
36690         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
36691         initializers in SunPRO C and Compaq C compilers.
36692
36693 2007-03-11  Bruno Haible  <bruno@clisp.org>
36694
36695         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
36696         decrementing code ANSI C compliant.
36697
36698 2007-03-11  Bruno Haible  <bruno@clisp.org>
36699
36700         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
36701         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
36702
36703 2007-03-11  Bruno Haible  <bruno@clisp.org>
36704
36705         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
36706         <stdbool.h> substitute doesn't pass.
36707
36708 2007-03-11  Bruno Haible  <bruno@clisp.org>
36709
36710         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
36711
36712 2007-03-11  Bruno Haible  <bruno@clisp.org>
36713
36714         * gnulib-tool (func_create_megatestdir): Create also an autobuild
36715         script, for submission to autobuild.josefsson.org.
36716
36717 2007-03-10  Bruno Haible  <bruno@clisp.org>
36718
36719         * modules/canonicalize-lgpl-tests: New file.
36720         * tests/test-canonicalize-lgpl.sh: New file.
36721         * tests/test-canonicalize-lgpl.c: New file.
36722
36723         * modules/c-strcase-tests: New file.
36724         * tests/test-c-strcase.sh: New file.
36725         * tests/test-c-strcasecmp.c: New file.
36726         * tests/test-c-strncasecmp.c: New file.
36727
36728         * modules/atexit-tests: New file.
36729         * tests/test-atexit.sh: New file.
36730         * tests/test-atexit.c: New file.
36731
36732 2007-03-10  Bruno Haible  <bruno@clisp.org>
36733
36734         * tests/test-binary-io.sh: Use temporary filenames that are not so
36735         likely to clash with those of other tests (in a parallel make).
36736         * tests/test-binary-io.c: Likewise.
36737
36738 2007-03-10  Bruno Haible  <bruno@clisp.org>
36739
36740         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
36741         fallback; use #error instead.
36742         Suggested by Simon Josefsson.
36743
36744 2007-03-10  Bruno Haible  <bruno@clisp.org>
36745
36746         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
36747         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
36748         first and the last.
36749
36750 2007-03-10  Bruno Haible  <bruno@clisp.org>
36751
36752         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
36753
36754 2007-03-10  Bruno Haible  <bruno@clisp.org>
36755
36756         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
36757         "make distcheck".
36758         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
36759         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
36760         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
36761
36762 2007-03-10  Bruno Haible  <bruno@clisp.org>
36763
36764         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
36765         variable.
36766         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
36767         variable.
36768
36769 2007-03-09  Eric Blake  <ebb9@byu.net>
36770         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
36771
36772         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
36773         types are not being provided by gnulib.
36774         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
36775         types are supported.
36776
36777 2007-03-10  Bruno Haible  <bruno@clisp.org>
36778
36779         * lib/stdio_.h (__attribute__): New macro.
36780         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
36781         vsprintf): Specify __attribute__ __format__ for GCC.
36782         Suggested by Eric Blake.
36783
36784 2007-03-09  Bruno Haible  <bruno@clisp.org>
36785
36786         * modules/printf-posix-tests: New file.
36787         * tests/test-printf-posix.sh: New file.
36788         * tests/test-printf-posix.c: New file.
36789
36790         * modules/printf-posix: New file.
36791         * lib/printf.c: New file.
36792         * m4/printf-posix-rpl.m4: New file.
36793         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
36794         REPLACE_PRINTF.
36795         * lib/stdio_.h (printf): New declaration.
36796         (format, __format__, ____printf____, ____scanf____, ____strftime____,
36797         ____strfmon____): New macros.
36798         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
36799         REPLACE_PRINTF.
36800
36801 2007-03-09  Bruno Haible  <bruno@clisp.org>
36802
36803         * tests/test-vasnprintf-posix2.sh: New file.
36804         * tests/test-vasnprintf-posix2.c: New file.
36805         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
36806         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
36807         (Makefile.am): Activate test-vasnprintf-posix2.sh.
36808
36809         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
36810         a locale dependent decimal point, rather than always '.'.
36811
36812 2007-03-09  Eric Blake  <ebb9@byu.net>
36813
36814         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
36815         spite of platforms like Tandem/NSK that define it to -1.
36816
36817 2007-03-08  Bruno Haible  <bruno@clisp.org>
36818
36819         * modules/vprintf-posix-tests: New file.
36820         * tests/test-vprintf-posix.sh: New file.
36821         * tests/test-vprintf-posix.c: New file.
36822         * tests/test-printf-posix.h: New file.
36823
36824         * modules/vprintf-posix: New file.
36825         * lib/vprintf.c: New file.
36826         * m4/vprintf-posix.m4: New file.
36827         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
36828         REPLACE_VPRINTF.
36829         * lib/stdio_.h (vprintf): New declaration.
36830         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
36831         REPLACE_VPRINTF.
36832
36833 2007-03-08  Bruno Haible  <bruno@clisp.org>
36834
36835         * modules/fprintf-posix-tests: New file.
36836         * tests/test-fprintf-posix.sh: New file.
36837         * tests/test-fprintf-posix.c: New file.
36838
36839         * modules/fprintf-posix: New file.
36840         * lib/fprintf.c: New file.
36841         * m4/fprintf-posix.m4: New file.
36842         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
36843         REPLACE_FPRINTF.
36844         * lib/stdio_.h (fprintf): New declaration.
36845         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
36846         REPLACE_FPRINTF.
36847
36848 2007-03-08  Bruno Haible  <bruno@clisp.org>
36849
36850         * modules/vfprintf-posix-tests: New file.
36851         * tests/test-vfprintf-posix.sh: New file.
36852         * tests/test-vfprintf-posix.c: New file.
36853         * tests/test-fprintf-posix.h: New file.
36854         * tests/test-fprintf-posix.out: New file.
36855
36856         * modules/vfprintf-posix: New file.
36857         * lib/vfprintf.c: New file.
36858         * m4/vfprintf-posix.m4: New file.
36859         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
36860         REPLACE_VFPRINTF.
36861         * lib/stdio_.h (vfprintf): New declaration.
36862         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
36863         REPLACE_VFPRINTF.
36864
36865 2007-03-08  Bruno Haible  <bruno@clisp.org>
36866
36867         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
36868
36869 2007-03-08  Bruno Haible  <bruno@clisp.org>
36870
36871         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
36872         instead of 'expr' invocations.
36873         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
36874         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
36875         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
36876         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
36877         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
36878         Suggested by Paul Eggert.
36879
36880 2007-03-08  Bruno Haible  <bruno@clisp.org>
36881
36882         * modules/fseterr-tests: New file.
36883         * tests/test-fseterr.c: New file.
36884
36885         * modules/fseterr: New file.
36886         * lib/fseterr.h: New file.
36887         * lib/fseterr.c: New file.
36888
36889 2007-03-08  Bruno Haible  <bruno@clisp.org>
36890
36891         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
36892         * lib/getopt_.h: Likewise.
36893         * lib/mbswidth.h: Likewise.
36894         * lib/setenv.h: Likewise.
36895         * lib/vasnprintf.h: Likewise.
36896         * lib/vasprintf.h: Likewise.
36897         * lib/verror.h: Likewise.
36898         * lib/xsetenv.h: Likewise.
36899         * lib/xvasprintf.h: Likewise.
36900
36901 2007-03-08  Jim Meyering  <jim@meyering.net>
36902
36903         * users.txt: Add parted.
36904
36905         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
36906
36907 2007-03-07  Bruno Haible  <bruno@clisp.org>
36908
36909         * m4/printf.m4: Make the shell script snippets copy&pastable.
36910
36911 2007-03-02  Bruno Haible  <bruno@clisp.org>
36912
36913         * lib/netinet_in_.h: New file.
36914         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
36915         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
36916         * modules/netinet_in (Files): Add lib/netinet_in_.h.
36917         (Depends-on): Add absolute-header.
36918         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
36919         into netinet/in.h.
36920
36921 2007-03-03  Bruno Haible  <bruno@clisp.org>
36922
36923         * lib/sys_select_.h: New file.
36924         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
36925         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
36926         * modules/sys_select (Files): Add lib/sys_select_.h.
36927         (Depends-on): Add absolute-header.
36928         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
36929         into sys/select.h.
36930
36931 2007-03-02  Bruno Haible  <bruno@clisp.org>
36932
36933         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
36934         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
36935         values.
36936         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
36937         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
36938         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
36939         * modules/sys_socket (Depends-on): Add absolute-header.
36940         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
36941         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
36942         (Include): Remove requirement of inclusion of <sys/types.h>.
36943
36944 2007-03-02  Bruno Haible  <bruno@clisp.org>
36945
36946         * lib/byteswap_.h (bswap_32): Fix formula.
36947
36948 2007-03-06  Bruno Haible  <bruno@clisp.org>
36949
36950         * modules/sprintf-posix-tests: New file.
36951         * tests/test-sprintf-posix.c: New file.
36952
36953         * modules/sprintf-posix: New file.
36954         * lib/sprintf.c: New file.
36955         * m4/sprintf-posix.m4: New file.
36956         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
36957         REPLACE_SPRINTF.
36958         * lib/stdio_.h (sprintf): New declaration.
36959         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
36960         REPLACE_SPRINTF.
36961
36962 2007-03-06  Bruno Haible  <bruno@clisp.org>
36963
36964         * modules/vsprintf-posix-tests: New file.
36965         * tests/test-vsprintf-posix.c: New file.
36966         * tests/test-sprintf-posix.h: New file.
36967
36968         * modules/vsprintf-posix: New file.
36969         * lib/vsprintf.c: New file.
36970         * m4/vsprintf-posix.m4: New file.
36971         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
36972         REPLACE_VSPRINTF.
36973         * lib/stdio_.h (vsprintf): New declaration.
36974         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
36975         REPLACE_VSPRINTF.
36976
36977 2007-03-06  Bruno Haible  <bruno@clisp.org>
36978
36979         * modules/vsnprintf (Depend-on): Remove minmax.
36980
36981 2007-03-06  Bruno Haible  <bruno@clisp.org>
36982
36983         * modules/snprintf-posix-tests: New file.
36984         * tests/test-snprintf-posix.c: New file.
36985
36986         * modules/snprintf-posix: New file.
36987         * m4/snprintf-posix.m4: New file.
36988         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
36989         gl_FUNC_SNPRINTF.
36990         (gl_FUNC_SNPRINTF): Invoke it.
36991         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
36992         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
36993         is set.
36994         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
36995
36996 2007-03-06  Bruno Haible  <bruno@clisp.org>
36997
36998         * modules/vsnprintf-posix-tests: New file.
36999         * tests/test-vsnprintf-posix.c: New file.
37000         * tests/test-snprintf-posix.h: New file.
37001
37002         * modules/vsnprintf-posix: New file.
37003         * m4/vsnprintf-posix.m4: New file.
37004         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
37005         gl_FUNC_VSNPRINTF.
37006         (gl_FUNC_VSNPRINTF): Invoke it.
37007         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
37008         * lib/stdio_.h (vsnprintf): Define as a replacement if
37009         REPLACE_VSNPRINTF is set.
37010         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
37011
37012 2007-03-06  Bruno Haible  <bruno@clisp.org>
37013
37014         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
37015         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
37016
37017 2007-03-06  Bruno Haible  <bruno@clisp.org>
37018
37019         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
37020         (asinl): Declare also if HAVE_DECL_ASINL is set.
37021         (atanl): Declare also if HAVE_DECL_ATANL is set.
37022         (ceill): Declare also if HAVE_DECL_CEILL is set.
37023         (cosl): Declare also if HAVE_DECL_COSL is set.
37024         (expl): Declare also if HAVE_DECL_EXPL is set.
37025         (floorl): Declare also if HAVE_DECL_FLOORL is set.
37026         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
37027         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
37028         (logl): Declare also if HAVE_DECL_LOGL is set.
37029         (sinl): Declare also if HAVE_DECL_SINL is set.
37030         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
37031         (tanl): Declare also if HAVE_DECL_TANL is set.
37032         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
37033         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
37034         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
37035         declaration of frexpl, ldexpl.
37036         * modules/printf-frexpl (Depends-on): Add math.
37037         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
37038
37039 2007-03-05  Bruno Haible  <bruno@clisp.org>
37040
37041         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
37042         frexpl and ldexpl are declared.
37043         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
37044
37045 2007-03-05  Bruno Haible  <bruno@clisp.org>
37046
37047         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
37048         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
37049
37050 2007-03-05  Bruno Haible  <bruno@clisp.org>
37051
37052         * lib/stdio_.h: Include <stddef.h>.
37053
37054 2007-03-05  Bruno Haible  <bruno@clisp.org>
37055
37056         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
37057
37058 2007-03-05  Bruno Haible  <bruno@clisp.org>
37059
37060         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
37061         NetBSD 4, from Ralf Wildenhues.
37062
37063 2007-03-04  Bruno Haible  <bruno@clisp.org>
37064
37065         * lib/vasprintf.h: Update #if logic for the case when the functions
37066         exist but are overridden.
37067
37068 2007-03-04  Bruno Haible  <bruno@clisp.org>
37069
37070         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
37071         implementations: glibc-2.4 and MacOS X 10.3.
37072         * tests/test-vasnprintf-posix.c (test_function): Test also the case
37073         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
37074         * tests/test-vasprintf-posix.c (test_function): Likewise.
37075
37076 2007-03-04  Bruno Haible  <bruno@clisp.org>
37077
37078         * modules/vasprintf-posix-tests: New file.
37079         * tests/test-vasprintf-posix.c: New file.
37080
37081         * modules/vasprintf-posix: New file.
37082         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
37083         defined.
37084         * m4/vasprintf-posix.m4: New file.
37085         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
37086         gl_FUNC_VASPRINTF.
37087         (gl_FUNC_VASPRINTF): Invoke it.
37088         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
37089         here.
37090         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
37091
37092 2007-03-04  Bruno Haible  <bruno@clisp.org>
37093
37094         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
37095         REPLACE_GETTIMEOFDAY.
37096         * modules/sys_time (Makefile.am): Likewise.
37097         * m4/sys_time_h.m4: Likewise.
37098         * m4/gettimeofday.m4: Likewise.
37099
37100 2007-03-04  Bruno Haible  <bruno@clisp.org>
37101
37102         * modules/vasnprintf-posix-tests: New file.
37103         * tests/test-vasnprintf-posix.c: New file.
37104
37105         * modules/vasnprintf-posix: New file.
37106         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
37107         printf-frexpl.h.
37108         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
37109         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
37110         REPLACE_VASNPRINTF is defined.
37111         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
37112         gl_FUNC_VASNPRINTF.
37113         (gl_FUNC_VASNPRINTF): Invoke it.
37114         * m4/vasnprintf-posix.m4: New file.
37115         * m4/printf.m4: New file.
37116
37117 2007-03-04  Bruno Haible  <bruno@clisp.org>
37118
37119         Compile progreloc.c only if --enable-relocatable is specified.
37120         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
37121         if --enable-relocatable was specified.
37122         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
37123         lib_SOURCES.
37124
37125 2007-03-04  Jim Meyering  <jim@meyering.net>
37126
37127         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
37128         Use it consistently, rather than enumerating errno constants.
37129
37130 2007-03-04  Bruno Haible  <bruno@clisp.org>
37131
37132         * modules/xvasprintf-tests: New file.
37133         * tests/test-xvasprintf.c: New file.
37134
37135         * modules/vasprintf-tests: New file.
37136         * tests/test-vasprintf.c: New file.
37137
37138         * modules/vasnprintf-tests: New file.
37139         * tests/test-vasnprintf.c: New file.
37140
37141         * modules/vsnprintf-tests: New file.
37142         * tests/test-vsnprintf.c: New file.
37143
37144         * modules/snprintf-tests: New file.
37145         * tests/test-snprintf.c: New file.
37146
37147 2007-03-04  Bruno Haible  <bruno@clisp.org>
37148
37149         Compile relocatable.c only if --enable-relocatable is specified.
37150         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
37151         gl_RELOCATABLE_LIBRARY.
37152         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
37153         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
37154         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
37155         gl_RELOCATABLE_LIBRARY.
37156         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
37157         (Makefile.am): Remove lib_SOURCES.
37158         * modules/relocatable-lib-lgpl (configure.ac): Invoke
37159         gl_RELOCATABLE_LIBRARY.
37160         (Makefile.am): Remove lib_SOURCES.
37161         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
37162         always.
37163         * modules/relocatable-prog-wrapper (configure.ac): Invoke
37164         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
37165
37166 2007-03-04  Bruno Haible  <bruno@clisp.org>
37167
37168         * modules/argmatch-tests: New file.
37169         * tests/test-argmatch.c: New file.
37170
37171         * tests/test-allocsa.c (main): Halve the number of loop runs.
37172
37173         * modules/alloca-opt-tests: New file.
37174         * tests/test-alloca-opt.c: New file.
37175
37176 2007-03-04  Jim Meyering  <jim@meyering.net>
37177
37178         Work around difference between Linux ACLs and Solaris 10 ZFS.
37179         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
37180         for EINVAL.
37181
37182 2007-03-03  Bruno Haible  <bruno@clisp.org>
37183
37184         * modules/relocatable-prog (Depends-on): Add back progreloc's
37185         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
37186
37187 2007-03-03  Bruno Haible  <bruno@clisp.org>
37188
37189         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
37190         * modules/relocatable-lib: New file.
37191
37192 2007-03-03  Bruno Haible  <bruno@clisp.org>
37193
37194         * modules/relocatable-prog: Renamed from modules/relocatable.
37195         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
37196
37197 2007-03-03  Bruno Haible  <bruno@clisp.org>
37198
37199         * modules/relocatable-script (Files): Add doc/relocatable.texi,
37200         m4/relocatable-lib.m4.
37201         (Depends-on): Remove 'relocatable'.
37202         (configure.ac): Add gl_RELOCATABLE_NOP.
37203
37204 2007-03-03  Bruno Haible  <bruno@clisp.org>
37205
37206         * modules/relocatable-prog-wrapper: New file.
37207         * modules/relocatable (Depends-on): Add it. Remove all other
37208         dependencies except progname.
37209         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
37210
37211         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
37212         (gl_FUNC_STRERROR): Nop.
37213         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
37214
37215         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
37216         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
37217
37218         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
37219         (gl_FUNC_READLINK): Update.
37220
37221         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
37222
37223 2007-03-03  Bruno Haible  <bruno@clisp.org>
37224
37225         * lib/xreadlink.c: Include <unistd.h> unconditionally.
37226         * modules/xreadlink (Depends-on): Add unistd.
37227         * modules/xreadlink-with-size (Depends-on): Likewise.
37228
37229 2007-03-03  Bruno Haible  <bruno@clisp.org>
37230
37231         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
37232         extracted from gt_FUNC_SETENV.
37233         (gt_FUNC_SETENV): Remove macro.
37234         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
37235         remove gt_FUNC_SETENV.
37236
37237 2007-03-03  Bruno Haible  <bruno@clisp.org>
37238
37239         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
37240         ENABLE_RELOCATABLE here.
37241         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
37242
37243 2007-03-03  Bruno Haible  <bruno@clisp.org>
37244
37245         * modules/rbtreehash-list-tests (Depends-on): Add progname.
37246         * tests/test-rbtreehash_list.c: Include progname.h.
37247         (main): Call set_program_name.
37248
37249         * modules/rbtree-oset-tests (Depends-on): Add progname.
37250         * tests/test-rbtree_oset.c: Include progname.h.
37251         (main): Call set_program_name.
37252
37253         * modules/rbtree-list-tests (Depends-on): Add progname.
37254         * tests/test-rbtree_list.c: Include progname.h.
37255         (main): Call set_program_name.
37256
37257         * modules/linked-list-tests (Depends-on): Add progname.
37258         * tests/test-linked_list.c: Include progname.h.
37259         (main): Call set_program_name.
37260
37261 2007-03-03  Bruno Haible  <bruno@clisp.org>
37262
37263         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
37264         All uses of __restrict changed to _Restrict_.
37265         * lib/glob_.h (__restrict): Remove macro.
37266
37267 2007-03-02  Bruno Haible  <bruno@clisp.org>
37268
37269         * modules/gettext (configure.ac): Require gettext infrastructure
37270         from version 0.16.1.
37271
37272 2007-03-02  Bruno Haible  <bruno@clisp.org>
37273
37274         * modules/linkedhash-list-tests (Depends-on): Add progname.
37275         * tests/test-linkedhash_list.c: Include progname.h.
37276         (main): Call set_program_name.
37277
37278         * modules/carray-list-tests (Depends-on): Add progname.
37279         * tests/test-carray_list.c: Include progname.h.
37280         (main): Call set_program_name.
37281
37282         * modules/avltreehash-list-tests (Depends-on): Add progname.
37283         * tests/test-avltreehash_list.c: Include progname.h.
37284         (main): Call set_program_name.
37285
37286         * modules/avltree-oset-tests (Depends-on): Add progname.
37287         * tests/test-avltree_oset.c: Include progname.h.
37288         (main): Call set_program_name.
37289
37290         * modules/avltree-list-tests (Depends-on): Add progname.
37291         * tests/test-avltree_list.c: Include progname.h.
37292         (main): Call set_program_name.
37293
37294         * modules/array-oset-tests (Depends-on): Add progname.
37295         * tests/test-array_oset.c: Include progname.h.
37296         (main): Call set_program_name.
37297
37298         * modules/array-list-tests (Depends-on): Add progname.
37299         * tests/test-array_list.c: Include progname.h.
37300         (main): Call set_program_name.
37301
37302         * modules/argp-tests (Depends-on): Add progname.
37303         * tests/test-argp.c: Include argp.h first. Include progname.h.
37304         (main): Call set_program_name.
37305
37306 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
37307
37308         * doc/gnulib-tool.texi (Initial import): Reword description of
37309         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
37310         limited effect even if defined after the first system include.
37311
37312 2007-03-01  Bruno Haible  <bruno@clisp.org>
37313
37314         * build-aux/config.libpath: Update to libtool-1.5.22.
37315         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
37316
37317 2007-03-01  Bruno Haible  <bruno@clisp.org>
37318
37319         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
37320         foo_CFLAGS.
37321         Reported by Ralf Wildenhues.
37322
37323 2007-03-01  Bruno Haible  <bruno@clisp.org>
37324
37325         * build-aux/install-reloc: Remove object files left over by some
37326         compilers.
37327         Reported by Ralf Wildenhues.
37328
37329 2007-03-01  Bruno Haible  <bruno@clisp.org>
37330
37331         * build-aux/install-reloc: Break long lines.
37332
37333 2007-03-01  Bruno Haible  <bruno@clisp.org>
37334
37335         * doc/relocatable.texi: Document that it may not work on OpenBSD.
37336         Reported by Ralf Wildenhues.
37337
37338 2007-03-01  Bruno Haible  <bruno@clisp.org>
37339
37340         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
37341         include ordering constraints.
37342
37343 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
37344
37345         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
37346         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
37347         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
37348         as another example.
37349         * lib/time_.h: Fix misspelling.
37350         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
37351         Require gl_HEADER_TIME_H_DEFAULTS.
37352         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
37353         * m4/time_r.m4 (gl_TIME_R): Likewise.
37354         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
37355
37356 2007-03-01  Bruno Haible  <bruno@clisp.org>
37357
37358         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
37359         * m4/utimens.m4 (gl_UTIMENS): Likewise.
37360
37361 2007-03-01  Jim Meyering  <jim@meyering.net>
37362
37363         * modules/xreadlink (Maintainer): Add my name.
37364         * modules/xreadlink-with-size (Depends-on): Alphabetize.
37365
37366 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
37367             Bruno Haible  <bruno@clisp.org>
37368
37369         * build-aux/install-reloc: Compile also c-ctype.c.
37370         * build-aux/relocatable.sh.in: New file.
37371         * doc/relocatable.texi: New file.
37372         * doc/relocatable-maint.texi: New file.
37373         * doc/gnulib.texi: Include relocatable-maint.texi.
37374         * lib/progreloc.c: Include unistd.h unconditionally.
37375         * lib/relocwrapper.c: Include unistd.h unconditionally.
37376         Include c-ctype.h.
37377         (add_dotbin): Use c_tolower.
37378         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
37379         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
37380         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
37381         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
37382         to m4/relocatable-lib.m4.
37383         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
37384         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
37385         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
37386         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
37387         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
37388         * modules/relocatable: New file.
37389         * modules/relocatable-lib: New file.
37390         * modules/relocatable-script: New file.
37391
37392 2007-02-28  Bruno Haible  <bruno@clisp.org>
37393
37394         Import --enable-relocatable infrastructure.
37395         * build-aux/config.libpath: New file, from GNU gettext.
37396         * build-aux/install-reloc: New file, from GNU gettext.
37397         * build-aux/reloc-ldflags: New file, from GNU gettext.
37398         * lib/relocatable.h: New file, from GNU gettext.
37399         * lib/relocatable.c: New file, from GNU gettext.
37400         * lib/relocwrapper.c: New file, from GNU gettext.
37401         * m4/relocatable.m4: New file, from GNU gettext.
37402
37403 2007-02-28  Bruno Haible  <bruno@clisp.org>
37404
37405         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
37406
37407         * modules/xreadlink: New file, from GNU gettext with modifications.
37408         * lib/xreadlink.c: New file, from GNU gettext.
37409         * lib/xreadlink.h: Add comments.
37410         (xreadlink): New declaration.
37411
37412         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
37413         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
37414         lib/xreadlink-with-size.c.
37415         (configure.ac): Remove gl_XREADLINK invocation.
37416         (Makefile.am): Augment lib_SOURCES.
37417         * m4/xreadlink.m4: Remove file.
37418         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
37419         (xreadlink_with_size): Renamed from xreadink.
37420         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
37421         * modules/canonicalize (Depends-on): Replace xreadlink with
37422         xreadlink-with-size.
37423         * lib/canonicalize.c (canonicalize_filename_mode): Update.
37424
37425 2007-02-25  Jim Meyering  <jim@meyering.net>
37426
37427         * build-aux/announce-gen: When complaining about excess arguments,
37428         list them.
37429
37430 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
37431
37432         * README: Document signed integer overflow situation more
37433         accurately.
37434
37435 2007-02-25  Bruno Haible  <bruno@clisp.org>
37436
37437         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
37438         'a' or 'A' conversion.
37439
37440 2007-02-25  Bruno Haible  <bruno@clisp.org>
37441
37442         * modules/filename: Renamed from modules/pathname.
37443         (Files): Replace lib/pathname.h with lib/filename.h. Replace
37444         lib/concatpath.c with lib/concat-filename.c.
37445         (Makefile.am): Update.
37446         (Include): Replace pathname.h with filename.h.
37447         * lib/filename.h: Renamed from lib/pathname.h.
37448         (concatenated_filename): Renamed from concatenated_pathname.
37449         * lib/concat-filename.c: Renamed from lib/concatpath.c.
37450         (concatenated_filename): Renamed from concatenated_pathname.
37451         * lib/findprog.c: Include filename.h instead of pathname.h.
37452         (find_in_path): Update.
37453         * lib/javacomp.c: Include filename.h instead of pathname.h.
37454         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
37455         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
37456         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
37457         is_oldgcj_14_13_usable, is_javac_usable): Update.
37458         * lib/javaexec.c: Include filename.h instead of pathname.h.
37459         (execute_java_class): Update.
37460         * modules/findprog: Update.
37461         * modules/javacomp: Update.
37462         * modules/javaexec: Update.
37463         * MODULES.html.sh (File system functions): Add 'filename', remove
37464         'pathname'.
37465
37466 2007-02-25  Bruno Haible  <bruno@clisp.org>
37467
37468         * modules/printf-frexpl-tests: New file.
37469         * tests/test-printf-frexpl.c: New file.
37470
37471         * modules/printf-frexpl: New file.
37472         * lib/printf-frexpl.h: New file.
37473         * lib/printf-frexpl.c: New file.
37474         * m4/printf-frexpl.m4: New file.
37475
37476 2007-02-25  Bruno Haible  <bruno@clisp.org>
37477
37478         * modules/printf-frexp-tests: New file.
37479         * tests/test-printf-frexp.c: New file.
37480
37481         * modules/printf-frexp: New file.
37482         * lib/printf-frexp.h: New file.
37483         * lib/printf-frexp.c: New file.
37484         * m4/printf-frexp.m4: New file.
37485
37486 2007-02-25  Bruno Haible  <bruno@clisp.org>
37487
37488         Assume automake >= 1.10 for the tests.
37489         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
37490         * modules/arctwo-tests: Likewise.
37491         * modules/argp-tests: Likewise.
37492         * modules/avltree-list-tests: Likewise.
37493         * modules/avltree-oset-tests: Likewise.
37494         * modules/avltreehash-list-tests: Likewise.
37495         * modules/carray-list-tests: Likewise.
37496         * modules/crc-tests: Likewise.
37497         * modules/des-tests: Likewise.
37498         * modules/gc-arcfour-tests: Likewise.
37499         * modules/gc-arctwo-tests: Likewise.
37500         * modules/gc-des-tests: Likewise.
37501         * modules/gc-hmac-md5-tests: Likewise.
37502         * modules/gc-hmac-sha1-tests: Likewise.
37503         * modules/gc-md2-tests: Likewise.
37504         * modules/gc-md4-tests: Likewise.
37505         * modules/gc-md5-tests: Likewise.
37506         * modules/gc-pbkdf2-sha1-tests: Likewise.
37507         * modules/gc-rijndael-tests: Likewise.
37508         * modules/gc-sha1-tests: Likewise.
37509         * modules/gc-tests: Likewise.
37510         * modules/getaddrinfo-tests: Likewise.
37511         * modules/hmac-md5-tests: Likewise.
37512         * modules/hmac-sha1-tests: Likewise.
37513         * modules/linked-list-tests: Likewise.
37514         * modules/linkedhash-list-tests: Likewise.
37515         * modules/lock-tests: Likewise.
37516         * modules/md2-tests: Likewise.
37517         * modules/md4-tests: Likewise.
37518         * modules/md5-tests: Likewise.
37519         * modules/rbtree-list-tests: Likewise.
37520         * modules/rbtree-oset-tests: Likewise.
37521         * modules/rbtreehash-list-tests: Likewise.
37522         * modules/read-file-tests: Likewise.
37523         * modules/rijndael-tests: Likewise.
37524         * modules/stdint-tests: Likewise.
37525         * modules/tls-tests: Likewise.
37526
37527 2007-02-24  Bruno Haible  <bruno@clisp.org>
37528
37529         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
37530         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
37531         function; instead check whether isnan with a double argument links.
37532         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
37533         function; instead check whether isnan with a 'long double' argument
37534         links.
37535         Reported by Eric Blake <ebb9@byu.net>.
37536
37537 2007-02-24  Bruno Haible  <bruno@clisp.org>
37538
37539         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
37540         defined.
37541         * lib/isnanl.c: Remove all code. Just include isnan.c.
37542         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
37543
37544 2007-02-25  Jim Meyering  <jim@meyering.net>
37545
37546         Avoid conflicting types for 'unsetenv' on FreeBSD.
37547         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
37548         conflicting with FreeBSD's (5.0 and 6.1) function declaration
37549         in stdlib.h.
37550
37551 2007-02-24  Bruno Haible  <bruno@clisp.org>
37552
37553         * modules/isnanl-nolibm-tests: New file.
37554         * tests/test-isnanl.c: New file.
37555
37556         * modules/isnanl-nolibm: New file.
37557         * lib/isnanl.h: New file.
37558         * lib/isnanl.c: New file.
37559         * m4/isnanl.m4: New file.
37560
37561 2007-02-24  Bruno Haible  <bruno@clisp.org>
37562
37563         * modules/isnan-nolibm-tests: New file.
37564         * tests/test-isnan.c: New file.
37565
37566         * modules/isnan-nolibm: New file.
37567         * lib/isnan.h: New file.
37568         * lib/isnan.c: New file.
37569         * m4/isnan.m4: New file.
37570
37571 2007-02-24  Bruno Haible  <bruno@clisp.org>
37572
37573         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
37574         assume that an exponent fits in 20 bits.
37575
37576 2007-02-24  Jim Meyering  <jim@meyering.net>
37577
37578         * m4/regex.m4: Update the description of the configure-time option,
37579         --without-included-regex, to state accurately what the defaults are,
37580         and perhaps to give people an idea why using this option is risky.
37581
37582 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
37583
37584         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
37585         loops on small arguments.  This attempts to avoid the problem
37586         Bruno Haible reported for AIX 4.3.2 in
37587         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
37588
37589 2007-02-23  Bruno Haible  <bruno@clisp.org>
37590
37591         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
37592         Needed for help2man.
37593
37594 2007-02-23  Karl Berry  <karl@gnu.org>
37595
37596         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
37597         exists, foo.h should be cvs-ignored, not committed.
37598
37599 2007-02-23  Eric Blake  <ebb9@byu.net>
37600
37601         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
37602         * lib/stat-time.h (includes): Likewise.
37603         * lib/utimecmp.c (includes): Likewise.
37604         * lib/utimens.h (includes): Likewise.
37605         * lib/getdate.y (includes): Also include "timespec.h" for use
37606         internal to the module.
37607         * modules/utimens (Depends-on): Revert yesterday's patch.
37608         * modules/nanosleep (Depends-on): Add missing dependency.
37609
37610 2007-02-22  Bruno Haible  <bruno@clisp.org>
37611
37612         * lib/glob.c: Don't include getlogin_r.h.
37613
37614 2007-02-22  Jim Meyering  <jim@meyering.net>
37615
37616         * modules/utimens (Depends-on): Add timespec, required for
37617         utimens.h's inclusion of timespec.h.
37618
37619 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
37620
37621         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
37622         long unreadable paths in GNU/Linux.  Problem reported by Andreas
37623         Schwab in
37624         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
37625         I'll try to think of a better way to fix the Solaris problem.
37626
37627         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
37628         like glibc; on Solaris 10, it fails with errno == EINVAL.
37629         POSIX says the behavior is unspecified if the first argument is NULL,
37630         so play it safe and never pass NULL to the system getcwd.
37631
37632 2007-02-21  Jim Meyering  <jim@meyering.net>
37633
37634         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
37635         of gettimeofday.  It would conflict with the one now always
37636         provided via sys_time_.h.  Reported by Matthew Woehlke, as
37637         an IRIX 6.5 build failure.
37638
37639 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
37640
37641         Minor fixups to port to Solaris 10 with Sun C 5.8.
37642         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
37643         * modules/getcwd (Depends-on): Add dirfd.
37644         * lib/putenv.c (putenv): #undef it.
37645         (rpl_putenv): New decl.
37646         (malloc, free): Include <stdlib.h> rather than prototyping separately.
37647
37648 2007-02-20  Bruno Haible  <bruno@clisp.org>
37649
37650         * modules/stdio-tests: New file.
37651         * tests/test-stdio.c: New file.
37652
37653         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
37654         (Depends-on): Add stdio.
37655         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
37656         (Include): Use <stdio.h> instead of vsnprintf.h.
37657         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
37658         HAVE_DECL_VSNPRINTF.
37659         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
37660
37661         * modules/snprintf (Files): Remove lib/snprintf.h.
37662         (Depends-on): Add stdio.
37663         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
37664         (Include): Use <stdio.h> instead of snprintf.h.
37665         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
37666         HAVE_DECL_SNPRINTF.
37667         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
37668         * lib/getaddrinfo.c: Likewise.
37669
37670         * modules/stdio: New file.
37671         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
37672         * lib/snprintf.h: Remove file.
37673         * lib/vsnprintf.h: Remove file.
37674         * lib/.cppi-disable: Remove snprintf.h.
37675         * m4/stdio_h.m4: New file.
37676         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
37677
37678 2007-02-20  Jim Meyering  <jim@meyering.net>
37679
37680         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
37681         used by e.g., mingw.  From Bruno Haible.
37682
37683 2007-02-19  Bruno Haible  <bruno@clisp.org>
37684
37685         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
37686         warnings.
37687         Reported by Ben Pfaff <blp@cs.stanford.edu>.
37688
37689 2007-02-19  Bruno Haible  <bruno@clisp.org>
37690
37691         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
37692         from mingw users.
37693
37694 2007-02-19  Bruno Haible  <bruno@clisp.org>
37695
37696         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
37697         warnings.
37698         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
37699
37700 2007-02-19  Jim Meyering  <jim@meyering.net>
37701
37702         Don't use FD after a successful "fdopendir (fd)".
37703         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
37704         Reset it by calling dirfd on the just-obtained DIR*.
37705
37706         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
37707         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
37708
37709 2007-02-18  Bruno Haible  <bruno@clisp.org>
37710
37711         * lib/readlink.c: Include <unistd.h>.
37712         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
37713         HAVE_READLINK.
37714         * modules/readlink (Depends-on): Add unistd.
37715         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37716         (Include): Add <unistd.h>.
37717
37718         * lib/getlogin_r.h: Remove file.
37719         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
37720         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
37721         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
37722         HAVE_DECL_GETLOGIN_R.
37723         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
37724         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37725         (Include): Use <unistd.h> instead of getlogin_r.h.
37726
37727         * lib/getcwd.h: Remove file.
37728         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
37729         * lib/xgetcwd.c: Likewise.
37730         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
37731         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
37732         * modules/getcwd (Files): Remove lib/getcwd.h.
37733         (Depends-on): Add unistd.
37734         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37735         (Include): Use <unistd.h> instad of getcwd.h.
37736
37737         * lib/ftruncate.c: Include <unistd.h> first.
37738         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
37739         Set HAVE_FTRUNCATE.
37740         * modules/ftruncate (Depends-on): Add unistd.
37741         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37742
37743         * lib/fchdir.c: Include <unistd.h> first.
37744         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
37745         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
37746         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
37747         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37748         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
37749
37750         * lib/dup2.c: Include <unistd.h> first.
37751         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
37752         HAVE_DUP2.
37753         * modules/dup2 (Depends-on): Add unistd.
37754         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37755
37756         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
37757         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
37758         REPLACE_CHOWN. Don't define chown as a macro here.
37759         * modules/chown (Depends-on): Add unistd.
37760         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37761
37762         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
37763         Add definition for GL_LINK_WARNING.
37764         (chown, dup2): New declarations.
37765         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
37766         link warning.
37767         (ftruncate): New declaration.
37768         (getcwd): New declaration, taken from old getcwd.h.
37769         (getlogin_r): New declaration, taken from old getlogin_r.h.
37770         (readlink): New declaration.
37771         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
37772         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
37773         (gl_PREREQ_UNISTD): Remove macro.
37774         (gl_UNISTD_MODULE_INDICATOR): New macro.
37775         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
37776         many new variables. Don't set UNISTD_H.
37777         * modules/unistd (Description): Change.
37778         (Depends-on): Add link-warning.
37779         (configure.ac): Update.
37780         (Makefile.am): Create unistd.h always. Substitute many new variables
37781         into it.
37782
37783 2007-02-18  Bruno Haible  <bruno@clisp.org>
37784
37785         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
37786         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
37787         HAVE_GETSUBOPT.
37788         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
37789         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
37790         * lib/getsubopt.h: Remove file.
37791         * modules/getsubopt (Files): Remove lib/getsubopt.h.
37792         (Depends-on): Add stdlib.
37793         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
37794         (Includes): Use <stdlib.h> instead of getsubopt.h.
37795         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
37796         Set HAVE_GETSUBOPT.
37797         * lib/getsubopt.c: Don't include getsubopt.h.
37798
37799 2007-02-18  Bruno Haible  <bruno@clisp.org>
37800
37801         * modules/fchdir (Depends-on): Add dup2.
37802
37803 2007-02-18  Bruno Haible  <bruno@clisp.org>
37804
37805         * lib/stdlib_.h: Handle glibc's special invocation convention
37806         specially.
37807
37808 2007-02-18  Bruno Haible  <bruno@clisp.org>
37809
37810         * modules/stdlib-tests: New file.
37811         * tests/test-stdlib.c: New file.
37812
37813         * modules/mkstemp (Files): Remove lib/mkstemp.h.
37814         (Depends-on): Add stdlib.
37815         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
37816         (Includes): Use <stdlib.h> instead of mkstemp.h.
37817         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
37818         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
37819         * lib/mkstemp.c: Don't include mkstemp.h.
37820         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
37821         * lib/stdlib--.h: Don't include mkstemp.h.
37822
37823         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
37824         (Depends-on): Add stdlib.
37825         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
37826         (Includes): Use <stdlib.h> instead of mkdtemp.h.
37827         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
37828         HAVE_MKDTEMP.
37829         * lib/mkdtemp.c: Don't include mkdtemp.h.
37830         * lib/clean-temp.c: Don't include mkdtemp.h.
37831
37832         * modules/exit (Files): Remove lib/exit.h.
37833         (Depends-on): Add stdlib.
37834         (Makefile.am): Remove lib_SOURCES.
37835         (Include): Use <stdlib.h> instead of exit.h.
37836         * lib/argmatch.c: Don't include exit.h.
37837         * lib/execute.c: Likewise.
37838         * lib/pagealign_alloc.c: Likewise.
37839         * lib/pipe.c: Likewise.
37840         * lib/wait-process.c: Likewise.
37841         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
37842         * lib/exitfail.c: Likewise.
37843         * lib/savewd.c: Likewise.
37844         * lib/xsetenv.c: Likewise.
37845
37846         * modules/stdlib: New file.
37847         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
37848         and extra comments about mkstemp().
37849         * lib/exit.h: Remove file.
37850         * lib/mkdtemp.h: Remove file.
37851         * lib/mkstemp.h: Remove file.
37852         * m4/stdlib_h.m4: New file.
37853         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
37854
37855 2007-02-18  Bruno Haible  <bruno@clisp.org>
37856
37857         * modules/math-tests: New file.
37858         * tests/test-math.c: New file.
37859
37860         * modules/math: New file.
37861         * modules/mathl (Files): Remove lib/mathl.h.
37862         (Depends-on): Add math.
37863         (Makefile.am): Don't mention mathl.h.
37864         (Include): Use <math.h> instead of mathl.h.
37865         * lib/math_.h: New file.
37866         * lib/mathl.h: Remove file.
37867         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
37868         mathl.h.
37869         * lib/asinl.c: Likewise.
37870         * lib/atanl.c: Likewise.
37871         * lib/ceill.c: Likewise.
37872         * lib/cosl.c: Likewise.
37873         * lib/expl.c: Likewise.
37874         * lib/floorl.c: Likewise.
37875         * lib/frexpl.c: Likewise.
37876         * lib/ldexpl.c: Likewise.
37877         * lib/logl.c: Likewise.
37878         * lib/sincosl.c: Likewise.
37879         * lib/sinl.c: Likewise.
37880         * lib/sqrtl.c: Likewise.
37881         * lib/tanl.c: Likewise.
37882         * lib/trigl.c: Likewise.
37883         * m4/math_h.m4: New file.
37884         * MODULES.html.sh (Mathematics): Add math.
37885
37886 2007-02-17  Bruno Haible  <bruno@clisp.org>
37887
37888         * modules/wctype-tests: New file.
37889         * tests/test-wctype.c: New file.
37890
37891         * modules/wchar-tests: New file.
37892         * tests/test-wchar.c: New file.
37893
37894         * modules/unistd-tests: New file.
37895         * tests/test-unistd.c: New file.
37896
37897         * modules/time-tests: New file.
37898         * tests/test-time.c: New file.
37899
37900         * modules/sysexits-tests: New file.
37901         * tests/test-sysexits.c: New file.
37902
37903         * modules/sys_time-tests: New file.
37904         * tests/test-sys_time.c: New file.
37905
37906         * modules/sys_stat-tests: New file.
37907         * tests/test-sys_stat.c: New file.
37908
37909         * modules/sys_socket-tests: New file.
37910         * tests/test-sys_socket.c: New file.
37911
37912         * modules/sys_select-tests: New file.
37913         * tests/test-sys_select.c: New file.
37914
37915         * modules/string-tests: New file.
37916         * tests/test-string.c: New file.
37917
37918         * modules/stdbool-tests: New file.
37919         * tests/test-stdbool.c: New file.
37920
37921         * modules/netinet_in-tests: New file.
37922         * tests/test-netinet_in.c: New file.
37923
37924         * modules/inttypes-tests: New file.
37925         * tests/test-inttypes.c: New file.
37926
37927         * modules/fcntl-tests: New file.
37928         * tests/test-fcntl.c: New file.
37929
37930         * modules/byteswap-tests: New file.
37931         * tests/test-byteswap.c: New file.
37932
37933         * modules/arpa_inet-tests: New file.
37934         * tests/test-arpa_inet.c: New file.
37935
37936 2007-02-17  Bruno Haible  <bruno@clisp.org>
37937
37938         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
37939         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
37940         if the corresponding module is not enabled. Emit link warnings if
37941         the function is used nevertheless.
37942         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
37943         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
37944         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
37945         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
37946         * modules/inttypes (Depends-on): Add link-warning.
37947         (Makefile.am): Copy the contents of build-aux/link-warning.h into
37948         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
37949         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
37950         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
37951         * modules/imaxdiv (configure.ac): Likewise.
37952         * modules/strtoimax (configure.ac): Likewise.
37953         * modules/strtoumax (configure.ac): Likewise.
37954
37955 2007-02-17  Bruno Haible  <bruno@clisp.org>
37956
37957         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
37958         gl_STRING_MODULE_INDICATOR_DEFAULTS.
37959         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
37960         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
37961
37962 2007-02-17  Bruno Haible  <bruno@clisp.org>
37963
37964         * modules/link-warning: New file.
37965         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
37966         * lib/string_.h (GL_LINK_WARNING): Remove definition.
37967         * modules/string (Depends-on): Add link-warning.
37968         (Makefile.am): Copy the contents of build-aux/link-warning.h into
37969         string.h.
37970         * MODULES.html.sh (Support for building libraries and executables): Add
37971         link-warning.
37972
37973 2007-02-17  Bruno Haible  <bruno@clisp.org>
37974
37975         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
37976         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
37977         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
37978         long lines.
37979
37980 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
37981             Bruno Haible  <bruno@clisp.org>
37982
37983         * modules/tmpfile: New file.
37984         * lib/tmpfile.c: New file.
37985         * m4/tmpfile.m4: New file.
37986         * MODULES.html.sh (func_all_modules): New section "Input/output".
37987
37988 2007-02-15  Bruno Haible  <bruno@clisp.org>
37989
37990         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
37991         (supports_delete_on_close): New function.
37992         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
37993
37994 2007-02-14  Bruno Haible  <bruno@clisp.org>
37995
37996         * modules/mbspcasecmp-tests: New file.
37997         * tests/test-mbspcasecmp.sh: New file.
37998         * tests/test-mbspcasecmp.c: New file.
37999
38000         New module mbspcasecmp.
38001         * modules/mbspcasecmp: New file.
38002         * lib/mbspcasecmp.c: New file.
38003         * lib/string_.h (strncasecmp): Change warning message.
38004         (mbspcasecmp): New declaration.
38005         * m4/mbspcasecmp.m4: New file.
38006         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38007         GNULIB_MBSPCASECMP.
38008         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
38009         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
38010
38011 2007-02-14  Bruno Haible  <bruno@clisp.org>
38012
38013         * modules/mbsncasecmp-tests: New file.
38014         * tests/test-mbsncasecmp.sh: New file.
38015         * tests/test-mbsncasecmp.c: New file.
38016
38017         New module mbsncasecmp.
38018         * modules/mbsncasecmp: New file.
38019         * lib/mbsncasecmp.c: New file.
38020         * lib/string_.h (mbsncasecmp): New declaration.
38021         * m4/mbsncasecmp.m4: New file.
38022         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38023         GNULIB_MBSNCASECMP.
38024         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
38025         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
38026
38027 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
38028
38029         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
38030         Verify that it doesn't overlap with our flags.
38031         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
38032         do not have the desired effect in multibyte locales; instead, use
38033         mbscasecmp.
38034         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
38035         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
38036         we don't require GNU fnmatch ourselves (if our users require it, they
38037         should do so explicitly).
38038
38039         Fix regex code so it doesn't rely on strcasecmp.
38040         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
38041         Otherwise, include gnulib's langinfo.h.
38042         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
38043         undesirable behavior in non-C locales.  Instead, rely on localecharset.
38044         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
38045         * modules/regex (FILES): Remove m4/codeset.m4.
38046         (Depends-on): Add localcharset.  Remove strcase.
38047
38048 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38049
38050         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
38051         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
38052
38053 2007-02-13  Bruno Haible  <bruno@clisp.org>
38054
38055         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
38056         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38057
38058 2007-02-12  Bruno Haible  <bruno@clisp.org>
38059
38060         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
38061         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
38062         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
38063         time warning rather than a link error.
38064
38065 2007-02-12  Bruno Haible  <bruno@clisp.org>
38066
38067         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
38068         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
38069         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38070
38071 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
38072
38073         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
38074         args, not 2.
38075
38076 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
38077
38078         New module 'time', so that apps can include <time.h> as per
38079         POSIX and GNU instead of separate include files like time_r.h
38080         and timegm.h.  This implementation tries out a simpler approach
38081         for replacing decls in standard include files (as compared to
38082         the string module), somewhat as an experiment.
38083
38084         * config/srclist.txt: Comment out mktime.c for now.
38085         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
38086         since it doesn't apply any more.  Use generic wording instead.
38087         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
38088         'time'.
38089         * lib/time_.h, m4/time_h.m4, modules/time: New files.
38090         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
38091         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
38092         Don't include <sys/types.h>; no longer needed since we assume C89.
38093         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
38094         * lib/strftime.c: Likewise.
38095         * lib/time_r.c: Likewise.
38096         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
38097         * lib/nanosleep.c: Include <time.h> first, to check interface.
38098         * lib/strptime.c: Likewise.
38099         * lib/time_r.c: Likewise.
38100         * lib/timegm.c: Likewise.
38101         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
38102         needed.
38103         * lib/timegm.c: Don't include timegm.h; no longer needed.
38104         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
38105         time.h now handles any problems in that area.
38106         (struct timespec, nanosleep): Remove; time.h now arranges for these.
38107         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
38108         that time.h defines struct timespec.
38109         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
38110         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
38111         handles that.
38112         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
38113         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
38114         needed.  Set REPLACE_LOCALTIME.
38115         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
38116         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
38117         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
38118         nanosleep; time_h.m4 now does that.  Don't require
38119         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
38120         module handles this now.
38121         * modules/getdate (Depends-on): Remove timespec.  Add time.
38122         * modules/nanosleep (Depends-on): Likewise.
38123         * modules/stat-time (Depends-on): Likewise.
38124         * modules/nanosleep (Include): Include time.h, not timespec.h.
38125         * modules/strptime (Files): Remove lib/strptime.h.
38126         (Depends-on): Add extensions, time.
38127         (Include): Include time.h, not strptime.h.
38128         * modules/time_r (Files): Remove lib/time_r.h.
38129         (Depends-on): Add time.
38130         (Include): Include time.h, not time_r.h.
38131         * modules/timegm: Likewise.
38132         * modules/timespec (Description): Now does timespec-related decls
38133         of our own, instead of struct timespec itself.
38134         (Depends-on): Add time; remove extensions.
38135         (Maintainer): Add self.
38136         * modules/utimecmp (Depends-on): Add time; remove timespec.
38137         * modules/utimens (Depends-on): Likewise.
38138         * modules/xnanosleep (Depends-on): Likewise.
38139
38140 2007-02-11  Bruno Haible  <bruno@clisp.org>
38141
38142         * lib/c-strstr.c: Include allocsa.h.
38143         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38144         * lib/c-strcasestr.c: Include allocsa.h.
38145         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38146         * lib/strcasestr.c: Include allocsa.h.
38147         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38148         * lib/mbsstr.c: Include allocsa.h.
38149         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
38150         allocsa/freesa instead of malloc/free.
38151         * lib/mbscasestr.c: Include allocsa.h.
38152         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
38153         allocsa/freesa instead of malloc/free.
38154         * modules/c-strstr (Depends-on): Add allocsa.
38155         * modules/c-strcasestr (Depends-on): Likewise.
38156         * modules/strcasestr (Depends-on): Likewise.
38157         * modules/mbsstr (Depends-on): Likewise.
38158         * modules/mbscasestr (Depends-on): Likewise.
38159
38160 2007-02-11  Bruno Haible  <bruno@clisp.org>
38161
38162         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
38163
38164         * modules/mbsspn-tests: New file.
38165         * tests/test-mbsspn.sh: New file.
38166         * tests/test-mbsspn.c: New file.
38167
38168 2007-02-11  Bruno Haible  <bruno@clisp.org>
38169
38170         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
38171
38172         * modules/mbspbrk-tests: New file.
38173         * tests/test-mbspbrk.sh: New file.
38174         * tests/test-mbspbrk.c: New file.
38175
38176 2007-02-11  Bruno Haible  <bruno@clisp.org>
38177
38178         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
38179         unneeded cast.
38180
38181         * modules/mbscspn-tests: New file.
38182         * tests/test-mbscspn.sh: New file.
38183         * tests/test-mbscspn.c: New file.
38184
38185 2007-02-11  Bruno Haible  <bruno@clisp.org>
38186
38187         * modules/mbscasecmp-tests: New file.
38188         * tests/test-mbscasecmp.sh: New file.
38189         * tests/test-mbscasecmp.c: New file.
38190
38191 2007-02-11  Bruno Haible  <bruno@clisp.org>
38192
38193         Ensure O(n) worst-case complexity of mbscasestr.
38194         * lib/mbscasestr.c: Include stdbool.h.
38195         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
38196         functions.
38197         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
38198         the bookkeeping indicates that it's worth it.
38199         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
38200
38201         * modules/mbscasestr-tests: New file.
38202         * tests/test-mbscasestr1.c: New file.
38203         * tests/test-mbscasestr2.sh: New file.
38204         * tests/test-mbscasestr2.c: New file.
38205         * tests/test-mbscasestr3.sh: New file.
38206         * tests/test-mbscasestr3.c: New file.
38207         * tests/test-mbscasestr4.sh: New file.
38208         * tests/test-mbscasestr4.c: New file.
38209         * m4/locale-tr.m4: New file.
38210
38211 2007-02-11  Bruno Haible  <bruno@clisp.org>
38212
38213         Ensure O(n) worst-case complexity of mbsstr.
38214         * lib/mbsstr.c: Include stdbool.h.
38215         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
38216         functions.
38217         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
38218         bookkeeping indicates that it's worth it.
38219         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
38220
38221         * modules/mbsstr-tests: New file.
38222         * tests/test-mbsstr1.c: New file.
38223         * tests/test-mbsstr2.sh: New file.
38224         * tests/test-mbsstr2.c: New file.
38225         * tests/test-mbsstr3.sh: New file.
38226         * tests/test-mbsstr3.c: New file.
38227         * m4/locale-fr.m4: New file.
38228
38229 2007-02-11  Bruno Haible  <bruno@clisp.org>
38230
38231         * lib/mbsrchr.c (mbsrchr): Fix bug.
38232
38233         * modules/mbsrchr-tests: New file.
38234         * tests/test-mbsrchr.sh: New file.
38235         * tests/test-mbsrchr.c: New file.
38236
38237 2007-02-11  Bruno Haible  <bruno@clisp.org>
38238
38239         * lib/mbschr.c (mbschr): Fix bug.
38240
38241         * modules/mbschr-tests: New file.
38242         * tests/test-mbschr.sh: New file.
38243         * tests/test-mbschr.c: New file.
38244         * m4/locale-zh.m4: New file.
38245
38246 2007-02-11  Bruno Haible  <bruno@clisp.org>
38247
38248         Support for copying multibyte string iterators.
38249         * lib/mbiter.h: Include <string.h>.
38250         (mbiter_multi_copy): New function.
38251         (mbi_copy): New macro.
38252         * lib/mbuiter.h: Include <string.h>.
38253         (mbuiter_multi_copy): New function.
38254         (mbui_copy): New macro.
38255
38256 2007-02-11  Bruno Haible  <bruno@clisp.org>
38257
38258         New module mbslen.
38259         * modules/mbslen: New file.
38260         * lib/mbslen.c: New file.
38261         * lib/string_.h (mbslen): New declaration.
38262         * m4/mbslen.m4: New file.
38263         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38264         GNULIB_MBSLEN.
38265         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
38266         * MODULES.html.sh (Internationalization functions): Add mbslen.
38267
38268 2007-02-11  Bruno Haible  <bruno@clisp.org>
38269
38270         Ensure O(n) worst-case complexity of strcasestr substitute.
38271         * lib/strcasestr.c: Include stdbool.h.
38272         (knuth_morris_pratt): New function.
38273         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
38274         bookkeeping indicates that it's worth it.
38275         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
38276
38277         * modules/strcasestr-tests: New file.
38278         * tests/test-strcasestr.c: New file.
38279
38280 2007-02-11  Bruno Haible  <bruno@clisp.org>
38281
38282         Ensure O(n) worst-case complexity of c_strcasestr.
38283         * lib/c-strcasestr.c: Include stdbool.h, string.h.
38284         (knuth_morris_pratt): New function.
38285         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
38286         the bookkeeping indicates that it's worth it.
38287         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
38288
38289         * modules/c-strcasestr-tests: New file.
38290         * tests/test-c-strcasestr.c: New file.
38291
38292 2007-02-11  Bruno Haible  <bruno@clisp.org>
38293
38294         Ensure O(n) worst-case complexity of c_strstr.
38295         * lib/c-strstr.c: Include stdbool.h, string.h.
38296         (knuth_morris_pratt): New function.
38297         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
38298         bookkeeping indicates that it's worth it.
38299         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
38300
38301         * lib/c-strstr.c: Complete rewrite for maintainability.
38302
38303         * modules/c-strstr-tests: New file.
38304         * tests/test-c-strstr.c: New file.
38305
38306 2007-02-11  Bruno Haible  <bruno@clisp.org>
38307
38308         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
38309         5.2.1 and earlier, whereby \055 was treated just like the range
38310         delimiter '-'.
38311         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
38312
38313 2007-02-08  Bruno Haible  <bruno@clisp.org>
38314
38315         * modules/regex (Depends-on): Add stdbool.
38316         Reported by Dalibor Topic <robilad@kaffe.org>.
38317
38318 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
38319
38320         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
38321         Prefer returning from main to exiting from it.
38322         Remove unnecessary parens after sizeof.
38323
38324 2007-02-05  Bruno Haible  <bruno@clisp.org>
38325
38326         New module mbssep.
38327         * modules/mbssep: New file.
38328         * lib/mbssep.c: New file.
38329         * lib/string_.h (strsep): Add a conditional link warning.
38330         (mbssep): New declaration.
38331         * m4/mbssep.m4: New file.
38332         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38333         GNULIB_MBSSEP.
38334         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
38335         * MODULES.html.sh (Internationalization functions): Add mbssep.
38336
38337 2007-02-05  Bruno Haible  <bruno@clisp.org>
38338
38339         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
38340         Optimize search in case of 1 delimiter.
38341
38342 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
38343
38344         * lib/acl.h: Include sys/types.h before sys/acl.h.
38345
38346 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
38347
38348         Merge upstream fix for glibc bugzilla #3957:
38349
38350         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
38351
38352         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
38353         bit for RE_HAT_LISTS_NOT_NEWLINE.
38354         (build_charclass_op): Remove bogus comment.
38355
38356 2007-02-05  Simon Josefsson  <simon@josefsson.org>
38357
38358         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
38359
38360 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
38361
38362         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
38363         * lib/memmem.c [!defined _LIBC]: Include config.h.
38364
38365 2007-02-04  Bruno Haible  <bruno@clisp.org>
38366
38367         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
38368         warning message.
38369
38370 2007-02-04  Bruno Haible  <bruno@clisp.org>
38371
38372         New module mbstok_r.
38373         * modules/mbstok_r: New file.
38374         * lib/mbstok_r.c: New file.
38375         * lib/string_.h (strtok_r): Change argument names to match the
38376         comments. Add a conditional link warning.
38377         (mbstok_r): New declaration.
38378         * m4/mbstok_r.m4: New file.
38379         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38380         GNULIB_MBSTOK_R.
38381         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
38382         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
38383
38384 2007-02-04  Bruno Haible  <bruno@clisp.org>
38385
38386         New module mbsspn.
38387         * modules/mbsspn: New file.
38388         * lib/mbsspn.c: New file.
38389         * lib/string_.h (strspn): Add a conditional link warning.
38390         (mbsspn): New declaration.
38391         * m4/mbsspn.m4: New file.
38392         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38393         GNULIB_MBSSPN.
38394         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
38395         * MODULES.html.sh (Internationalization functions): Add mbsspn.
38396
38397 2007-02-04  Bruno Haible  <bruno@clisp.org>
38398
38399         New module mbspbrk.
38400         * modules/mbspbrk: New file.
38401         * lib/mbspbrk.c: New file.
38402         * lib/string_.h (strpbrk): Add a conditional link warning.
38403         (mbspbrk): New declaration.
38404         * m4/mbspbrk.m4: New file.
38405         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38406         GNULIB_MBSPBRK.
38407         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
38408         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
38409
38410 2007-02-04  Bruno Haible  <bruno@clisp.org>
38411
38412         New module mbscspn.
38413         * modules/mbscspn: New file.
38414         * lib/mbscspn.c: New file.
38415         * lib/string_.h (strcspn): Add a conditional link warning.
38416         (mbscspn): New declaration.
38417         * m4/mbscspn.m4: New file.
38418         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38419         GNULIB_MBSCSPN.
38420         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
38421         * MODULES.html.sh (Internationalization functions): Add mbscspn.
38422
38423 2007-02-04  Bruno Haible  <bruno@clisp.org>
38424
38425         New module mbscasestr, reduced goal of strcasestr.
38426         * modules/mbscasestr: New file.
38427         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
38428         (mbscasestr): Renamed from strcasestr.
38429         * lib/strcasestr.c: Don't include mbuiter.h.
38430         (strcasestr): Remove support for multibyte locales.
38431         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
38432         Change the conditional link warning.
38433         (mbscasestr): New declaration.
38434         * m4/mbscasestr.m4: New file.
38435         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
38436         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
38437         REPLACE_STRCASESTR.
38438         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
38439         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
38440         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
38441         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
38442         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
38443         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
38444         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
38445         (Depends-on): Remove mbuiter.
38446         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
38447
38448 2007-02-04  Bruno Haible  <bruno@clisp.org>
38449
38450         Simplify handling of strncasecmp.
38451         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
38452         the conditional link warning.
38453         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
38454         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
38455         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
38456         * modules/strcase (configure.ac): Don't invoke
38457         gl_STRING_MODULE_INDICATOR.
38458         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
38459
38460 2007-02-04  Bruno Haible  <bruno@clisp.org>
38461
38462         New module mbscasecmp, reduced goal of strcasecmp.
38463         * modules/mbscasecmp: New file.
38464         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
38465         (mbscasecmp): Renamed from strcasecmp.
38466         * lib/strcasecmp.c: Don't include mbuiter.h.
38467         (strcasecmp): Remove support for multibyte locales.
38468         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
38469         Change the conditional link warning.
38470         (mbscasecmp): New declaration.
38471         * m4/mbscasecmp.m4: New file.
38472         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
38473         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
38474         REPLACE_STRCASECMP.
38475         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
38476         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38477         GNULIB_MBSCASECMP.
38478         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
38479         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
38480         * modules/strcase (Files): Remove m4/mbrtowc.m4.
38481         (Depends-on): Remove mbuiter.
38482         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
38483
38484 2007-02-04  Bruno Haible  <bruno@clisp.org>
38485
38486         New module mbsstr. Remove module strstr.
38487         * modules/mbsstr: New file.
38488         * modules/strstr: Remove file.
38489         * lib/mbsstr.c: Renamed from lib/strstr.c.
38490         (mbsstr): Renamed from strstr.
38491         * lib/string_.h (strstr): Remove declaration. Change the conditional
38492         link warning.
38493         (mbsstr): New declaration.
38494         * m4/mbsstr.m4: New file.
38495         * m4/strstr.m4: Remove file.
38496         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
38497         REPLACE_STRSTR.
38498         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
38499         Don't initialize GNULIB_STRSTR.
38500         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
38501         substitute GNULIB_STRSTR and REPLACE_STRSTR.
38502         * MODULES.html.sh (Internationalization functions): Add mbsstr.
38503         (Support for systems lacking ANSI C 89): Remove strstr.
38504
38505 2007-02-04  Bruno Haible  <bruno@clisp.org>
38506
38507         New module mbsrchr.
38508         * modules/mbsrchr: New file.
38509         * lib/mbsrchr.c: New file.
38510         * lib/string_.h (strrchr): Add a conditional link warning.
38511         (mbsrchr): New declaration.
38512         * m4/mbsrchr.m4: New file.
38513         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38514         GNULIB_MBSRCHR.
38515         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
38516         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
38517
38518 2007-02-04  Bruno Haible  <bruno@clisp.org>
38519
38520         New module mbschr.
38521         * modules/mbschr: New file.
38522         * lib/mbschr.c: New file.
38523         * lib/string_.h (strchr): Add a conditional link warning.
38524         (mbschr): New declaration.
38525         * m4/mbschr.m4: New file.
38526         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38527         GNULIB_MBSCHR.
38528         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
38529         * MODULES.html.sh (Internationalization functions): Add mbschr.
38530
38531 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
38532
38533         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
38534
38535         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
38536
38537 2007-02-04  Bruno Haible  <bruno@clisp.org>
38538
38539         New module description section 'configure.ac-early'.
38540         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
38541         (func_get_autoconf_early_snippet): New function.
38542         (func_import, func_create_testdir): Use it. Remove special cases for
38543         modules 'extensions' and 'lock'.
38544         * modules/extensions (configure.ac-early): Require
38545         gl_USE_SYSTEM_EXTENSIONS.
38546         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
38547
38548 2007-02-04  Bruno Haible  <bruno@clisp.org>
38549
38550         Make use of gcj-4.3's -fsource and -ftarget option.
38551         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
38552         and if so try the options -fsource and -ftarget.
38553         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
38554         source_version, ftarget_option, target_version arguments.
38555         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
38556         (is_envjavac_oldgcj_14_14_usable): Renamed from
38557         is_envjavac_gcj_14_14_usable.
38558         (is_envjavac_oldgcj_14_13_usable): Renamed from
38559         is_envjavac_gcj_14_13_usable.
38560         (is_gcj_present): Update.
38561         (is_gcj_43, is_gcj43_usable): New functions.
38562         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
38563         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
38564         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
38565         try the options -fsource and -ftarget.
38566
38567 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
38568
38569         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
38570         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
38571         larger value.
38572
38573 2007-02-03  Jim Meyering  <jim@meyering.net>
38574
38575         Give tools a better chance to allocate space for very large buffers.
38576         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
38577
38578         Make pwd and readlink work also when run with an unreadable parent dir
38579         on systems with openat support.
38580         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
38581         provided getcwd function, even when we have openat support.
38582         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
38583
38584 2007-02-02  Bruno Haible  <bruno@clisp.org>
38585
38586         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
38587         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
38588         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
38589         portability problems if one of these functions is only used on specific
38590         platforms.
38591         Reported by Paul Eggert.
38592
38593 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
38594
38595         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
38596         is causing more trouble than it's curing.
38597         * lib/regex_internal.h (__mempcpy): Remove.
38598         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
38599         (and make the code a tad smaller to boot).
38600         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
38601
38602 2007-02-02  Jim Meyering  <jim@meyering.net>
38603
38604         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
38605         section, not in the Makefile.am: one.
38606
38607 2007-02-02  Eric Blake  <ebb9@byu.net>
38608
38609         * lib/strchrnul.c: Always include config.h first.
38610
38611         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
38612         gnulib strstr is not necessary here.
38613
38614 2007-02-02  Simon Josefsson  <simon@josefsson.org>
38615
38616         * m4/socklen.m4: Fix typo.
38617
38618 2007-02-02  Eric Blake  <ebb9@byu.net>
38619
38620         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
38621         * modules/netinet_in (Makefile.am): Likewise.
38622
38623 2007-02-01  Bruno Haible  <bruno@clisp.org>
38624
38625         * lib/string_.h (GL_LINK_WARNING): New macro.
38626         (strcasecmp, strstr, strcasestr): If provided by the system,
38627         conditionally define as a macro that leads to a warning instead of to
38628         an error.
38629         (strncasecmp): Conditionally define as a macro that leads to a warning.
38630
38631 2007-02-01  Karl Berry  <karl@gnu.org>
38632
38633         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
38634
38635 2007-02-01  Bruno Haible  <bruno@clisp.org>
38636
38637         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
38638         renamings.
38639
38640 2007-02-01  Eric Blake  <ebb9@byu.net>
38641
38642         * modules/regex (Depends-on): Revert dependence on mempcpy.
38643         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
38644         module's definition of mempcpy.
38645         Reported by Paul Eggert.
38646
38647 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
38648
38649         * lib/string_.h: If the gnulib module XYZ is not present, undefine
38650         the symbol XYZ before redefining it.  This fixes a problem with
38651         programs that don't use XYZ, when compiled on systems that define
38652         XYZ to something else.
38653
38654 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
38655
38656         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
38657         occurs when "mkdir -m foo" creates a setgid directory that is (1)
38658         writeable to group or other and (2) is intended to have a special
38659         mode bit that is set or cleared.  In such a case, the directory
38660         should be neither group- nor other-writeable until the special
38661         mode bits are right.
38662
38663 2007-01-31  Eric Blake  <ebb9@byu.net>
38664
38665         * modules/mountlist (Depends-on): Add strstr.
38666
38667         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
38668         bug.
38669         * modules/string (Makefile.am): Remove redundant replacement.
38670         * modules/regex (Depends-on): Add mempcpy.
38671
38672 2007-01-31  Bruno Haible  <bruno@clisp.org>
38673
38674         New module description field 'Link'.
38675         * gnulib-tool (func_usage): Document --extract-link-directive.
38676         (sed_extract_prog): Recognize 'Link' directive.
38677         (func_get_link_directive): New function.
38678         (func_import): Show summary of link directives.
38679         Handle --extract-link-directive option.
38680         * modules/acl (Link): New section.
38681         * modules/clock-time (Link): New section.
38682         * modules/euidaccess (Link): New section.
38683         * modules/gettext (Link): New section.
38684         * modules/iconv (Link): New section.
38685         * modules/lock (Link): New section.
38686         * modules/nanosleep (Link): New section.
38687         * modules/readline (Link): New section.
38688
38689 2007-01-27  Bruno Haible  <bruno@clisp.org>
38690
38691         Enforce the use of gnulib modules for unportable <string.h> functions.
38692         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
38693         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
38694         (gl_HEADER_STRING_H_BODY): Require it.
38695         * lib/string_.h: If the gnulib module XYZ is not present, redefine
38696         the symbol XYZ to one that gives a link error.
38697         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
38698         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
38699         * modules/mempcpy (configure.ac): Likewise.
38700         * modules/memrchr (configure.ac): Likewise.
38701         * modules/stpcpy (configure.ac): Likewise.
38702         * modules/stpncpy (configure.ac): Likewise.
38703         * modules/strcase (configure.ac): Likewise.
38704         * modules/strcasestr (configure.ac): Likewise.
38705         * modules/strchrnul (configure.ac): Likewise.
38706         * modules/strdup (configure.ac): Likewise.
38707         * modules/strndup (configure.ac): Likewise.
38708         * modules/strnlen (configure.ac): Likewise.
38709         * modules/strpbrk (configure.ac): Likewise.
38710         * modules/strsep (configure.ac): Likewise.
38711         * modules/strstr (configure.ac): Likewise.
38712         * modules/strtok_r (configure.ac): Likewise.
38713
38714 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
38715
38716         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
38717
38718 2007-01-30  Jim Meyering  <jim@meyering.net>
38719
38720         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
38721
38722 2007-01-29  Bruno Haible  <bruno@clisp.org>
38723
38724         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
38725         * lib/execute.c: Likewise.
38726         * lib/pipe.c: Likewise.
38727         * lib/printf-args.h: Likewise.
38728         * lib/printf-args.c: Likewise.
38729         * lib/printf-parse.c: Likewise.
38730         * lib/vasnprintf.c: Likewise.
38731
38732 2007-01-29  Eric Blake  <ebb9@byu.net>
38733
38734         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
38735         declaration.
38736
38737 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
38738
38739         * lib/strptime.h (strptime): Use 'restrict' for args where
38740         POSIX requires this.
38741         * lib/strptime.c (strptime): Likewise.
38742         Change license notice from LGPL to GPL, since gnulib-tool will
38743         change this as needed.
38744         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
38745         defined.
38746         Include "strptime.h" first, to check interface.
38747         Do not #undef _LIBC and _NL_CURRENT.
38748         Do not include <stdlib.h>; no longer needed.
38749         Include "time_r.h" and declare ptime_locale_status
38750         only if _LIBC is not defined.
38751         (__P): Remove unused macro.
38752         (match_string): Bring back glibc version, but use it only if _LIBC
38753         is defined.
38754         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
38755         Remove unnecessary assertion and abort() call.
38756         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
38757         * m4/strptime.m4: Fix serial number comment.
38758         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
38759         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
38760         (Depends-on): Add time_r.
38761
38762 2007-01-29  Bruno Haible  <bruno@clisp.org>
38763
38764         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
38765         strptime.
38766         * modules/strptime (Depends-on): Add stdbool.
38767         * lib/strptime.h: Include <time.h> always. Add comments.
38768
38769 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
38770
38771         * modules/strptime: New file.
38772         * lib/strptime.h: New file.
38773         * lib/strptime.c: New file.
38774         * m4/strptime.m4: New file.
38775
38776 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
38777
38778         * MODULES.html.sh: New module mpsort.
38779         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
38780
38781         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
38782         a circularity problem with HP-UX ia64 reported by Bob Proulx in
38783         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
38784         All uses changed.
38785         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
38786         All uses changed.
38787         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
38788         to _Restrict_.
38789         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
38790         the parameter matches the prototype.
38791
38792 2007-01-28  Jim Meyering  <jim@meyering.net>
38793
38794         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
38795         sys/time.h here, reverting that part of the previous patch:
38796         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
38797
38798 2007-01-28  Bruno Haible  <bruno@clisp.org>
38799
38800         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
38801         value of $(SYS_TIME_H).
38802         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
38803         remove it conditionally, too. [added by Jim Meyering]
38804         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
38805         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
38806         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
38807         GETTIMEOFDAY_REPLACEMENT to 1.
38808
38809 2007-01-28  Bruno Haible  <bruno@clisp.org>
38810
38811         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
38812         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
38813         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
38814         Set UNISTD_H instead of UNISTD_H2.
38815         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
38816
38817 2007-01-28  Bruno Haible  <bruno@clisp.org>
38818
38819         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
38820         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
38821
38822 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38823
38824         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
38825         (func_create_testdir): Ensure C locale for `grep' and `tr'
38826         character ranges.
38827         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
38828         ACLOCAL_AMFLAGS parsing state machine.
38829
38830 2007-01-27  Bruno Haible  <bruno@clisp.org>
38831
38832         * modules/unistr/base: Update.
38833
38834 2007-01-27  Bruno Haible  <bruno@clisp.org>
38835
38836         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
38837         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
38838         * modules/unistr/u32-mbtouc-unsafe: Renamed from
38839         modules/unistr/u32-mbtouc.
38840         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
38841         * lib/unistr.h: Update.
38842         * lib/linebreak.c: Update.
38843         * modules/unistr/u32-mbtouc: Renamed from
38844         modules/unistr/u32-mbtouc-safe.
38845         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
38846         * lib/unistr.h: Update.
38847         * lib/unistr/u32-to-u8.c: Update.
38848         * lib/unistr/u32-to-u16.c: Update.
38849
38850 2007-01-27  Bruno Haible  <bruno@clisp.org>
38851
38852         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
38853         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
38854         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
38855         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
38856         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
38857         * modules/unistr/u16-mbtouc-unsafe: Renamed from
38858         modules/unistr/u16-mbtouc.
38859         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
38860         * lib/unistr.h: Update.
38861         * lib/linebreak.c: Update.
38862         * modules/linebreak: Update.
38863         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
38864         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
38865         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
38866         * modules/unistr/u16-mbtouc: Renamed from
38867         modules/unistr/u16-mbtouc-safe.
38868         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
38869         * lib/unistr.h: Update.
38870         * lib/unistr/u16-to-u8.c: Update.
38871         * modules/unistr/u16-to-u8: Update.
38872         * lib/unistr/u16-to-u32.c: Update.
38873         * modules/unistr/u16-to-u32: Update.
38874
38875 2007-01-27  Bruno Haible  <bruno@clisp.org>
38876
38877         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
38878         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
38879         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
38880         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
38881         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
38882         * modules/unistr/u8-mbtouc-unsafe: Renamed from
38883         modules/unistr/u8-mbtouc.
38884         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
38885         * lib/unistr.h: Update.
38886         * lib/striconveh.c: Update.
38887         * modules/striconveh: Update.
38888         * lib/linebreak.c: Update.
38889         * modules/linebreak: Update.
38890         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
38891         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
38892         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
38893         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
38894         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
38895         * lib/unistr.h: Update.
38896         * lib/striconveh.c: Update.
38897         * modules/striconveh: Update.
38898         * lib/unistr/u8-to-u16.c: Update.
38899         * modules/unistr/u8-to-u16: Update.
38900         * lib/unistr/u8-to-u32.c: Update.
38901         * modules/unistr/u8-to-u32: Update.
38902
38903 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38904
38905         Sync from Libtool.
38906         * lib/argz.c: Do not include strings.h nor memory.h, include
38907         string.h unconditionally.  Patch by Simon Josefsson.
38908
38909 2007-01-27  Bruno Haible  <bruno@clisp.org>
38910
38911         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
38912         from gl_HEADER_STRING_H_BODY.
38913         (gl_HEADER_STRING_H_BODY): Require it.
38914         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
38915         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
38916         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
38917         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
38918         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
38919         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
38920         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
38921         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
38922         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
38923         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
38924         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
38925         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
38926         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
38927         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
38928         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
38929
38930 2007-01-27  Bruno Haible  <bruno@clisp.org>
38931
38932         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
38933         check_PROGRAMS into noinst_PROGRAMS.
38934         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
38935         check_PROGRAMS in this case.
38936         (func_import): Set for_test to false.
38937         (func_create_testdir): Set for_test to true.
38938
38939 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
38940             Bruno Haible  <bruno@clisp.org>
38941
38942         * modules/strcasestr (Files): Remove lib/strcasestr.h.
38943         (Depends-on): Add string.
38944         (Includes): Use <string.h> instead of strcasestr.h.
38945         * modules/string (Makefile.am): Also substitute the value of
38946         REPLACE_STRCASESTR.
38947         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
38948         assume strcasestr is declared in <string.h> not <strings.h>. Also
38949         set REPLACE_STRCASESTR.
38950         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
38951         REPLACE_STRCASESTR.
38952         * lib/strcasestr.h: Remove file.
38953         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
38954         * lib/string_.h (strcasestr): New declaration.
38955
38956 2007-01-27  Bruno Haible  <bruno@clisp.org>
38957
38958         * lib/string_.h: Use 'extern'.
38959
38960 2007-01-27  Jim Meyering  <jim@meyering.net>
38961
38962         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
38963         of set-but-not-used local, "q".
38964
38965         * lib/mempcpy.c: Include <config.h> before <string.h>.
38966         This fixes a compilation error on HP-UX, due to the system's
38967         "restrict"-using mempcpy prototype.
38968
38969 2007-01-26  Bruno Haible  <bruno@clisp.org>
38970
38971         Small optimization.
38972         * lib/javacomp.c: Include c-strstr.h.
38973          (is_envjavac_gcj): Use c_strstr instead of strstr.
38974         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
38975
38976 2007-01-26  Bruno Haible  <bruno@clisp.org>
38977
38978         * MODULES.html.sh (Unicode string functions): Add the new modules.
38979
38980         * modules/uniconv/u32-strconv-to-locale: New file.
38981         * lib/uniconv/u32-strconv-to-locale.c: New file.
38982
38983         * modules/uniconv/u16-strconv-to-locale: New file.
38984         * lib/uniconv/u16-strconv-to-locale.c: New file.
38985
38986         * modules/uniconv/u8-strconv-to-locale: New file.
38987         * lib/uniconv/u8-strconv-to-locale.c: New file.
38988
38989         * modules/uniconv/u32-strconv-from-locale: New file.
38990         * lib/uniconv/u32-strconv-from-locale.c: New file.
38991
38992         * modules/uniconv/u16-strconv-from-locale: New file.
38993         * lib/uniconv/u16-strconv-from-locale.c: New file.
38994
38995         * modules/uniconv/u8-strconv-from-locale: New file.
38996         * lib/uniconv/u8-strconv-from-locale.c: New file.
38997
38998         * modules/uniconv/u32-strconv-to-enc: New file.
38999         * lib/uniconv/u32-strconv-to-enc.c: New file.
39000         * modules/uniconv/u32-strconv-to-enc-tests: New file.
39001         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
39002
39003         * modules/uniconv/u16-strconv-to-enc: New file.
39004         * lib/uniconv/u16-strconv-to-enc.c: New file.
39005         * lib/uniconv/u-strconv-to-enc.h: New file.
39006         * modules/uniconv/u16-strconv-to-enc-tests: New file.
39007         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
39008
39009         * modules/uniconv/u8-strconv-to-enc: New file.
39010         * lib/uniconv/u8-strconv-to-enc.c: New file.
39011         * modules/uniconv/u8-strconv-to-enc-tests: New file.
39012         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
39013
39014         * modules/uniconv/u32-strconv-from-enc: New file.
39015         * lib/uniconv/u32-strconv-from-enc.c: New file.
39016         * modules/uniconv/u32-strconv-from-enc-tests: New file.
39017         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
39018
39019         * modules/uniconv/u16-strconv-from-enc: New file.
39020         * lib/uniconv/u16-strconv-from-enc.c: New file.
39021         * modules/uniconv/u16-strconv-from-enc-tests: New file.
39022         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
39023
39024         * modules/uniconv/u8-strconv-from-enc: New file.
39025         * lib/uniconv/u8-strconv-from-enc.c: New file.
39026         * lib/uniconv/u-strconv-from-enc.h: New file.
39027         * modules/uniconv/u8-strconv-from-enc-tests: New file.
39028         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
39029
39030         * modules/uniconv/u32-conv-from-enc: New file.
39031         * lib/uniconv/u32-conv-from-enc.c: New file.
39032         * modules/uniconv/u32-conv-from-enc-tests: New file.
39033         * tests/uniconv/test-u32-conv-from-enc.c: New file.
39034
39035         * modules/uniconv/u16-conv-from-enc: New file.
39036         * lib/uniconv/u16-conv-from-enc.c: New file.
39037         * lib/uniconv/u-conv-from-enc.h: New file.
39038         * modules/uniconv/u16-conv-from-enc-tests: New file.
39039         * tests/uniconv/test-u16-conv-from-enc.c: New file.
39040
39041         * modules/uniconv/u8-conv-from-enc: New file.
39042         * lib/uniconv/u8-conv-from-enc.c: New file.
39043         * modules/uniconv/u8-conv-from-enc-tests: New file.
39044         * tests/uniconv/test-u8-conv-from-enc.c: New file.
39045
39046         * modules/uniconv/base: New file.
39047         * lib/uniconv.h: New file.
39048
39049 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
39050
39051         * doc/gnulib-tool.texi (Initial import): Update to match current
39052         behavior with strdup module.
39053         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
39054         * lib/memmem.h: Remove; all uses removed.  This is now done
39055         by <string.h>.
39056         * lib/mempcpy.h: Likewise.
39057         * lib/memrchr.h: Likewise.
39058         * lib/stpcpy.h: Likewise.
39059         * lib/stpncpy.h: Likewise.
39060         * lib/strcase.h: Likewise.
39061         * lib/strchrnul.h: Likewise.
39062         * lib/strdup.h: Likewise.
39063         * lib/strndup.h: Likewise.
39064         * lib/strnlen.h: Likewise.
39065         * lib/strpbrk.h: Likewise.
39066         * lib/strsep.h: Likewise.
39067         * lib/strstr.h: Likewise.
39068         * lib/strtok_r.h: Likewise.
39069         * lib/string_.h: New file.
39070         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
39071         Rely on <string.h> instead.
39072         * lib/canon-host.c: Likewise.
39073         * lib/chdir-long.c: Likewise.
39074         * lib/concatpath.c: Likewise.
39075         * lib/exclude.c: Likewise.
39076         * lib/fchdir.c: Likewise.
39077         * lib/getaddrinfo.c: Likewise.
39078         * lib/getcwd.c: Likewise.
39079         * lib/getsubopt.c: Likewise.
39080         * lib/glob.c: Likewise.
39081         * lib/hard-locale.c: Likewise.
39082         * lib/iconvme.c: Likewise.
39083         * lib/javacomp.c: Likewise.
39084         * lib/mempcpy.c: Likewise.
39085         * lib/memrchr.c: Likewise.
39086         * lib/regex_internal.h: Likewise.
39087         * lib/stpncpy.c: Likewise.
39088         * lib/strcasecmp.c: Likewise.
39089         * lib/strchrnul.c: Likewise.
39090         * lib/strdup.c: Likewise.
39091         * lib/striconv.c: Likewise.
39092         * lib/striconveh.c: Likewise.
39093         * lib/striconveha.c: Likewise.
39094         * lib/strncasecmp.c: Likewise.
39095         * lib/strndup.c: Likewise.
39096         * lib/strnlen.c: Likewise.
39097         * lib/strsep.c: Likewise.
39098         * lib/strstr.c: Likewise.
39099         * lib/strtok_r.c: Likewise.
39100         * lib/userspec.c: Likewise.
39101         * lib/w32spawn.h: Likewise.
39102         * lib/xstrndup.c: Likewise.
39103         * lib/mountlist.c (strstr): Remove decl.
39104         * m4/string_h.m4: New file.
39105         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
39106         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
39107         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
39108         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
39109         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
39110         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
39111         Set REPLACE_STRCASECMP if necessary.
39112         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
39113         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
39114         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
39115         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
39116         HAVE_DECL_STRDUP if necessary.
39117         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
39118         since gl_FUNC_STRNDUP does that now.
39119         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
39120         Check for decl here...
39121         (gl_PREREQ_STRNLEN): ... not here.
39122         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
39123         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
39124         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
39125         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
39126         necessary.
39127         * modules/string: New file.
39128         * modules/memmem (Files): Remove special-purpose include file.
39129         (Depends-on): Add string.
39130         (Include): Include <string.h>, not the removed file.
39131         * modules/mempcpy: Likewise.
39132         * modules/memrchr: Likewise.
39133         * modules/stpcpy: Likewise.
39134         * modules/stpncpy: Likewise.
39135         * modules/strcase: Likewise.
39136         * modules/strchrnul: Likewise.
39137         * modules/strdup: Likewise.
39138         * modules/strndup: Likewise.
39139         * modules/strnlen: Likewise.
39140         * modules/strpbrk: Likewise.
39141         * modules/strsep: Likewise.
39142         * modules/strstr: Likewise.
39143         * modules/strtok_r: Likewise.
39144         * tests/test-dirname.c: Don't include "strdup.h", since
39145         <string.h> now suffices.
39146         * tests/test-memmem.c: Don't include "memmem.h", since
39147         <string.h> now suffices.
39148
39149 2007-01-25  Bruno Haible  <bruno@clisp.org>
39150
39151         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
39152         *resultp is 0.
39153
39154         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
39155         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
39156         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
39157         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
39158
39159         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
39160         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
39161         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
39162         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
39163         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
39164         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
39165
39166 2007-01-24  Bruno Haible  <bruno@clisp.org>
39167
39168         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
39169         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
39170         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
39171         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
39172         gl_FUNC_FTS_CORE.
39173         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
39174         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
39175         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
39176         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
39177         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
39178         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
39179         gl_FUNC_FCHOWNAT.
39180         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
39181         gl_FUNC_STRFTIME.
39182         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
39183         Reported by Ralf Wildenhues.
39184
39185 2007-01-24  Bruno Haible  <bruno@clisp.org>
39186
39187         Drop AC_REQUIRE calls that are redundant with the module dependencies.
39188         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
39189         gl_GETADDRINFO.
39190         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
39191         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
39192         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
39193
39194 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
39195
39196         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
39197         Don't use 'exit'; just return from 'main'.
39198         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
39199
39200         * lib/fnmatch_.h: Readjust white space and comments to match
39201         glibc, to avoid spurious diffs.
39202
39203 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
39204
39205         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
39206         2004-12-01 change by Jakub Jelinek, since this code won't compile
39207         if !LIBC.  Problem reported by Bob Proulx.
39208
39209 2007-01-23  Bruno Haible  <bruno@clisp.org>
39210
39211         * lib/striconveh.c: Include c-strcaseeq.h.
39212         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
39213         * modules/striconveh (Depends-on): Add c-strcaseeq.
39214
39215 2007-01-23  Bruno Haible  <bruno@clisp.org>
39216
39217         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
39218
39219         * modules/c-strcaseeq: New file.
39220         * lib/c-strcaseeq.h: New file.
39221
39222         * modules/streq: New file.
39223         * lib/streq.h: New file.
39224
39225 2007-01-23  Bruno Haible  <bruno@clisp.org>
39226
39227         * modules/striconveha-tests: New file.
39228         * tests/test-striconveha.c: New file.
39229
39230         * lib/striconveha.h: Include <stdbool.h>.
39231         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
39232         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
39233         (mem_iconveha_notranslit): Renamed from mem_iconveha.
39234         (mem_iconveha): New function.
39235         (str_iconveha_notranslit): Renamed from str_iconveha.
39236         (str_iconveha): New function.
39237         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
39238         c-strcase.
39239
39240 2007-01-23  Bruno Haible  <bruno@clisp.org>
39241
39242         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
39243         encodings without forgiving before trying any encoding with handler.
39244         (str_iconveha): Try all encodings without forgiving before trying any
39245         encoding with handler.
39246
39247 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
39248
39249         Import the following changes from libc.
39250
39251         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
39252
39253         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
39254
39255         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
39256
39257         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
39258         normal_bracket label.
39259
39260         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
39261
39262         [BZ #361]
39263         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
39264         to normal_bracket after fetching the next character.
39265
39266 2007-01-22  Bruno Haible  <bruno@clisp.org>
39267
39268         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
39269         argument.
39270         * lib/striconveh.c (iconv_carefully_1): New function.
39271         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
39272         argument.
39273         (str_cd_iconveh): Update.
39274         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
39275         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
39276         * tests/test-striconveh.c (MAGIC): New macro.
39277         (new_offsets): New function.
39278         (main): Test call with and without offsets.
39279
39280 2007-01-22  Bruno Haible  <bruno@clisp.org>
39281
39282         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
39283         * modules/sys_select (Makefile.am): Likewise.
39284         * modules/sys_socket (Makefile.am): Likewise.
39285         * modules/sys_time (Makefile.am): Likewise.
39286
39287 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
39288
39289         * modules/gettimeofday (License): Change from GPL to LGPL, since
39290         gettimeofday is a library function.
39291
39292 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39293
39294         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
39295
39296 2007-01-21  Bruno Haible  <bruno@clisp.org>
39297
39298         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
39299
39300 2007-01-21  Bruno Haible  <bruno@clisp.org>
39301
39302         * modules/striconveha: New file.
39303         * lib/striconveha.h: New file.
39304         * lib/striconveha.c: New file.
39305         * MODULES.html.sh (Internationalization functions): Add striconveha.
39306         * lib/striconv.c (str_iconv): Optimize the case of an empty input
39307         string.
39308         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
39309
39310 2007-01-21  Bruno Haible  <bruno@clisp.org>
39311
39312         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
39313         * lib/striconveh.c (str_iconveh): Likewise.
39314
39315 2007-01-21  Bruno Haible  <bruno@clisp.org>
39316
39317         * lib/striconveh.h (mem_iconveh): New declaration.
39318         * lib/striconveh.c (mem_iconveh): New function.
39319         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
39320
39321 2007-01-21  Bruno Haible  <bruno@clisp.org>
39322
39323         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
39324
39325         * lib/striconveh.h (mem_cd_iconveh): Change specification.
39326         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
39327         original result buffer.
39328         (str_cd_iconveh): Update.
39329         * tests/test-striconveh.c (main): Update.
39330
39331         * lib/striconv.h (mem_cd_iconv): Change specification.
39332         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
39333         result buffer.
39334         (str_cd_iconv): Update.
39335         * tests/test-striconv.c (main): Update.
39336
39337 2007-01-21  Bruno Haible  <bruno@clisp.org>
39338
39339         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
39340
39341 2007-01-20  Jim Meyering  <jim@meyering.net>
39342
39343         * lib/userspec.c (parse_with_separator): If a user or group string
39344         starts with "+", skip the corresponding name-to-ID look-up, since
39345         such a look-up must fail: user and group names may not include "+".
39346
39347 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
39348
39349         * lib/poll.c: Include sys/time.h and time.h unconditionally,
39350         since we now assume the sys_time module.
39351         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
39352         check for sys/time.h; no longer needed.
39353         * modules/poll (Depends-on): Depend on sys_time.
39354
39355 2007-01-18  Bruno Haible  <bruno@clisp.org>
39356
39357         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
39358         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
39359
39360         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
39361         gettimeofday.
39362
39363         * tests/test-gettimeofday.c: Include <time.h>.
39364         (dummy): Remove variable.
39365
39366         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
39367         gl_HEADER_SYS_TIME_H.
39368         (gl_HEADER_SYS_TIME_H): New macro.
39369
39370         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
39371         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39372         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
39373         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
39374         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39375         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
39376         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
39377         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39378         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
39379         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
39380         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39381
39382         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
39383         last change; it caused a compilation error when cross-compiling to
39384         Cygwin.
39385
39386 2007-01-18  Jim Meyering  <jim@meyering.net>
39387
39388         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
39389         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
39390         than the race-prone "test -d sys || mkdir sys".
39391         (configure.ac): Use AC_PROG_MKDIR_P.
39392         * modules/sys_select: Likewise.
39393         * modules/sys_socket: Likewise.
39394         * modules/sys_time: Likewise.
39395
39396 2007-01-18  Eric Blake  <ebb9@byu.net>
39397
39398         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
39399         replace gettimeofday.
39400         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
39401         name, to avoid infinite recursion.
39402
39403 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
39404
39405         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
39406         module sys_time.
39407         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
39408         assume timespec.h defines struct timeval.
39409         * lib/settime.c: Likewise.
39410         * lib/utimens.c: Likewise.
39411         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
39412         since we now assume the gettimeofday module.
39413         * lib/tempname.c (__gen_tempname): Likewise.
39414         * lib/gettimeofday.h: Remove.
39415         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
39416         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
39417         Include <time.h>, for 'time()'.
39418         (localtime_buffer_addr): Also use this workaround if
39419         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
39420         to simplify the uses.  All uses changed.
39421         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
39422         that #undef is inside {}, and 'const' follows type name consistently.
39423         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
39424         (gettimeofday): Do not use the maximum possible value for
39425         tv->tv_usec, since that might break usages other than ls.c.
39426         Instead, we'll leave ls.c alone.  This undoes today's patch
39427         by Bruno.  Add a compile-time warning for 1s-clock resolution;
39428         we've never observed the problem but might as well keep the
39429         canary.
39430         * lib/nanosleep.c: Include timespec.h first, for interface check.
39431         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
39432         now assume the sys_time module.
39433         * lib/tempname.c: Likewise.
39434         * lib/timespec.h: Likewise.
39435         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
39436         needed.
39437         * lib/strftime.c: Likewise.
39438         * lib/timespec.h: Likewise.
39439         * lib/posixtm.c: Include posixtm.h first, for interface check.
39440         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
39441         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
39442         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
39443         * lib/sys_time_.h: New file.
39444         * lib/timespec.h (struct timespec): Use long int, not long.
39445         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
39446         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
39447         Remove obsolescent call to AC_HEADER_TIME.
39448         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
39449         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
39450         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
39451         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
39452         Likewise.
39453         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
39454         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
39455         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
39456         into the sys_time module.  Check for gettimeofday just once.
39457         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
39458         for gettimeofday signature to just check the signature.  Merely
39459         compile it, since linking doesn't test signature.  Improve test for
39460         whether gettimeofday.o is actually needed.
39461         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
39462         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
39463         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
39464         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39465         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
39466         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
39467         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
39468         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
39469         than worrying about sys/time.h.
39470         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
39471         Don't bother worrying about TIME_WITH_SYS_TIME.
39472         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
39473         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
39474         * m4/sys_time_h.m4: New file.
39475         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
39476         Don't include sys/time.h.  Return from main rather than exiting.
39477         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
39478         all uses changed.
39479         * modules/gethrxtime (Depends-on): Add sys_time.
39480         * modules/gettime (Depends-on): Likewise.
39481         * modules/gettimeofday (Depends-on): Likewise.
39482         * modules/nanosleep (Depends-on): Likewise.
39483         * modules/settime (Depends-on): Likewise.
39484         * modules/tempname (Depends-on): Likewise.
39485         * modules/utimens (Depends-on): Likewise.
39486         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
39487         (Include:) Change back to <sys/time.h>.
39488         (Maintainer:) Add self.
39489         * modules/sys_time: New file.
39490         * modules/tempname (Depends-on): Add gettimeofday.
39491         * tests/test-gettimeofday.c: Include <sys/time.h>
39492         rather than gettimeofday.h.
39493
39494 2007-01-17  Bruno Haible  <bruno@clisp.org>
39495
39496         * gnulib-tool (func_get_license): Revert last patch. Instead, let
39497         the license default to GPL.
39498         (func_create_testdir): Don't complain if a module is LGPL and its
39499         tests module depends on GPLed modules.
39500
39501 2007-01-17  Bruno Haible  <bruno@clisp.org>
39502
39503         * lib/gettimeofday.c (gettimeofday): Add code for the case
39504         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
39505         maximum possible value for tv->tv_usec, rather than the minimum one.
39506
39507 2005-10-08  Martin Lambers  <marlam@marlam.de>
39508 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
39509 2007-01-16  Bruno Haible  <bruno@clisp.org>
39510
39511         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
39512         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
39513         gl_FUNC_GETTIMEOFDAY.
39514         (Include): Add gettimeofday.h.
39515         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
39516         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
39517         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
39518         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
39519         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
39520         * lib/gettimeofday.h: New file.
39521         * lib/gettimeofday.c: Include <sys/timeb.h>.
39522         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
39523         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39524         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
39525         fall back on time().
39526
39527         * tests/test-gettimeofday.c: New file.
39528         * modules/gettimeofday-tests: New file.
39529
39530 2007-01-16  Eric Blake  <ebb9@byu.net>
39531
39532         * modules/fnmatch (Depends-on): Depend on wchar.
39533         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
39534         * m4/fnmatch.m4: Likewise.
39535         * modules/mbchar (Makefile.am): Assume <wchar.h>.
39536         * m4/mbchar.m4: Likewise.
39537         * modules/mbswidth (Depends-on): Depend on wchar.
39538         * lib/mbswidth.c: Assume <wchar.h>.
39539         * m4/mbswidth.m4: Likewise.
39540         * modules/quotearg (Depends-on): Depend on wchar.
39541         * lib/quotearg.c: Assume <wchar.h>.
39542         * m4/quotearg.m4: Likewise.
39543         * modules/regex (Depends-on): Depend on wchar.
39544         * lib/regex_internal.h: Assume <wchar.h>.
39545         * m4/regex.m4: Likewise.
39546         * modules/stdint (Depends-on): Depend on wchar.
39547         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
39548         * m4/stdint.m4: Likewise.
39549         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
39550         * modules/strftime (Depends-on): Depend on wchar.
39551         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
39552         * modules/strtol (Depends-on): Depend on wchar.
39553         * lib/strtol.c: Assume <wchar.h>.
39554         * modules/wcwidth (Depends-on): Depend on wchar.
39555         * lib/wcwidth.h: Assume <wchar.h>.
39556         * m4/wcwidth.m4: Likewise.
39557
39558 2007-01-16  Bruno Haible  <bruno@clisp.org>
39559
39560         * modules/csharpexec-script: New, created from...
39561         * modules/csharpexec: ... this.
39562
39563 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
39564
39565         * modules/javaexec-script: New, created from...
39566         * modules/javaexec: ... this.
39567
39568 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39569
39570         * modules/poll (Dependencies): Add sys_select.
39571
39572 2007-01-15  Jim Meyering  <jim@meyering.net>
39573
39574         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
39575         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
39576         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
39577         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
39578
39579 2007-01-15  Bruno Haible  <bruno@clisp.org>
39580
39581         * modules/striconveh: New file.
39582         * lib/striconveh.h: New file.
39583         * lib/striconveh.c: New file.
39584         * MODULES.html.sh (Internationalization functions): Add striconveh.
39585
39586         * modules/striconveh-tests: New file.
39587         * tests/test-striconveh.c: New file.
39588
39589 2007-01-15  Bruno Haible  <bruno@clisp.org>
39590
39591         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
39592         not from GNU libiconv or GNU libc.
39593
39594 2007-01-15  Bruno Haible  <bruno@clisp.org>
39595
39596         * doc/gnulib-intro.texi (Copyright): Explain the different license
39597         terms for module descriptions, autoconf macros, tests, documentation.
39598
39599 2007-01-14  Bruno Haible  <bruno@clisp.org>
39600
39601         * modules/striconv-tests: New file.
39602         * tests/test-striconv.c: New file.
39603
39604 2007-01-14  Bruno Haible  <bruno@clisp.org>
39605
39606         * modules/iconv-tests: New file.
39607         * tests/test-iconv.c: New file.
39608
39609 2007-01-14  Bruno Haible  <bruno@clisp.org>
39610
39611         * gnulib-tool (func_get_license): For test modules, use the license of
39612         the main module.
39613
39614 2007-01-14  Bruno Haible  <bruno@clisp.org>
39615
39616         * modules/iconv (Include): Clarify that <iconv.h> can only be included
39617         if iconv is found to exist.
39618
39619 2007-01-14  Bruno Haible  <bruno@clisp.org>
39620
39621         * modules/c-ctype-tests: New file.
39622         * tests/test-c-ctype.c: New file.
39623
39624 2007-01-14  Bruno Haible  <bruno@clisp.org>
39625
39626         * modules/binary-io-tests: New file.
39627         * tests/test-binary-io.sh: New file.
39628         * tests/test-binary-io.c: New file.
39629
39630 2007-01-14  Bruno Haible  <bruno@clisp.org>
39631
39632         * modules/array-oset-tests: New file.
39633         * tests/test-array_oset.c: New file.
39634
39635 2007-01-14  Bruno Haible  <bruno@clisp.org>
39636
39637         * modules/array-list-tests: New file.
39638         * tests/test-array_list.c: New file.
39639
39640 2007-01-14  Bruno Haible  <bruno@clisp.org>
39641
39642         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
39643         and make.
39644         Reported by Simon Josefsson in
39645         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
39646
39647 2007-01-14  Bruno Haible  <bruno@clisp.org>
39648
39649         * modules/allocsa-tests: New file.
39650         * tests/test-allocsa.c: New file.
39651
39652 2007-01-14  Bruno Haible  <bruno@clisp.org>
39653
39654         * modules/fchdir (Depends-on): Add absolute-header.
39655         * modules/unistd (Depends-on): Likewise.
39656
39657 2006-12-30  Bruno Haible  <bruno@clisp.org>
39658
39659         * modules/fchdir: New file.
39660         * modules/unistd (Files): Add lib/unistd_.h.
39661         (Makefile.am): Generate unistd.h from unistd_.h.
39662         * lib/fchdir.c: New file.
39663         * lib/dirent_.h: New file.
39664         * lib/unistd_.h: New file.
39665         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
39666         * m4/fchdir.m4: New file.
39667         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
39668         (gl_HEADER_UNISTD): Invoke it.
39669         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
39670         function.
39671         * lib/backupfile.c (opendir, closedir): Undefine.
39672         * lib/chown.c (open, close): Undefine.
39673         * lib/clean-temp.c (open, close): Undefine.
39674         * lib/copy-file.c (open, close): Undefine.
39675         * lib/execute.c (open, close): Undefine.
39676         * lib/fsusage.c (open, close): Undefine.
39677         * lib/gc-gnulib.c (open, close): Undefine.
39678         * lib/getcwd.c (opendir, closedir): Undefine.
39679         * lib/glob.c (opendir, closedir): Undefine.
39680         * lib/javacomp.c (open, close): Undefine.
39681         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
39682         * lib/openat-proc.c (open, close): Undefine.
39683         * lib/pagealign_alloc.c (open, close): Undefine.
39684         * lib/pipe.c (open, close): Undefine.
39685         * lib/progreloc.c (open, close): Undefine.
39686         * lib/savedir.c (opendir, closedir): Undefine.
39687         * lib/utime.c (open, close): Undefine.
39688         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
39689
39690 2007-01-10  Bruno Haible  <bruno@clisp.org>
39691
39692         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
39693
39694 2007-01-12  Eric Blake  <ebb9@byu.net>
39695
39696         Provide a robust <wchar.h>.  Further simplifications are now
39697         possible in other modules, but not included here.
39698         * modules/wchar: New module.
39699         * m4/wchar.m4: New file.
39700         * lib/wchar_.h: Likewise.
39701         * modules/mbchar (Depends-on): Depend on wchar, as the first use
39702         of the new module.
39703         * MODULES.html.sh (Extended multibyte and wide character utilities):
39704         New section.
39705
39706 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
39707
39708         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
39709         to a reasonable default for memory allocation.
39710         (xreadlink): Don't allocate a huge buffer, to work around a buggy
39711         file system that reports garbage st_size values for symlinks.
39712         Problem reported by Liyang Hu.
39713
39714 2007-01-11  Simon Josefsson  <simon@josefsson.org>
39715
39716         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
39717         Emacs .#* auto-save files).
39718
39719 2007-01-11  Bruno Haible  <bruno@clisp.org>
39720
39721         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
39722         directory.
39723
39724 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
39725
39726         Use @...@ consistently in lib/wctype_.h.
39727         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
39728         on it being set to 1 or 0.
39729         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
39730         go back to AC_SUBSTing it.
39731         * modules/wctype (Makefile.am): Undo previous change.
39732
39733 2007-01-10  Eric Blake  <ebb9@byu.net>
39734
39735         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
39736         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
39737         * modules/wctype (Makefile.am): Likewise.
39738         Reported by Chris McGuire.
39739
39740 2007-01-10  Jim Meyering  <jim@meyering.net>
39741
39742         fts.c: a small readability/maintainability improvement
39743         * lib/fts.c (fts_read): Make this code slightly more readable and
39744         maintainable by hoisting the "sp->fts_cur = p" assignments to
39745         immediately follow the statements that set P.  Derived from
39746         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
39747
39748 2007-01-10  Eric Blake  <ebb9@byu.net>
39749
39750         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
39751         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
39752         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
39753         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
39754         Reported by Chris McGuire.
39755
39756 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39757
39758         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
39759         in sed script.
39760
39761 2007-01-09  Bruno Haible  <bruno@clisp.org>
39762
39763         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
39764         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
39765         variables.
39766         (func_module): Use them.
39767
39768 2007-01-09  Bruno Haible  <bruno@clisp.org>
39769
39770         * modules/unistr/base: New file.
39771         * lib/unistr.h: New file.
39772
39773         * modules/unistr/u8-to-u16: New file.
39774         * lib/unistr/u8-to-u16.c: New file.
39775
39776         * modules/unistr/u8-to-u32: New file.
39777         * lib/unistr/u8-to-u32.c: New file.
39778
39779         * modules/unistr/u16-to-u8: New file.
39780         * lib/unistr/u16-to-u8.c: New file.
39781
39782         * modules/unistr/u16-to-u32: New file.
39783         * lib/unistr/u16-to-u32.c: New file.
39784
39785         * modules/unistr/u32-to-u8: New file.
39786         * lib/unistr/u32-to-u8.c: New file.
39787
39788         * modules/unistr/u32-to-u16: New file.
39789         * lib/unistr/u32-to-u16.c: New file.
39790
39791         * modules/unistr/u8-check: New file.
39792         * modules/unistr/u16-check: New file.
39793         * modules/unistr/u32-check: New file.
39794         * lib/unistr/u8-check.c: New file.
39795         * lib/unistr/u16-check.c: New file.
39796         * lib/unistr/u32-check.c: New file.
39797
39798         * modules/unistr/u8-chr: New file.
39799         * modules/unistr/u16-chr: New file.
39800         * modules/unistr/u32-chr: New file.
39801         * lib/unistr/u8-chr.c: New file.
39802         * lib/unistr/u16-chr.c: New file.
39803         * lib/unistr/u32-chr.c: New file.
39804
39805         * modules/unistr/u8-cmp: New file.
39806         * modules/unistr/u16-cmp: New file.
39807         * modules/unistr/u32-cmp: New file.
39808         * lib/unistr/u8-cmp.c: New file.
39809         * lib/unistr/u16-cmp.c: New file.
39810         * lib/unistr/u32-cmp.c: New file.
39811
39812         * modules/unistr/u8-cpy: New file.
39813         * modules/unistr/u16-cpy: New file.
39814         * modules/unistr/u32-cpy: New file.
39815         * lib/unistr/u8-cpy.c: New file.
39816         * lib/unistr/u16-cpy.c: New file.
39817         * lib/unistr/u32-cpy.c: New file.
39818         * lib/unistr/u-cpy.h: New file.
39819
39820         * modules/unistr/u8-cpy-alloc: New file.
39821         * modules/unistr/u16-cpy-alloc: New file.
39822         * modules/unistr/u32-cpy-alloc: New file.
39823         * lib/unistr/u8-cpy-alloc.c: New file.
39824         * lib/unistr/u16-cpy-alloc.c: New file.
39825         * lib/unistr/u32-cpy-alloc.c: New file.
39826         * lib/unistr/u-cpy-alloc.h: New file.
39827
39828         * modules/unistr/u8-endswith: New file.
39829         * modules/unistr/u16-endswith: New file.
39830         * modules/unistr/u32-endswith: New file.
39831         * lib/unistr/u8-endswith.c: New file.
39832         * lib/unistr/u16-endswith.c: New file.
39833         * lib/unistr/u32-endswith.c: New file.
39834         * lib/unistr/u-endswith.h: New file.
39835
39836         * modules/unistr/u8-mblen: New file.
39837         * modules/unistr/u16-mblen: New file.
39838         * modules/unistr/u32-mblen: New file.
39839         * lib/unistr/u8-mblen.c: New file.
39840         * lib/unistr/u16-mblen.c: New file.
39841         * lib/unistr/u32-mblen.c: New file.
39842
39843         * modules/unistr/u8-mbtouc: New file.
39844         * modules/unistr/u16-mbtouc: New file.
39845         * modules/unistr/u32-mbtouc: New file.
39846         * lib/unistr/u8-mbtouc.c: New file.
39847         * lib/unistr/u16-mbtouc.c: New file.
39848         * lib/unistr/u32-mbtouc.c: New file.
39849
39850         * modules/unistr/u8-mbtouc-safe: New file.
39851         * modules/unistr/u16-mbtouc-safe: New file.
39852         * modules/unistr/u32-mbtouc-safe: New file.
39853         * lib/unistr/u8-mbtouc-safe.c: New file.
39854         * lib/unistr/u16-mbtouc-safe.c: New file.
39855         * lib/unistr/u32-mbtouc-safe.c: New file.
39856
39857         * modules/unistr/u8-move: New file.
39858         * modules/unistr/u16-move: New file.
39859         * modules/unistr/u32-move: New file.
39860         * lib/unistr/u8-move.c: New file.
39861         * lib/unistr/u16-move.c: New file.
39862         * lib/unistr/u32-move.c: New file.
39863         * lib/unistr/u-move.h: New file.
39864
39865         * modules/unistr/u8-next: New file.
39866         * modules/unistr/u16-next: New file.
39867         * modules/unistr/u32-next: New file.
39868         * lib/unistr/u8-next.c: New file.
39869         * lib/unistr/u16-next.c: New file.
39870         * lib/unistr/u32-next.c: New file.
39871
39872         * modules/unistr/u8-prev: New file.
39873         * modules/unistr/u16-prev: New file.
39874         * modules/unistr/u32-prev: New file.
39875         * lib/unistr/u8-prev.c: New file.
39876         * lib/unistr/u16-prev.c: New file.
39877         * lib/unistr/u32-prev.c: New file.
39878
39879         * modules/unistr/u8-set: New file.
39880         * modules/unistr/u16-set: New file.
39881         * modules/unistr/u32-set: New file.
39882         * lib/unistr/u8-set.c: New file.
39883         * lib/unistr/u16-set.c: New file.
39884         * lib/unistr/u32-set.c: New file.
39885         * lib/unistr/u-set.h: New file.
39886
39887         * modules/unistr/u8-startswith: New file.
39888         * modules/unistr/u16-startswith: New file.
39889         * modules/unistr/u32-startswith: New file.
39890         * lib/unistr/u8-startswith.c: New file.
39891         * lib/unistr/u16-startswith.c: New file.
39892         * lib/unistr/u32-startswith.c: New file.
39893         * lib/unistr/u-startswith.h: New file.
39894
39895         * modules/unistr/u8-stpcpy: New file.
39896         * modules/unistr/u16-stpcpy: New file.
39897         * modules/unistr/u32-stpcpy: New file.
39898         * lib/unistr/u8-stpcpy.c: New file.
39899         * lib/unistr/u16-stpcpy.c: New file.
39900         * lib/unistr/u32-stpcpy.c: New file.
39901         * lib/unistr/u-stpcpy.h: New file.
39902
39903         * modules/unistr/u8-stpncpy: New file.
39904         * modules/unistr/u16-stpncpy: New file.
39905         * modules/unistr/u32-stpncpy: New file.
39906         * lib/unistr/u8-stpncpy.c: New file.
39907         * lib/unistr/u16-stpncpy.c: New file.
39908         * lib/unistr/u32-stpncpy.c: New file.
39909         * lib/unistr/u-stpncpy.h: New file.
39910
39911         * modules/unistr/u8-strcat: New file.
39912         * modules/unistr/u16-strcat: New file.
39913         * modules/unistr/u32-strcat: New file.
39914         * lib/unistr/u8-strcat.c: New file.
39915         * lib/unistr/u16-strcat.c: New file.
39916         * lib/unistr/u32-strcat.c: New file.
39917         * lib/unistr/u-strcat.h: New file.
39918
39919         * modules/unistr/u8-strchr: New file.
39920         * modules/unistr/u16-strchr: New file.
39921         * modules/unistr/u32-strchr: New file.
39922         * lib/unistr/u8-strchr.c: New file.
39923         * lib/unistr/u16-strchr.c: New file.
39924         * lib/unistr/u32-strchr.c: New file.
39925
39926         * modules/unistr/u8-strcmp: New file.
39927         * modules/unistr/u16-strcmp: New file.
39928         * modules/unistr/u32-strcmp: New file.
39929         * lib/unistr/u8-strcmp.c: New file.
39930         * lib/unistr/u16-strcmp.c: New file.
39931         * lib/unistr/u32-strcmp.c: New file.
39932
39933         * modules/unistr/u8-strcpy: New file.
39934         * modules/unistr/u16-strcpy: New file.
39935         * modules/unistr/u32-strcpy: New file.
39936         * lib/unistr/u8-strcpy.c: New file.
39937         * lib/unistr/u16-strcpy.c: New file.
39938         * lib/unistr/u32-strcpy.c: New file.
39939         * lib/unistr/u-strcpy.h: New file.
39940
39941         * modules/unistr/u8-strcspn: New file.
39942         * modules/unistr/u16-strcspn: New file.
39943         * modules/unistr/u32-strcspn: New file.
39944         * lib/unistr/u8-strcspn.c: New file.
39945         * lib/unistr/u16-strcspn.c: New file.
39946         * lib/unistr/u32-strcspn.c: New file.
39947         * lib/unistr/u-strcspn.h: New file.
39948
39949         * modules/unistr/u8-strdup: New file.
39950         * modules/unistr/u16-strdup: New file.
39951         * modules/unistr/u32-strdup: New file.
39952         * lib/unistr/u8-strdup.c: New file.
39953         * lib/unistr/u16-strdup.c: New file.
39954         * lib/unistr/u32-strdup.c: New file.
39955         * lib/unistr/u-strdup.h: New file.
39956
39957         * modules/unistr/u8-strlen: New file.
39958         * modules/unistr/u16-strlen: New file.
39959         * modules/unistr/u32-strlen: New file.
39960         * lib/unistr/u8-strlen.c: New file.
39961         * lib/unistr/u16-strlen.c: New file.
39962         * lib/unistr/u32-strlen.c: New file.
39963         * lib/unistr/u-strlen.h: New file.
39964
39965         * modules/unistr/u8-strmblen: New file.
39966         * modules/unistr/u16-strmblen: New file.
39967         * modules/unistr/u32-strmblen: New file.
39968         * lib/unistr/u8-strmblen.c: New file.
39969         * lib/unistr/u16-strmblen.c: New file.
39970         * lib/unistr/u32-strmblen.c: New file.
39971
39972         * modules/unistr/u8-strmbtouc: New file.
39973         * modules/unistr/u16-strmbtouc: New file.
39974         * modules/unistr/u32-strmbtouc: New file.
39975         * lib/unistr/u8-strmbtouc.c: New file.
39976         * lib/unistr/u16-strmbtouc.c: New file.
39977         * lib/unistr/u32-strmbtouc.c: New file.
39978
39979         * modules/unistr/u8-strncat: New file.
39980         * modules/unistr/u16-strncat: New file.
39981         * modules/unistr/u32-strncat: New file.
39982         * lib/unistr/u8-strncat.c: New file.
39983         * lib/unistr/u16-strncat.c: New file.
39984         * lib/unistr/u32-strncat.c: New file.
39985         * lib/unistr/u-strncat.h: New file.
39986
39987         * modules/unistr/u8-strncmp: New file.
39988         * modules/unistr/u16-strncmp: New file.
39989         * modules/unistr/u32-strncmp: New file.
39990         * lib/unistr/u8-strncmp.c: New file.
39991         * lib/unistr/u16-strncmp.c: New file.
39992         * lib/unistr/u32-strncmp.c: New file.
39993
39994         * modules/unistr/u8-strncpy: New file.
39995         * modules/unistr/u16-strncpy: New file.
39996         * modules/unistr/u32-strncpy: New file.
39997         * lib/unistr/u8-strncpy.c: New file.
39998         * lib/unistr/u16-strncpy.c: New file.
39999         * lib/unistr/u32-strncpy.c: New file.
40000         * lib/unistr/u-strncpy.h: New file.
40001
40002         * modules/unistr/u8-strnlen: New file.
40003         * modules/unistr/u16-strnlen: New file.
40004         * modules/unistr/u32-strnlen: New file.
40005         * lib/unistr/u8-strnlen.c: New file.
40006         * lib/unistr/u16-strnlen.c: New file.
40007         * lib/unistr/u32-strnlen.c: New file.
40008         * lib/unistr/u-strnlen.h: New file.
40009
40010         * modules/unistr/u8-strpbrk: New file.
40011         * modules/unistr/u16-strpbrk: New file.
40012         * modules/unistr/u32-strpbrk: New file.
40013         * lib/unistr/u8-strpbrk.c: New file.
40014         * lib/unistr/u16-strpbrk.c: New file.
40015         * lib/unistr/u32-strpbrk.c: New file.
40016         * lib/unistr/u-strpbrk.h: New file.
40017
40018         * modules/unistr/u8-strrchr: New file.
40019         * modules/unistr/u16-strrchr: New file.
40020         * modules/unistr/u32-strrchr: New file.
40021         * lib/unistr/u8-strrchr.c: New file.
40022         * lib/unistr/u16-strrchr.c: New file.
40023         * lib/unistr/u32-strrchr.c: New file.
40024
40025         * modules/unistr/u8-strspn: New file.
40026         * modules/unistr/u16-strspn: New file.
40027         * modules/unistr/u32-strspn: New file.
40028         * lib/unistr/u8-strspn.c: New file.
40029         * lib/unistr/u16-strspn.c: New file.
40030         * lib/unistr/u32-strspn.c: New file.
40031         * lib/unistr/u-strspn.h: New file.
40032
40033         * modules/unistr/u8-strstr: New file.
40034         * modules/unistr/u16-strstr: New file.
40035         * modules/unistr/u32-strstr: New file.
40036         * lib/unistr/u8-strstr.c: New file.
40037         * lib/unistr/u16-strstr.c: New file.
40038         * lib/unistr/u32-strstr.c: New file.
40039         * lib/unistr/u-strstr.h: New file.
40040
40041         * modules/unistr/u8-strtok: New file.
40042         * modules/unistr/u16-strtok: New file.
40043         * modules/unistr/u32-strtok: New file.
40044         * lib/unistr/u8-strtok.c: New file.
40045         * lib/unistr/u16-strtok.c: New file.
40046         * lib/unistr/u32-strtok.c: New file.
40047         * lib/unistr/u-strtok.h: New file.
40048
40049         * modules/unistr/u8-uctomb: New file.
40050         * modules/unistr/u16-uctomb: New file.
40051         * modules/unistr/u32-uctomb: New file.
40052         * lib/unistr/u8-uctomb.c: New file.
40053         * lib/unistr/u16-uctomb.c: New file.
40054         * lib/unistr/u32-uctomb.c: New file.
40055
40056         * MODULES.html.sh (Unicode string functions): Add the new modules.
40057
40058 2007-01-08  Bruno Haible  <bruno@clisp.org>
40059
40060         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
40061         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
40062         subdirectories.
40063
40064 2007-01-08  Karl Berry  <karl@gnu.org>
40065
40066         * doc/error.texi: mention that main() fns must set program_name
40067         when progname is used.
40068
40069 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
40070
40071         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
40072         WCTYPE_H is empty, for the benefit of builds from non-distclean
40073         directories.  Problem reported by Eric Blake in
40074         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
40075
40076 2007-01-08  Bruno Haible  <bruno@clisp.org>
40077
40078         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
40079         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
40080         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
40081         PROVIDE_CANONICALIZE_FILENAME_MODE.
40082         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
40083
40084 2007-01-08  Bruno Haible  <bruno@clisp.org>
40085
40086         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
40087         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
40088         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
40089         * lib/fts.c: Likewise.
40090         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
40091
40092 2006-12-25  Bruno Haible  <bruno@clisp.org>
40093
40094         * modules/utf8-ucs4-safe: New file.
40095         * lib/utf8-ucs4-safe.h: New file.
40096         * lib/unistr/utf8-ucs4-safe.c: New file.
40097
40098         * modules/utf16-ucs4-safe: New file.
40099         * lib/utf16-ucs4-safe.h: New file.
40100         * lib/unistr/utf16-ucs4-safe.c: New file.
40101
40102         * MODULES.html.sh (Unicode string functions): Add the new modules.
40103
40104 2007-01-08  Bruno Haible  <bruno@clisp.org>
40105
40106         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
40107         (Depends-on): Add unitypes.
40108         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
40109         (u8_mbtouc_aux): Move out to separate file.
40110         (u8_mbtouc): Use ucs4_t, uint8_t types.
40111         * lib/unistr/utf8-ucs4.c: New file.
40112
40113         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
40114         (Depends-on): Add unitypes.
40115         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
40116         (u16_mbtouc_aux): Move out to separate file.
40117         (u16_mbtouc): Use ucs4_t, uint16_t types.
40118         * lib/unistr/utf16-ucs4.c: New file.
40119
40120         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
40121         (Depends-on): Add unitypes.
40122         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
40123         (u8_uctomb_aux): Move out to separate file.
40124         (u8_uctomb): Use ucs4_t, uint8_t types.
40125         * lib/unistr/ucs4-utf8.c: New file.
40126
40127         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
40128         (Depends-on): Add unitypes.
40129         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
40130         (u16_uctomb_aux): Move out to separate file.
40131         (u16_uctomb): Use ucs4_t, uint16_t types.
40132         * lib/unistr/ucs4-utf16.c: New file.
40133
40134 2006-12-25  Bruno Haible  <bruno@clisp.org>
40135
40136         * modules/unitypes: New file.
40137         * lib/unitypes.h: New file.
40138         * MODULES.html.sh (func_all_modules): New section "Unicode string
40139         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
40140         this section. Add unitypes.
40141
40142 2007-01-08  Bruno Haible  <bruno@clisp.org>
40143
40144         Avoid variable names that conflict with those from libtool.
40145         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
40146         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
40147         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
40148         library_names_spec to acl_library_names_spec, hardcode_* to
40149         acl_hardcode_*.
40150         Reported by Ralf Wildenhues.
40151
40152 2007-01-08  Bruno Haible  <bruno@clisp.org>
40153
40154         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
40155         definition.
40156         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
40157         definition.
40158         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
40159         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
40160         definition.
40161         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
40162         definition.
40163         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
40164         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
40165         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
40166         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
40167         definition.
40168         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
40169         definition.
40170         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
40171         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
40172         GC_USE_<algorithm>.
40173         * lib/gc-libgcrypt.c: Likewise.
40174         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
40175         * modules/gc-arctwo (configure.ac): Likewise.
40176         * modules/gc-des (configure.ac): Likewise.
40177         * modules/gc-hmac-md5 (configure.ac): Likewise.
40178         * modules/gc-hmac-sha1 (configure.ac): Likewise.
40179         * modules/gc-md2 (configure.ac): Likewise.
40180         * modules/gc-md4 (configure.ac): Likewise.
40181         * modules/gc-md5 (configure.ac): Likewise.
40182         * modules/gc-random (configure.ac): Likewise.
40183         * modules/gc-rijndael (configure.ac): Likewise.
40184         * modules/gc-sha1 (configure.ac): Likewise.
40185
40186 2007-01-08  Bruno Haible  <bruno@clisp.org>
40187
40188         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
40189         macro definition.
40190         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
40191         definition.
40192         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
40193         definition.
40194         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
40195         * modules/fcntl-safer (configure.ac): Likewise.
40196         * modules/fopen-safer (configure.ac): Likewise.
40197         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
40198         GNULIB_FWRITEERROR macro definition.
40199
40200 2007-01-08  Bruno Haible  <bruno@clisp.org>
40201
40202         * m4/gnulib-common.m4: New file.
40203         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
40204         (func_get_filelist): Add m4/gnulib-common.m4.
40205
40206 2007-01-08  Bruno Haible  <bruno@clisp.org>
40207
40208         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
40209         command.
40210
40211 2007-01-08  Jim Meyering  <jim@meyering.net>
40212
40213         Use a more robust test for a "can't happen" condition.
40214         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
40215         narrowed the st_size value.  Presuming the "can't happen" condition
40216         is true, that narrowing could conceivably convert an invalid st_size
40217         value into a valid one.  Instead, use a change based on Matthew
40218         Woehlke's original patch.
40219
40220         Slight readability improvement: use an assert-like macro
40221         in place of literal "abort ()" uses.
40222         * lib/fts.c (fts_assert): Define.
40223         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
40224         Use this macro instead of a bare 'abort'.
40225
40226 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
40227
40228         Don't worry about using IRIX 5.3's wctype.h broken definitions;
40229         simply work around them.
40230         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
40231         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
40232         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
40233         declaring.
40234         Don't bother to define as macros, since the standard doesn't require it.
40235         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
40236         longer worry about IRIX 5.3.
40237         (HAVE_WCTYPE_CTMP_BUG): Remove.
40238
40239 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
40240
40241         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
40242         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
40243         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
40244         Problems reported by Georg Schwarz for IRIX 5.3.
40245
40246         * gnulib-tool (autoconf_minversion): Take the maximum version number
40247         found, not the minimum.  Problem reported by James Youngman.
40248
40249 2007-01-03  Karl Berry  <karl@gnu.org>
40250
40251         * doc/error.texi: new file, explaining interaction with progname.
40252         * doc/gnulib.texi: include it.  Update copyright.
40253
40254 2007-01-03  Simon Josefsson  <simon@josefsson.org>
40255
40256         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
40257         AC_CANONICAL_HOST, to improve autobuild outputs.
40258
40259 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
40260             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
40261
40262         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
40263         sockets, server sockets, and other file descriptors.  Count errors
40264         to compute the return value.  Reorder the code a bit to be easier
40265         to follow.  Don't set event bits that were not requested (except
40266         POLLERR and POLLHUP).
40267
40268 2007-01-01  Bruno Haible  <bruno@clisp.org>
40269
40270         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
40271
40272 2007-01-03  Jim Meyering  <jim@meyering.net>
40273
40274         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
40275
40276 2007-01-02  Bruno Haible  <bruno@clisp.org>
40277
40278         * modules/settime (Include): Require timespec.h.
40279         * modules/nanosleep (Include): Likewise.
40280
40281 2007-01-01  Bruno Haible  <bruno@clisp.org>
40282
40283         * gnulib-tool (func_emit_copyright_notice): Bump year.
40284         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
40285
40286 2007-01-01  Bruno Haible  <bruno@clisp.org>
40287
40288         Improve support for OpenBSD.
40289         * build-aux/config.rpath (libname_spec): Export.
40290         (library_names_spec): New variable. Export.
40291         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
40292         library_names_spec from the config.rpath output. Locate shared library
40293         through the name pattern in library_names_spec.
40294
40295 2007-01-01  Eric Blake  <ebb9@byu.net>
40296
40297         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
40298
40299 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
40300
40301         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
40302         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
40303         assume the C locale, and avoid an "eval" that could cause trouble.
40304         Problem with SORT reported by Bob Proulx.
40305
40306         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
40307         Define.  Trivial patch from Henning Nielsen Lund, originally
40308         sent to bug-grep@gnu.org today.
40309
40310 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
40311
40312         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
40313         struct stat.  Problem reported by Henning Nielsen Lund.
40314         * lib/acl.c: Include acl.h first, to check interface.  Don't
40315         bother to include sys/types.h and sys/stat.h again.
40316
40317 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
40318
40319         Import the following change from libc; problem reported by
40320         Sven Verdoolaege.
40321
40322         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
40323
40324         [BZ #1373]
40325         * lib/argp.h: Remove __NTH for __argp_usage inline function.
40326
40327 2006-12-28  Jim Meyering  <jim@meyering.net>
40328
40329         * build-aux/announce-gen: Do not assume that the package
40330         builds any of tar.gz, tar.bz2, and .xdelta files.
40331         Suggestion from Simon Josefsson.
40332
40333 2006-12-28  Simon Josefsson  <simon@josefsson.org>
40334
40335         * modules/announce-gen: New file.
40336
40337 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
40338
40339         * lib/mbchar.h: Just include <wctype.h>; the wctype module
40340         handles its gotchas now.
40341         * lib/mbswidth.c: Likewise.
40342         * lib/wcwidth.h: Likewise.
40343         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
40344         and iswcntrl; the wctype module does this stuff now.
40345         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
40346         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
40347         * modules/mbchar (Depends-on): Add wctype.
40348         * modules/mbswidth (Depends-on): Likewise.
40349         * modules/wcwidth (Depends-on): Likewise.
40350
40351 2006-12-27  Eric Blake  <ebb9@byu.net>
40352
40353         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
40354         module uses more than what <wctype.h> is required to provide.
40355
40356 2006-12-26  Eric Blake  <ebb9@byu.net>
40357
40358         * gnulib-tool (sed_extract_prog): Avoid space-tab.
40359
40360 2006-12-26  Eric Blake  <ebb9@byu.net>
40361
40362         * modules/absolute-header: New module.
40363         * modules/fcntl (Depends-on): Depend on it.
40364         * modules/inttypes (Depends-on): Likewise.
40365         * modules/stdint (Depends-on): Likewise.
40366         * modules/sys_stat (Depends-on): Likewise.
40367         * modules/wctype (Depends-on): Likewise.
40368         * MODULES.html.sh (Support for building libraries and
40369         executables): Document it.
40370
40371 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
40372
40373         * gnulib-tool (SED): Remove, undoing previous change.
40374         The problem was that it broke coreutils on Solaris, because
40375         "sed --posix" leaked into a makefile.
40376         (sed): New alias, if 'alias' and GNU sed.
40377
40378 2006-12-24  Jim Meyering  <jim@meyering.net>
40379
40380         Work around an fchownat bug in glibc-2.4:
40381         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
40382         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
40383         in spite of the -P option.
40384         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
40385         New macros.
40386         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
40387         * modules/openat (Files): Add lib/fchownat.c.
40388         * lib/openat.c (fchownat): Don't define here.  Move to...
40389         * lib/fchownat.c: ...this new file.
40390
40391 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
40392
40393         Fix bug reported by Bruno Haible in
40394         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
40395         where quotearg.c didn't compile on Mac OS X 10.2 because it
40396         lacks <wchar.h> and wint_t.
40397         * lib/wctype_.h (__wctype_wint_t): New type.
40398         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
40399         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
40400         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
40401         Arg is now of type __wctype_wint_t, not wint_t.
40402         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
40403         substitute HAVE_WINT_T.
40404         * modules/wctype (Files): Add m4/wint_t.m4.
40405         (wctype.h): Substitute HAVE_WINT_T.
40406
40407 2006-12-23  Bruno Haible  <bruno@clisp.org>
40408
40409         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
40410
40411 2006-12-23  Bruno Haible  <bruno@clisp.org>
40412
40413         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
40414         S_ISLNK.
40415         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
40416         mingw.
40417
40418 2006-12-22  Bruno Haible  <bruno@clisp.org>
40419
40420         * lib/copy-file.c: Include acl.h.
40421         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
40422         Close the file descriptors only after being done with copy_acl.
40423         * modules/copy-file (Depends-on): Add acl.
40424
40425 2006-12-22  Bruno Haible  <bruno@clisp.org>
40426
40427         * gnulib-tool (SED): New variable.
40428         Use $SED instead of sed everywhere.
40429
40430 2006-12-22  Bruno Haible  <bruno@clisp.org>
40431
40432         * modules/no-c++: New file.
40433         * m4/no-c++.m4: New file.
40434         * MODULES.html.sh (Support for building libraries and executables):
40435         Add no-c++.
40436
40437 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
40438
40439         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
40440         Include <limits.h>, and use its INT_MAX to rewrite the
40441         j loop so that it does not overflow 'int'.  Problem reported by
40442         Ralf Wildenhues in
40443         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
40444         Play it safe by shifting left by 1 rather than multiplying by 2,
40445         as GCC is less likely to optimize this away when the value
40446         is signed (when it assumes overflow leads to undefined behavior).
40447         Also, don't assume time_t uses two's complement.
40448
40449 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
40450
40451         * MODULES.html.sh: New module wctype.
40452         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
40453         * lib/fnmatch.c: Don't bother to include <wchar.h> before
40454         <wctype.h>, since the new wctype module should fix this.
40455         * lib/quotearg.c: Include <wctype.h> unconditionally, since
40456         the wctype module should arrange for it.
40457         * lib/regex_internal.h: Likewise.
40458         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
40459         since the wctype module should handle this now.
40460         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
40461         * modules/fnmatch (Depends-on): Add wctype.
40462         * modules/quotearg (Depends-on): Likewise.
40463         * modules/regex (Depends-on): Likewise.
40464
40465 2006-12-19  Bruno Haible  <bruno@clisp.org>
40466
40467         * lib/strdup.h [C++]: Wrap definitions in extern "C".
40468         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
40469
40470 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40471
40472         * modules/savewd (Depends-on): Fix dependency on fcntl.
40473
40474 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
40475
40476         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
40477         conforms to C99, rather than relying on the user's environment
40478         setting of STDINT_H.
40479
40480 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
40481         and Eric Blake  <ebb9@byu.net>
40482
40483         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
40484         This is more consistent with the other defines here.
40485         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
40486         Port to z/OS.  Problem reported by Paul Gilmartin.
40487         Change local vars to use gl_ prefix rather than ac_.
40488         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
40489         with other defines.
40490         * modules/double-slash-root: New module.
40491         * modules/dirname (Files): Remove m4/double-slash-root.m4.
40492         (Depends-on): Add double-slash-root.
40493         * MODULES.html.sh (File system functions): Mention new module.
40494
40495 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
40496
40497         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
40498         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
40499         This is for the benefit of gzip, which doesn't do i18n.
40500
40501 2006-12-12  Jim Meyering  <jim@meyering.net>
40502
40503         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
40504         Reported by Andreas Schwab <schwab@suse.de>.
40505
40506 2006-12-12  Bruno Haible  <bruno@clisp.org>
40507
40508         Merge these changes.
40509         2006-09-05  Bruno Haible  <bruno@clisp.org>
40510         * lib/iconvme.c (iconv_string): No need to save and restore errno when
40511         iconv_alloc succeeded.
40512         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
40513         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
40514         test for " && dest " at the end - dest is always != NULL there. Call
40515         iconv with 4xNULL arguments initially, to reset the state. Call iconv
40516         with 2xNULL arguments, also to flush the state storage. Handle the
40517         IRIX iconv behaviour. Realloc the final result, to throw away unused
40518         memory.
40519
40520 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
40521
40522         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
40523         and fchmodat unconditionally, since glibc 2.4 has them.
40524         Problem reported by Arkadiusz Miskiewicz.
40525
40526 2006-12-10  Bruno Haible  <bruno@clisp.org>
40527
40528         * gnulib-tool (func_import): Show the include files only for those
40529         modules that are copied and specified.
40530         Reported by Karl Berry.
40531
40532 2006-12-08  Jim Meyering  <jim@meyering.net>
40533
40534         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
40535         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
40536
40537         * build-aux/announce-gen: Add two new options, both optional:
40538         --bootstrap-tools=TOOL_LIST
40539               a comma-separated list of tools, e.g.,
40540               autoconf,automake,bison,gnulib
40541         --gnulib-snapshot-date=DATE
40542               if gnulib is in the bootstrap tool list,
40543               then report this as the snapshot date.
40544               If not specified, use the current date/time.
40545               If you specify a date here, be sure it's UTC.
40546
40547 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40548
40549         * tests/test-argp-2.sh: Fix test to match actual output.
40550         (func_compare): Fix sed script to be portable.
40551
40552 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
40553
40554         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
40555         workaround for this case.  It is not autoconfigured now; offhand
40556         it's hard to see how to autoconfigure it.
40557
40558 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
40559
40560         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
40561         a directory that is about to be chowned.  Such a directory's
40562         initial file permissions should permit the owner only and this
40563         should not be changed until after the chown, since the group and
40564         other bits would be incorrect if they granted permission before
40565         the chown.
40566
40567         Fix porting problem for iswctype reported by Georg Schwarz in:
40568         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
40569         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
40570         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
40571         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
40572         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
40573
40574 2006-12-03  Jim Meyering  <jim@meyering.net>
40575
40576         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
40577         p->fts_statp may not yet be defined.
40578         (fts_read): Instead, set it in the caller, once p->fts_statp is
40579         sure to be defined, and corresponds to a top-level directory.
40580         This bug made du -x fail.  Here's the coreutils test case:
40581         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
40582         Reported by Mike Frysinger.
40583
40584 2006-12-01  Jim Meyering  <jim@meyering.net>
40585
40586         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
40587         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
40588         Reported by Simon Josefsson.
40589
40590 2006-11-30  Jim Meyering  <jim@meyering.net>
40591
40592         * m4/warning.m4: Use the all-permissive copyright notice
40593         recommended by RMS (rather than LGPL).
40594         * m4/vararrays.m4: Likewise.
40595         * m4/flexmember.m4: Likewise.
40596
40597 2006-11-29  Bruno Haible  <bruno@clisp.org>
40598
40599         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
40600         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
40601         using +=.
40602         Reported by Simon Josefsson <simon@josefsson.org>.
40603
40604 2006-11-28  James Youngman <jay@gnu.org>
40605
40606         * README: Advise users that they might find the bug-gnulib@gnu.org
40607         and autotools-announce@gnu.org mailing lists useful.
40608
40609 2006-11-28  Bruno Haible  <bruno@clisp.org>
40610
40611         * m4/ptrdiff_max.m4: Remove file.
40612
40613 2006-11-21  Bruno Haible  <bruno@clisp.org>
40614
40615         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
40616         _AC_COMPUTE_INT.
40617         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
40618         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
40619         _AC_COMPUTE_INT.
40620         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
40621         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
40622         _AC_COMPUTE_INT.
40623         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
40624
40625 2006-11-28  Jim Meyering  <jim@meyering.net>
40626
40627         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
40628         warning from "gcc -Wshadow" about shadowing the builtin.
40629
40630 2006-11-27  Bruno Haible  <bruno@clisp.org>
40631
40632         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
40633         _AC_COMPUTE_INT.
40634         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
40635
40636 2006-11-27  Bruno Haible  <bruno@clisp.org>
40637             Paul Eggert  <eggert@cs.ucla.edu>
40638
40639         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
40640
40641 2006-11-26  Bruno Haible  <bruno@clisp.org>
40642
40643         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
40644         noinst_LTLIBRARIES.
40645
40646 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
40647             Bruno Haible  <bruno@clisp.org>
40648
40649         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
40650         if compiling with "gcc -ansi".
40651
40652 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
40653
40654         Fix some incompatibilities with gcc -ansi -pedantic.
40655         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
40656         if compiling pedantically with GCC, unless it's C99 or later.
40657         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
40658         it mishandles gcc -ansi -pedantic as well.
40659         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
40660         if gcc -pedantic.
40661         * lib/regexec.c (check_node_accept_bytes): Don't use auto
40662         initializers for struct if -pedantic, unless it's C99 or later.
40663
40664 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
40665
40666         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
40667         Don't close an fd more than once. Identical atimes indicate
40668         success, not failure.
40669
40670 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
40671
40672         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
40673
40674 2006-11-23  Jim Meyering  <jim@meyering.net>
40675
40676         * build-aux/announce-gen: New file.  From coreutils.
40677
40678 2006-11-22  Jim Meyering  <jim@meyering.net>
40679
40680         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
40681         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
40682         (fts_read): Use a temporary to narrow the overused st_size member
40683         before using it in a switch statement.  Reported by Matthew Woehlke.
40684
40685         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
40686         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
40687
40688 2006-11-20  Bruno Haible  <bruno@clisp.org>
40689
40690         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
40691         changequote instead of pairs of brackets.
40692         Reported by Andreas Schwab <schwab@suse.de>.
40693
40694 2006-11-21  Jim Meyering  <jim@meyering.net>
40695
40696         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
40697         so as to remain compatible with older compilers.
40698         Patch from Michael Deutschmann.
40699
40700 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
40701
40702         * MODULES.html.sh (File system functions): Add openat.
40703
40704         * lib/openat.h (rpl_fstatat): New macro, if
40705         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
40706         (fstatat): Define to rpl_fstatat under the same conditions,
40707         unless COMPILING_FSTATAT.
40708         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
40709         seems to have the bug.
40710         * lib/fstatat.c: New file.
40711         * modules/openat (Files): Add it.
40712
40713 2006-11-20  Bruno Haible  <bruno@clisp.org>
40714
40715         * Makefile: New file.
40716
40717 2006-11-20  Jim Meyering  <jim@meyering.net>
40718
40719         The beginnings of syntax-related checks for gnulib.
40720         * lib/Makefile: New file.
40721         * lib/t-idcache: New script.  Ensure that the two halves of
40722         idcache.c stay in sync.
40723
40724         * lib/idcache.c: Adjust comments in user- and group- portions to
40725         be more accurate, and to be consistent with one another.
40726
40727 2006-11-20  Jim Meyering  <jim@meyering.net>
40728
40729         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
40730         continue using the flexible array member (thus, this module performs
40731         half as many malloc calls), with the addition that...
40732         (getgroup, getuser): Consistently record a non-match via an empty
40733         "name" string, and map an empty string match to a NULL return value.
40734         * modules/idcache (Depends-on): Re-add flexmember.
40735
40736         * lib/idcache.c (getuser): Remove all uses of the register keyword.
40737         (getuidbyname, getgroup, getgidbyname): Likewise.
40738
40739         Use cleaner syntax: NULL rather than 0.
40740         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
40741
40742 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
40743
40744         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
40745         It mishandled the case where the group was missing.
40746         Problem reported by Greg Schafer.
40747         * modules/idcache: Likewise.
40748
40749 2006-11-18  Jim Meyering  <jim@meyering.net>
40750
40751         * check-module (%exempt_header): Add exception for some
40752         conditionally-included headers.
40753
40754         * modules/i-ring (Depends-on): Add verify.
40755         (License): Change to LGPL.
40756
40757 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
40758
40759         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
40760         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
40761         and inttostr.h.  Use snprintf rather than uinttostr, so that
40762         LGPLed code doesn't depend on GPLed.
40763
40764 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
40765
40766         * modules/inline (License): Change from GPL to LGPL.
40767
40768 2006-11-17  Jim Meyering  <jim@meyering.net>
40769
40770         * modules/d-type (License): Switch to LGPL.
40771
40772 2006-11-15  Bruno Haible  <bruno@clisp.org>
40773
40774         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
40775
40776 2006-11-15  Eric Blake  <ebb9@byu.net>
40777
40778         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
40779         the module dependency.
40780
40781 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40782             Bruno Haible  <bruno@clisp.org>
40783
40784         * gnulib-tool (func_create_testdir): Add license consistency check.
40785
40786 2006-11-15  Eric Blake  <ebb9@byu.net>
40787
40788         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
40789         random "(cached)" in configure output.
40790
40791 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40792
40793         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
40794         test for conforming inttypes.h is both announced and cached.
40795
40796         * MODULES.html.sh (seen_modules, seen_files): New variables.
40797         (func_module): Rewrite to use a few less gnulib-tool and sed
40798         invocations.  Avoid a couple of quadratic algorithms for ...
40799         (missed_modules, missed_files): ... these, with ...
40800         (func_append, func_tmpdir): ... these new functions, from
40801         gnulib-tool.  Analogously, install traps for cleanup.
40802
40803         * tests/test-gc.c (main): Remove unused variables.
40804         * tests/test-read-file.c: Include stdlib.h, for 'free'.
40805
40806 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
40807
40808         * modules/inttostr (License): Change to LGPL.
40809
40810 2006-11-14  Eric Blake  <ebb9@byu.net>
40811
40812         * modules/tempname (License): Change to LGPL.
40813
40814 2006-11-14  Eric Blake  <ebb9@byu.net>
40815
40816         * doc/functions.texi (Function Portability): *printf functions on
40817         Cygwin now understand all POSIX size specifiers.
40818
40819 2006-11-14  Bruno Haible  <bruno@clisp.org>
40820
40821         * modules/c-ctype (License): Change to LGPL.
40822
40823 2006-11-12  Bruno Haible  <bruno@clisp.org>
40824
40825         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
40826         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
40827         for GNOME libraries, for which the include files are installed in
40828         subdirectories of $prefix/include.
40829
40830 2006-11-12  Bruno Haible  <bruno@clisp.org>
40831
40832         * m4/lib-link.m4: Require at least autoconf-2.54.
40833         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
40834         name to underscores for the --with option.
40835
40836 2006-11-13  Bruno Haible  <bruno@clisp.org>
40837
40838         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
40839         the tests directory.
40840         Reported by Ralf Wildenhues.
40841
40842 2006-11-13  Bruno Haible  <bruno@clisp.org>
40843
40844         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
40845         (func_emit_initmacro_end): Undo the override here.
40846         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
40847         Works around the famous automake error in coreutils.
40848
40849 2006-11-13  Eric Blake  <ebb9@byu.net>
40850
40851         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
40852         element, not its node.
40853
40854 2006-11-12  Bruno Haible  <bruno@clisp.org>
40855
40856         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
40857         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
40858
40859 2006-11-12  Bruno Haible  <bruno@clisp.org>
40860
40861         * gnulib-tool: New option --local-symlink.
40862         (func_usage): Document it.
40863         (lsymbolic): New variable.
40864         (func_import, func_create_testdir): If --symlink was not specified,
40865         test whether --local-symlink was specified and the file comes from
40866         the local_gnulib_dir.
40867
40868 2006-11-12  Bruno Haible  <bruno@clisp.org>
40869
40870         * gnulib-tool (func_ln): New function.
40871         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
40872
40873 2006-11-12  Bruno Haible  <bruno@clisp.org>
40874
40875         Finish support for source files in subdirectories.
40876         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
40877         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
40878         AUTOMAKE_OPTIONS.
40879         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
40880
40881 2006-11-12  Bruno Haible  <bruno@clisp.org>
40882
40883         * gnulib-tool (func_get_automake_snippet): Synthesize also an
40884         EXTRA_lib_SOURCES augmentation.
40885         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
40886
40887 2006-11-12  Jim Meyering  <jim@meyering.net>
40888
40889         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
40890         file descriptors.  This also averts a failure on systems with
40891         native openat support when a traversed directory lacks "x" access.
40892         * lib/fts_.h: Include "i-ring.h"
40893         (struct FTS) [fts_fd_ring]: New member.
40894         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
40895         (FCHDIR): Add parentheses.
40896         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
40897         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
40898         When descending, rather than simply closing the previous
40899         fts_cwd_fd value, push that file descriptor onto the ring.
40900         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
40901         (fts_open): Initialize the new fd_ring member.
40902         (fts_close): Clear the ring.
40903         (fts_safe_changedir): When possible, use our new fd_ring to skip
40904         the diropen and fstat and dev/ino comparison that would normally
40905         accompany a virtual `chdir ("..")'.
40906
40907         * modules/fts (Depends-on): Add i-ring.
40908         * modules/i-ring: New module.
40909         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
40910         * m4/i-ring.m4: New file.
40911
40912 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40913
40914         * gnulib-tool (func_create_testdir): Fix replacement of
40915         `build-aux' in configure.ac.  Run autotools in gltests
40916         subdirectory.
40917         (func_create_testdir, func_create_megatestdir, test): There is
40918         no need for '--force' in most autotool invocations in a new
40919         tree.  Actually fail the whole test if any of the tools, or the
40920         configure or make stages fail.
40921
40922         Sync from Automake.
40923         * build-aux/gnupload: Revert last change.  Add pointer to upload
40924         instructions of the GNU Maintenance Instructions.
40925         Suggestion by Karl Berry.
40926
40927 2006-11-10  Jim Meyering  <jim@meyering.net>
40928
40929         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
40930
40931 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
40932
40933         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
40934         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
40935         (bind_textdomain_codeset) [! ENABLE_NLS]:
40936         Evaluate all the arguments.  That way, callers get compatible behavior
40937         if the arguments have side effects.  Also, it avoids some GCC
40938         diagnostics in some cases; Joel E. Denny reported problems when Bison
40939         was configured with --enable-gcc-warnigs.
40940
40941 2006-11-10  Jim Meyering  <jim@meyering.net>
40942
40943         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
40944         relevant options in CFLAGS (like -O, -fno-inline) are taken into
40945         account.
40946
40947 2006-11-10  Jim Meyering  <jim@meyering.net>
40948
40949         * modules/inline: New file/module.
40950         * modules/xalloc (Files): Remove m4/inline.m4.
40951         (Depends-on): Add inline, instead.
40952         * modules/oset: Likewise.
40953         * modules/list: Likewise.
40954
40955 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
40956
40957         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
40958         Problem reported by Matthew Woehlke.
40959
40960 2006-11-09  Bruno Haible  <bruno@clisp.org>
40961
40962         * lib/tempname.c (gen_tempname): Remove variant that invokes
40963         __gen_tempname.
40964         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
40965         __gen_tempname.
40966
40967 2006-11-08  Bruno Haible  <bruno@clisp.org>
40968
40969         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
40970         to 'yes' instead of 'cross-compiling'.
40971
40972 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
40973
40974         * lib/quotearg.h (quotearg_free): New decl.
40975         * lib/quotearg.c (quotearg_free): New function.
40976         (slot0, nslots, slotvec0, slotvec):
40977         Now file-scope so that quotearg_free can get at them.
40978
40979 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40980
40981         Sync from Automake.
40982         * build-aux/gnupload: Add missing 'gnu' to example URL.
40983         Report by Karl Berry.
40984
40985 2006-11-08  Bruno Haible  <bruno@clisp.org>
40986
40987         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
40988         Suggested by Paul Eggert.
40989
40990 2006-11-08  Jim Meyering  <jim@meyering.net>
40991
40992         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
40993         It's already included if !_LIBC.
40994         (fts_safe_changedir): Add a comment.
40995
40996 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
40997
40998         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
40999         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
41000         Matthew Woehlke.
41001
41002         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
41003         definitions up, to avoid colliding with change below.
41004         (static_inline) [HAVE_INLINE]: New macro.
41005         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
41006         Provide extern decls when !HAVE_INLINE.  Do not define unless
41007         static_inline is defined, either by us or by xmalloc.c.  Use
41008         static_inline rather than static inline.
41009         (XCALLOC): Optimize sizeof(T) = 1 case.
41010         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
41011
41012 2006-11-07  Bruno Haible  <bruno@clisp.org>
41013
41014         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
41015         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
41016         AC_C_INLINE.
41017         * modules/xalloc (Files): Add m4/inline.m4.
41018
41019 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41020
41021         * README: Fix typo.
41022         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
41023         (Miscellanous Notes): ...from this.
41024
41025 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
41026
41027         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
41028         Mention that offsetof should be used instead of sizeof.
41029         From Bruno Haible.
41030
41031 2006-11-07  Bruno Haible  <bruno@clisp.org>
41032
41033         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
41034
41035 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
41036
41037         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
41038         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
41039         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
41040         (gl_tree_add_before, gl_tree_add_after):
41041         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
41042         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
41043         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
41044         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
41045         (gl_linked_add_after, gl_linked_add_at): Likewise.
41046         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
41047         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
41048         (gl_tree_add_before, gl_tree_add_after): Likewise.
41049         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
41050         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
41051         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
41052
41053 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41054
41055         * lib/gl_oset.h: Use C comment style, not C++ comment style.
41056
41057 2006-11-06  Bruno Haible  <bruno@clisp.org>
41058
41059         * m4/inline.m4: New file.
41060         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
41061         * modules/list (Files): Add m4/inline.m4.
41062         * modules/oset (Files): Likewise.
41063
41064 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
41065
41066         * lib/idcache.c: Include <stddef.h>, for offsetof.
41067         (struct userid.name): Change from char * to a flexible array member.
41068         All uses changed.
41069         * modules/idcache (Depends-on): Add flexmember.
41070
41071         * MODULES.html.sh (Core language properties): New module flexmember.
41072         * modules/flexmember, m4/flexmember.m4: New files.
41073
41074         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
41075         inline functions that are identical with the old xnmalloc_inline,
41076         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
41077         that we can avoid some unnecessary integer multiplications and
41078         divisions in the common case where the element size is known at
41079         compile time.
41080         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
41081         needed.
41082         (xnboundedmalloc): Remove.
41083         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
41084         arguments, for consistency with rest of this header.
41085         (xcharalloc): Rewrite using XNMALLOC.
41086         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
41087         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
41088         versions have been moved to lib/xalloc.h and renamed to be the
41089         non-*_inline versions.
41090         (xmalloc, xrealloc): Implement without reference to the xnmalloc
41091         and xnrealloc functions, since those functions are now inline and
41092         now call us.
41093         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
41094         renaming described above.
41095         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
41096         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
41097         captures the dependency in AC_C_INLINE.
41098
41099         New module canonicalize-lgpl, proposed by Charles Wilson in
41100         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
41101         with a few small changes afterwards.
41102         * MODULES.html.sh (File system functions): New module
41103         canonicalize-lgpl.
41104         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
41105         and canonicalize_file_name.
41106         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
41107         * modules/canonicalize-lgpl: New files.
41108
41109 2006-11-05  Bruno Haible  <bruno@clisp.org>
41110
41111         * gnulib-tool (func_import, func_create_testdir): Create directories
41112         also for files in subdirectories of lib/.
41113
41114 2006-11-05  Bruno Haible  <bruno@clisp.org>
41115
41116         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
41117         ANSI C compliant.
41118
41119 2006-11-03  Bruno Haible  <bruno@clisp.org>
41120
41121         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
41122         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
41123         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
41124         (xnboundedmalloc): New inline function.
41125         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
41126         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
41127         xmalloc.
41128         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
41129         xmalloc.
41130         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
41131         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
41132         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
41133         xmalloc.
41134         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
41135         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
41136         xmalloc.
41137         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
41138         gl_tree_add_after): Use XMALLOC instead of xmalloc.
41139         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
41140         xmalloc.
41141         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
41142         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
41143         gl_tree_add_after): Use XMALLOC instead of xmalloc.
41144         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
41145         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
41146         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
41147         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
41148
41149 2006-11-03  Bruno Haible  <bruno@clisp.org>
41150
41151         * lib/c-ctype.h [C++]: Define functions without name mangling.
41152         * lib/fwriteerror.h [C++]: Likewise.
41153         * lib/gcd.h [C++]: Likewise.
41154         * lib/linebreak.h [C++]: Likewise.
41155
41156 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
41157
41158         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
41159         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
41160         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
41161         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
41162         Check for functions and headers just once.
41163         Check for declaration of canonicalize_file_name.
41164         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
41165
41166 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
41167
41168         * gnulib-tool (func_import): Fix typo in actioncmd.
41169
41170 2006-11-02  Bruno Haible  <bruno@clisp.org>
41171
41172         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
41173         newline sequence in the Makefile.am snippet as a space, like "make"
41174         does.
41175         Reported by Roger Persson <perrog@gmail.com>.
41176
41177 2006-11-01  Bruno Haible  <bruno@clisp.org>
41178
41179         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
41180         already declared in <string.h>.
41181         * lib/strcase.h (strncasecmp): Don't declare it if yes.
41182
41183 2006-11-01  Bruno Haible  <bruno@clisp.org>
41184
41185         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
41186         * lib/strcase.h: Include <string.h>.
41187         (strcasecmp): Define to rpl_strcasecmp here.
41188
41189 2006-11-01  Bruno Haible  <bruno@clisp.org>
41190
41191         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
41192
41193 2006-11-01  Eric Blake  <ebb9@byu.net>
41194
41195         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
41196
41197         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
41198
41199 2006-10-29  Bruno Haible  <bruno@clisp.org>
41200
41201         Make it compile in C++ mode.
41202         * lib/full-write.c (full_rw): Add a cast.
41203
41204 2006-11-01  Bruno Haible  <bruno@clisp.org>
41205
41206         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
41207         be POSIX compliant.
41208         Reported by Roger Persson <perrog@gmail.com>.
41209
41210 2006-11-01  Eric Blake  <ebb9@byu.net>
41211
41212         * lib/getopt_.h: Fix comments.
41213
41214 2006-10-31  Eric Blake  <ebb9@byu.net>
41215
41216         * modules/tmpdir (Depends-on): Add sys_stat.
41217         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
41218         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
41219         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
41220         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
41221         tempname.
41222
41223 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
41224
41225         Avoid some C++ diagnostics reported by Bruno Haible.
41226         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
41227         xmalloc.
41228         (quotearg_alloc): Use xcharalloc rather than xmalloc.
41229         (struct slotvec): Move to top level.
41230         (quotearg_n_options): Rewrite to avoid xmalloc.
41231         * lib/xalloc.h (xcharalloc): New function.
41232         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
41233         [defined __cplusplus]: Add function template that provides result
41234         type propagation.  This part of the change is from Bruno Haible.
41235
41236 2006-10-29  Bruno Haible  <bruno@clisp.org>
41237
41238         Make it compile in C++ mode.
41239         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
41240         * lib/strnlen1.c (strnlen1): Cast memchr result.
41241         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
41242         * lib/clean-temp.c (string_equals, string_hash): Add casts.
41243         (create_temp_dir): Rename local variable 'template'.
41244         (compile_csharp_using_sscli): Add cast.
41245         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
41246         * lib/findprog.c (find_in_path): Likewise.
41247         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
41248         * lib/wait-process.c (register_slave_subprocess): Likewise.
41249
41250 2006-10-22  Bruno Haible  <bruno@clisp.org>
41251
41252         * modules/tsearch: New file.
41253         * lib/tsearch.h: New file.
41254         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
41255         * m4/tsearch.m4: New file.
41256         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
41257
41258 2006-10-29  Eric Blake  <ebb9@byu.net>
41259
41260         * lib/arcfour.c: Assume config.h.
41261         * lib/arctwo.c: Likewise.
41262         * lib/base64.c: Likewise.
41263         * lib/check-version.c: Likewise.
41264         * lib/crc.c: Likewise.
41265         * lib/des.c: Likewise.
41266         * lib/gc-gnulib.c: Likewise.
41267         * lib/gc-libgcrypt.c: Likewise.
41268         * lib/gc-pbkdf2-sha1.c: Likewise.
41269         * lib/getaddrinfo.c: Likewise.
41270         * lib/getdelim.c: Likewise.
41271         * lib/getline.c: Likewise.
41272         * lib/hmac-md5.c: Likewise.
41273         * lib/hmac-sha1.c: Likewise.
41274         * lib/iconvme.c: Likewise.
41275         * lib/md2.c: Likewise.
41276         * lib/md4.c: Likewise.
41277         * lib/memxor.c: Likewise.
41278         * lib/read-file.c: Likewise.
41279         * lib/readline.c: Likewise.
41280         * lib/rijndael-alg-fst.c: Likewise.
41281         * lib/rijndael-api-fst.c: Likewise.
41282         * lib/xgetdomainname.c: Likewise.
41283
41284 2006-10-28  Eric Blake  <ebb9@byu.net>
41285
41286         * lib/xstrndup.c: Assume config.h.
41287
41288 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
41289
41290         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
41291         stat-macros.h is now for our own macros, whereas stat_h is for
41292         macros in the <sys/stat.h> name space.
41293         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
41294         (STAT_MACROS_H): Remove.
41295         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
41296         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
41297         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
41298         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
41299         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
41300         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
41301         Move these macros to ...
41302         * lib/stat_.h: here.  Don't include stat-macros.h.
41303         * lib/canonicalize.c: Don't include stat-macros.h.
41304         * lib/chown.c: Likewise.
41305         * lib/euidaccess.c: Likewise.
41306         * lib/file-type.c: Likewise.
41307         * lib/filemode.c: Likewise.
41308         * lib/glob.c: Likewise.
41309         * lib/isapipe.c: Likewise.
41310         * lib/lchown.c: Likewise.
41311         * lib/lstat.c: Likewise.
41312         * lib/mkdir-p.c: Likewise.
41313         * lib/rmdir.c: Likewise.
41314         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
41315         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
41316         unless mkdir isn't declared, to speed up 'configure'.
41317         Always create sys/stat.h, since it's unlikely any real sys/stat.h
41318         would define all the S_* symbols.
41319         * modules/canonicalize (Depends-on):
41320         Depend on sys_stat, not stat-macros.
41321         * modules/chown: Likewise.
41322         * modules/euidaccess: Likewise.
41323         * modules/filemode: Likewise.
41324         * modules/file-type: Likewise.
41325         * modules/glob: Likewise.
41326         * modules/isapipe: Likewise.
41327         * modules/lchown: Likewise.
41328         * modules/lstat: Likewise.
41329         * modules/mkancesdirs: Likewise.
41330         * modules/rmdir: Likewise.
41331         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
41332         * modules/modechange: Likewise.
41333         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
41334         (configure.ac): Remove gl_STAT_MACROS.
41335         * modules/sys_stat (Depends-on): Remove stat-macros.
41336
41337 2006-10-27  Bruno Haible  <bruno@clisp.org>
41338
41339         * m4/signed.m4: Remove file.
41340         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
41341         invocation.
41342         * modules/vasnprintf (Files): Remove m4/signed.m4.
41343
41344 2006-10-27  Bruno Haible  <bruno@clisp.org>
41345
41346         Update to GNU gettext 0.16.
41347         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
41348         m4/inttypes-h.m4, m4/signed.m4.
41349         * m4/gettext.m4: Update to GNU gettext 0.16.
41350         * m4/intl.m4: New file, from GNU gettext.
41351         * m4/intldir.m4: New file, from GNU gettext.
41352         * config/srclist.txt: Update
41353
41354 2006-10-27  Eric Blake  <ebb9@byu.net>
41355
41356         * MODULES.html.sh: Document tempname.
41357         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
41358         dependencies.
41359         (Files): Move lib/tempname.c...
41360         * modules/tempname: ...to this new module.
41361         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
41362         (gl_PREREQ_TEMPNAME): Move...
41363         * m4/tempname.m4: ...to this new file.
41364         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
41365         * modules/sys_stat (Depends-on): Add stat-macros.
41366         * lib/stat_.h (includes): Pick up stat macros.
41367         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
41368         if stat macros are broken.
41369         * lib/tempname.c (includes): No need to include "stat-macros.h".
41370         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
41371         (direxists, __path_search) [!_LIBC]: Don't compile these in
41372         gnulib; the tmpdir module covers that.
41373         * lib/tempname.h: New file.
41374
41375 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
41376
41377         * COPYING: Explain how gnulib-tool converts licence headers.
41378         Almost all wording by Eric Blake.
41379
41380 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
41381
41382         * lib/mbchar.h (is_basic_table): Make read-only.
41383         * lib/mbchar.c (is_basic_table): Likewise.
41384         Reported by John Darrington.
41385
41386 2006-10-25  Bruno Haible  <bruno@clisp.org>
41387
41388         * lib/progname.h (set_program_name): Undefine before defining.
41389
41390 2006-10-25  Bruno Haible  <bruno@clisp.org>
41391
41392         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
41393         false for non-gcc C++ compilers.
41394         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
41395
41396 2006-10-24  Bruno Haible  <bruno@clisp.org>
41397
41398         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
41399         iconv implementations like Irix iconv.
41400
41401 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41402
41403         * modules/vararrays: New file.
41404         * m4/vararrays.m4: New file, taken from diffutils.
41405         * MODULES.html.sh: New module vararrays.
41406
41407 2006-10-24  Karl Berry  <karl@gnu.org>
41408
41409         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
41410         Don't call GNU Unix.
41411
41412 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41413
41414         * users.txt: Add Libtool.
41415
41416         Sync from Libtool:
41417
41418         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41419
41420         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
41421         to gnulib's policy of including config.h unconditionally.
41422
41423 2006-10-24  Bruno Haible  <bruno@clisp.org>
41424
41425         * modules/wcwidth (Files): Add m4/wint_t.m4.
41426         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
41427         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
41428
41429 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41430
41431         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
41432         to pacify GCC with some -W flags enabled.  Problem reported by
41433         Bruno Haible.
41434
41435 2006-10-24  Jim Meyering  <jim@meyering.net>
41436
41437         * MODULES.html.sh: Remove uinttostr.  It's not a module.
41438         Reported by Karl Berry.
41439
41440 2006-10-23  Bruno Haible  <bruno@clisp.org>
41441
41442         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
41443
41444 2006-10-24  Bruno Haible  <bruno@clisp.org>
41445
41446         * lib/gl_list.h: Use C comment style, not C++ comment style.
41447
41448 2006-10-23  Eric Blake  <ebb9@byu.net>
41449
41450         * lib/getaddrinfo.c (includes): Add missing include.
41451
41452 2006-10-23  Bruno Haible  <bruno@clisp.org>
41453             Paul Eggert  <eggert@cs.ucla.edu>
41454
41455         Ability to rename obstack_free.
41456         * lib/obstack.h (__obstack_free): New macro. Declare instead of
41457         obstack_free.
41458         (obstack_free): Invoke the __obstack_free macro.
41459         * lib/obstack.c (obstack_free): Use __obstack_free macro.
41460
41461 2006-10-23  Bruno Haible  <bruno@clisp.org>
41462             Paul Eggert  <eggert@cs.ucla.edu>
41463
41464         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
41465         __argc, __argv from the declaration. (They are defined as macros on
41466         mingw.)
41467
41468 2006-10-22  Bruno Haible  <bruno@clisp.org>
41469
41470         * doc/gnulib-intro.texi: New file.
41471         * doc/gnulib.texi: Include it.
41472
41473 2006-10-21  Bruno Haible  <bruno@clisp.org>
41474
41475         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
41476         "Introduction", "Miscellanous Notes", "Particular Modules".
41477
41478 2006-10-21  Bruno Haible  <bruno@clisp.org>
41479
41480         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
41481         Change mostlyclean-local rule to avoid sh syntax error from bash
41482         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
41483
41484 2006-10-23  Jim Meyering  <jim@meyering.net>
41485
41486         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
41487         in place of snprintf.
41488
41489         * modules/inttostr (Files): Add lib/uinttostr.c.
41490         * lib/uinttostr.c (inttostr): New file/function.
41491         * lib/inttostr.h (uinttostr): Declare.
41492         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
41493         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
41494         Add uinttostr.
41495         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
41496
41497 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
41498
41499         * lib/canonicalize.c (ELOOP): Define if not already defined.
41500         Problem reported by Bruno Haible in
41501         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
41502
41503 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
41504
41505         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
41506         Problem reported by Perry Smith and Ville Laurikari.
41507
41508         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
41509         uses.
41510
41511 2006-10-19  Bruno Haible  <bruno@clisp.org>
41512
41513         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
41514         for mingw.
41515
41516 2006-10-19  Bruno Haible  <bruno@clisp.org>
41517
41518         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
41519         Needed for mingw.
41520
41521 2006-10-19  Bruno Haible  <bruno@clisp.org>
41522
41523         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
41524
41525 2006-10-19  Bruno Haible  <bruno@clisp.org>
41526
41527         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
41528         it.
41529
41530 2006-10-19  Bruno Haible  <bruno@clisp.org>
41531
41532         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
41533         invocation.
41534
41535 2006-10-19  Bruno Haible  <bruno@clisp.org>
41536
41537         * gnulib-tool (func_create_testdir): Don't include ftruncate and
41538         mountlist by default.
41539
41540 2006-10-16  Bruno Haible  <bruno@clisp.org>
41541
41542         * lib/c-strstr.c: Include c-strstr.h.
41543
41544 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
41545
41546         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
41547         in a slash.
41548
41549 2006-10-18  Bruno Haible  <bruno@clisp.org>
41550
41551         * lib/lock.h [C++]: Wrap definitions in extern "C".
41552
41553 2006-10-18  Bruno Haible  <bruno@clisp.org>
41554
41555         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
41556         gl_LIBOBJS list.
41557
41558 2006-10-18  Bruno Haible  <bruno@clisp.org>
41559
41560         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
41561
41562 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
41563
41564         * lib/xstrtol.h: Include gettext.h.
41565         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
41566         Problem reported by Eric Blake.
41567         * modules/xstrtol (Depends-on): Add gettext-h.
41568
41569 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
41570
41571         * lib/strftime.c (advance): New macro.
41572         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
41573         incomplete type, so you can't add 0 to it.  Problem and patch
41574         reported by Eelco Dolstra for dietlibc.
41575
41576 2006-10-18  Jim Meyering  <jim@meyering.net>
41577
41578         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
41579         type for a local, and rename it: s/up/user_proc/.
41580
41581 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
41582
41583         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
41584         READ_UTMP_USER_PROCESS.
41585         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
41586
41587 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
41588
41589         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
41590         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
41591
41592 2006-10-17  Eric Blake  <ebb9@byu.net>
41593
41594         * lib/sigprocmask.c (sigprocmask): Fix typo.
41595
41596         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
41597
41598         * modules/clean-temp (Makefile.am): Don't add to make output...
41599         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
41600         config.h.
41601
41602 2006-10-17  Bruno Haible  <bruno@clisp.org>
41603
41604         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
41605         differently if DEFAULT_TEXT_DOMAIN is set.
41606
41607 2006-10-16  Bruno Haible  <bruno@clisp.org>
41608
41609         * lib/clean-temp.c: Include fwriteerror.h.
41610
41611 2006-10-16  Bruno Haible  <bruno@clisp.org>
41612
41613         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
41614
41615 2006-10-16  Bruno Haible  <bruno@clisp.org>
41616
41617         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
41618         * lib/sigprocmask.h: Include <sys/types.h>.
41619         (sigset_t): Use the system's definition if present.
41620
41621 2006-10-17  Eric Blake  <ebb9@byu.net>
41622
41623         * lib/xvasprintf.c (includes): Assume config.h.
41624         * lib/xasprintf.c (includes): Likewise.
41625
41626 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
41627
41628         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
41629         at least as wide as intmax_t.
41630
41631 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
41632
41633         (Imported from Automake.)
41634         * build-aux/gnupload: Update to version 1.1 of directive file.
41635
41636 2006-10-16  Eric Blake  <ebb9@byu.net>
41637
41638         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
41639         match Automake 1.10a.
41640
41641 2006-10-14  Bruno Haible  <bruno@clisp.org>
41642
41643         * modules/sigprocmask: New file.
41644         * lib/sigprocmask.h: New file.
41645         * lib/sigprocmask.c: New file.
41646         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
41647         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
41648         request sigprocmask.o.
41649         (gl_PREREQ_SIGPROCMASK): New macro.
41650         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
41651         (Depends-on): Add sigprocmask.
41652         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
41653         gt_SIGNALBLOCKING. Test for 'raise' only once.
41654         * lib/fatal-signal.c: Include sigprocmask.h.
41655         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
41656         unblock_fatal_signals): Define always.
41657         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
41658         sigprocmask.
41659
41660 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
41661
41662         Sync from Automake.
41663         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
41664         which incorrectly sets the mode of an existing destination
41665         directory.  In some cases the unpatched install-sh could do the
41666         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
41667         system.  We hope this is rare in practice, but it's clearly worth
41668         fixing.  Problem reported by Alex Unleashed in
41669         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
41670         Also, don't bother to check for -m bugs unless we're using -m;
41671         suggested by Stepan Kasal.
41672
41673 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41674
41675         Sync from Automake.
41676         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
41677         `-c' flag, so they appear at the same position as in %FASTDEP%
41678         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
41679         which ignores unknown options only after the first non-option.
41680         Bug report against M4 by Nelson H. F. Beebe.
41681
41682 2006-10-13  Jim Meyering  <jim@meyering.net>
41683
41684         Fix a bug in yesterday's change.
41685         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
41686         p->fts_statp->st_dev would be used uninitialized.
41687         Ensures that we always call fts_stat on the very first entry.
41688         Miklos Szeredi reported that find -xdev stopped working.
41689
41690 2006-10-12  Bruno Haible  <bruno@clisp.org>
41691
41692         * gnulib-tool (func_get_automake_snippet): Append an automatically
41693         computed EXTRA_DIST augmentation.
41694         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
41695         * modules/alloca-opt (Makefile.am): Likewise.
41696         * modules/allocsa (Makefile.am): Likewise.
41697         * modules/arcfour (Makefile.am): Likewise.
41698         * modules/arctwo (Makefile.am): Likewise.
41699         * modules/argmatch (Makefile.am): Likewise.
41700         * modules/argz (Makefile.am): Likewise.
41701         * modules/atexit (Makefile.am): Likewise.
41702         * modules/backupfile (Makefile.am): Likewise.
41703         * modules/byteswap (Makefile.am): Likewise.
41704         * modules/c-strtod (Makefile.am): Likewise.
41705         * modules/c-strtold (Makefile.am): Likewise.
41706         * modules/calloc (Makefile.am): Likewise.
41707         * modules/canon-host (Makefile.am): Likewise.
41708         * modules/canonicalize (Makefile.am): Likewise.
41709         * modules/chdir-long (Makefile.am): Likewise.
41710         * modules/chdir-safer (Makefile.am): Likewise.
41711         * modules/check-version (Makefile.am): Likewise.
41712         * modules/chown (Makefile.am): Likewise.
41713         * modules/cloexec (Makefile.am): Likewise.
41714         * modules/close-stream (Makefile.am): Likewise.
41715         * modules/closeout (Makefile.am): Likewise.
41716         * modules/crc (Makefile.am): Likewise.
41717         * modules/csharpexec (Makefile.am): Likewise.
41718         * modules/cycle-check (Makefile.am): Likewise.
41719         * modules/des (Makefile.am): Likewise.
41720         * modules/dev-ino (Makefile.am): Likewise.
41721         * modules/dirfd (Makefile.am): Likewise.
41722         * modules/dirname (Makefile.am): Likewise.
41723         * modules/dup2 (Makefile.am): Likewise.
41724         * modules/eealloc (Makefile.am): Likewise.
41725         * modules/error (Makefile.am): Likewise.
41726         * modules/euidaccess (Makefile.am): Likewise.
41727         * modules/exclude (Makefile.am): Likewise.
41728         * modules/exitfail (Makefile.am): Likewise.
41729         * modules/fcntl-safer (Makefile.am): Likewise.
41730         * modules/fcntl (Makefile.am): Likewise.
41731         * modules/file-type (Makefile.am): Likewise.
41732         * modules/fileblocks (Makefile.am): Likewise.
41733         * modules/filemode (Makefile.am): Likewise.
41734         * modules/filenamecat (Makefile.am): Likewise.
41735         * modules/fnmatch (Makefile.am): Likewise.
41736         * modules/fopen-safer (Makefile.am): Likewise.
41737         * modules/fpending (Makefile.am): Likewise.
41738         * modules/fprintftime (Makefile.am): Likewise.
41739         * modules/free (Makefile.am): Likewise.
41740         * modules/fsusage (Makefile.am): Likewise.
41741         * modules/ftruncate (Makefile.am): Likewise.
41742         * modules/fts (Makefile.am): Likewise.
41743         * modules/gc-arcfour (Makefile.am): Likewise.
41744         * modules/gc-des (Makefile.am): Likewise.
41745         * modules/gc-hmac-md5 (Makefile.am): Likewise.
41746         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
41747         * modules/gc-md4 (Makefile.am): Likewise.
41748         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
41749         * modules/gc-sha1 (Makefile.am): Likewise.
41750         * modules/gc (Makefile.am): Likewise.
41751         * modules/getaddrinfo (Makefile.am): Likewise.
41752         * modules/getcwd (Makefile.am): Likewise.
41753         * modules/getdelim (Makefile.am): Likewise.
41754         * modules/getdomainname (Makefile.am): Likewise.
41755         * modules/getgroups (Makefile.am): Likewise.
41756         * modules/gethostname (Makefile.am): Likewise.
41757         * modules/gethrxtime (Makefile.am): Likewise.
41758         * modules/getline (Makefile.am): Likewise.
41759         * modules/getloadavg (Makefile.am): Likewise.
41760         * modules/getlogin_r (Makefile.am): Likewise.
41761         * modules/getndelim2 (Makefile.am): Likewise.
41762         * modules/getopt (Makefile.am): Likewise.
41763         * modules/getpagesize (Makefile.am): Likewise.
41764         * modules/getpass-gnu (Makefile.am): Likewise.
41765         * modules/getpass (Makefile.am): Likewise.
41766         * modules/getsubopt (Makefile.am): Likewise.
41767         * modules/gettime (Makefile.am): Likewise.
41768         * modules/gettimeofday (Makefile.am): Likewise.
41769         * modules/getugroups (Makefile.am): Likewise.
41770         * modules/getusershell (Makefile.am): Likewise.
41771         * modules/glob (Makefile.am): Likewise.
41772         * modules/group-member (Makefile.am): Likewise.
41773         * modules/hard-locale (Makefile.am): Likewise.
41774         * modules/hash (Makefile.am): Likewise.
41775         * modules/hmac-md5 (Makefile.am): Likewise.
41776         * modules/hmac-sha1 (Makefile.am): Likewise.
41777         * modules/human (Makefile.am): Likewise.
41778         * modules/idcache (Makefile.am): Likewise.
41779         * modules/imaxabs (Makefile.am): Likewise.
41780         * modules/imaxdiv (Makefile.am): Likewise.
41781         * modules/inet_ntop (Makefile.am): Likewise.
41782         * modules/inet_pton (Makefile.am): Likewise.
41783         * modules/intprops (Makefile.am): Likewise.
41784         * modules/inttostr (Makefile.am): Likewise.
41785         * modules/inttypes (Makefile.am): Likewise.
41786         * modules/isapipe (Makefile.am): Likewise.
41787         * modules/javaversion (Makefile.am): Likewise.
41788         * modules/lchmod (Makefile.am): Likewise.
41789         * modules/lchown (Makefile.am): Likewise.
41790         * modules/localcharset (Makefile.am): Likewise.
41791         * modules/long-options (Makefile.am): Likewise.
41792         * modules/lstat (Makefile.am): Likewise.
41793         * modules/malloc (Makefile.am): Likewise.
41794         * modules/mathl (Makefile.am): Likewise.
41795         * modules/mbchar (Makefile.am): Likewise.
41796         * modules/md2 (Makefile.am): Likewise.
41797         * modules/md4 (Makefile.am): Likewise.
41798         * modules/md5 (Makefile.am): Likewise.
41799         * modules/memcasecmp (Makefile.am): Likewise.
41800         * modules/memchr (Makefile.am): Likewise.
41801         * modules/memcmp (Makefile.am): Likewise.
41802         * modules/memcoll (Makefile.am): Likewise.
41803         * modules/memcpy (Makefile.am): Likewise.
41804         * modules/memmem (Makefile.am): Likewise.
41805         * modules/memmove (Makefile.am): Likewise.
41806         * modules/mempcpy (Makefile.am): Likewise.
41807         * modules/memrchr (Makefile.am): Likewise.
41808         * modules/memset (Makefile.am): Likewise.
41809         * modules/memxor (Makefile.am): Likewise.
41810         * modules/mkancesdirs (Makefile.am): Likewise.
41811         * modules/mkdir-p (Makefile.am): Likewise.
41812         * modules/mkdir (Makefile.am): Likewise.
41813         * modules/mkdtemp (Makefile.am): Likewise.
41814         * modules/mkstemp (Makefile.am): Likewise.
41815         * modules/mktime (Makefile.am): Likewise.
41816         * modules/modechange (Makefile.am): Likewise.
41817         * modules/mountlist (Makefile.am): Likewise.
41818         * modules/nanosleep (Makefile.am): Likewise.
41819         * modules/obstack (Makefile.am): Likewise.
41820         * modules/openat (Makefile.am): Likewise.
41821         * modules/pagealign_alloc (Makefile.am): Likewise.
41822         * modules/pathmax (Makefile.am): Likewise.
41823         * modules/physmem (Makefile.am): Likewise.
41824         * modules/poll (Makefile.am): Likewise.
41825         * modules/posixtm (Makefile.am): Likewise.
41826         * modules/posixver (Makefile.am): Likewise.
41827         * modules/putenv (Makefile.am): Likewise.
41828         * modules/quote (Makefile.am): Likewise.
41829         * modules/quotearg (Makefile.am): Likewise.
41830         * modules/raise (Makefile.am): Likewise.
41831         * modules/read-file (Makefile.am): Likewise.
41832         * modules/readline (Makefile.am): Likewise.
41833         * modules/readlink (Makefile.am): Likewise.
41834         * modules/readtokens (Makefile.am): Likewise.
41835         * modules/readutmp (Makefile.am): Likewise.
41836         * modules/realloc (Makefile.am): Likewise.
41837         * modules/regex (Makefile.am): Likewise.
41838         * modules/rename-dest-slash (Makefile.am): Likewise.
41839         * modules/rename (Makefile.am): Likewise.
41840         * modules/rijndael (Makefile.am): Likewise.
41841         * modules/rmdir (Makefile.am): Likewise.
41842         * modules/rpmatch (Makefile.am): Likewise.
41843         * modules/safe-read (Makefile.am): Likewise.
41844         * modules/safe-write (Makefile.am): Likewise.
41845         * modules/same-inode (Makefile.am): Likewise.
41846         * modules/same (Makefile.am): Likewise.
41847         * modules/save-cwd (Makefile.am): Likewise.
41848         * modules/savedir (Makefile.am): Likewise.
41849         * modules/setenv (Makefile.am): Likewise.
41850         * modules/settime (Makefile.am): Likewise.
41851         * modules/sha1 (Makefile.am): Likewise.
41852         * modules/sig2str (Makefile.am): Likewise.
41853         * modules/snprintf (Makefile.am): Likewise.
41854         * modules/stat-macros (Makefile.am): Likewise.
41855         * modules/stat-time (Makefile.am): Likewise.
41856         * modules/stdbool (Makefile.am): Likewise.
41857         * modules/stdint (Makefile.am): Likewise.
41858         * modules/stdlib-safer (Makefile.am): Likewise.
41859         * modules/stpcpy (Makefile.am): Likewise.
41860         * modules/stpncpy (Makefile.am): Likewise.
41861         * modules/strcase (Makefile.am): Likewise.
41862         * modules/strcasestr (Makefile.am): Likewise.
41863         * modules/strchrnul (Makefile.am): Likewise.
41864         * modules/strcspn (Makefile.am): Likewise.
41865         * modules/strdup (Makefile.am): Likewise.
41866         * modules/strerror (Makefile.am): Likewise.
41867         * modules/strftime (Makefile.am): Likewise.
41868         * modules/strndup (Makefile.am): Likewise.
41869         * modules/strnlen (Makefile.am): Likewise.
41870         * modules/strpbrk (Makefile.am): Likewise.
41871         * modules/strsep (Makefile.am): Likewise.
41872         * modules/strstr (Makefile.am): Likewise.
41873         * modules/strtod (Makefile.am): Likewise.
41874         * modules/strtoimax (Makefile.am): Likewise.
41875         * modules/strtok_r (Makefile.am): Likewise.
41876         * modules/strtol (Makefile.am): Likewise.
41877         * modules/strtoll (Makefile.am): Likewise.
41878         * modules/strtoul (Makefile.am): Likewise.
41879         * modules/strtoull (Makefile.am): Likewise.
41880         * modules/strtoumax (Makefile.am): Likewise.
41881         * modules/strverscmp (Makefile.am): Likewise.
41882         * modules/sys_socket (Makefile.am): Likewise.
41883         * modules/sys_stat (Makefile.am): Likewise.
41884         * modules/sysexits (Makefile.am): Likewise.
41885         * modules/time_r (Makefile.am): Likewise.
41886         * modules/timegm (Makefile.am): Likewise.
41887         * modules/timespec (Makefile.am): Likewise.
41888         * modules/tmpfile-safer (Makefile.am): Likewise.
41889         * modules/trim (Makefile.am): Likewise.
41890         * modules/unistd-safer (Makefile.am): Likewise.
41891         * modules/unlinkdir (Makefile.am): Likewise.
41892         * modules/unlocked-io (Makefile.am): Likewise.
41893         * modules/userspec (Makefile.am): Likewise.
41894         * modules/utime (Makefile.am): Likewise.
41895         * modules/utimecmp (Makefile.am): Likewise.
41896         * modules/utimens (Makefile.am): Likewise.
41897         * modules/vasnprintf (Makefile.am): Likewise.
41898         * modules/vasprintf (Makefile.am): Likewise.
41899         * modules/vsnprintf (Makefile.am): Likewise.
41900         * modules/xalloc (Makefile.am): Likewise.
41901         * modules/xgetcwd (Makefile.am): Likewise.
41902         * modules/xnanosleep (Makefile.am): Likewise.
41903         * modules/xreadlink (Makefile.am): Likewise.
41904         * modules/xstrtod (Makefile.am): Likewise.
41905         * modules/xstrtol (Makefile.am): Likewise.
41906         * modules/xstrtold (Makefile.am): Likewise.
41907         * modules/yesno (Makefile.am): Likewise.
41908         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
41909
41910 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
41911
41912         * modules/error (Makefile.am): Distribute files through
41913         EXTRA_DIST, not lib_SOURCES.
41914
41915 2006-10-12  Eric Blake  <ebb9@byu.net>
41916
41917         * modules/error (Makefile.am): Distribute files in /lib.
41918         * modules/obstack (Makefile.am): Likewise.
41919
41920 2006-10-12  Bruno Haible  <bruno@clisp.org>
41921
41922         * modules/acl (Makefile.am): Distribute all files in lib/ through
41923         EXTRA_DIST.
41924         * modules/arcfour (Makefile.am): Likewise.
41925         * modules/arctwo (Makefile.am): Likewise.
41926         * modules/argmatch (Makefile.am): Likewise.
41927         * modules/argz (Makefile.am): Likewise.
41928         * modules/atexit (Makefile.am): Likewise.
41929         * modules/backupfile (Makefile.am): Likewise.
41930         * modules/c-strtod (Makefile.am): Likewise.
41931         * modules/c-strtold (Makefile.am): Likewise.
41932         * modules/calloc (Makefile.am): Likewise.
41933         * modules/canon-host (Makefile.am): Likewise.
41934         * modules/canonicalize (Makefile.am): Likewise.
41935         * modules/chdir-long (Makefile.am): Likewise.
41936         * modules/chdir-safer (Makefile.am): Likewise.
41937         * modules/check-version (Makefile.am): Likewise.
41938         * modules/chown (Makefile.am): Likewise.
41939         * modules/cloexec (Makefile.am): Likewise.
41940         * modules/close-stream (Makefile.am): Likewise.
41941         * modules/closeout (Makefile.am): Likewise.
41942         * modules/crc (Makefile.am): Likewise.
41943         * modules/cycle-check (Makefile.am): Likewise.
41944         * modules/des (Makefile.am): Likewise.
41945         * modules/dirfd (Makefile.am): Likewise.
41946         * modules/dirname (Makefile.am): Likewise.
41947         * modules/dup2 (Makefile.am): Likewise.
41948         * modules/euidaccess (Makefile.am): Likewise.
41949         * modules/exclude (Makefile.am): Likewise.
41950         * modules/exitfail (Makefile.am): Likewise.
41951         * modules/fcntl-safer (Makefile.am): Likewise.
41952         * modules/file-type (Makefile.am): Likewise.
41953         * modules/fileblocks (Makefile.am): Likewise.
41954         * modules/filemode (Makefile.am): Likewise.
41955         * modules/filenamecat (Makefile.am): Likewise.
41956         * modules/fnmatch (Makefile.am): Likewise.
41957         * modules/fopen-safer (Makefile.am): Likewise.
41958         * modules/fpending (Makefile.am): Likewise.
41959         * modules/fprintftime (Makefile.am): Likewise.
41960         * modules/free (Makefile.am): Likewise.
41961         * modules/fsusage (Makefile.am): Likewise.
41962         * modules/ftruncate (Makefile.am): Likewise.
41963         * modules/fts (Makefile.am): Likewise.
41964         * modules/gc (Makefile.am): Likewise.
41965         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
41966         * modules/getaddrinfo (Makefile.am): Likewise.
41967         * modules/getcwd (Makefile.am): Likewise.
41968         * modules/getdelim (Makefile.am): Likewise.
41969         * modules/getdomainname (Makefile.am): Likewise.
41970         * modules/getgroups (Makefile.am): Likewise.
41971         * modules/gethostname (Makefile.am): Likewise.
41972         * modules/gethrxtime (Makefile.am): Likewise.
41973         * modules/getline (Makefile.am): Likewise.
41974         * modules/getloadavg (Makefile.am): Likewise.
41975         * modules/getlogin_r (Makefile.am): Likewise.
41976         * modules/getopt (Makefile.am): Likewise.
41977         * modules/getpass (Makefile.am): Likewise.
41978         * modules/getpass-gnu (Makefile.am): Likewise.
41979         * modules/getsubopt (Makefile.am): Likewise.
41980         * modules/gettime (Makefile.am): Likewise.
41981         * modules/gettimeofday (Makefile.am): Likewise.
41982         * modules/getugroups (Makefile.am): Likewise.
41983         * modules/getusershell (Makefile.am): Likewise.
41984         * modules/glob (Makefile.am): Likewise.
41985         * modules/group-member (Makefile.am): Likewise.
41986         * modules/hard-locale (Makefile.am): Likewise.
41987         * modules/hash (Makefile.am): Likewise.
41988         * modules/hmac-md5 (Makefile.am): Likewise.
41989         * modules/hmac-sha1 (Makefile.am): Likewise.
41990         * modules/human (Makefile.am): Likewise.
41991         * modules/idcache (Makefile.am): Likewise.
41992         * modules/imaxabs (Makefile.am): Likewise.
41993         * modules/imaxdiv (Makefile.am): Likewise.
41994         * modules/inet_ntop (Makefile.am): Likewise.
41995         * modules/inet_pton (Makefile.am): Likewise.
41996         * modules/inttostr (Makefile.am): Likewise.
41997         * modules/isapipe (Makefile.am): Likewise.
41998         * modules/lchown (Makefile.am): Likewise.
41999         * modules/long-options (Makefile.am): Likewise.
42000         * modules/lstat (Makefile.am): Likewise.
42001         * modules/malloc (Makefile.am): Likewise.
42002         * modules/mathl (Makefile.am): Likewise.
42003         * modules/mbchar (Makefile.am): Likewise.
42004         * modules/md2 (Makefile.am): Likewise.
42005         * modules/md4 (Makefile.am): Likewise.
42006         * modules/md5 (Makefile.am): Likewise.
42007         * modules/memcasecmp (Makefile.am): Likewise.
42008         * modules/memchr (Makefile.am): Likewise.
42009         * modules/memcmp (Makefile.am): Likewise.
42010         * modules/memcoll (Makefile.am): Likewise.
42011         * modules/memcpy (Makefile.am): Likewise.
42012         * modules/memmem (Makefile.am): Likewise.
42013         * modules/memmove (Makefile.am): Likewise.
42014         * modules/mempcpy (Makefile.am): Likewise.
42015         * modules/memrchr (Makefile.am): Likewise.
42016         * modules/memset (Makefile.am): Likewise.
42017         * modules/memxor (Makefile.am): Likewise.
42018         * modules/mkancesdirs (Makefile.am): Likewise.
42019         * modules/mkdir (Makefile.am): Likewise.
42020         * modules/mkdir-p (Makefile.am): Likewise.
42021         * modules/mkdtemp (Makefile.am): Likewise.
42022         * modules/mkstemp (Makefile.am): Likewise.
42023         * modules/mktime (Makefile.am): Likewise.
42024         * modules/modechange (Makefile.am): Likewise.
42025         * modules/mountlist (Makefile.am): Likewise.
42026         * modules/nanosleep (Makefile.am): Likewise.
42027         * modules/openat (Makefile.am): Likewise.
42028         * modules/pagealign_alloc (Makefile.am): Likewise.
42029         * modules/physmem (Makefile.am): Likewise.
42030         * modules/poll (Makefile.am): Likewise.
42031         * modules/posixtm (Makefile.am): Likewise.
42032         * modules/posixver (Makefile.am): Likewise.
42033         * modules/putenv (Makefile.am): Likewise.
42034         * modules/quote (Makefile.am): Likewise.
42035         * modules/quotearg (Makefile.am): Likewise.
42036         * modules/raise (Makefile.am): Likewise.
42037         * modules/read-file (Makefile.am): Likewise.
42038         * modules/readline (Makefile.am): Likewise.
42039         * modules/readlink (Makefile.am): Likewise.
42040         * modules/readtokens (Makefile.am): Likewise.
42041         * modules/readutmp (Makefile.am): Likewise.
42042         * modules/realloc (Makefile.am): Likewise.
42043         * modules/regex (Makefile.am): Likewise.
42044         * modules/rename (Makefile.am): Likewise.
42045         * modules/rename-dest-slash (Makefile.am): Likewise.
42046         * modules/rijndael (Makefile.am): Likewise.
42047         * modules/rmdir (Makefile.am): Likewise.
42048         * modules/rpmatch (Makefile.am): Likewise.
42049         * modules/safe-read (Makefile.am): Likewise.
42050         * modules/safe-write (Makefile.am): Likewise.
42051         * modules/same (Makefile.am): Likewise.
42052         * modules/save-cwd (Makefile.am): Likewise.
42053         * modules/savedir (Makefile.am): Likewise.
42054         * modules/setenv (Makefile.am): Likewise.
42055         * modules/settime (Makefile.am): Likewise.
42056         * modules/sha1 (Makefile.am): Likewise.
42057         * modules/sig2str (Makefile.am): Likewise.
42058         * modules/snprintf (Makefile.am): Likewise.
42059         * modules/stdlib-safer (Makefile.am): Likewise.
42060         * modules/stpcpy (Makefile.am): Likewise.
42061         * modules/stpncpy (Makefile.am): Likewise.
42062         * modules/strcase (Makefile.am): Likewise.
42063         * modules/strcasestr (Makefile.am): Likewise.
42064         * modules/strchrnul (Makefile.am): Likewise.
42065         * modules/strcspn (Makefile.am): Likewise.
42066         * modules/strdup (Makefile.am): Likewise.
42067         * modules/strerror (Makefile.am): Likewise.
42068         * modules/strftime (Makefile.am): Likewise.
42069         * modules/strndup (Makefile.am): Likewise.
42070         * modules/strnlen (Makefile.am): Likewise.
42071         * modules/strpbrk (Makefile.am): Likewise.
42072         * modules/strsep (Makefile.am): Likewise.
42073         * modules/strstr (Makefile.am): Likewise.
42074         * modules/strtod (Makefile.am): Likewise.
42075         * modules/strtoimax (Makefile.am): Likewise.
42076         * modules/strtok_r (Makefile.am): Likewise.
42077         * modules/strtol (Makefile.am): Likewise.
42078         * modules/strtoll (Makefile.am): Likewise.
42079         * modules/strtoul (Makefile.am): Likewise.
42080         * modules/strtoull (Makefile.am): Likewise.
42081         * modules/strtoumax (Makefile.am): Likewise.
42082         * modules/strverscmp (Makefile.am): Likewise.
42083         * modules/time_r (Makefile.am): Likewise.
42084         * modules/timegm (Makefile.am): Likewise.
42085         * modules/tmpfile-safer (Makefile.am): Likewise.
42086         * modules/unistd-safer (Makefile.am): Likewise.
42087         * modules/unlinkdir (Makefile.am): Likewise.
42088         * modules/userspec (Makefile.am): Likewise.
42089         * modules/utime (Makefile.am): Likewise.
42090         * modules/utimecmp (Makefile.am): Likewise.
42091         * modules/utimens (Makefile.am): Likewise.
42092         * modules/vasnprintf (Makefile.am): Likewise.
42093         * modules/vasprintf (Makefile.am): Likewise.
42094         * modules/vsnprintf (Makefile.am): Likewise.
42095         * modules/xalloc (Makefile.am): Likewise.
42096         * modules/xgetcwd (Makefile.am): Likewise.
42097         * modules/xnanosleep (Makefile.am): Likewise.
42098         * modules/xreadlink (Makefile.am): Likewise.
42099         * modules/xstrtod (Makefile.am): Likewise.
42100         * modules/xstrtol (Makefile.am): Likewise.
42101         * modules/xstrtold (Makefile.am): Likewise.
42102         * modules/yesno (Makefile.am): Likewise.
42103
42104 2006-10-12  Jim Meyering  <jim@meyering.net>
42105
42106         * m4/getloadavg.m4: Revert the change below.
42107
42108         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
42109         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
42110         fail with a symlink, which is what coreutils' ./bootstrap now
42111         creates by default.
42112
42113 2006-10-12  Bruno Haible  <bruno@clisp.org>
42114
42115         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
42116         mingw.
42117         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
42118         MSVC and mingw explicitly.
42119
42120 2006-10-11  Simon Josefsson  <jas@extundo.com>
42121             Bruno Haible  <bruno@clisp.org>
42122
42123         Add support for multiple gnulib-tool invocations in the scope of a
42124         single configure.ac file.
42125         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
42126         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
42127         with the same contents as the _LIBADD variable.
42128         (func_emit_initmacro_start, func_emit_initmacro_end,
42129         func_emit_initmacro_done): New functions.
42130         (func_import, func_create_testdir): Invoke them. Allow the identifiers
42131         gl_LIBOBJS and gl_LTLIBOBJS.
42132
42133 2006-10-11  Bruno Haible  <bruno@clisp.org>
42134
42135         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
42136         (func_create_testdir): Don't create po/Makefile.am, don't invoke
42137         autoreconf. Instead, invoke autopoint explicitly but move back the
42138         *.m4 files from gnulib.
42139
42140 2006-10-11  Bruno Haible  <bruno@clisp.org>
42141
42142         * gnulib-tool (func_usage): Make module names after --create-testdir
42143         optional.
42144         (func_create_testdir): If no module was specified, use nearly all
42145         modules.
42146
42147 2006-10-12  Jim Meyering  <jim@meyering.net>
42148
42149         Big performance improvement for fts-based tools that use FTS_NOSTAT.
42150         Avoid spurious inode-mismatch problems on non-POSIX file systems.
42151         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
42152         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
42153         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
42154         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
42155         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
42156         (fts_set_stat_required): New function.
42157         (fts_open): Defer the calls to fts_stat, if possible or requested.
42158         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
42159         into fts_stat itself.
42160         (fts_read): Perform any required (deferred) fts_stat call.
42161         (fts_build): Likewise, for the directory we're about to open and read.
42162         In the readdir loop, carefully decide whether each entry will require
42163         an eventual call to fts_stat, using dirent.d_type info if available.
42164         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
42165         a command line argument into this function.  Update all callers.
42166         Map a return value of FTS_DOT to FTS_D for a command line argument.
42167         * modules/fts (Depends-on): Add d-type.  Alphabetize.
42168         Thanks to Miklos Szeredi for his tenacity and for the initial
42169         bug report about "find" failing on a FUSE-based file system.
42170
42171         * lib/fts.c (fts_open): Use consistent indentation.
42172
42173 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
42174
42175         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
42176         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
42177         reported by Jim Meyering.  All uses of cache variables renamed
42178         to match Autoconf's.
42179         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
42180         the other one.
42181
42182         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
42183         Fix misspelling in diagnostic.
42184
42185 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
42186
42187         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
42188         defined.  Problem reported by Matthew Woehlke.
42189
42190         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
42191         Add support for Tandem NonStop R series.
42192         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
42193         Use new macro.
42194
42195         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
42196         (has_trailing_slash): Omit size arg; all callers changed.
42197         Omit 'inline', since it doesn't help performance and we'd
42198         need to configure it.
42199         Don't count //, ///, etc. as having a trailing slash.
42200         As a side effect, this removes a C99ism reported by Matthew Woehlke.
42201         (rpl_rename_dest_slash): On failure, use rename's errno rather
42202         than (in some cases) an incorrect or junk errno.
42203         Simplify code by removing need to compute length; this does
42204         cause it to make two passes instead of one over the file name,
42205         but it's worth it.
42206
42207         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
42208         change, since Autoconf's version may no longer be appropriate now
42209         that we are using CVS Autoconf's version.  Add support for Tandem.
42210
42211 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
42212             Bruno Haible  <bruno@clisp.org>
42213
42214         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
42215         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
42216         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
42217         gl_AC_TYPE_LONG_LONG.
42218
42219         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
42220         instead of HAVE_LONG_LONG.
42221         * lib/printf-args.c (printf_fetchargs): Likewise.
42222         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
42223         * lib/vasnprintf.c (VASNPRINTF): Likewise.
42224         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
42225         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
42226         gl_AC_TYPE_LONG_LONG.
42227
42228 2006-10-11  Bruno Haible  <bruno@clisp.org>
42229
42230         * m4/longlong.m4: Add comments.
42231         * m4/ulonglong.m4: Likewise.
42232
42233 2006-10-10  Bruno Haible  <bruno@clisp.org>
42234
42235         Make it possible to #define stpcpy, strdup to aliases.
42236         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
42237         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
42238
42239 2006-10-10  Bruno Haible  <bruno@clisp.org>
42240
42241         Make it possible to #define gcd to an alias.
42242         * lib/gcd.c: Include config.h.
42243
42244 2006-10-10  Bruno Haible  <bruno@clisp.org>
42245
42246         Make it possible to #define c_isascii to an alias.
42247         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
42248         defined. Undefine the macros before defining them, to avoid gcc
42249         warnings.
42250         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
42251         define NO_C_CTYPE_MACROS early.
42252
42253 2006-10-10  Bruno Haible  <bruno@clisp.org>
42254
42255         Make it possible to #define set_program_name to an alias.
42256         * lib/progname.c: Don't undefine set_program_name; instead, undefine
42257         ENABLE_RELOCATABLE early.
42258
42259 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
42260
42261         Port to Tandem NSK OSS, which has 64-bit signed int but at most
42262         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
42263         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
42264         More generally, don't assume that 64-bit signed int is available
42265         if unsigned int is, and vice versa.
42266         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
42267         unsigned symbols, not on their signed counterparts.
42268         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
42269         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
42270         (UINT64_C, UINTMAX_C):
42271         Likewise.
42272         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
42273         unsigned counterparts.
42274         (Have_long_long, Unsigned): New macros.
42275         (Int): Renamed from INT.
42276         (strtoimax): Use the new macros.
42277         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
42278         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
42279         * modules/inttypes (inttypes.h): Substitute
42280         HAVE_UNSIGNED_LONG_LONG_INT.
42281         * modules/stdint (stdint.h): Likewise.
42282         (Files): Add m4/ulonglong.m4.
42283
42284 2006-10-10  Bruno Haible  <bruno@clisp.org>
42285
42286         Fix a gcc -Wshadow warning.
42287         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
42288         to 'bucket'.
42289         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
42290         gl_linked_indexof_from_to): Likewise.
42291         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
42292         Likewise.
42293         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
42294         Likewise.
42295         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
42296         Reported by Eric Blake.
42297
42298 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
42299
42300         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
42301         for NetBSD.  Problem reported by Bruno Haible.
42302
42303 2006-10-09  Jim Meyering  <jim@meyering.net>
42304
42305         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
42306         Patch from Bruno Haible.
42307
42308 2006-10-09  Jim Meyering  <jim@meyering.net>
42309
42310         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
42311         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
42312         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
42313
42314 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
42315
42316         Don't include <config.h> twice; this doesn't work in some cases,
42317         e.g., when config.h has "#define intmax_t long long int" and
42318         we include <config.h>, <inttypes.h>, <config.h> in that order.
42319         Problem reported by Matthew Woehlke in:
42320         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
42321         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
42322         * lib/fts-cycle.c: Don't include config.h.
42323         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
42324         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
42325         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
42326         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
42327         inttypes.h.
42328         * lib/xstrtoumax.c: Likewise.
42329         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
42330         __strtol and the like, so that this module is more like its siblings.
42331         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
42332         Remove; no longer needed now that we assume gnulib inttypes.h.
42333
42334 2006-10-08  Bruno Haible  <bruno@clisp.org>
42335
42336         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
42337         option.
42338
42339 2006-10-07  Jim Meyering  <jim@meyering.net>
42340
42341         * modules/inttypes (inttypes.h): Revert what seems to have been
42342         an inadvertent part of today's change: use "|", not "/" in the
42343         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
42344
42345 2006-10-07  Bruno Haible  <bruno@clisp.org>
42346
42347         * modules/sublist: New file.
42348
42349 2006-10-07  Bruno Haible  <bruno@clisp.org>
42350
42351         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
42352         * modules/argz (argz.h): Likewise.
42353         * modules/arpa_inet (arpa/inet.h): Likewise.
42354         * modules/byteswap (byteswap.h): Likewise.
42355         * modules/configmake (configmake.h): Likewise.
42356         * modules/fcntl (fcntl.h): Likewise.
42357         * modules/fnmatch (fnmatch.h): Likewise.
42358         * modules/getopt (getopt.h): Likewise.
42359         * modules/glob (glob.h): Likewise.
42360         * modules/inttypes (inttypes.h): Likewise.
42361         * modules/netinet_in (netinet/in.h): Likewise.
42362         * modules/poll (poll.h): Likewise.
42363         * modules/stdbool (stdbool.h): Likewise.
42364         * modules/stdint (stdint.h): Likewise.
42365         * modules/sys_select (sys/select.h): Likewise.
42366         * modules/sys_socket (sys/socket.h): Likewise.
42367         * modules/sys_stat (sys/stat.h): Likewise.
42368         * modules/sysexits (sysexits.h): Likewise.
42369         * modules/unistd (unistd.h): Likewise.
42370         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
42371         Add a "DO NOT EDIT" comment to the generated file.
42372         (func_import): Likewise for gnulib-comp.m4.
42373
42374 2006-10-07  Bruno Haible  <bruno@clisp.org>
42375
42376         * lib/gl_sublist.h: New file.
42377         * lib/gl_sublist.c: New file.
42378
42379 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
42380
42381         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
42382         name (relative to the original working directory) and the file
42383         name component (relative to the temporary working directory).  All
42384         callers changed.
42385         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
42386         * lib/mkdir-p.c (make_dir_parents): Likewise.
42387         * lib/mkdir-p.h (make_dir_parents): Likewise.
42388
42389 2006-10-06  Eric Blake  <ebb9@byu.net>
42390
42391         Define several macros for use by the clean-temp module.
42392         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
42393         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
42394         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
42395
42396         * lib/clean-temp.h (close_stream_temp): New declaration.
42397         * lib/clean-temp.c (includes): Pull in headers according to what
42398         other modules are in use.
42399         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
42400
42401 2006-10-06  Bruno Haible  <bruno@clisp.org>
42402
42403         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
42404         instead of fopen, fwriteerror.
42405
42406 2006-10-06  Bruno Haible  <bruno@clisp.org>
42407
42408         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
42409         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
42410         int.
42411         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
42412         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
42413         Return an error indicator.
42414         Suggested by Eric Blake.
42415
42416 2006-10-06  Bruno Haible  <bruno@clisp.org>
42417
42418         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
42419         Reported by Eric Blake.
42420
42421 2006-10-06  Bruno Haible  <bruno@clisp.org>
42422
42423         * modules/closeout (Description): Mention stderr too.
42424
42425 2006-10-06  Bruno Haible  <bruno@clisp.org>
42426         and Paul Eggert  <eggert@cs.ucla.edu>
42427
42428         * lib/closeout.c (close_stdout): Also close stderr.
42429         * lib/closeout.h: Update comment.
42430
42431 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
42432
42433         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
42434         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
42435         * lib/dirchownmod.c: Include lchown.h.
42436         * lib/lchown.c: Don't include files that lchown.h now includes.
42437         Don't declare chown, since lchown.h now does that.
42438         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
42439         (lchown): Define to rpl_chown if lchown is declared but
42440         does not exist.  Declare using a prototype if lchown is not
42441         declared.  Add a copyright notice.
42442         * lib/mkstemp.h: Include <unistd.h>.
42443         * lib/openat.c: Include lchown.h.
42444
42445         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
42446         we now test for that separately.
42447         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
42448         rather than O_NOFOLLOW, when testing whether it's possible to
42449         avoid a race condition reliably.
42450         * lib/savewd.c (savewd_chdir): Likewise.
42451
42452         Remove macros that are no longer needed now that stdint.h is
42453         reliable.
42454         * lib/fsusage.c (UINTMAX_MAX): Remove.
42455         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
42456         * lib/utimecmp.c (SIZE_MAX): Remove.
42457
42458         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
42459
42460         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
42461         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
42462         O_NOATIME works.
42463
42464 2006-10-05  Bruno Haible  <bruno@clisp.org>
42465
42466         * lib/gl_list.h (gl_sortedlist_search_from_to,
42467         gl_sortedlist_indexof_from_to): New declarations.
42468         (gl_list_implementation): New fields sortedlist_search_from_to,
42469         sortedlist_indexof_from_to.
42470         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
42471         inline functions.
42472         * lib/gl_list.c (gl_sortedlist_search_from_to,
42473         gl_sortedlist_indexof_from_to): New functions.
42474         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
42475         function.
42476         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
42477         (gl_array_sortedlist_search_from_to): New function.
42478         (gl_array_list_implementation): Update.
42479         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
42480         function.
42481         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
42482         (gl_carray_sortedlist_search_from_to): New function.
42483         (gl_carray_list_implementation): Update.
42484         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
42485         gl_linked_sortedlist_indexof_from_to): New functions.
42486         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
42487         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
42488         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
42489         gl_tree_sortedlist_indexof_from_to): New functions.
42490         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
42491         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
42492         Update.
42493         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
42494         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
42495         Update.
42496
42497 2006-10-05  Bruno Haible  <bruno@clisp.org>
42498
42499         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
42500         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
42501         (struct gl_list_implementation): Add fields search_from_to,
42502         indexof_from_to. Remove fields search, indexof.
42503         (gl_list_search): Use the search_from_to method.
42504         (gl_list_search_from, gl_list_search_from_to): New functions.
42505         (gl_list_indexof): Use the indexof_from_to method.
42506         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
42507         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
42508         (gl_list_search_from, gl_list_search_from_to): New functions.
42509         (gl_list_indexof): Use the indexof_from_to method.
42510         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
42511         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
42512         gl_array_indexof. Add start_index, end_index arguments.
42513         (gl_array_search_from_to): Renamed from gl_array_search. Add
42514         start_index, end_index arguments.
42515         (gl_array_remove, gl_array_list_implementation): Update.
42516         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
42517         gl_carray_indexof. Add start_index, end_index arguments.
42518         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
42519         start_index, end_index arguments.
42520         (gl_carray_remove, gl_carray_list_implementation): Update.
42521         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
42522         gl_linked_search. Add start_index, end_index arguments.
42523         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
42524         start_index, end_index arguments.
42525         (gl_linked_remove): Update.
42526         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
42527         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
42528         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
42529         field to 'size_t'.
42530         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
42531         gl_tree_search. Add start_index, end_index arguments.
42532         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
42533         start_index, end_index arguments.
42534         (gl_tree_remove): Update.
42535         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
42536         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
42537         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
42538         function.
42539         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
42540         gl_tree_search. Add start_index, end_index arguments.
42541         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
42542         start_index, end_index arguments.
42543         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
42544         Update.
42545         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
42546
42547 2006-10-05  Bruno Haible  <bruno@clisp.org>
42548
42549         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
42550
42551         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
42552         fwriteerror_temp): New declarations.
42553         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
42554         (descriptors): New variable.
42555         (cleanup): First, close the descriptors.
42556         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
42557         fclose_temp, fwriteerror_temp): New functions.
42558
42559 2006-10-04  Jim Meyering  <jim@meyering.net>
42560
42561         * lib/fts.c (fts_open): Tiny comment change.
42562
42563 2006-10-04  Bruno Haible  <bruno@clisp.org>
42564
42565         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
42566         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
42567         gl_LOCK_BODY.
42568         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
42569         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
42570         gl_LOCK_EARLY_BODY.
42571         (gl_LOCK): Require gl_LOCK_BODY.
42572
42573 2006-10-04  Bruno Haible  <bruno@clisp.org>
42574
42575         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
42576         (gl_oset_search_atleast): New declaration.
42577         (struct gl_oset_implementation): Add field 'search_atleast'.
42578         (gl_oset_search_atleast): New inline function.
42579         * lib/gl_oset.c (gl_oset_search_atleast): New function.
42580         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
42581         (gl_array_oset_implementation): Update.
42582         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
42583         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
42584         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
42585
42586 2006-10-04  Bruno Haible  <bruno@clisp.org>
42587
42588         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
42589
42590 2006-10-03  Bruno Haible  <bruno@clisp.org>
42591
42592         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
42593         from gl_avltreehash_list_implementation.
42594
42595 2006-10-03  Bruno Haible  <bruno@clisp.org>
42596
42597         * lib/gl_oset.c (gl_oset_add): Fix return type.
42598
42599 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
42600
42601         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
42602
42603 2006-10-02  Eric Blake  <ebb9@byu.net>
42604
42605         * modules/strnlen (Depends-on): Add extensions.
42606
42607 2006-10-02  Eric Blake  <ebb9@byu.net>
42608
42609         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
42610         definition in 2.60+.
42611
42612 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
42613
42614         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
42615         checks.
42616
42617 2006-10-02  Bruno Haible  <bruno@clisp.org>
42618
42619         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
42620         to the AUTOMAKE_OPTIONS.
42621         Reported by Jim Meyering.
42622
42623 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
42624
42625         Work around bug in Solaris 10 /proc file system:
42626         /proc/self/fd/NNN/.. isn't the parent directory of
42627         the directory whose file descriptor is NNN.  This needs to
42628         be worked around at run time, not compile time, since a
42629         program might be built on Solaris 8, where things work, and
42630         run on Solaris 10.
42631         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
42632         to use the following interface instead:
42633         (OPENAT_BUFFER_SIZE): New macro.
42634         (openat_proc_name): New function.
42635         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
42636         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
42637         Likewise.
42638         * lib/openat-proc.c: New file.
42639         * modules/openat (Files): Add lib/openat-proc.c.
42640         (Depends-on): Add same-inode, stdbool.
42641         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
42642
42643 2006-09-29  Bruno Haible  <bruno@clisp.org>
42644
42645         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
42646         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
42647         argument. Set stdout_closed before testing for ferror, not after.
42648         (fwriteerror, fwriteerror_no_ebadf): New functions.
42649
42650 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42651
42652         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
42653
42654 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
42655
42656         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
42657         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
42658
42659 2006-09-28  Jim Meyering  <jim@meyering.net>
42660
42661         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
42662         Include <unistd.h>.
42663
42664 2006-09-28  Bruno Haible  <bruno@clisp.org>
42665
42666         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
42667         * modules/linkedhash-list (Depends-on): Likewise.
42668         * modules/rbtreehash-list (Depends-on): Likewise.
42669
42670 2006-09-28  Bruno Haible  <bruno@clisp.org>
42671
42672         * lib/strndup.h: Simplify the redefinition of strndup.
42673         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
42674         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
42675
42676 2006-09-28  Bruno Haible  <bruno@clisp.org>
42677
42678         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
42679         * lib/gl_linkedhash_list.c: Likewise.
42680         * lib/gl_rbtreehash_list.c: Likewise.
42681
42682 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
42683
42684         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
42685         getaddrinfo.
42686
42687         * lib/__fpending.h: Don't include <stdio_ext.h> unless
42688         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
42689         it causes <stdio_ext.h> to cause a compile-time error.
42690         Problem reported by Nelson H. F. Beebe.
42691         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
42692         of HAVE_DECL___PENDING.
42693
42694         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
42695         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
42696         declaration.
42697
42698 2006-09-27  Jim Meyering  <jim@meyering.net>
42699
42700         This file could end up with a definition for a function
42701         named __strndup, rather than rpl_strndup on a system with
42702         incomplete weak_alias support.
42703         * lib/strndup.c (strndup): Rename from __strndup.
42704         Remove #defines that used to map __strndup to strndup.
42705         Don't use K&R prototypes.
42706         Remove LIBC-related code, since this file is not sync'd with glibc.
42707         * lib/strndup.h: Revamp, accordingly.
42708         * m4/strndup.m4: Modernize.
42709
42710 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
42711
42712         * modules/savewd (Depends-on): Add 'raise'.
42713         * lib/savewd.c: Include <signal.h>, for 'raise'.
42714
42715 2006-09-26  Jim Meyering  <jim@meyering.net>
42716
42717         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
42718         when we detect Darwin 8.7.0's acl_get_file bug.
42719         Rearrange to perform the new (below) run-test while $LIBS
42720         contains any acl-related library.  Set USE_ACL at the end.
42721         (gl_ACL_GET_FILE): New function.
42722
42723 2006-09-26  Eric Blake  <ebb9@byu.net>
42724
42725         * lib/verror.c: Include <config.h> unconditionally.
42726
42727 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
42728
42729         * modules/clock-time (Maintainer): Add self.
42730         * modules/getlogin_r (Depends-on): Add extensions.
42731
42732 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42733
42734         * modules/clock-time: New module.
42735         * modules/nanosleep (Depends-on): Add clock-time.
42736         * modules/gethrxtime (Depends-on): Likewise.
42737         * modules/gettime (Depends-on): Likewise.
42738         * modules/settime (Depends-on): Likewise.
42739
42740         * modules/fts-lgpl: Depend on openat.
42741         * modules/mkancesdirs: Depend on savewd.
42742         * modules/mkdir-p: Likewise.
42743
42744 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42745
42746         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
42747
42748         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
42749         `gl_have_arbitrary_file_name_length_limit' to
42750         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
42751         actually works between configure runs.
42752
42753 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42754             Bruno Haible  <bruno@clisp.org>
42755
42756         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
42757
42758 2006-09-25  Jim Meyering  <jim@meyering.net>
42759
42760         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
42761         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
42762
42763 2006-09-25  Eric Blake  <ebb9@byu.net>
42764
42765         * gnulib-tool (func_import, func_create_testdir): Fix typos in
42766         exec's in 2006-09-18 patch when shuffling fds.
42767
42768 2006-09-25  Bruno Haible  <bruno@clisp.org>
42769
42770         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
42771         Reported by Jim Meyering.
42772
42773 2006-09-24  Jim Meyering  <jim@meyering.net>
42774
42775         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
42776         compare a pointer against a literal "0".  That caused failures with
42777         at least HP-UX's hpcc.
42778
42779 2006-09-22  Simon Josefsson  <jas@extundo.com>
42780
42781         * modules/gc-sha1:
42782         * modules/gc-md4:
42783         * modules/gc-hmac-sha1:
42784         * modules/gc-hmac-md5:
42785         * modules/gc-des:
42786         * modules/gc-arcfour: Distribute more files.
42787
42788 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42789
42790         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
42791         (gl_linked_iterator_from_to): Initialize struct completely.
42792         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
42793         (gl_tree_iterator_from_to): Likewise
42794         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
42795         * lib/gl_array_list.c [lint] (gl_array_iterator)
42796         (gl_array_iterator_from_to): Likewise.
42797         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
42798         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
42799         (gl_carray_iterator_from_to): Likewise.
42800
42801         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
42802         * lib/md4.c (md4_process_block): Remove unused variable.
42803         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
42804         parentheses for clarity.
42805
42806 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42807
42808         * modules/bison-i18n (Depends-on): Add gettext.
42809
42810 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42811
42812         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
42813         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
42814         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
42815         also add missing comma that caused broken test.
42816         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
42817         stdlib.h, for `abort'.
42818         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
42819         variables.
42820         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
42821         include unistd.h if present, for `rmdir'.
42822         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
42823         variables.
42824         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
42825         in the process include standard headers for prototypes.
42826         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
42827         gets declared on GNU/Linux.
42828         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
42829         unistd.h, for `rmdir'.
42830         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
42831
42832         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
42833         always true.
42834         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
42835
42836         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
42837
42838 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42839
42840         * gnulib-tool (func_version): Create output all at once.  This
42841         may help avoid triggering unnecessary SIGPIPEs, and at any
42842         rate it doesn't hurt.
42843
42844 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42845             Bruno Haible  <bruno@clisp.org>
42846
42847         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
42848         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
42849         * m4/signed.m4 (bh_C_SIGNED): Likewise.
42850
42851         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
42852         (gl_FUNC_VASPRINTF): Invoke it.
42853
42854 2006-09-22  Bruno Haible  <bruno@clisp.org>
42855
42856         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
42857         getloadavg.c as first argument.
42858
42859 2006-09-22  Bruno Haible  <bruno@clisp.org>
42860
42861         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
42862         at the beginning of the gl_INIT macro.
42863         * modules/getloadavg (configure.ac): Pass $gl_source_base to
42864         gl_GETLOADAVG.
42865
42866 2006-09-22  Bruno Haible  <bruno@clisp.org>
42867
42868         * gnulib-tool (func_create_megatestdir): Don't include the config-h
42869         module.
42870         Suggested by Ralf Wildenhues.
42871
42872 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
42873
42874         Import this patch from libc:
42875
42876         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
42877
42878         * lib/regex_internal.c (re_string_reconstruct): Handle
42879         offset < pstr->valid_raw_len && pstr->offsets_needed case.
42880         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
42881         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
42882         re_string_context_at.
42883
42884         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
42885         now requires it.
42886         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
42887         gl_REGEX now does it for us.
42888         (gl_REGEX): Add test taken from
42889         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
42890
42891         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
42892         Check that large offsets work.  Modernize Autoconf usages.
42893         Prefer "yes" to mean a good thing rather than a bad.
42894         Don't put "#define mkstemp" in config.h, as this might interfere
42895         with standard system headers that "#define mkstemp mkstemp64".
42896
42897         * modules/mkstemp (Depends-on): Add extensions, so that
42898         mkstemp is visible on some platforms.
42899         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
42900         (Include): Change to "mkstemp.h" from <stdlib.h>.
42901         (Files): Add mkstemp.h.
42902
42903         * lib/mkstemp.h: New file, since some standard headers
42904         #define mkstemp.
42905         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
42906         Include "mkstemp.h".
42907         Make the _LIBC code resemble glibc original more,
42908         e.g., use K&R style.
42909         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
42910         (mkstemp): Remove, since mkstemp.h does this for us.
42911         * lib/stdlib--.h: Include mkstemp.h.
42912
42913         Import this patch from libc:
42914
42915         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
42916
42917         * lib/tempname.c (__gen_tempname): Change attempts_min
42918         into a macro.  Use preprocessor to decide how to initialize
42919         attempts [Coverity CID 67].
42920
42921 2006-09-20  Bruno Haible  <bruno@clisp.org>
42922
42923         * lib/mkdtemp.c: Import from libc.
42924         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
42925                 * sysdeps/posix/tempname.c (__gen_tempname): Change
42926                 attempts_min into a macro.  Use preprocessor to decide how to
42927                 initialize attempts [Coverity CID 67].
42928         2001-11-27  Paul Eggert  <eggert@twinsun.com>
42929                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
42930                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
42931
42932 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42933
42934         * gnulib-tool (func_exit): New function, to allow to pass the
42935         exit status portably through the trap.  Use everywhere.
42936         (--help, --version): Signal a write error.
42937         (trap): catch SIGPIPE, for write errors.
42938         Exit at the end of the trap, with the correct exit status.
42939
42940 2006-09-19  Karl Berry  <karl@gnu.org>
42941
42942         * doc/gnulib.texi: note about the license texinfo files.
42943
42944 2006-09-19  Eric Blake  <ebb9@byu.net>
42945
42946         * gnulib-tool: Avoid space-tab.
42947
42948 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
42949
42950         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
42951         that prevented coreutils 6.1 from building.  Problem reported
42952         by Petter Reinholdtsen.
42953
42954 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
42955
42956         * gnulib-tool (avoidlist): Fix typo that broke options like
42957         --avoid=lock that are used by coreutils bootstrap.
42958
42959 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
42960
42961         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
42962         more systematically.
42963
42964 2006-09-18  Jim Meyering  <jim@meyering.net>
42965
42966         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
42967
42968 2006-09-18  Bruno Haible  <bruno@clisp.org>
42969
42970         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
42971
42972 2006-09-18  Bruno Haible  <bruno@clisp.org>
42973
42974         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
42975         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
42976         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
42977         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
42978         * m4/gettext.m4: Require autoconf >= 2.52.
42979         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
42980         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
42981         of gl_cv_header_inttypes_h.
42982
42983 2006-09-18  Bruno Haible  <bruno@clisp.org>
42984
42985         * lib/javaversion.c: Include configmake.h.
42986
42987 2006-09-18  Bruno Haible  <bruno@clisp.org>
42988
42989         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
42990         avoid that the while loops be executed in a subshell.
42991
42992 2006-09-18  Bruno Haible  <bruno@clisp.org>
42993
42994         * MODULES.html.sh (func_module): Break long lines.
42995         Suggested by Bruce Korb <bkorb@gnu.org>.
42996
42997 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42998
42999         Speed up by a factor of 1.12.
43000         * gnulib-tool (nl): New variable.
43001         (func_import): Rewrite include directive extraction to only read each
43002         directive once.
43003
43004 2006-09-17  Bruno Haible  <bruno@clisp.org>
43005
43006         * modules/javaversion (Makefile.am): Remove DEFS setting.
43007         (Depends-on): Add configmake, for PKGDATADIR definition.
43008
43009 2006-09-17  Bruno Haible  <bruno@clisp.org>
43010
43011         * gnulib-tool (func_create_testdir): Rewrite all files at once.
43012
43013 2006-09-17  Bruno Haible  <bruno@clisp.org>
43014
43015         * gnulib-tool (func_append): New function, stolen from libtool.m4.
43016         (func_modules_transitive_closure, func_modules_add_dummy,
43017         func_modules_to_filelist, func_import, func_create_testdir,
43018         func_create_megatestdir, ...): Use it wherever possible.
43019         Suggested by Ralf Wildenhues.
43020
43021 2006-09-16  Karl Berry  <karl@gnu.org>
43022
43023         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
43024         to avoid sectioning errors.
43025         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
43026         [ifinfo]: blank line after @center-ed titles.
43027         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
43028         Spell FSF address consistently with others.
43029         (These changes approved by rms.)
43030
43031 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43032
43033         Speed up by a factor of 1.61.
43034         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
43035         already checked module names again.
43036
43037 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43038
43039         Speed up by a factor of 1.13.
43040         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
43041         for new_files, and the input to func_add_or_update.
43042
43043 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43044
43045         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
43046         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
43047
43048 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43049
43050         * modules/mkancesdirs (Depends-on): Add fcntl.
43051         * modules/savewd: New file.
43052         * MODULES.html.sh (File system functions): Add savewd.
43053
43054         * modules/configmake (Makefile.am): Add support for the
43055         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
43056
43057 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43058
43059         * m4/savewd.m4: New file.
43060
43061 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43062
43063         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
43064         (dirchownmod): New arg FD.  All callers changed.
43065         Use FD rather than opening the directory ourself, as opening is
43066         now the caller's responsibility.
43067         * lib/dirchownmod.h: Likewise.
43068         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
43069         hosts that require <sys/types.h> before <sys/stat.h>.  Include
43070         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
43071         (test_dir): Remove.
43072         (mkancesdirs): Return length of prefix of FILE that has already
43073         been made, or -2 if there is a child doing the work.  Redo
43074         algorithm so that it is O(N) rather than O(N**2).  Optimize away
43075         ".", and treat ".." specially since it might stray back into
43076         already-created areas.  Use a subprocess if necessary.  New arg
43077         WD; all users changed.  MAKE_DIR function should now return 1
43078         if it creates a directory that is not readable.  Return -2 if
43079         a child process is spun off.
43080         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
43081         Adjust signature to match code.
43082         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
43083         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
43084         all users changed.
43085         * lib/savewd.c, lib/savewd.h: New files.
43086
43087 2006-09-15  Jim Meyering  <jim@meyering.net>
43088
43089         * modules/rename-dest-slash: New module.
43090         * MODULES.html.sh (posix_compat): Add it here.
43091
43092         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
43093
43094 2006-09-15  Jim Meyering  <jim@meyering.net>
43095
43096         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
43097         file.
43098
43099         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
43100
43101 2006-09-15  Jim Meyering  <jim@meyering.net>
43102
43103         * lib/rename-dest-slash.c (has_trailing_slash): Use
43104         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
43105         (rpl_rename_dest_slash): Perform the cheaper trailing slash
43106         test before testing whether SRC is a directory.
43107         Suggestions from Bruno Haible.
43108
43109         Avoid a warning about an unused variable.
43110         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
43111         into the #ifdef block where it's used.
43112
43113         * lib/rename-dest-slash.c: New file.
43114
43115 2006-09-14  Bruno Haible  <bruno@clisp.org>
43116
43117         * lib/allocsa.c: Include <config.h> unconditionally.
43118         * lib/asnprintf.c: Likewise.
43119         * lib/asprintf.c: Likewise.
43120         * lib/c-strcasecmp.c: Likewise.
43121         * lib/c-strcasestr.c: Likewise.
43122         * lib/c-strncasecmp.c: Likewise.
43123         * lib/c-strstr.c: Likewise.
43124         * lib/classpath.c: Likewise.
43125         * lib/clean-temp.c: Likewise.
43126         * lib/concatpath.c: Likewise.
43127         * lib/copy-file.c: Likewise.
43128         * lib/csharpcomp.c: Likewise.
43129         * lib/csharpexec.c: Likewise.
43130         * lib/execute.c: Likewise.
43131         * lib/fatal-signal.c: Likewise.
43132         * lib/findprog.c: Likewise.
43133         * lib/fwriteerror.c: Likewise.
43134         * lib/gl_array_list.c: Likewise.
43135         * lib/gl_array_oset.c: Likewise.
43136         * lib/gl_avltree_list.c: Likewise.
43137         * lib/gl_avltree_oset.c: Likewise.
43138         * lib/gl_avltreehash_list.c: Likewise.
43139         * lib/gl_carray_list.c: Likewise.
43140         * lib/gl_linked_list.c: Likewise.
43141         * lib/gl_linkedhash_list.c: Likewise.
43142         * lib/gl_list.c: Likewise.
43143         * lib/gl_oset.c: Likewise.
43144         * lib/gl_rbtree_list.c: Likewise.
43145         * lib/gl_rbtree_oset.c: Likewise.
43146         * lib/gl_rbtreehash_list.c: Likewise.
43147         * lib/imaxabs.c: Likewise.
43148         * lib/imaxdiv.c: Likewise.
43149         * lib/javacomp.c: Likewise.
43150         * lib/javaexec.c: Likewise.
43151         * lib/javaversion.c: Likewise.
43152         * lib/linebreak.c: Likewise.
43153         * lib/localcharset.c: Likewise.
43154         * lib/lock.c: Likewise.
43155         * lib/mbchar.c: Likewise.
43156         * lib/mbswidth.c: Likewise.
43157         * lib/mkdtemp.c: Likewise.
43158         * lib/pipe.c: Likewise.
43159         * lib/printf-args.c: Likewise.
43160         * lib/printf-parse.c: Likewise.
43161         * lib/progname.c: Likewise.
43162         * lib/progreloc.c: Likewise.
43163         * lib/readlink.c: Likewise.
43164         * lib/sh-quote.c: Likewise.
43165         * lib/stpcpy.c: Likewise.
43166         * lib/stpncpy.c: Likewise.
43167         * lib/strcasecmp.c: Likewise.
43168         * lib/strcasestr.c: Likewise.
43169         * lib/strcspn.c: Likewise.
43170         * lib/striconv.c: Likewise.
43171         * lib/strncasecmp.c: Likewise.
43172         * lib/strnlen1.c: Likewise.
43173         * lib/strstr.c: Likewise.
43174         * lib/strtok_r.c: Likewise.
43175         * lib/tls.c: Likewise.
43176         * lib/tmpdir.c: Likewise.
43177         * lib/unicodeio.c: Likewise.
43178         * lib/unsetenv.c: Likewise.
43179         * lib/vasnprintf.c: Likewise.
43180         * lib/vasprintf.c: Likewise.
43181         * lib/wait-process.c: Likewise.
43182         * lib/xallocsa.c: Likewise.
43183         * lib/xsetenv.c: Likewise.
43184         * lib/xstriconv.c: Likewise.
43185
43186 2006-09-13  Simon Josefsson  <jas@extundo.com>
43187
43188         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
43189         that internally, suggested by Ralf Wildenhues
43190         <Ralf.Wildenhues@gmx.de>.
43191
43192 2006-09-13  Simon Josefsson  <jas@extundo.com>
43193
43194         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
43195         @LIBOBJS@.
43196         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
43197
43198 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
43199
43200         * lib/_fpending.c: Include <config.h> unconditionally, since we no
43201         longer worry about uses that don't define HAVE_CONFIG_H.
43202         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
43203         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
43204         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
43205         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
43206         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
43207         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
43208         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
43209         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
43210         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
43211         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
43212         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
43213         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
43214         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
43215         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
43216         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
43217         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
43218         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
43219         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
43220         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
43221         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
43222         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
43223         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
43224         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
43225         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
43226         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
43227         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
43228         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
43229         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
43230         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
43231         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
43232         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
43233         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
43234         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
43235         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
43236         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
43237         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
43238         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
43239         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
43240         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
43241         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
43242         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
43243         Likewise.
43244
43245 2006-09-13  Eric Blake  <ebb9@byu.net>
43246
43247         * lib/getopt.c: Fix typo in last commit.
43248
43249 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
43250
43251         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
43252         dgettext.
43253
43254 2006-09-12  Jim Meyering  <jim@meyering.net>
43255
43256         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
43257         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
43258         Reported by Nelson H. F. Beebe.
43259
43260 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
43261
43262         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
43263         program_invocation_name and program_invocation_short_name are
43264         initialized.
43265         * lib/argp-namefrob.h: Move declarations of program_invocation_name
43266         and program_invocation_short_name to argp.h, so they are visible
43267         to user programs.
43268         * lib/argp.h: Likewise
43269
43270 2006-09-10  Bruno Haible  <bruno@clisp.org>
43271
43272         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
43273         m4/inttypes_h.m4, m4/uintmax_t.m4.
43274
43275 2006-09-10  Bruno Haible  <bruno@clisp.org>
43276
43277         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
43278         gl_AC_TYPE_UINTMAX_T.
43279
43280 2006-09-10  Bruno Haible  <bruno@clisp.org>
43281
43282         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
43283
43284 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
43285
43286         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
43287         convention.  Text proposed by Bruno Haible.
43288         (struct argp_option): Document the use of N_() wrappers.
43289
43290         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
43291         '\v', and translate the two parts separately, instead of feeding
43292         the whole string to gettext.  This allows to exclude
43293         '\v' from the strings visible to the translator by writing doc
43294         strings as N_("..") "\v" N_("..").
43295
43296 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
43297
43298         * config/srclist.txt: Undo latest change; the bug was fixed.
43299
43300 2006-09-09  Bruno Haible  <bruno@clisp.org>
43301
43302         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
43303         assignments if building a library without libtool.
43304         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
43305         in func_emit_lib_Makefile_am.
43306         (func_import): When building a static library libfoo.a, arrange to
43307         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
43308         (func_create_testdir): Likewise.
43309         * modules/gc (configure.ac, Makefile.am): If building statically,
43310         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
43311         * modules/iconvme (configure.ac, Makefile.am): Likewise.
43312         * modules/striconv (configure.ac, Makefile.am): Likewise.
43313         Based on a suggestion by Ralf Wildenhues.
43314
43315 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43316
43317         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
43318         Check for unistd.h too, since Autoconf doesn't assume POSIX.
43319         Also:
43320
43321         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43322         Add year_2050_test to catch glibc bug 2821
43323         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
43324
43325         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
43326         Prefer #ifdef to #if.
43327
43328         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
43329         Return from 'main' instead of calling 'exit'.
43330
43331 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43332
43333         * lib/mktime.c (guess_time_tm): Fix bug where mktime
43334         returned the maximum time_t value rather than (time_t) -1.
43335         Problem originally reported by William Bardwell
43336         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
43337
43338         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
43339         Moved to here ...
43340         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
43341         ... from here.
43342
43343 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43344
43345         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
43346         2821 is fixed.
43347
43348 2006-09-08  Jim Meyering  <jim@meyering.net>
43349
43350         Don't make generated files read-only.  That would bother too many
43351         people.  However, do retain the ability to work when targets are
43352         read-only: remove the destination and temporary files before writing
43353         them (when generated via sed or echo), or by using the -f option for
43354         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
43355         * modules/alloca-opt, modules/argz, modules/arpa_inet:
43356         * modules/byteswap, modules/configmake, modules/fcntl:
43357         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
43358         * modules/localcharset, modules/netinet_in, modules/poll:
43359         * modules/stdbool, modules/stdint, modules/sys_select:
43360         * modules/sys_socket, modules/sys_stat, modules/sysexits:
43361
43362 2006-09-08  Jim Meyering  <jim@meyering.net>
43363
43364         Avoid new build failure on FreeBSD 6.0.
43365         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
43366         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
43367         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
43368
43369 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43370
43371         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
43372
43373 2006-09-07  Jim Meyering  <jim@meyering.net>
43374
43375         Fix global typo in last change: use chmod u-w, not chmod u-x.
43376         Spotted by Paul Eggert and Bruce Korb.
43377         * modules/alloca-opt, modules/argz, modules/arpa_inet:
43378         * modules/byteswap, modules/configmake, modules/fcntl:
43379         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
43380         * modules/localcharset, modules/netinet_in, modules/poll:
43381         * modules/stdbool, modules/stdint, modules/sys_select:
43382         * modules/sys_socket, modules/sys_stat, modules/sysexits:
43383
43384 2006-09-06  Jim Meyering  <jim@meyering.net>
43385
43386         Make generated files be read-only.
43387         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
43388         Ensure that each generated file is now read-only.
43389         * modules/argz: Likewise.
43390         * modules/arpa_inet: Likewise.
43391         * modules/byteswap: Likewise.
43392         * modules/configmake: Likewise.
43393         * modules/fcntl: Likewise.
43394         * modules/fnmatch: Likewise.
43395         * modules/getopt: Likewise.
43396         * modules/glob: Likewise.
43397         * modules/inttypes: Likewise.
43398         * modules/netinet_in: Likewise.
43399         * modules/poll: Likewise.
43400         * modules/stdbool: Likewise.
43401         * modules/stdint: Likewise.
43402         * modules/sys_select: Likewise.
43403         * modules/sys_socket: Likewise.
43404         * modules/sys_stat: Likewise.
43405         * modules/sysexits: Likewise.
43406         * modules/localcharset: Same as above, but continue using temporary
43407         file named "t-$@" (why different?) rather than the "$@-t" used
43408         everywhere else.
43409
43410         * modules/sysexits (Makefile.am): Replace literal occurrences
43411         of "sysexit.h" more readable, and more consistent, "$@".
43412
43413 2006-09-06  Bruno Haible  <bruno@clisp.org>
43414
43415         * modules/striconv: New file.
43416         * modules/xstriconv: New file.
43417         * MODULES.html.sh (Internationalization functions): Add striconv,
43418         xstriconv.
43419
43420 2006-09-06  Bruno Haible  <bruno@clisp.org>
43421
43422         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
43423         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
43424         not using libtool correctly.
43425
43426 2006-09-06  Bruno Haible  <bruno@clisp.org>
43427
43428         * lib/striconv.h: New file.
43429         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
43430         iconvstring.c.
43431         * lib/xstriconv.h: New file.
43432         * lib/xstriconv.c: New file.
43433
43434 2006-09-06  Bruno Haible  <bruno@clisp.org>
43435
43436         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
43437         lib_..._LDFLAGS.
43438
43439 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43440
43441         * lib/argz_.h: Sync from Libtool.
43442
43443         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
43444                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
43445
43446         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
43447
43448 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
43449
43450         * modules/trim: New file.
43451
43452 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
43453
43454         * lib/trim.h: New file.
43455         * lib/trim.c: New file.
43456
43457 2006-09-05  Bruno Haible  <bruno@clisp.org>
43458
43459         * MODULES.html.sh (String handling): Add trim.
43460
43461 2006-09-04  Karl Berry  <karl@gnu.org>
43462
43463         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
43464         until next release.
43465
43466 2006-09-03  Bruno Haible  <bruno@clisp.org>
43467
43468         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
43469         correctly.
43470
43471 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43472
43473         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
43474         not gl_GETLOADAVG.  Omit unneeded semicolons.
43475         Problems reported by Ralf Wildenhues in
43476         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
43477         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
43478         at the end, which is the usual gnulib style.
43479
43480         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
43481         of doing all the work ourselves.
43482         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
43483         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
43484
43485 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43486
43487         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
43488         Problem reported by Ralf Wildenhues in
43489         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
43490
43491         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
43492         HAVE_STRUCT_STATFS_F_FSTYPENAME.
43493
43494 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43495
43496         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
43497         yesterday's patch by changing test -n to test -z.
43498
43499 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43500
43501         * modules/getloadavg (Files): Add m4/getloadavg.m4.
43502         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
43503         the former is now obsolescent.
43504
43505         * modules/chdir-long (Depends-on): Add fcntl.
43506
43507 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43508
43509         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
43510         obsolescent, and programs should use gnulib instead.
43511         * m4/getloadavg.m4: New file, with contents taken from Autoconf
43512         but with prefixes changed.
43513
43514 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43515
43516         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
43517         or stdbool.h, because they might not exist while configuring.
43518
43519         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
43520         Don't include unistd.h or limits.h; not needed, since chdir-long.h
43521         does that for us.
43522         (O_DIRECTORY): Remove.
43523
43524 2006-08-31  Eric Blake  <ebb9@byu.net>
43525
43526         * gnulib-tool: Don't let emacs change spaces to TAB.
43527
43528 2006-08-31  Bruno Haible  <bruno@clisp.org>
43529
43530         * gnulib-tool: When calling func_import more than once, do it in a
43531         subshell.
43532         Reported by Eric Blake <ebb9@byu.net>.
43533
43534 2006-08-31  Bruno Haible  <bruno@clisp.org>
43535
43536         * gnulib-tool (nl): Remove variable.
43537         (sed_transform_lib_file): Use more robust test for config-h module.
43538         (func_import): Fix typo in 2006-08-25 patch.
43539
43540 2006-08-31  Bruno Haible  <bruno@clisp.org>
43541
43542         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
43543         specified, augment Makefile.am variables instead of assigning them.
43544
43545 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
43546
43547         Work around a bug in both the Linux and SunOS 64-bit kernels:
43548         nanosleep mishandles sleeps for longer than 2**31 seconds.
43549         Problem reported by Frank v Waveren in
43550         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
43551         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
43552         Check for nanosleep bug.
43553         (LIB_NANOSLEEP): Append clock_gettime library if needed.
43554
43555 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
43556
43557         Work around a bug in both the Linux and SunOS 64-bit kernels:
43558         nanosleep mishandles sleeps for longer than 2**31 seconds.
43559         Problem reported by Frank v Waveren in
43560         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
43561         * lib/nanosleep.c (BILLION): New constant.
43562         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
43563         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
43564         implementation.
43565
43566 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
43567
43568         * modules/nanosleep (Depends-on): Add gettime.
43569
43570 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
43571         and Simon Josefsson  <jas@extundo.com>
43572         and Oskar Liljeblad  <oskar@osk.mine.nu>
43573
43574         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
43575         * gnulib-tool (func_import): New license type 'unmodifiable license
43576         text'.
43577         * modules/fdl: Use it.  Longer description.
43578         * module/gpl, module/lgpl: New files.
43579
43580 2006-08-30  Jim Meyering  <jim@meyering.net>
43581
43582         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
43583         shadowing the parameter.
43584
43585 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43586
43587         Sync from Libtool:
43588
43589         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43590
43591         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
43592         sharing with gnulib.  Report by Eric Blake.
43593
43594 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
43595
43596         * modules/isapipe: New file.
43597         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
43598
43599 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
43600
43601         * modules/configmake (Makefile.am): Add a comment, and omit
43602         the CONFIGMAKE_ prefix from generated macro names.  Suggested
43603         by Bruno Haible.
43604
43605 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
43606
43607         * m4/isapipe.m4: New file.
43608
43609 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
43610
43611         * lib/isapipe.c, lib/isapipe.h: New files.
43612
43613 2006-08-29  Jim Meyering  <jim@meyering.net>
43614
43615         * modules/configmake (Makefile.am): Make configmake.h depend on
43616         Makefile.  Otherwise, a stale configmake.h could hang around.
43617
43618 2006-08-29  Eric Blake  <ebb9@byu.net>
43619
43620         * lib/error.c (error_at_line, print_errno_message): Match libc, after
43621         resolution of upstream bug 3044.
43622
43623 2006-08-29  Bruno Haible  <bruno@clisp.org>
43624
43625         * modules/localcharset (Depends-on): Add configmake.
43626         (Makefile.am): Remove setting of LIBDIR through DEFS.
43627
43628 2006-08-29  Bruno Haible  <bruno@clisp.org>
43629
43630         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
43631         defined.
43632
43633 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
43634
43635         * modules/fcntl: New file.
43636         * modules/chdir-safer (Depends-on): Add fcntl.
43637         * modules/fts: Likewise.
43638         * modules/mkdir-p: Likewise.
43639
43640         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
43641         This undoes the most recent change, since we're now addressing the
43642         problem in a different way.
43643
43644         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
43645         into output, since the output might be called Makefile.am even
43646         if $makefile_name is something different.
43647         (func_import): Use $makefile_am rather than
43648         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
43649         empty.
43650
43651         * modules/inttypes (Files): Add m4/inttypes-h.m4.
43652
43653 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
43654
43655         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
43656         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
43657         recent change to stdint.m4, since we're now addressing the problem in a
43658         different way.
43659
43660 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
43661
43662         * m4/fcntl_h.m4: New file.
43663
43664 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
43665
43666         * lib/fcntl_.h: New file.
43667         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
43668         the fcntl module.
43669         * lib/dirchownmod.c: Likewise.
43670         * lib/fts.c: Likewise.
43671
43672         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
43673         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
43674         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
43675         just before including <inttypes.h>, to avoid circular inclusion.
43676
43677 2006-08-28  Jim Meyering  <jim@meyering.net>
43678
43679         * doc/visibility.texi: Actually read and correct the grammar of the
43680         sentence affected by yesterday's change.
43681
43682 2006-08-28  Eric Blake  <ebb9@byu.net>
43683
43684         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
43685         needs wrapper.
43686
43687 2006-08-28  Eric Blake  <ebb9@byu.net>
43688
43689         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
43690
43691 2006-08-28  Eric Blake  <ebb9@byu.net>
43692
43693         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
43694
43695 2006-08-28  Bruno Haible  <bruno@clisp.org>
43696
43697         * modules/c-strstr: New file, from GNU gettext.
43698         * MODULES.html.sh (String handling): Add c-strstr.
43699
43700 2006-08-28  Bruno Haible  <bruno@clisp.org>
43701
43702         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
43703         macros.
43704         Reported by Eric Blake.
43705
43706 2006-08-28  Bruno Haible  <bruno@clisp.org>
43707
43708         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
43709         (VASNPRINTF): Return a string of length > INT_MAX without failing.
43710         * lib/vasprintf.c: Include errno.h, limits.h.
43711         (EOVERFLOW): New fallback definition.
43712         (vasprintf): Test here whether the string length is > INT_MAX.
43713         * lib/vsnprintf.c: Include errno.h, limits.h.
43714         (EOVERFLOW): New fallback definition.
43715         (vsnprintf): Fix bug when generated string was too long for the buffer.
43716         Test here whether the string length is > INT_MAX.
43717
43718 2006-08-28  Bruno Haible  <bruno@clisp.org>
43719
43720         * lib/inttypes_.h (SCNX*): Remove definitions.
43721         Reported by Eric Blake.
43722
43723 2006-08-28  Bruno Haible  <bruno@clisp.org>
43724
43725         * lib/c-strstr.h: New file, from GNU gettext.
43726         * lib/c-strstr.c: New file, from GNU gettext.
43727
43728 2006-08-28  Bruno Haible  <bruno@clisp.org>
43729
43730         * gnulib-tool: Reorder some statements.
43731
43732 2006-08-28  Bruno Haible  <bruno@clisp.org>
43733
43734         * gnulib-tool: New option --makefile-name.
43735         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
43736         $makefile_name.
43737         (func_import): Write $makefile_name to the cache file, and read it from
43738         there unless explicitly specified. Use $makefile_name as file name
43739         instead of Makefile.am. Adjust the recommendations accordingly.
43740
43741 2006-08-28  Bruno Haible  <bruno@clisp.org>
43742
43743         * gnulib-tool (func_verify_module): Check against misapplying patch.
43744
43745 2006-08-28  Bruno Haible  <bruno@clisp.org>
43746
43747         * gnulib-tool (func_relativize, func_relconcat): New functions.
43748         Give an error if --local-dir is given with --update.
43749         Remove trailing slashes from $local_gnulib_dir.
43750         (func_import): Store the relativized $local_gnulib_dir in
43751         gnulib-cache.m4, and read it from there if not specified explicitly.
43752
43753 2006-08-28  Bruno Haible  <bruno@clisp.org>
43754
43755         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
43756         is the current directory. Respect also $local_gnulib_dir.
43757
43758 2006-08-28  Bruno Haible  <bruno@clisp.org>
43759             Simon Josefsson  <jas@extundo.com>
43760
43761         BeOS portability.
43762         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
43763
43764 2006-08-27  Jim Meyering  <jim@meyering.net>
43765
43766         * doc/visibility.texi: Remove duplicate word: "pointer".
43767
43768 2006-08-26  Bruno Haible  <bruno@clisp.org>
43769
43770         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
43771         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
43772         (Makefile.am): Create inttypes.h from inttypes_.h.
43773         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
43774
43775         * modules/imaxabs: New file.
43776
43777         * modules/imaxdiv: New file.
43778
43779 2006-08-26  Bruno Haible  <bruno@clisp.org>
43780
43781         * m4/inttypes.m4: New file.
43782         * m4/_inttypes_h.m4: Remove file.
43783         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
43784         PRI_MACROS_BROKEN.
43785         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
43786
43787         * m4/imaxabs.m4: New file.
43788
43789         * m4/imaxdiv.m4: New file.
43790
43791 2006-08-26  Bruno Haible  <bruno@clisp.org>
43792
43793         * lib/inttypes_.h: New file.
43794         * lib/inttypes.h: Remove file.
43795         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
43796
43797         * lib/imaxabs.c: New file.
43798
43799         * lib/imaxdiv.c: New file.
43800
43801 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
43802
43803         New config-h module, so that "make" output needn't be cluttered
43804         by -DHAVE_CONFIG_H.
43805         * MODULES.html.sh (Support for building libraries and executables):
43806         Add config-h.
43807         * modules/config-h: New file.
43808         * gnulib-tool (nl, sed_transform_lib_file): New vars.
43809         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
43810         the config-h module is used.
43811
43812         New configmake module, so that "make" output needn't be cluttered
43813         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
43814         * MODULES.html.sh (Support for building libraries and executables):
43815         Add configmake.
43816         * modules/configmake: New file.
43817
43818 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
43819
43820         * m4/config-h.m4: New file.
43821
43822 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
43823
43824         * config/srclist.txt: Add elisp-comp.
43825
43826 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
43827
43828         * MODULES.html.sh (Support for building libraries and executables):
43829         Add elisp-comp.
43830         * build-aux/elisp-comp: New file.
43831         * modules/elisp-comp: New file.
43832
43833 2006-08-24  Bruno Haible  <bruno@clisp.org>
43834
43835         * gnulib-tool (func_create_testdir): Use non-default values of
43836         sourcebase and m4base.
43837
43838 2006-08-24  Bruno Haible  <bruno@clisp.org>
43839
43840         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
43841         HTML structure.
43842
43843 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
43844
43845         * modules/openat (Depends-on): Add lchown.
43846
43847 2006-08-23  Bruno Haible  <bruno@clisp.org>
43848
43849         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
43850         of gl_LOCK_EARLY instead of gl_LOCK.
43851
43852 2006-08-23  Bruno Haible  <bruno@clisp.org>
43853
43854         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
43855         on OSF/1 to no.
43856         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
43857
43858 2006-08-23  Bruno Haible  <bruno@clisp.org>
43859
43860         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
43861         as unusable.
43862
43863         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
43864         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
43865         (gl_LOCK): New macro.
43866
43867 2006-08-22  Simon Josefsson  <jas@extundo.com>
43868
43869         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
43870         to md5 module.
43871
43872 2006-08-22  Simon Josefsson  <jas@extundo.com>
43873
43874         * MODULES.html.sh: Add "Support for maintaining and release
43875         projects".
43876
43877         * build-aux/gnupload: New file, from coreutils.
43878
43879 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
43880
43881         Avoid the need for AC_LIBSOURCES in m4 macros.
43882         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
43883         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
43884         * modules/check-version (EXTRA_DIST): Add check-version.h.
43885         * modules/crc (EXTRA_DIST): Add crc.h.
43886         * modules/des (EXTRA_DIST): Add des.h.
43887         * modules/gc (EXTRA_DIST): Add gc.h.
43888         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
43889         * modules/getline (EXTRA_DIST): Add getline.h.
43890         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
43891         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
43892         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
43893         * modules/md2 (EXTRA_DIST): Add md2.h.
43894         * modules/md4 (EXTRA_DIST): Add md4.h.
43895         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
43896         * modules/read-file (EXTRA_DIST): Add read-file.h.
43897         * modules/readline (EXTRA_DIST): Add readline.h.
43898         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
43899         rijndael-api-fst.h.
43900
43901 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
43902
43903         * m4/rijndael.m4 (gl_ARCFOUR):
43904         * m4/arctwo.m4 (gl_ARCTWO):
43905         * m4/check-version.m4 (gl_CHECK_VERSION):
43906         * m4/crc.m4 (gl_CRC):
43907         * m4/des.m4 (gl_DES):
43908         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
43909         * m4/gc.m4 (gl_GC):
43910         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
43911         * m4/getline.m4 (gl_FUNC_GETLINE):
43912         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
43913         * m4/hmac-md5.m4 (gl_HMAC_MD5):
43914         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
43915         * m4/md2.m4 (gl_MD2):
43916         * m4/md4.m4 (gl_MD4):
43917         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
43918         * m4/read-file.m4 (gl_FUNC_READ_FILE):
43919         * m4/readline.m4 (gl_FUNC_READLINE):
43920         * m4/rijndael.m4 (gl_RIJNDAEL):
43921         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
43922         to get the necessary .h files and whatnot.
43923
43924 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
43925
43926         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
43927         gnulib rather than the other way around.
43928         * config/srclistvars.sh (COREUTILS): Remove.
43929
43930 2006-08-22  Jim Meyering  <jim@meyering.net>
43931
43932         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
43933
43934         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
43935
43936 2006-08-22  Eric Blake  <ebb9@byu.net>
43937
43938         * modules/regexprops-generic: New file.
43939         * MODULES.html.sh (Support for building documentation): List it.
43940
43941 2006-08-22  Eric Blake  <ebb9@byu.net>
43942
43943         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
43944         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
43945         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
43946         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
43947
43948 2006-08-22  Bruno Haible  <bruno@clisp.org>
43949
43950         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
43951         and lib_LTLIBRARIES like the other lib_* variables.
43952
43953 2006-08-22  Bruno Haible  <bruno@clisp.org>
43954
43955         * build-aux/x-to-1.in: New file, from GNU gettext.
43956
43957 2006-08-22  Bruno Haible  <bruno@clisp.org>
43958
43959         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
43960         <utmpx.h> exists.
43961
43962 2006-08-22  Bruno Haible  <bruno@clisp.org>
43963
43964         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
43965         <utmpx.h> exists.
43966
43967 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
43968
43969         BeOS portability.
43970         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
43971         exist.
43972         Problem reported by Bruno Haible.
43973
43974 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
43975
43976         Avoid the need for AC_LIBSOURCES in m4 macros.
43977         * modules/acl (EXTRA_DIST): Add acl.h.
43978         * modules/argmatch (Files): Add m4/argmatch.m4.
43979         (configure.ac): Add gl_ARGMATCH.
43980         (EXTRA_DIST): Renamed from lib_SOURCES, for
43981         consistency with the other modules.  Remove argmatch.c.
43982         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
43983         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
43984         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
43985         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
43986         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
43987         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
43988         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
43989         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
43990         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
43991         * modules/closeout (EXTRA_DIST): Add closeout.h.
43992         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
43993         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
43994         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
43995         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
43996         dirname.h; remove basename.c and stripslash.c.
43997         * modules/exclude (EXTRA_DIST): Add exclude.h.
43998         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
43999         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
44000         * modules/file-type (EXTRA_DIST): Add file-type.h.
44001         * modules/filemode (EXTRA_DIST): Add filemode.h.
44002         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
44003         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
44004         * modules/fpending (EXTRA_DIST): Add __fpending.h.
44005         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
44006         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
44007         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
44008         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
44009         * modules/getdate (EXTRA_DIST): Add getdate.c.
44010         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
44011         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
44012         * modules/getpass (EXTRA_DIST): Add getpass.h.
44013         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
44014         * modules/group-member (EXTRA_DIST): Add group-member.h.
44015         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
44016         * modules/hash (EXTRA_DIST): Add hash.h.
44017         * modules/human (EXTRA_DIST): Add human.h.
44018         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
44019         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
44020         * modules/lchown (EXTRA_DIST): Add lchown.h.
44021         * modules/long-options (EXTRA_DIST): Add long-options.h.
44022         * modules/lstat (EXTRA_DIST): Add lstat.h.
44023         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
44024         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
44025         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
44026         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
44027         * modules/memxor (EXTRA_DIST): Add memxor.h.
44028         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
44029         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
44030         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
44031         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
44032         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
44033         * modules/physmem (EXTRA_DIST): Add physmem.h.
44034         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
44035         * modules/posixver (EXTRA_DIST): Add posixver.h.
44036         * modules/quote (EXTRA_DIST): Add quote.h.
44037         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
44038         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
44039         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
44040         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
44041         regex_internal.h regexec.c.
44042         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
44043         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
44044         * modules/same (EXTRA_DIST): Add same.h.
44045         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
44046         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
44047         * modules/savedir (EXTRA_DIST): Add savedir.h.
44048         * modules/sha1 (EXTRA_DIST): Add sha1.h.
44049         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
44050         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
44051         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
44052         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
44053         * modules/strdup (EXTRA_DIST): Add strdup.h.
44054         * modules/strftime (EXTRA_DIST): Add strftime.h.
44055         * modules/strndup (EXTRA_DIST): Add strndup.h.
44056         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
44057         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
44058         * modules/time_r (EXTRA_DIST): Add time_r.h.
44059         * modules/timespec (EXTRA_DIST): Add timespec.h.
44060         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
44061         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
44062         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
44063         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
44064         * modules/userspec (EXTRA_DIST): Add userspec.h.
44065         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
44066         * modules/utimens (EXTRA_DIST): Add utimens.h.
44067         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
44068         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
44069         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
44070         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
44071         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
44072         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
44073         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
44074         * modules/yesno (EXTRA_DIST): Add yesno.h.
44075
44076 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
44077
44078         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
44079
44080         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
44081         * m4/dev-ino.m4, same-inode.m4: Remove.
44082
44083         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
44084         * m4/acl.m4 (AC_FUNC_ACL):
44085         * m4/backupfile.m4 (gl_BACKUPFILE):
44086         * m4/c-strtod.m4 (gl_C99_STRTOLD):
44087         * m4/canon-host.m4 (gl_CANON_HOST):
44088         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
44089         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
44090         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
44091         * m4/cloexec.m4 (gl_CLOEXEC):
44092         * m4/close-stream.m4 (gl_CLOSE_STREAM):
44093         * m4/closeout.m4 (gl_CLOSEOUT):
44094         * m4/dirfd.m4 (gl_FUNC_DIRFD):
44095         * m4/dirname.m4 (gl_DIRNAME):
44096         * m4/exclude.m4 (gl_EXCLUDE):
44097         * m4/exitfail.m4 (gl_EXITFAIL):
44098         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
44099         * m4/file-type.m4 (gl_FILE_TYPE):
44100         * m4/filemode.m4 (gl_FILEMODE):
44101         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
44102         * m4/fpending.m4 (gl_FUNC_FPENDING):
44103         * m4/fprintftime.m4 (gl_FPRINTFTIME):
44104         * m4/fts.m4 (gl_FUNC_FTS):
44105         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
44106         * m4/getdate.m4 (gl_GETDATE):
44107         * m4/gethrxtime.m4 (gl_GETHRXTIME):
44108         * m4/getpagesize.m4 (gl_GETPAGESIZE):
44109         * m4/getpass.m4 (gl_FUNC_GETPASS):
44110         * m4/gettime.m4 (gl_GETTIME):
44111         * m4/getugroups.m4 (gl_GETUGROUPS):
44112         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
44113         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
44114         * m4/hard-locale.m4 (gl_HARD_LOCALE):
44115         * m4/hash.m4 (gl_HASH):
44116         * m4/idcache.m4 (gl_IDCACHE):
44117         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
44118         * m4/lchown.m4 (gl_FUNC_LCHOWN):
44119         * m4/long-options.m4 (gl_LONG_OPTIONS):
44120         * m4/lstat.m4 (gl_FUNC_LSTAT):
44121         * m4/md5.m4 (gl_MD5):
44122         * m4/memcasecmp.m4 (gl_MEMCASECMP):
44123         * m4/memcoll.m4 (gl_MEMCOLL):
44124         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
44125         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
44126         * m4/memxor.m4 (gl_MEMXOR):
44127         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
44128         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
44129         * m4/modechange.m4 (gl_MODECHANGE):
44130         * m4/mountlist.m4 (gl_MOUNTLIST):
44131         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
44132         * m4/openat.m4 (gl_FUNC_OPENAT):
44133         * m4/pathmax.m4 (gl_PATHMAX):
44134         * m4/physmem.m4 (gl_PHYSMEM):
44135         * m4/posixtm.m4 (gl_POSIXTM):
44136         * m4/posixver.m4 (gl_POSIXVER):
44137         * m4/quote.m4 (gl_QUOTE):
44138         * m4/quotearg.m4 (gl_QUOTEARG):
44139         * m4/readtokens.m4 (gl_READTOKENS):
44140         * m4/readutmp.m4 (gl_READUTMP):
44141         * m4/regex.m4 (gl_REGEX):
44142         * m4/safe-read.m4 (gl_SAFE_READ):
44143         * m4/safe-write.m4 (gl_SAFE_WRITE):
44144         * m4/same.m4 (gl_SAME):
44145         * m4/save-cwd.m4 (gl_SAVE_CWD):
44146         * m4/savedir.m4 (gl_SAVEDIR):
44147         * m4/settime.m4 (gl_SETTIME):
44148         * m4/sha1.m4 (gl_SHA1):
44149         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
44150         * m4/stat-macros.m4 (gl_STAT_MACROS):
44151         * m4/stat-time.m4 (gl_STAT_TIME):
44152         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
44153         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
44154         * m4/strdup.m4 (gl_FUNC_STRDUP):
44155         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
44156         * m4/strndup.m4 (gl_FUNC_STRNDUP):
44157         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
44158         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
44159         * m4/time_r.m4 (gl_TIME_R):
44160         * m4/timespec.m4 (gl_TIMESPEC):
44161         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
44162         * m4/unlinkdir.m4 (gl_UNLINKDIR):
44163         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
44164         * m4/userspec.m4 (gl_USERSPEC):
44165         * m4/utimecmp.m4 (gl_UTIMECMP):
44166         * m4/utimens.m4 (gl_UTIMENS):
44167         * m4/xalloc.m4 (gl_XALLOC):
44168         * m4/xgetcwd.m4 (gl_XGETCWD):
44169         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
44170         * m4/xreadlink.m4 (gl_XREADLINK):
44171         * m4/xstrtod.m4 (gl_XSTRTOD):
44172         * m4/yesno.m4 (gl_YESNO):
44173         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
44174         to get the necessary .h files and whatnot.
44175
44176 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
44177             Bruno Haible  <bruno@clisp.org>
44178
44179         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
44180         /bin/sh understanding of '!' conditional negation.
44181
44182 2006-08-21  Jim Meyering  <jim@meyering.net>
44183
44184         * modules/openat (Depends-on): Really alphabetize.
44185
44186         * modules/acl (Depends-on): Add error and quote.
44187
44188         * check-module (find_included_lib_files): Add at-func.c to the
44189         ok-to-include-more-than-once white list.
44190
44191         * modules/openat (Depends-on): Add lstat.  Alphabetize.
44192
44193 2006-08-21  Bruno Haible  <bruno@clisp.org>
44194
44195         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44196         Emit a pkgdata_DATA variable only if some snippets add contents to it.
44197         Reported by Martin Lambers <marlam@marlam.de>.
44198
44199 2006-08-21  Bruno Haible  <bruno@clisp.org>
44200
44201         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
44202         specify an installation location, don't emit a noinst_LIBRARIES or
44203         noinst_LTLIBRARIES assignment.
44204
44205 2006-08-21  Bruno Haible  <bruno@clisp.org>
44206
44207         BeOS portability.
44208         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
44209         BeOS has mbrtowc() but no <wctype.h>.
44210
44211 2006-08-21  Bruno Haible  <bruno@clisp.org>
44212
44213         BeOS portability.
44214         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
44215         exist.
44216
44217 2006-08-21  Bruno Haible  <bruno@clisp.org>
44218
44219         BeOS portability.
44220         * lib/mbchar.h: Include <wctype.h> only if it exists.
44221
44222 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44223
44224         Remove files that are no longer needed by their respective modules.
44225         * m4/obstack.m4: Remove.
44226         * m4/strerror_r.m4: Remove.
44227         * m4/uint32_t.m4: Remove.
44228         * m4/uintptr_t.m4: Remove.
44229         * m4/ullong_max.m4: Remove.
44230         * m4/xstrtoimax.m4: Remove.
44231         * m4/xstrtoumax.m4: Remove.
44232
44233         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
44234         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
44235         dependencies now capture this.
44236
44237         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
44238         Do not use AC_LIBSOURCES, since gnulib modules now do this.
44239         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
44240         * m4/human.m4 (gl_HUMAN): Likewise.
44241         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
44242         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
44243
44244         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
44245
44246         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
44247         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
44248         stdint.
44249         * m4/human.m4 (gl_HUMAN): Likewise.
44250         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
44251         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
44252         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
44253         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
44254         * m4/xstrtol (gl_XSTRTOL): Likewise.
44255
44256         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
44257         AC_TYPE_LONG_LONG_INT.
44258         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
44259         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
44260         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
44261         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
44262
44263         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
44264         on stdbool.
44265
44266         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
44267         (gl_PREREQ_XSTRTOUL): Remove.
44268
44269         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
44270
44271         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
44272         mode.
44273
44274 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44275
44276         Add and change modules to make it easier for coreutils to use
44277         gnulib-tool.
44278         * modules/backupfile (Files): Remove m4/d-ino.m4.
44279         (Depends-on): Add d-ino.
44280         * modules/cycle-check (Depends-on): Add stdint.
44281         (lib_SOURCES): Add cycle-check.h.
44282         * modules/d-ino: New module.
44283         * modules/d-type: New module.
44284         * modules/error (Files): Remove m4/strerror_r.m4.
44285         * modules/filemode (Files): Add m4/st_dm_mode.m4.
44286         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
44287         m4/inttypes_h.m4, m4/uintmax_t.m4.
44288         (Depends-on): Add stdint.
44289         (lib_SOURCES): Add fsusage.h.
44290         * modules/getcwd (Files): Remove d-ino.m4.
44291         (Depends-on): Add d-ino.
44292         * modules/getndelim2 (Depends-on): Add stdint.
44293         * modules/glob (Files): Remove m4/d-type.m4.
44294         (Depends-on): Add d-type.
44295         * modules/host-os: New module.
44296         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
44297         m4/inttypes_h.m4, m4/uintmax_t.m4.
44298         * Depends-on: Add stdint.
44299         (lib_SOURCES): Add human.h.
44300         * modules/inttostr (Files): Remove m4/intmax_t.m4,
44301         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
44302         m4/uintmax_t.m4, m4/ulonglong.m4.
44303         (Depends-on): Add stdint.
44304         (EXTRA_DIST): Add inttostr.h.
44305         * modules/lchmod: New module.
44306         * modules/link-follow: New module.
44307         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
44308         (Depends-on): Add lchmod.
44309         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
44310         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
44311         (Depends-on): Add stdint.
44312         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
44313         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
44314         (Depends-on): Add stdint.
44315         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
44316         * modules/perl: New module.
44317         * modules/regex (Depends-on): Add stdint.
44318         * modules/rmdir-errno: New module.
44319         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
44320         m4/intmax_t.m4.
44321         (Depends-on): Add stdint.
44322         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
44323         m4/uintmax_t.m4.
44324         (Depends-on): Add stdint.
44325         * modules/unlink-busy: New module.
44326         * modules/utimecmp (Depends-on): Add stdint.
44327         * modules/uptime: New module.
44328         * modules/winsz-ioctl: New module.
44329         * modules/winsz-termios: New module.
44330         * modules/xnanosleep (Depends-on): Add nanosleep.
44331         * modules/ullong_max: Remove.
44332         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
44333         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
44334         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
44335         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
44336         (Depends-on): Add inttypes.
44337         (lib_SOURCES): Add xstrtol.h.
44338         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
44339         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
44340         * MODULES.html.sh: Move 'assert' into the assert section.
44341         Move 'dummy' into the linking section.
44342         Remove ullong_max.
44343         Add section for compatibility checks for POSIX:2001 functions,
44344         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
44345         winsz-ioctl, and winsz-termios into it.
44346         Add lchmod.
44347         Add top-level Misc section and put host-os, perl, and uptime
44348         into it.
44349
44350 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44351
44352         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
44353         now assume the stdint module.  Do not include inttypes.h.
44354         * lib/fsusage.h: Likewise.
44355         * lib/getndelim2.c: Likewise.
44356         * lib/human.h: Likewise.
44357         * lib/inttostr.h: Likewise.
44358         * lib/obstack.c: Likewise.
44359         * lib/regex_internal.h: Likewise.
44360         * lib/tempname.c: Likewise.
44361         * lib/utimecmp.c: Likewise.
44362         * lib/xstrtol.h: Likewise.
44363
44364         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
44365
44366         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
44367         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
44368         * lib/xtime.h: Likewise.
44369
44370 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44371
44372         * modules/openat (Files): Add lib/fchmodat.c.
44373         Fixes problem reported by Jay Youngman.
44374
44375 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44376
44377         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
44378         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
44379
44380 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
44381             Bruno Haible  <bruno@clisp.org>
44382
44383         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
44384         and is a script that invokes bison. Tighten the code. Add comments.
44385
44386 2006-08-18  Jim Meyering  <jim@meyering.net>
44387
44388         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
44389         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
44390         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
44391         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
44392
44393 2006-08-18  Bruno Haible  <bruno@clisp.org>
44394
44395         * modules/bison-i18n: New file.
44396         * MODULES.html.sh (Internationalization functions): Add it.
44397
44398 2006-08-18  Bruno Haible  <bruno@clisp.org>
44399
44400         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
44401         sys/statvfs.h. When getmntinfo was found, check its declaration and
44402         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
44403
44404 2006-08-18  Bruno Haible  <bruno@clisp.org>
44405
44406         * m4/bison-i18n.m4: New file, from bison.
44407
44408 2006-08-18  Bruno Haible  <bruno@clisp.org>
44409
44410         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
44411         (ME_DUMMY): Treat "kernfs" as a dummy.
44412         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
44413
44414 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44415
44416         Update from coreutils.
44417
44418         2006-08-15  Jim Meyering  <jim@meyering.net>
44419
44420         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
44421
44422         2006-01-17  Jim Meyering  <jim@meyering.net>
44423
44424         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
44425
44426         2006-01-11  Jim Meyering  <jim@meyering.net>
44427
44428         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
44429         Check for the lchmod function.
44430
44431 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44432
44433         Update from coreutils.
44434
44435         * lib/__fpending.h: Add copyright notice.
44436         * lib/fprintftime.h: Likewise.
44437         * lib/savedir.c: Use (C) in copyright notice.
44438         * lib/savedir.h: Likewise.
44439
44440         2006-08-15  Jim Meyering  <jim@meyering.net>
44441
44442         * lib/at-func.c: New file, with the logic of all emulated at-functions.
44443         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
44444         in support of the EXPECTED_ERRNO macro.
44445         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
44446         definitions.  Instead, define the appropriate symbols and include
44447         "at-func.c".
44448         * lib/mkdirat.c (mkdirat): Likewise.
44449         * lib/fchmodat.c (fchmodat): Likewise.
44450         (ENOSYS): Remove definition.
44451         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
44452         it.  Don't include "unistd--.h" -- it wasn't ever used.
44453
44454         2006-01-17  Jim Meyering  <jim@meyering.net>
44455
44456         Rewrite fts.c not to change the current working directory,
44457         by using openat, fstatat, fdopendir, etc..
44458
44459         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
44460         (HAVE_OPENAT_SUPPORT): Define.
44461         [_LIBC] (fchdir): Don't undef or define; no longer used.
44462         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
44463         Now, this `function' always succeeds, and consumes its file descriptor
44464         parameter -- so callers must not close such FDs.  Update callers.
44465         (diropen_fd, opendirat, cwd_advance_fd): New functions.
44466         (diropen): Add parameter, SP.  Adjust all callers.
44467         Implement using diropen_fd, rather than open.
44468         (fts_open): Initialize new member, fts_cwd_fd.
44469         Remove fts_rft-setting code.
44470         (fts_close): Close fts_cwd_fd, if necessary.
44471         (__opendir2): Define in terms of opendir or opendirat,
44472         depending on whether the FST_NOCHDIR flag is set.
44473         (fts_build): Since fts_safe_changedir consumes its FD, and since
44474         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
44475         and close the dup'd file descriptor upon failure.
44476         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
44477         (fts_safe_changedir): Tweak semantics to reflect that this function
44478         now calls cwd_advance_fd and hence consumes its FD argument.
44479         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
44480         [struct FTS] (fts_rft): Remove now-unused member.
44481         [struct FTS] (fts_cycle.state): Improve comment.
44482
44483         * lib/openat.c (openat_needs_fchdir): New function.
44484         * lib/openat.h (openat_needs_fchdir): Declare it.
44485
44486 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
44487
44488         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
44489         Problem and fix reported by Pádraig Brady in
44490         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
44491
44492 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44493
44494         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
44495
44496 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44497
44498         * lib/memcoll.c (memcoll): Optimize for the common case where the
44499         arguments are bytewise equal.
44500
44501 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44502
44503         * doc/regexprops-generic.texi: Add a copyright notice.
44504
44505 2006-08-15  Bruno Haible  <bruno@clisp.org>
44506
44507         * modules/tmpdir (License): Change to LGPL.
44508
44509 2006-08-15  Bruno Haible  <bruno@clisp.org>
44510
44511         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
44512         module.
44513
44514 2006-08-14  Simon Josefsson  <jas@extundo.com>
44515
44516         * config/srclist.txt: Add gnupload.
44517
44518 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
44519
44520         Change copyright notice from LGPL 2 to GPL 2, since that's the
44521         standard form used in the gnulib repository.
44522         * tests/test-lock.c: Likewise.
44523         * tests/test-stdint.c: Likewise.
44524         * tests/test-tls.c: Likewise.
44525
44526         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
44527         prelude-manager.  User shorter URLs for GNU projects, without '?'.
44528         Add copyright notice.
44529
44530         * check-module: Add copyright notice.  Output a copyright
44531         notice if "--version" is specified.
44532         * modules/COPYING: New file.
44533         * tests/test-getaddrinfo.c: Add copyright notice.
44534         * tests/test-verify.c: Likewise.
44535
44536 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
44537
44538         Change copyright notice from LGPL 2 to GPL 2, since that's the
44539         standard form used in the gnulib repository.
44540         * lib/lock.c: LGPL -> GPL.
44541         * lib/lock.h: Likewise.
44542         * lib/strnlen1.c: Likewise.
44543         * lib/strnlen1.h: Likewise.
44544         * lib/tls.c: Likewise.
44545         * lib/tls.h: Likewise.
44546         * lib/tmpdir.c: Likewise.
44547
44548         * lib/TODO: Remove; this belongs only in coreutils.
44549
44550 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
44551
44552         Add copyright notices to long-enough files that lack them, since
44553         otherwise the files aren't clearly free.  Use the same notice that
44554         getdate.texi already uses.
44555         * doc/alloca-opt.texi: Add copyright notice.
44556         * doc/alloca.texi: Likewise.
44557         * doc/ctime.texi: Likewise.
44558         * doc/functions.texi: Likewise.
44559         * doc/gcd.texi: Likewise.
44560         * doc/gnulib-tool.texi: Likewise.
44561         * doc/inet_ntoa.texi: Likewise.
44562         * doc/visibility.texi: Likewise.
44563
44564         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
44565         * doc/quote.texi: Add copyright notice.
44566
44567         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
44568         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
44569         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
44570         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
44571         is now obsolete, and give a pointer to the Sun list.
44572         Add copyright notice.
44573
44574 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
44575
44576         * config/srclistvars.sh: Add copyright notice.
44577
44578 2006-08-14  Eric Blake  <ebb9@byu.net>
44579
44580         Import the following change from libc:
44581
44582         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
44583
44584         Upstream bug 2997.
44585         * lib/misc/error.c: Add space between program name and message if file
44586         name is missing.
44587
44588 2006-08-12  Karl Berry  <karl@gnu.org>
44589
44590         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
44591         remove, these originate in gnulib now.
44592
44593 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44594
44595         * doc/Makefile (standards.info standards.html standards.dvi):
44596         Also depend on make-stds.texi.
44597
44598 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
44599
44600         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
44601         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
44602
44603         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
44604         in wchar_t.  Problem reported by Eric Blake.
44605
44606         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
44607         LEN is smaller than SIZE.  Suggested by Bruno Haible.
44608         Also, help the compiler to keep LEN in a register.
44609
44610 2006-08-11  Eric Blake  <ebb9@byu.net>
44611
44612         * users.txt: Sort.  Add tar.
44613
44614 2006-08-11  Bruno Haible  <bruno@clisp.org>
44615
44616         * users.txt: New file.
44617
44618 2006-08-11  Bruno Haible  <bruno@clisp.org>
44619
44620         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
44621         before <wchar.h>. Needed for OSF/1 and BSD/OS.
44622
44623 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
44624
44625         * modules/snprintf (Depends-on): Remove minmax.
44626         (Maintainer): Add self and Bruno.
44627
44628 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
44629
44630         * lib/.cppi-disable: Add snprintf.h, socket_.h.
44631         * lib/snprintf.c: Include <errno.h> and <limits.h>.
44632         (EOVERFLOW): Define if the system does not.
44633         Do not include "minmax.h"; it wasn't used.
44634         (snprintf): Don't assume size_t promotes to an unsigned type.
44635         Fix bug when generated string was too long for the buffer: the
44636         buffer's contents are supposed to be the initial prefix of the
44637         output.  Don't assume vasnprintf returns EOVERFLOW if the size
44638         exceeds INT_MAX; do the check ourselves.
44639
44640         Import the following changes from libc:
44641
44642         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
44643
44644         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
44645         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
44646         set wc to the byte which couldn't be converted.
44647         (re_string_reconstruct): Don't clear valid_raw_len before calling
44648         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
44649         tip_context using re_string_context_at.
44650
44651         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
44652
44653         * lib/posix/regex.h: g++ still cannot handled [restrict].
44654
44655         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
44656
44657         * lib/posix/regex.h: Remove special handling for VMS.
44658
44659 2006-08-10  Jim Meyering  <jim@meyering.net>
44660
44661         * modules/same-inode: New module.
44662         * modules/dev-ino: New module.
44663         * modules/cycle-check: Depend on these modules, rather than simply
44664         including their .h files.
44665         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
44666         required via m4/cycle-check.m4.
44667         * modules/same: Depend on new same-inode module, rather than
44668         including same-inode.h.
44669         * modules/chdir-safer: New file.
44670
44671         * modules/chown (Depends-on): Add stat-macros.
44672
44673 2006-08-10  Jim Meyering  <jim@meyering.net>
44674
44675         * m4/cycle-check.m4: New file.
44676         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
44677         * m4/dev-ino.m4, m4/same-inode.m4: New files.
44678
44679 2006-08-10  Eric Blake  <ebb9@byu.net>
44680
44681         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
44682         in from original proposal.
44683
44684 2006-08-10  Eric Blake  <ebb9@byu.net>
44685         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
44686
44687         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
44688         namespace.
44689
44690 2006-08-10  Bruno Haible  <bruno@clisp.org>
44691
44692         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
44693         as well.
44694
44695 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
44696
44697         Sync from coreutils.
44698
44699         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
44700
44701         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
44702         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
44703
44704 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
44705
44706         * modules/restrict: Remove; no longer needed now that we assume
44707         Autoconf 2.59 or later.
44708         * MODULES.html.sh: Remove 'restrict'.
44709         * modules/argp (Depends-on): Remove 'restrict'.
44710         * modules/base64 (Depends-on): Likewise.
44711         * modules/gc (Depends-on): Likewise.
44712         * modules/getaddrinfo (Depends-on): Likewise.
44713         * modules/glob (Depends-on): Likewise.
44714         * modules/inet_ntop (Depends-on): Likewise.
44715         * modules/inet_pton (Depends-on): Likewise.
44716         * modules/memxor (Depends-on): Likewise.
44717         * modules/regex (Depends-on): Likewise.
44718         * modules/strtok_r (Depends-on): Likewise.
44719         * modules/time_r (Depends-on): Likewise.
44720
44721 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
44722
44723         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
44724         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
44725         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
44726         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
44727         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
44728         * m4/memxor.m4 (gl_MEMXOR): Likewise.
44729         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
44730         gl_C_RESTRICT replaced by AC_C_RESTRICT.
44731
44732         Merge from coreutils.
44733         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
44734         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
44735         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
44736         * m4/time_r.m4 (gl_TIME_R): Likewise.
44737
44738 2006-08-09  Karl Berry  <karl@gnu.org>
44739
44740         * config/srclist.txt: no more gettext-tools, per Bruno.
44741
44742 2006-08-08  Eric Blake  <ebb9@byu.net>
44743
44744         * modules/verror: New module.
44745         * MODULES.html.sh: Document it.
44746
44747 2006-08-08  Eric Blake  <ebb9@byu.net>
44748
44749         * lib/verror.h, lib/verror.c: New files.
44750
44751 2006-08-08  Eric Blake  <ebb9@byu.net>
44752
44753         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
44754         verror_at_line output complies with GNU Coding Standards even when
44755         file is NULL.
44756
44757 2006-08-07  Bruno Haible  <bruno@clisp.org>
44758
44759         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
44760         versions of AIX.
44761         Reported by Ralf Wildenhues.
44762
44763 2006-08-07  Bruno Haible  <bruno@clisp.org>
44764
44765         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
44766         in an AC_DEFUN. Needed so that the autoconf snippets can use
44767         AC_REQUIRE.
44768
44769 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44770
44771         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44772         Initialize pkgdata_DATA.
44773         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
44774         overriding it.
44775
44776 2006-08-06  Eric Blake  <ebb9@byu.net>
44777
44778         * lib/error.h: Fold in some upstream changes from glibc.
44779         * lib/error.c: Likewise.
44780
44781 2006-08-04  Bruno Haible  <bruno@clisp.org>
44782
44783         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44784         Make the mostlyclean-local rule depend on mostlyclean-generic.
44785         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
44786
44787 2006-07-31  Bruno Haible  <bruno@clisp.org>
44788
44789         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
44790         <stdlib.h>, <string.h>.
44791
44792 2006-07-30  Bruno Haible  <bruno@clisp.org>
44793
44794         * modules/readlink (License): Change to LGPL.
44795
44796 2006-07-30  Bruno Haible  <bruno@clisp.org>
44797
44798         * modules/javaversion (Makefile.am): Distribute javaversion.java and
44799         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
44800         set PKGDATADIR to point to it.
44801
44802 2006-07-30  Bruno Haible  <bruno@clisp.org>
44803
44804         * modules/csharpexec (configure.ac): Comment out macro invocation.
44805         * modules/javaexec (configure.ac): Likewise.
44806         * modules/javacomp-script (configure.ac): Likewise.
44807
44808         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
44809
44810 2006-07-30  Bruno Haible  <bruno@clisp.org>
44811
44812         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
44813         linked-list.
44814
44815 2006-07-30  Bruno Haible  <bruno@clisp.org>
44816
44817         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
44818
44819 2006-07-30  Bruno Haible  <bruno@clisp.org>
44820
44821         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44822         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
44823         get removed.
44824
44825 2006-07-29  Bruno Haible  <bruno@clisp.org>
44826
44827         Make it possible for gnulib-tool to work with locally modified or
44828         augmented gnulib repositories.
44829         * gnulib-tool (func_usage): Document --local-dir option.
44830         (local_gnulib_dir): New variable.
44831         Handle --local-dir option.
44832         (func_lookup_file): New function.
44833         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
44834         (func_get_description, func_get_filelist, func_get_description,
44835         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
44836         func_get_automake_snippet, func_get_include_directive,
44837         func_get_license, func_get_maintainer): Use func_lookup_file.
44838         (func_import, func_create_testdir): Use func_lookup_file.
44839
44840 2006-07-29  Bruno Haible  <bruno@clisp.org>
44841
44842         * modules/setenv (Depends-on): Add unistd.
44843
44844 2006-07-29  Bruno Haible  <bruno@clisp.org>
44845
44846         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
44847
44848 2006-07-29  Bruno Haible  <bruno@clisp.org>
44849
44850         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
44851
44852 2006-07-29  Bruno Haible  <bruno@clisp.org>
44853
44854         * gnulib-tool (import, update): If there is no Makefile.am, look at
44855         aclocal.m4, instead of bailing out.
44856
44857 2006-07-29  Bruno Haible  <bruno@clisp.org>
44858
44859         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
44860         Categorize the options by when they are useful.
44861
44862 2006-07-29  Bruno Haible  <bruno@clisp.org>
44863
44864         * gnulib-tool (func_usage): Document option --no-libtool.
44865         Handle option --no-libtool.
44866         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
44867         for changed semantics of $libtool variable.
44868         (func_import): Likewise. If libtool is not used, show this through
44869         an option --no-libtool.
44870         (func_create_testdir): Update.
44871
44872 2006-07-29  Bruno Haible  <bruno@clisp.org>
44873
44874         * gnulib-tool (func_import): Extend error message about missing
44875         --doc-base.
44876
44877 2006-07-29  Bruno Haible  <bruno@clisp.org>
44878
44879         * gnulib-tool (func_import): Don't create the $docbase directory if
44880         there is no file to store there.
44881
44882 2006-07-29  Bruno Haible  <bruno@clisp.org>
44883
44884         * gnulib-tool (autoconf_minversion): If a --dir option is given and
44885         relevant, look for configure.ac there, not in the current directory.
44886         Also use a simple search for AC_PREREQ, not "autoconf --trace".
44887
44888 2006-07-29  Bruno Haible  <bruno@clisp.org>
44889
44890         * gnulib-tool (SORT): New variable.
44891         (func_usage): Undocument --assume-autoconf option.
44892         Remove --assume-autoconf option handling.
44893         (autoconf_minversion): Determine from the contents of configure.ac.
44894         (func_import): Remove autoconf_minversion handling.
44895         Suggested by Eric Blake.
44896
44897 2006-07-29  Bruno Haible  <bruno@clisp.org>
44898
44899         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
44900
44901 2006-07-29  Bruno Haible  <bruno@clisp.org>
44902
44903         * config/srclist.txt (*setenv.[ch]): Remove rules.
44904
44905 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
44906
44907         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
44908
44909 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
44910
44911         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
44912         arpa/inet.h.
44913
44914 2006-07-28  Simon Josefsson  <jas@extundo.com>
44915
44916         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
44917         * modules/inet_pton (Depends-on): Likewise.
44918
44919 2006-07-28  Simon Josefsson  <jas@extundo.com>
44920
44921         * m4/netinet_in_h.m4: New file.
44922
44923 2006-07-28  Simon Josefsson  <jas@extundo.com>
44924
44925         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
44926         #include's.
44927
44928 2006-07-28  Simon Josefsson  <jas@extundo.com>
44929
44930         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
44931         #include's.
44932
44933 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
44934
44935         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
44936         setgid on directories only if they set these bits.
44937         * lib/modechange.h: Remove obsolete comment about masks.
44938
44939 2006-07-28  Eric Blake  <ebb9@byu.net>
44940
44941         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
44942         macro expansion.
44943
44944 2006-07-28  Bruno Haible  <bruno@clisp.org>
44945
44946         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
44947
44948 2006-07-28  Bruno Haible  <bruno@clisp.org>
44949
44950         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
44951
44952 2006-07-28  Bruno Haible  <bruno@clisp.org>
44953
44954         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
44955         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
44956         Define fallbacks.
44957         Avoids link error on FreeBSD 4.x.
44958         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
44959
44960         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
44961         encoding.
44962         * lib/mbswidth.c (iswcntrl): Likewise.
44963
44964 2006-07-27  Bruno Haible  <bruno@clisp.org>
44965
44966         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
44967         test.
44968
44969 2006-07-27  Bruno Haible  <bruno@clisp.org>
44970
44971         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
44972         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
44973         defined.
44974
44975 2006-07-26  Eric Blake  <ebb9@byu.net>
44976
44977         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
44978
44979 2006-07-26  Eric Blake  <ebb9@byu.net>
44980
44981         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
44982         like mingw that lack mkstemp.
44983         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
44984         avoid compilation warning on mingw.
44985
44986 2006-07-26  Bruno Haible  <bruno@clisp.org>
44987
44988         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
44989         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
44990         INT_FAST*_MIN, INTPTR_MIN.
44991
44992 2006-07-25  Bruno Haible  <bruno@clisp.org>
44993
44994         * modules/version-etc (Depends-on): Add stdarg.
44995
44996 2006-07-25  Bruno Haible  <bruno@clisp.org>
44997
44998         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
44999         complex commands.
45000
45001 2006-07-25  Bruno Haible  <bruno@clisp.org>
45002
45003         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
45004         defined in <stdarg.h> or config.h.
45005
45006 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
45007
45008         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
45009         (gl_STDIO_SAFER): Remove.
45010
45011 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
45012
45013         * MODULES.html.sh (File stream based Input/Output):
45014         Add fopen-safer, tmpfile-safer; remove stdio-safer.
45015         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
45016         * modules/fopen-safer, modules/tmpfile-safer: New files.
45017         * modules/stdio-safer: Remove.
45018
45019 2006-07-24  Bruno Haible  <bruno@clisp.org>
45020
45021         * modules/tmpdir: New file.
45022         * MODULES.html.sh (File system functions): Add it.
45023
45024 2006-07-24  Bruno Haible  <bruno@clisp.org>
45025
45026         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
45027         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
45028
45029 2006-07-24  Bruno Haible  <bruno@clisp.org>
45030
45031         * modules/clean-temp: New file.
45032
45033 2006-07-24  Bruno Haible  <bruno@clisp.org>
45034
45035         * m4/tmpdir.m4: New file, from GNU gettext.
45036
45037 2006-07-24  Bruno Haible  <bruno@clisp.org>
45038
45039         * lib/tmpdir.h: New file, from GNU gettext.
45040         * lib/tmpdir.c: New file, from GNU gettext.
45041
45042 2006-07-24  Bruno Haible  <bruno@clisp.org>
45043
45044         * lib/clean-temp.h: New file, from GNU gettext.
45045         * lib/clean-temp.c: New file, from GNU gettext.
45046
45047 2006-07-23  Eric Blake  <ebb9@byu.net>
45048
45049         * modules/stdio-safer (Files): Add tmpfile-safer.c.
45050         (Depends-on): Add binary-io.
45051
45052 2006-07-23  Eric Blake  <ebb9@byu.net>
45053
45054         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
45055
45056 2006-07-23  Eric Blake  <ebb9@byu.net>
45057
45058         * lib/tmpfile-safer.c: New file.
45059         * lib/stdio-safer.h (fopen_safer): Add prototype.
45060         * lib/stdio--.h (tmpfile): Make safer.
45061
45062 2006-07-23  Bruno Haible  <bruno@clisp.org>
45063
45064         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
45065         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
45066         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
45067         gl_linked_remove_at): Use it.
45068
45069 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45070         and Simon Josefsson <jas@extundo.com>
45071
45072         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
45073
45074         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
45075
45076 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45077
45078         * modules/close-stream: New file.
45079         * modules/closeout (Description): Make it clear that it exits
45080         with a diagnostic on error.
45081         (Depends-on): Add close-stream.  Remove fpending, stdbool.
45082         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
45083
45084 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45085
45086         * m4/close-stream.m4: New file.
45087
45088 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45089
45090         * lib/close-stream.c, lib/close-stream.h: New files.
45091
45092 2006-07-22  Bruno Haible  <bruno@clisp.org>
45093
45094         Merge from GNU gettext 0.15.
45095
45096         2006-05-01  Bruno Haible  <bruno@clisp.org>
45097
45098                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
45099
45100         2006-07-22  Bruno Haible  <bruno@clisp.org>
45101
45102                 * modules/javaversion: New file.
45103                 * MODULES.html.sh (Java): Add javaversion.
45104
45105         2006-03-12  Bruno Haible  <bruno@clisp.org>
45106
45107                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
45108
45109         2005-12-04  Bruno Haible  <bruno@clisp.org>
45110
45111                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
45112                 (untested).
45113
45114         2006-06-21  Bruno Haible  <bruno@clisp.org>
45115
45116                 Avoid warnings from recent versions of mcs.
45117                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
45118                 -o, -L, -r any more. Use options documented since mcs-1.0
45119                 instead. Similarly for -g.
45120
45121         2005-12-04  Bruno Haible  <bruno@clisp.org>
45122
45123                 * build-aux/csharpcomp.sh.in: Suffix for resources is
45124                 .resources, not .resource.
45125
45126         2005-07-09  Bruno Haible  <bruno@clisp.org>
45127
45128                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
45129                 add a .dll suffix.
45130                 Reported by Mark Junker <mjscod@gmx.de>.
45131
45132         2006-07-22  Bruno Haible  <bruno@clisp.org>
45133
45134                 * modules/gettext: Upgrade to gettext-0.15.
45135                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
45136                 m4/visibility.m4.
45137                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
45138
45139 2006-07-22  Bruno Haible  <bruno@clisp.org>
45140
45141         Merge from GNU gettext 0.15.
45142
45143         2006-03-25  Bruno Haible  <bruno@clisp.org>
45144
45145                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
45146
45147         2006-07-21  Bruno Haible  <bruno@clisp.org>
45148
45149                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
45150                 "1.1".
45151
45152         2006-05-09  Bruno Haible  <bruno@clisp.org>
45153
45154                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
45155                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
45156                 for the conftestver execution.
45157
45158         2006-05-01  Bruno Haible  <bruno@clisp.org>
45159
45160                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
45161                 optional target-version argument. Verify that the compiler
45162                 groks source of the specified source-version, or add -source
45163                 option as necessary. Verify that the compiler produces
45164                 bytecode in the specified target-version, or add -target and
45165                 -source options as necessary. Make the result of the test
45166                 available as variable CONF_JAVAC. Also log error output in
45167                 config.log.
45168
45169         2006-03-11  Bruno Haible  <bruno@clisp.org>
45170
45171                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
45172
45173         2006-05-09  Bruno Haible  <bruno@clisp.org>
45174
45175                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
45176                 CLASSPATH_SEPARATOR to a semicolon.
45177
45178         2006-03-12  Bruno Haible  <bruno@clisp.org>
45179
45180                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
45181                 available as variable CONF_JAVA, for subsequent autoconf
45182                 tests. Also log error output in config.log.
45183
45184         2006-07-19  Bruno Haible  <bruno@clisp.org>
45185
45186                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
45187                 that getline works on glibc2 systems. Needed to avoid trouble
45188                 in relocatable.c.
45189                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
45190
45191         2005-12-04  Bruno Haible  <bruno@clisp.org>
45192
45193                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
45194                 launcher (untested).
45195
45196         2005-12-04  Bruno Haible  <bruno@clisp.org>
45197
45198                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
45199
45200         2006-07-22  Bruno Haible  <bruno@clisp.org>
45201
45202                 * gettext.m4: Update from GNU gettext-0.15.
45203                 * nls.m4: Likewise.
45204                 * po.m4: Likewise.
45205                 * inttypes-pri.m4: Likewise.
45206                 * inttypes-h.m4: Renamed from inttypes.m4.
45207                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
45208
45209 2006-07-22  Bruno Haible  <bruno@clisp.org>
45210
45211         Merge from GNU gettext 0.15.
45212
45213         2005-07-05  Bruno Haible  <bruno@clisp.org>
45214
45215                 * printf-args.c (printf_fetchargs): Work around broken
45216                 definition of wint_t on mingw.
45217
45218         2005-02-12  Bruno Haible  <bruno@clisp.org>
45219
45220                 * xallocsa.h: Add extern "C" for C++.
45221
45222         2006-05-17  Bruno Haible  <bruno@clisp.org>
45223
45224                 Cygwin portability.
45225                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
45226
45227         2006-04-30  Bruno Haible  <bruno@clisp.org>
45228
45229                 * progreloc.c: Include <mach-o/dyld.h> if available.
45230                 (find_executable): Use _NSGetExecutablePath when possible.
45231
45232         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
45233
45234                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
45235                 function.
45236
45237         2005-12-29  Bruno Haible  <bruno@clisp.org>
45238
45239                 * progreloc.c (set_program_name_and_installdir): Fix
45240                 compilation error.
45241
45242         2005-12-04  Bruno Haible  <bruno@clisp.org>
45243
45244                 Cygwin portability.
45245                 * progreloc.c: Include <windows.h> also on Cygwin.
45246                 (find_executable): Add support for Cygwin.
45247                 (set_program_name_and_installdir): Handle also platforms with
45248                 nonempty EXEEXT.
45249
45250         2006-07-11  Bruno Haible  <bruno@clisp.org>
45251
45252                 * javacomp.c: Fix a comment.
45253                 Reported by Jim Meyering.
45254
45255         2006-04-30  Bruno Haible  <bruno@clisp.org>
45256
45257                 * javacomp.h (compile_java_class): Add source_version,
45258                 target_version arguments.
45259                 * javacomp.c: Rewritten to choose only a compiler that
45260                 respects the specified source_version and target_version.
45261
45262         2006-06-27  Bruno Haible  <bruno@clisp.org>
45263
45264                 Assume correct S_ISDIR macro.
45265                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
45266
45267         2006-07-22  Bruno Haible  <bruno@clisp.org>
45268
45269                 * javaversion.h: New file, from GNU gettext.
45270                 * javaversion.c: New file, from GNU gettext.
45271                 * javaversion.java: New file, from GNU gettext.
45272                 * javaversion.class: New file, from GNU gettext.
45273
45274         2006-05-17  Bruno Haible  <bruno@clisp.org>
45275
45276                 Cygwin portability.
45277                 * javaexec.c (execute_java_class): Test for jview program
45278                 also on Cygwin.
45279
45280         2006-04-09  Bruno Haible  <bruno@clisp.org>
45281
45282                 * fatal-signal.c: Don't include string.h.
45283                 (at_fatal_signal): Use a copying loop instead of memcpy.
45284
45285         2005-12-04  Bruno Haible  <bruno@clisp.org>
45286
45287                 * csharpexec.c: Add support for 'clix' launcher (untested).
45288                 (execute_csharp_using_sscli): New function.
45289                 (execute_csharp_program): Call it.
45290
45291         2006-06-21  Bruno Haible  <bruno@clisp.org>
45292
45293                 Avoid warnings from recent versions of mcs.
45294                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
45295                 -o, -L, -r any more. Use options documented since mcs-1.0
45296                 instead. Similarly for -g.
45297
45298         2005-07-09  Bruno Haible  <bruno@clisp.org>
45299
45300                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
45301                 add a .dll suffix.
45302                 Reported by Mark Junker <mjscod@gmx.de>.
45303
45304         2006-06-17  Bruno Haible  <bruno@clisp.org>
45305
45306                 * config.charset: Update for NetBSD 3.0.
45307
45308         2006-05-17  Bruno Haible  <bruno@clisp.org>
45309
45310                 Cygwin portability.
45311                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
45312
45313         2006-05-16  Bruno Haible  <bruno@clisp.org>
45314
45315                 * localcharset.c [CYGWIN]: Include <windows.h>.
45316                 (get_charset_aliases): For Cygwin, return the same CPxxx
45317                 aliases list as under WIN32.
45318                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
45319                 the environment variables. Fall back to GetACP().
45320
45321         2006-04-05  Bruno Haible  <bruno@clisp.org>
45322
45323                 * config.charset: Update Juan Manuel Guerrero's address.
45324
45325         2005-02-12  Bruno Haible  <bruno@clisp.org>
45326
45327                 * allocsa.h: Add extern "C" for C++.
45328
45329         2005-02-10  Bruno Haible  <bruno@clisp.org>
45330
45331                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
45332                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
45333
45334         2006-07-22  Bruno Haible  <bruno@clisp.org>
45335
45336                 * gettext.h: Update to GNU gettext-0.15.
45337
45338 2006-07-22  Bruno Haible  <bruno@clisp.org>
45339
45340         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
45341         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
45342         lib-prefix.m4, longdouble.m4, ssize_t.m4.
45343
45344 2006-07-21  Eric Blake  <ebb9@byu.net>
45345
45346         * modules/stdlib-safer: New file.
45347         * MODULES.html.sh (File stream based Input/Output): Add
45348         stdlib-safer.
45349
45350 2006-07-21  Eric Blake  <ebb9@byu.net>
45351
45352         * lib/stdlib-safer.h: New file from coreutils, required by
45353         stdlib--.h.
45354
45355 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
45356
45357         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
45358
45359 2006-07-20  Bruno Haible  <bruno@clisp.org>
45360
45361         * gnulib-tool: Recognize new option --assume-autoconf.
45362         (autoconf_minversion): New variable.
45363         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
45364
45365 2006-07-20  Bruno Haible  <bruno@clisp.org>
45366
45367         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
45368
45369 2006-07-19  Derek R. Price  <derek@ximbiot.com>
45370
45371         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
45372         Reindent and repaginate.
45373
45374 2006-07-19  Derek Price  <derek@ximbiot.com>
45375
45376         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
45377         Correct grammar.
45378
45379 2006-07-17  Bruno Haible  <bruno@clisp.org>
45380
45381         * modules/list: New file.
45382         * modules/array-list: New file.
45383         * modules/carray-list, modules/carray-list-tests: New files.
45384         * modules/linked-list, modules/linked-list-tests: New files.
45385         * modules/avltree-list, modules/avltree-list-tests: New files.
45386         * modules/rbtree-list, modules/rbtree-list-tests: New files.
45387         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
45388         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
45389         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
45390         * modules/oset: New file.
45391         * modules/array-oset: New file.
45392         * modules/avltree-oset, modules/avltree-oset-tests: New files.
45393         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
45394         * tests/test-carray_list.c: New file.
45395         * tests/test-linked_list.c: New file.
45396         * tests/test-avltree_list.c: New file.
45397         * tests/test-rbtree_list.c: New file.
45398         * tests/test-linkedhash_list.c: New file.
45399         * tests/test-avltreehash_list.c: New file.
45400         * tests/test-rbtreehash_list.c: New file.
45401         * tests/test-avltree_oset.c: New file.
45402         * tests/test-rbtree_oset.c: New file.
45403         * MODULES.html.sh (Container data structures): New section.
45404
45405 2006-07-17  Bruno Haible  <bruno@clisp.org>
45406
45407         * m4/gl_list.m4: New file.
45408
45409 2006-07-17  Bruno Haible  <bruno@clisp.org>
45410
45411         * lib/gl_list.h: New file.
45412         * lib/gl_list.c: New file.
45413         * lib/gl_array_list.h: New file.
45414         * lib/gl_array_list.c: New file.
45415         * lib/gl_carray_list.h: New file.
45416         * lib/gl_carray_list.c: New file.
45417         * lib/gl_linked_list.h: New file.
45418         * lib/gl_linked_list.c: New file.
45419         * lib/gl_anylinked_list1.h: New file.
45420         * lib/gl_anylinked_list2.h: New file.
45421         * lib/gl_avltree_list.h: New file.
45422         * lib/gl_avltree_list.c: New file.
45423         * lib/gl_anyavltree_list1.h: New file.
45424         * lib/gl_anyavltree_list2.h: New file.
45425         * lib/gl_rbtree_list.h: New file.
45426         * lib/gl_rbtree_list.c: New file.
45427         * lib/gl_anyrbtree_list1.h: New file.
45428         * lib/gl_anyrbtree_list2.h: New file.
45429         * lib/gl_anytree_list1.h: New file.
45430         * lib/gl_anytree_list2.h: New file.
45431         * lib/gl_linkedhash_list.h: New file.
45432         * lib/gl_linkedhash_list.c: New file.
45433         * lib/gl_anyhash_list1.h: New file.
45434         * lib/gl_anyhash_list2.h: New file.
45435         * lib/gl_avltreehash_list.h: New file.
45436         * lib/gl_avltreehash_list.c: New file.
45437         * lib/gl_rbtreehash_list.h: New file.
45438         * lib/gl_rbtreehash_list.c: New file.
45439         * lib/gl_anytreehash_list1.h: New file.
45440         * lib/gl_anytreehash_list2.h: New file.
45441
45442         * lib/gl_oset.h: New file.
45443         * lib/gl_oset.c: New file.
45444         * lib/gl_array_oset.h: New file.
45445         * lib/gl_array_oset.c: New file.
45446         * lib/gl_avltree_oset.h: New file.
45447         * lib/gl_avltree_oset.c: New file.
45448         * lib/gl_rbtree_oset.h: New file.
45449         * lib/gl_rbtree_oset.c: New file.
45450         * lib/gl_anytree_oset.h: New file.
45451
45452 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
45453
45454         * m4/mkancesdirs.m4: New file.
45455         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
45456         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
45457         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
45458         it.
45459
45460 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
45461
45462         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
45463         * lib/mkancesdirs.h: New files.
45464         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
45465         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
45466         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
45467         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
45468         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
45469         callers changed.  Revamp internals significantly, by not
45470         attempting to create directories that are temporarily more
45471         permissive than the final results.  Do not attempt to use
45472         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
45473         This removes some race conditions, fixes some bugs, and simplifies
45474         things.  Use new dirchownmod function to do owner and mode changes.
45475         * lib/mkdir-p.h: Likewise.
45476         * lib/modechange.c (octal_to_mode): New function.
45477         (struct mode_change): New member mentioned.
45478         (make_node_op_equals): New arg mentioned.  All callers changed.
45479         (mode_compile): Keep track of which mode bits the user has explicitly
45480         mentioned.
45481         (mode_adjust): New arg DIR, so that we implement the X op correctly.
45482         New arg PMODE_BITS, to keep track of which mode bits the user
45483         mentioned; it treats S_ISUID and S_ISGID speciall.
45484         All callers changed.
45485         * lib/modechange.h: Likewise.
45486
45487 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
45488
45489         * MODULES.html.sh: Add mkancestors.
45490         * modules/mkancesdirs: New module.
45491         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
45492         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
45493         The chdir-safer and afs files are now orphans; I'll remove them
45494         unless someone speaks up.
45495         Add lib/dirchownmod.c, lib/dirchownmod.h.
45496         (Depends-on): Remove alloca, chown, save-cwd, dirname.
45497         Add lchown, mkancesdirs.
45498         (Maintainer): Add self.
45499
45500 2006-07-15  Karl Berry  <karl@gnu.org>
45501
45502         * gnulib-tool: help message wording/arrangement.
45503
45504 2006-07-14  Simon Josefsson  <jas@extundo.com>
45505
45506         * doc/gnulib.texi (Libtool and Windows): New section.
45507
45508 2006-07-12  Simon Josefsson  <jas@extundo.com>
45509
45510         * modules/gendocs (License): Fix license, approved by Karl.
45511
45512 2006-07-12  Eric Blake  <ebb9@byu.net>
45513
45514         * MODULES.html.sh: Add gendocs.
45515
45516 2006-07-11  Eric Blake  <ebb9@byu.net>
45517
45518         * modules/fdl: New module, to install doc/fdl.texi.
45519         * MODULES.html.sh: Add new section for documentation modules.
45520         * gnulib-tool: Avoid space-tab.
45521         (--doc-base): New option, to manage files from doc.
45522
45523 2006-07-11  Eric Blake  <ebb9@byu.net>
45524
45525         * m4/absolute-header.m4: Fix comments to match recent change.
45526
45527 2006-07-11  Eric Blake  <ebb9@byu.net>
45528
45529         * gnulib-tool: List --doc-base before --tests-base.
45530
45531 2006-07-11  Derek R. Price  <derek@ximbiot.com>
45532
45533         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
45534
45535 2006-07-11  Bruno Haible  <bruno@clisp.org>
45536
45537         * README: Mention where to put documentation.
45538
45539 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45540
45541         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
45542
45543 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
45544
45545         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
45546         to stdint.m4.
45547
45548 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
45549
45550         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
45551         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
45552         "no/such/file/stdint.h" when there is no such file, so that
45553         the resulting C code can be parsed by dodgy compilers.
45554         Problems reported by Bob Proulx.
45555
45556 2006-07-10  Derek R. Price  <derek@ximbiot.com>
45557
45558         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
45559         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
45560         macros into the GNU _D_EXACT_NAMLEN.
45561         * lib/savedir.c:  Likewise.
45562         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
45563
45564 2006-07-10  Derek R. Price  <derek@ximbiot.com>
45565         and Paul Eggert  <eggert@cs.ucla.edu>
45566
45567         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
45568         * m4/savedir.m4:
45569         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
45570         macros into the GNU _D_EXACT_NAMLEN.
45571
45572 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
45573
45574         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
45575         around the absolute name, to work around a problem with the HP-UX
45576         11.23 native C compiler, reported by Bob Proulx.
45577
45578 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
45579
45580         * doc/maintain.texi, make-stds.texi: Sync from
45581         <http://savannah.gnu.org/projects/gnustandards>.
45582
45583 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
45584
45585         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
45586
45587 2006-07-09  Jim Meyering  <jim@meyering.net>
45588
45589         * m4/glob.m4: Remove a doubled word in a comment.
45590
45591 2006-07-09  Jim Meyering  <jim@meyering.net>
45592
45593         * lib/argp-pv.c: Remove a doubled word in a comment.
45594         * lib/check-version.c (check_version): Likewise.
45595         * lib/javacomp.c (compile_java_class): Likewise.
45596
45597 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
45598
45599         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
45600         for the benefit of people using Autoconf 2.60.  If you want to
45601         support older Autoconf versions you can copy m4/onceonly_2_57.m4
45602         (or m4/onceonly.m4, if pre-2.57) manually.
45603
45604 2006-07-08  Jim Meyering  <jim@meyering.net>
45605
45606         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
45607         comment.
45608         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
45609         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
45610         comment.
45611
45612 2006-07-08  Jim Meyering  <jim@meyering.net>
45613
45614         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
45615
45616 2006-07-07  Simon Josefsson  <jas@extundo.com>
45617
45618         * tests/test-crc.c: Change expected crc value, the test vector
45619         were probably computed using the old broken crc.c?
45620
45621 2006-07-06  Simon Josefsson  <jas@extundo.com>
45622
45623         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
45624         now the canonical place for the M4 file).
45625
45626         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
45627         from the sys_socket dependency now.
45628
45629         * modules/inet_pton (Files): Ditto.
45630
45631         * modules/inet_ntop (Files): Ditto.
45632
45633 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
45634
45635         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
45636         not gl_PREREQ_GETUSERSHELL.
45637
45638 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45639
45640         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
45641         with only one argument, for Autoconf 2.60.
45642         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
45643         expand to nothing, so add a shell command to avoid syntax error.
45644         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
45645
45646 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45647
45648         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
45649
45650 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45651
45652         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
45653         no longer needed.  Check for isblank decl.
45654         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
45655         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
45656         of existence.
45657
45658 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45659
45660         * lib/getloadavg.c: Use __VMS, not VMS.
45661         * lib/getopt.c: Likewise.
45662         * lib/getpagesize.h: Likewise.
45663         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
45664         and probably does not work.
45665
45666 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45667
45668         * lib/.cppi-disable: Add wcwidth.
45669         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
45670         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
45671         (ISGRAPH): Remove.  All uses changed to isgraph.
45672         (FOLD) [!defined _LIBC]: Remove special case.
45673         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
45674         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
45675         HAVE_ISBLANK.
45676         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
45677         case.
45678
45679 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
45680
45681         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
45682         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
45683         brackets.  Other minor changes to suppress some compiler
45684         warnings.
45685
45686 2006-07-06  Derek R. Price  <derek@ximbiot.com>
45687         and Paul Eggert  <eggert@cs.ucla.edu>
45688
45689         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
45690         of invoking obsolescent AC_HEADER_DIRENT macro.
45691         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
45692         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
45693         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
45694         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
45695         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
45696         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
45697         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
45698         * m4/readdir.m4: Remove; no longer needed.
45699
45700 2006-07-06  Derek R. Price  <derek@ximbiot.com>
45701         and Paul Eggert  <eggert@cs.ucla.edu>
45702
45703         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
45704         Don't worry about this obsolete case any more.
45705         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
45706         directories.
45707         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
45708         worry about this obsolete case any more.
45709         * lib/fts.c: Likewise.
45710         * lib/getcwd.c: Likewise.
45711         * lib/glob.h: Likewise.
45712         * lib/savedir.c: Likewise.
45713
45714 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
45715
45716         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
45717         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
45718         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
45719         needed.
45720         All uses removed.
45721         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
45722         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
45723         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
45724         needed.
45725         * m4/getdate.m4 (gl_GETDATE): Likewise.
45726         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
45727         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
45728         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
45729         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
45730         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
45731         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
45732         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
45733         needed.
45734
45735 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
45736
45737         * lib/memcasecmp.c: Include <limits.h>.
45738         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
45739         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
45740         Don't assume isdigit succeeds only on '0' through '9'.
45741
45742 2006-07-05  Eric Blake  <ebb9@byu.net>
45743
45744         * modules/getaddrinfo (Depends-on): Add snprintf.
45745
45746 2006-07-05  Eric Blake  <ebb9@byu.net>
45747
45748         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
45749         to avoid 'header present but could not be compiled' on cygwin.
45750
45751 2006-07-05  Eric Blake  <ebb9@byu.net>
45752
45753         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
45754         missing from netdb.h.
45755         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
45756
45757 2006-07-05  Derek R. Price  <derek@ximbiot.com>
45758
45759         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
45760         no longer needed.
45761         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
45762         * m4/getdate.m4 (gl_GETDATE): Likewise.
45763         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
45764         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
45765         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
45766         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
45767         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
45768
45769 2006-07-05  Derek R. Price  <derek@ximbiot.com>
45770
45771         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
45772         All uses of is_space replaced by isspace.
45773         * lib/exit.h: Don't talk about STDC_HEADERS.
45774         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
45775         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
45776         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
45777         replaced by isprint etc.
45778         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
45779         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
45780         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
45781         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
45782         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
45783         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
45784
45785 2006-07-05  Bruno Haible  <bruno@clisp.org>
45786
45787         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
45788         the function exists, before testing against AIX.
45789         Reported by Martin Lambers <marlam@marlam.de>.
45790
45791 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
45792
45793         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
45794         From Mark D. Baushke.
45795
45796 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
45797
45798         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
45799         to the absolute name, not just one, to bypass Sun C 5.8's
45800         "warning: #include of /usr/include/... may be non-portable".
45801
45802 2006-07-04  Eric Blake  <ebb9@byu.net>
45803
45804         * modules/dirname-tests: New test module.
45805         * tests/test-dirname.c: New file, replacing dirname.c
45806         TEST_DIRNAME section that was recently deleted.
45807
45808 2006-07-04  Bruno Haible  <bruno@clisp.org>
45809
45810         Assume ANSI C header files and <ctype.h> functions.
45811         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
45812         (mbsnwidth): Use isprint, iscntrl instead.
45813
45814 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45815
45816         Merge from coreutils.
45817         * MODULES.html.sh: Add xstrtold.
45818         * modules/xstrtold: New file.
45819         * modules/cycle-check (Files): Add lib/same-inode.h.
45820         * modules/dirname (Files): Add m4/double-slash-root.m4.
45821         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
45822         * modules/mkdir-p (Files): Add lib/same-inode.h.
45823         * modules/same (Files): Add lib/same-inode.h.
45824
45825 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45826
45827         * m4/absolute-header.m4: Renamed from full-header-path.m4.
45828         This is to keep the terminology clean; POSIX talks about
45829         "absolute pathnames", not "full pathnames", but the GNU
45830         Coding Standards say to use "path" for something else;
45831         so use "absolute" to keep both sides happy.
45832         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
45833         Set gl_absolute_header, not gl_full_header_path.
45834         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
45835         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
45836         All uses changed.
45837
45838         Merge from coreutils.
45839
45840         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
45841
45842         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
45843         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
45844         want to require the building of c-strtod.o.
45845         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
45846         needs -lm directly.
45847         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
45848
45849         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
45850
45851         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
45852         --as-needed option if available.  Problem reported by Albert Chin in
45853         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
45854         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
45855         cc merely issues a bunch of annoying warnings for --as-needed
45856         (this problem was reported by Bob Proulx).  Also, try linking with
45857         -lm to detect a bug in binutils 2.16 (this problem was reported
45858         by Ralf Wildenhues).
45859
45860         2006-06-18  Jim Meyering  <jim@meyering.net>
45861
45862         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
45863         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
45864         macro.
45865         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
45866         also check for glibc-2.4's abort-inducing bug.
45867
45868         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
45869         Low-probability clean-up should be to use rmdir to get rid of
45870         the just-created directory, not unlink.
45871
45872         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
45873         configure fail, and request a bug report to inform us about it.
45874         Add a comment that, barring reports to the contrary, in 2007 we'll
45875         assume ftruncate is universally available.
45876
45877         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
45878
45879         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
45880
45881         2006-03-12  Jim Meyering  <jim@meyering.net>
45882
45883         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
45884         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
45885         * m4/same.m4 (gl_SAME): Likewise.
45886         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
45887
45888         2006-03-11  Eric Blake  <ebb9@byu.net>
45889
45890         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
45891         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
45892         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
45893         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
45894
45895 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45896
45897         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
45898         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
45899         reported by Mark D. Baushke, one in
45900         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
45901
45902         Merge from coreutils.
45903
45904         * lib/.cppi-disable: Add stdint_.h.
45905         * lib/.cvsignore: Add stdint.h.
45906
45907         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
45908
45909         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
45910         both double and long double versions.
45911         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
45912         * lib/xstrtold.c: New file.
45913         * lib/xstrtod.h (xstrtold): New decl.
45914
45915         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
45916
45917         * lib/filemode.c (setst): Remove.
45918         (strmode): Rewrite to avoid setst.  This makes the code shorter,
45919         (arguably) clearer, and the generated code is a bit smaller on my
45920         Debian GNU/Linux stable x86 host.
45921
45922         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
45923
45924         * lib/filemode.c: Include "filemode.h" first, to test the interface.
45925         Assume that filemode.h includes sys/types.h and sys/stat.h.
45926         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
45927         (ftypelet): Reorder to put common cases first, for efficiency.
45928         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
45929         to do 'M'.
45930         (strmode): Renamed from mode_string, and now stores 12 bytes instead
45931         of 10, for compatibility with FreeBSD.  All callers changed.
45932         (filemodestring): Now stores 12 bytes instead of 10, and sets file
45933         types that can't be deduced solely from st_mode.  First arg is now a
45934         const pointer.
45935         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
45936         (strmode): Renamed from mode_string.
45937         (filemodestring): New decl.
45938         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
45939         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
45940         needed.
45941         (S_ISPORT, S_ISWHT): New macros, if not already defined.
45942
45943         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
45944
45945         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
45946         fsusage.h now does that.  Include fsusage.h first, to test interface.
45947         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
45948         at most one method (the old code could have generated decls that
45949         didn't conform to C89, not that this was ever exercised).
45950         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
45951
45952         2006-03-19  Jim Meyering  <jim@meyering.net>
45953
45954         Work even in a chroot where d_ino values for entries in "/"
45955         don't match the stat.st_ino values for the same names.
45956         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
45957         number, iterate through all entries again, using lstat instead.
45958         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
45959         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
45960
45961         * lib/getcwd.c (__getcwd): Clarify a comment.
45962         Use memcpy in place of a call to strcpy.
45963
45964         2006-03-12  Jim Meyering  <jim@meyering.net>
45965
45966         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
45967         matches that of the current directory (which we're about to chdir ".."
45968         out of), then save the dev-ino of the parent, instead.
45969
45970         * lib/same-inode.h (SAME_INODE): New file/macro.
45971         * lib/chdir-safer.c (SAME_INODE): Remove definition.
45972         Include "same-inode.h", instead.
45973         * lib/same.c: Likewise.
45974         * lib/cycle-check.h: Include "same-inode.h".
45975         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
45976         * lib/cycle-check.c (SAME_INODE): Remove definition.
45977         * lib/root-dev-ino.h: Include "same-inode.h".
45978
45979         2006-03-11  Eric Blake  <ebb9@byu.net>
45980
45981         * lib/same.c (same_name): s/base_name/last_component/
45982         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
45983         * lib/filenamecat.c (file_name_concat): Likewise.
45984
45985         2006-03-11  Eric Blake  <ebb9@byu.net>,
45986                     Paul Eggert  <eggert@cs.ucla.edu>
45987
45988         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
45989         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
45990         drive prefix.
45991         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
45992         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
45993         (last_component): New method.
45994         * lib/dirname.c (dir_len): Determine when drive letters need a
45995         subsequent slash.  Preserve // when it is special.
45996         (dir_name): Don't append dot when drive letter is absolute.
45997         [TEST_DIRNAME]: Move into a full-blown gnulib test.
45998         * lib/basename.c (base_name): New semantics - malloc the result.
45999         Preserve // when it is special.  Preserve relative files that look
46000         like drive letters.
46001         (base_len): Preserve // when it is special.
46002         (last_component): New method, similar to old base_name semantics.
46003         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
46004         base_name.  Strip redundant slashes from ///.
46005
46006 2006-07-03  Jim Meyering  <jim@meyering.net>
46007
46008         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
46009         macro is used before the first cycle_check call.
46010
46011 2006-07-03  Eric Blake  <ebb9@byu.net>
46012
46013         * modules/dirname (Depends-on): Add xstrndup.
46014
46015 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
46016
46017         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
46018         test cases, so that config.log is a bit easier to follow.
46019
46020 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
46021
46022         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
46023         both are 64 bits, since this seems to be the tradition, and this
46024         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
46025         we ever run into a host that prefers long long to long in this
46026         case, we'll need another configure-time test.  Problem reported by
46027         Jim Meyering.
46028
46029 2006-07-02  Eric Blake  <ebb9@byu.net>
46030
46031         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
46032
46033 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46034
46035         * modules/inttypes (Depends-on): No longer depends on stdint.
46036         * modules/stdint (Description): Say more about assumptions.
46037         Say that the fast types might differ.  Say macros are used.
46038         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
46039         (Makefile.am): Revise list of substituted symbols to match
46040         new stdint.m4.
46041         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
46042         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
46043         * tests/test-stdint.c (verify_same_types)
46044         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
46045         the code conforms to C99/C89.
46046         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
46047         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
46048
46049 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46050
46051         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
46052         but fix a bug, by requiring at least 64 bits.
46053         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
46054         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
46055         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
46056         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
46057
46058         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
46059         changes.  Make 2.59 a prerequisite.  Check and substitute for
46060         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
46061         inttypes.h.  Do not use special include files; just use the
46062         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
46063         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
46064         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
46065         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
46066         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
46067         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
46068         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
46069         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
46070         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
46071         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
46072         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
46073         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
46074         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
46075         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
46076         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
46077         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
46078         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
46079         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
46080         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
46081         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
46082         WINT_MAX.  Check for C99 conformance more strictly, by detecting
46083         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
46084         not check for things that C99 does not require, e.g., int8_t.  If
46085         a test isn't needed unless <stdint.h> isn't working, and is
46086         unlikely to be needed for any other reason, then don't do it
46087         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
46088         size_t, since we assume C89 freestanding at least.  Do not check
46089         for sig_atomic_t, wchar_t, or wint_t, since the code now does
46090         the right thing even if the types are not defined.  Instead use:
46091         (gl_STDINT_TYPE_PROPERTIES): New macro.
46092         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
46093         testing whether <sys/types.h> clashes, as Autoconf does this for
46094         us now.  All uses removed.
46095         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
46096         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
46097         (gl_CHECK_TYPE_SAME):
46098         Remove; no longer needed.
46099         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
46100         exists, since we'll return 0 anyway in that case.
46101         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
46102
46103 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46104
46105         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
46106         possible collision with system files.
46107         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
46108         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
46109         WCHAR_MIN and WCHAR_MAX in this case.
46110         (<stddef.h>): Do not include; no longer needed.
46111         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
46112         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
46113         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
46114         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
46115         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
46116         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
46117         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
46118         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
46119         !defined(__c99))]: Include in this case too, since it's harmless
46120         now.
46121         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
46122         dangerous to do so.
46123         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
46124         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
46125         (_STDINT_MIN, _STDINT_MAX): New macros.
46126         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
46127         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
46128         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
46129         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
46130         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
46131         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
46132         macros, not typedefs; this simplifies things quite a bit.
46133         Use long int for all types narrower than int64_t.
46134         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
46135         Define in terms of long long int or int64_t or long int,
46136         not int64_t or int32_t.  This saves some compile-time testing.
46137         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
46138         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
46139         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
46140         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
46141         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
46142         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
46143         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
46144         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
46145         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
46146         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
46147         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
46148         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
46149         undef any previous version and define our own version, for
46150         simplicity and consistency with the new macros for types.
46151         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
46152         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
46153         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
46154         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
46155         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
46156         @WINT_T_SUFFIX@ to keep things simple here.
46157         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
46158         Simplify by assuming typical 8/16/32/64 host, since we're
46159         already doing that elsewhere anyway.
46160         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
46161         and assume long long int is 64 bits if available.  This
46162         speeds up 'configure'.
46163
46164 2006-07-01  Eric Blake  <ebb9@byu.net>
46165
46166         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
46167         Reported by Andreas Buening.
46168
46169 2006-07-01  Eric Blake  <ebb9@byu.net>
46170
46171         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
46172
46173 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
46174
46175         * lib/getaddrinfo.c: fixed typo
46176
46177 2006-06-29  Jim Meyering  <jim@meyering.net>
46178
46179         * modules/strftime (Maintainer): Add my name, since with the
46180         FPRINTFTIME changes strftime.c has forked from glibc.
46181
46182 2006-06-29  Eric Blake  <ebb9@byu.net>
46183
46184         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
46185
46186 2006-06-29  Eric Blake  <ebb9@byu.net>
46187
46188         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
46189
46190 2006-06-29  Eric Blake  <ebb9@byu.net>
46191
46192         * lib/stat_.h: New file.
46193
46194 2006-06-29  Eric Blake  <ebb9@byu.net>
46195
46196         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
46197         unused static function.
46198
46199 2006-06-29  Eric Blake  <ebb9@byu.net>
46200
46201         * doc/functions.texi (Function Portability): Document missing lstat
46202         on mingw.
46203
46204 2006-06-29  Eric Blake  <ebb9@byu.net>
46205
46206         * MODULES.html.sh: Add sys_stat.
46207         * modules/sys_stat: New module.
46208         * modules/mkstemp (Depends-on): Add sys_stat.
46209
46210 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46211
46212         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
46213
46214 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46215
46216         * m4/c-bs-a.m4: Removed.
46217
46218 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46219
46220         * lib/strftime.c: Assume strftime() exists.
46221
46222 2006-06-29  Derek Price  <derek@ximbiot.com>
46223
46224         * modules/c-bs-a: Removed - \a is C89.
46225         * MODULES.html.sh: Remove c-bs-a.
46226
46227 2006-06-29  Bruno Haible  <bruno@clisp.org>
46228
46229         * modules/wcwidth (License): Change to LGPL.
46230
46231 2006-06-28  Simon Josefsson  <jas@extundo.com>
46232
46233         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
46234         on _WIN32.
46235
46236         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
46237         getnameinfo.
46238
46239 2006-06-28  Simon Josefsson  <jas@extundo.com>
46240
46241         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
46242
46243 2006-06-28  Simon Josefsson  <jas@extundo.com>
46244
46245         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
46246         functions there.  It will succeed on Windows XP, but on Windows
46247         2000 and (presumably) earlier, it will fail, and use the internal
46248         re-implementation.
46249         (use_win32_p): New function.
46250         (getaddrinfo): Use strtoul on servname, to support numeric ports.
46251         Support AI_NUMERICSERV to disable getservbyname.
46252         (getnameinfo): New function, only supports
46253         NI_NUMERICHOST|NI_NUMERICSERV for now.
46254
46255         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
46256         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
46257         getnameinfo.
46258
46259 2006-06-28  Eric Blake  <ebb9@byu.net>
46260
46261         * modules/wcwidth: New file.
46262         * modules/mbchar (Depends-on): Add wcwidth.
46263         * modules/mbswidth (Depends-on): Add wcwidth.
46264         * MODULES.html.sh: Add wcwidth.
46265
46266 2006-06-28  Eric Blake  <ebb9@byu.net>
46267
46268         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
46269         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
46270
46271 2006-06-28  Eric Blake  <ebb9@byu.net>
46272
46273         * lib/xvasprintf.h: Fix comments.
46274
46275 2006-06-28  Eric Blake  <ebb9@byu.net>
46276
46277         * lib/mbchar.h (wcwidth): Include wcwidth.h.
46278         * lib/mbswidth.c (wcwidth): Move from here...
46279         * lib/wcwidth.h: ...to this new file.
46280
46281 2006-06-28  Derek R. Price  <derek@ximbiot.com>
46282
46283         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
46284
46285         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
46286         it's obsolete.
46287         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
46288
46289 2006-06-28  Derek R. Price  <derek@ximbiot.com>
46290
46291         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
46292         Autoconf 2.60 says this stuff was obsolete.
46293
46294 2006-06-28  Bruno Haible  <bruno@clisp.org>
46295
46296         * modules/wcwidth (Files): Add m4/wchar_t.m4.
46297
46298 2006-06-28  Bruno Haible  <bruno@clisp.org>
46299
46300         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
46301         gt_TYPE_WCHAR_T.
46302
46303 2006-06-28  Bruno Haible  <bruno@clisp.org>
46304
46305         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
46306         declaration for wcwidth.
46307         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
46308
46309 2006-06-28  Bruno Haible  <bruno@clisp.org>
46310
46311         * lib/mkdtemp.c [MINGW]: Include <io.h>.
46312         (mkdir): Define using _mkdir.
46313
46314 2006-06-28  Bruno Haible  <bruno@clisp.org>
46315
46316         * lib/getaddrinfo.h: Fix POSIX URL.
46317         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
46318         _WIN32.
46319         (use_win32_p): Make static.
46320         (getaddrinfo): Reject service name if it is empty or does not consist
46321         solely of decimal digits, or if its value is > 65535.
46322         (getnameinfo): Remove useless casts.
46323
46324 2006-06-27  Simon Josefsson  <jas@extundo.com>
46325
46326         * modules/sys_select: New file, suggested by Bruno Haible, Paul
46327         Eggert and Martin Lambers.
46328
46329 2006-06-27  Simon Josefsson  <jas@extundo.com>
46330
46331         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
46332         Eggert and Martin Lambers.
46333
46334 2006-06-27  Bruno Haible  <bruno@clisp.org>
46335
46336         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
46337         result to 0, not to empty.
46338         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
46339
46340 2006-06-27  Bruno Haible  <bruno@clisp.org>
46341
46342         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
46343
46344 2006-06-26  Simon Josefsson  <jas@extundo.com>
46345
46346         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
46347         present.
46348
46349 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
46350
46351         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
46352         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
46353         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
46354
46355 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
46356
46357         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
46358
46359 2006-06-26  Bruno Haible  <bruno@clisp.org>
46360
46361         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
46362
46363 2006-06-26  Bruno Haible  <bruno@clisp.org>
46364
46365         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
46366
46367 2006-06-26  Bruno Haible  <bruno@clisp.org>
46368
46369         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
46370         SGI C compiler in pre-C99 mode.
46371         Suggested by Mark D. Baushke and Larry Jones.
46372
46373 2006-06-26  Bruno Haible  <bruno@clisp.org>
46374
46375         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
46376         WCHAR_MAX.
46377         Reported by Mark D. Baushke and Larry Jones.
46378
46379 2006-06-26  Bruno Haible  <bruno@clisp.org>
46380
46381         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
46382         in pre-C99 mode.
46383         Suggested by Mark D. Baushke and Larry Jones.
46384
46385 2006-06-23  Simon Josefsson  <jas@extundo.com>
46386             Bruno Haible  <bruno@clisp.org>
46387
46388         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
46389         Emit mostlyclean-local rule.
46390         (func_emit_tests_Makefile_am): Likewise.
46391         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
46392
46393 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
46394
46395         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
46396
46397 2006-06-23  Bruno Haible  <bruno@clisp.org>
46398
46399         * tests/test-stdint.c: Update to match ISO C 99 Technical
46400         Corrigendum 1.
46401
46402 2006-06-23  Bruno Haible  <bruno@clisp.org>
46403
46404         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
46405
46406 2006-06-23  Bruno Haible  <bruno@clisp.org>
46407
46408         * lib/stdint_.h: Treat IRIX like OpenBSD.
46409
46410 2006-06-23  Bruno Haible  <bruno@clisp.org>
46411
46412         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
46413         ISO C 99 Technical Corrigendum 1.
46414
46415 2006-06-22  Simon Josefsson  <jas@extundo.com>
46416
46417         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
46418         MinGW.
46419
46420 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
46421
46422         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
46423         needed.  Some compiler complained about some of them.  Problem reported
46424         by Larry Jones in
46425         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
46426
46427 2006-06-21  Simon Josefsson  <jas@extundo.com>
46428
46429         * tests/test-getaddrinfo.c: New file.
46430
46431         * modules/getaddrinfo-tests: New file.
46432
46433         * MODULES.html.sh: Add inet_pton.
46434
46435         * modules/inet_pton: New file.
46436
46437 2006-06-21  Simon Josefsson  <jas@extundo.com>
46438
46439         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
46440         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
46441         of using the (limited) gnulib implementation on Windows XP.
46442
46443         * m4/inet_pton.m4: New file.
46444
46445 2006-06-21  Simon Josefsson  <jas@extundo.com>
46446
46447         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
46448         variable.
46449
46450         * lib/socket_.h: Don't define WINVER.
46451
46452         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
46453         slightly modified to work in gnulib.
46454
46455 2006-06-21  Simon Josefsson  <jas@extundo.com>
46456
46457         * doc/gnulib.texi (Windows sockets): Add.
46458
46459 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
46460
46461         * lib/read-file.c (fread_file): Start with buffer allocation of
46462         0 bytes rather than 1 byte; this simplifies the code.
46463         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
46464         code to free buffer and save/restore errno.
46465         (internal_read_file): Remove unused local.
46466
46467 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
46468
46469         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
46470         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
46471         Problem reported by Denis Excoffier in
46472         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
46473
46474 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46475
46476         * modules/sys_socket, modules/socklen: Include sys/types since
46477         FreeBSD 4.x's sys/socket.h needs it.
46478
46479 2006-06-19  Simon Josefsson  <jas@extundo.com>
46480
46481         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
46482
46483 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
46484
46485         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
46486
46487 2006-06-19  Bruno Haible  <bruno@clisp.org>
46488
46489         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
46490         and FULL_PATH_INTTYPES_H in angle brackets.
46491         Reported by Mark D. Baushke <mdb@gnu.org>.
46492
46493 2006-06-17  Eric Blake  <ebb9@byu.net>
46494
46495         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
46496         errno.
46497
46498 2006-06-17  Bruno Haible  <bruno@clisp.org>
46499
46500         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
46501         <sys/inttypes.h>.
46502
46503 2006-06-17  Bruno Haible  <bruno@clisp.org>
46504
46505         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
46506         whether errno is declared. Assume <errno.h> declares errno.
46507
46508 2006-06-17  Bruno Haible  <bruno@clisp.org>
46509
46510         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
46511
46512 2006-06-17  Bruno Haible  <bruno@clisp.org>
46513
46514         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
46515         problem on Solaris 2.5.1.
46516
46517 2006-06-16  Eric Blake  <ebb9@byu.net>
46518
46519         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
46520         * lib/unicodeio.c [!defined errno]: Likewise.
46521         * lib/strtol.c [!defined errno]: Likewise.
46522         * lib/strtod.c [!defined errno]: Likewise.
46523
46524 2006-06-15  Eric Blake  <ebb9@byu.net>
46525
46526         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
46527
46528 2006-06-15  Eric Blake  <ebb9@byu.net>
46529
46530         * config/srclist.txt (ssize_t.m4): Lose sync.
46531
46532 2006-06-15  Bruno Haible  <bruno@clisp.org>
46533
46534         * modules/stdint (Files): Include m4/full-header-path.m4,
46535         m4/size_max.m4, m4/wchar_t.m4.
46536         (Makefile.am): Many more substitutions.
46537         * modules/stdint-tests: New file.
46538         * tests/test-stdint.c: New file.
46539
46540 2006-06-15  Bruno Haible  <bruno@clisp.org>
46541
46542         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
46543         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
46544         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
46545         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
46546         gl_CHECK_TYPE_SAME): New macros.
46547
46548 2006-06-15  Bruno Haible  <bruno@clisp.org>
46549
46550         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
46551
46552 2006-06-15  Bruno Haible  <bruno@clisp.org>
46553
46554         * lib/stdint_.h: Rewritten to be fully auto-configured.
46555         Fixes bug on HP-UX/IA64.
46556
46557 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
46558
46559         * lib/getdate.y (__attribute__): Don't define if already defined.
46560         Problem reported by Larry Jones.
46561         * lib/utimens.c (__attribute__): Likewise.
46562
46563 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
46564
46565         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
46566         reported by Andreas Schwab.
46567
46568 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46569             Bruno Haible  <bruno@clisp.org>
46570
46571         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
46572         check for the declaration of strnlen and a run test that exposes the
46573         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
46574         rpl_strndup.
46575
46576 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46577             Bruno Haible  <bruno@clisp.org>
46578
46579         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
46580
46581 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46582
46583         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
46584         compile test, for Tru64 4.0D.
46585
46586 2006-05-28  Karl Berry  <karl@gnu.org>
46587
46588         * config/srclist.txt (printf-args.c): lose sync.
46589
46590 2006-05-26  Martin Lambers  <marlam@marlam.de>
46591
46592         * lib/getpass.c: Updates the test for the native W32 API, and adds
46593         missing includes, thus fixing compilation warnings.
46594
46595 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
46596
46597         * lib/exclude.c (exclude_fnmatch): New function.
46598         (excluded_file_name): Call exclude_fnmatch.
46599         * lib/exclude.h (excluded_file_name): New prototype
46600
46601 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
46602
46603         * lib/tempname.c (small_open, large_open): New macros.
46604         (__open, __open64) [!_LIBC]: Remove.
46605         (__gen_tempname): Use small_open and large_open instead of __open
46606         and __open64.  This fixes a portability bug on HP-UX 11.11i
46607         reported by Simon Wing-Tang in
46608         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
46609
46610 2006-05-24  Bruno Haible  <bruno@clisp.org>
46611
46612         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
46613         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
46614         Reported by Thorsten Maerz <torte@netztorte.de> via
46615         Aaron Stone <aaron@serendipity.cx>.
46616
46617 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
46618
46619         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
46620         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
46621         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
46622         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
46623         not really conditional on the cache.
46624         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
46625
46626 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
46627
46628         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
46629         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
46630         (my_usleep): Don't mishandle maximum value.
46631
46632 2006-05-19  Jim Meyering  <jim@meyering.net>
46633
46634         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
46635
46636 2006-05-17  Bruno Haible  <bruno@clisp.org>
46637
46638         Cygwin portability.
46639         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
46640
46641 2006-05-17  Bruno Haible  <bruno@clisp.org>
46642
46643         * lib/stdint_.h: Fix recognition of Cygwin.
46644
46645 2006-05-15  Bruno Haible  <bruno@clisp.org>
46646
46647         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
46648         on libtool patch by Ralf Wildenhues.
46649
46650 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
46651
46652         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
46653         test for C99 conformance; (bool) 0.5 is an integer constant
46654         expression, but (bool) -0.5 is not.  Problem reported by Fedor
46655         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
46656
46657 2006-05-11  Simon Josefsson  <jas@extundo.com>
46658
46659         * m4/xvasprintf.m4: Fix obvious typo.
46660
46661 2006-05-11  Jim Meyering  <jim@meyering.net>
46662
46663         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
46664         James Lemley.
46665
46666 2006-05-10  Simon Josefsson  <jas@extundo.com>
46667
46668         * lib/md4.c: Typo fix, update copyright years.
46669         (K1, K2): Don't use L because it turn computations into 64-bit on
46670         64-bit platforms.
46671
46672 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
46673
46674         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
46675         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
46676         unwanted sign propagation, e.g., on hosts with 64-bit int.
46677         There still are some problems with reeelly weird theoretical hosts
46678         (e.g., 33-bit int) but it's not worth worrying about now.
46679         * lib/sha1.c (rol): Likewise.
46680         (K1, K2, K3, K4): Remove unnecessary L suffix.
46681
46682 2006-05-10  Bruno Haible  <bruno@clisp.org>
46683
46684         * lib/des.c: Cast to avoid warnings.
46685
46686 2006-05-09  Bruno Haible  <bruno@clisp.org>
46687
46688         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
46689         (Depends-on): Depend also on xsize, stdarg.
46690         (configure.ac): Add gl_XVASPRINTF.
46691
46692 2006-05-09  Bruno Haible  <bruno@clisp.org>
46693
46694         * m4/xvasprintf.m4: New file.
46695
46696 2006-05-09  Bruno Haible  <bruno@clisp.org>
46697
46698         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
46699         (EOVERFLOW): Define fallback value.
46700         (xstrcat): New function.
46701         (xvasprintf): Recognize the special case of a string concatenation.
46702
46703 2006-05-08  Eric Blake  <ebb9@byu.net>
46704
46705         * gnulib-tool (func_version): Base copyright year on CVS date.
46706         (func_emit_copyright_notice): New function.
46707         (func_emit_lib_Makefile_am): Use it.
46708         (func_emit_tests_Makefile_am): Likewise.
46709         (func_import): Likewise.
46710
46711 2006-05-08  Bruno Haible  <bruno@clisp.org>
46712
46713         * modules/stdarg: New file.
46714         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
46715
46716 2006-05-08  Bruno Haible  <bruno@clisp.org>
46717
46718         * m4/stdarg.m4: New file, from GNU gettext.
46719
46720 2006-05-08  Bruno Haible  <bruno@clisp.org>
46721
46722         * config/srclist.txt (build-aux/config.rpath): different from latest
46723         release.
46724
46725 2006-05-08  Bruno Haible  <bruno@clisp.org>
46726
46727         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
46728
46729 2006-05-05  Jim Meyering  <jim@meyering.net>
46730
46731         * m4/warning.m4: New file, derived from bison's file by the same name.
46732
46733 2006-05-03  Bruno Haible  <bruno@clisp.org>
46734
46735         * lib/stdint_.h: Shorter URL.
46736         * lib/inttypes.h: Likewise.
46737
46738 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
46739
46740         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
46741
46742 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
46743
46744         * lib/verify.h: Document the internals better.  Most of this change
46745         was written by Bruno Haible.
46746
46747 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
46748
46749         * doc/verify.texi: New file, partly based on a proposal by
46750         Bruno Haible.
46751
46752 2006-05-02  Bruno Haible  <bruno@clisp.org>
46753
46754         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
46755         test from here...
46756         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
46757
46758 2006-04-29  Bruno Haible  <bruno@clisp.org>
46759
46760         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
46761         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
46762
46763 2006-04-29  Bruno Haible  <bruno@clisp.org>
46764
46765         * gnulib-tool: Make --update option actually work.
46766
46767 2006-04-29  Bruno Haible  <bruno@clisp.org>
46768
46769         * doc/gcd.texi: New file.
46770         * doc/gnulib.texi: Include it.
46771
46772 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
46773
46774         * lib/getdate.y (get_date): When adding relative date, start with the
46775         initial time, not with the result of the first mktime call.
46776
46777 2006-04-25  Bruno Haible  <bruno@clisp.org>
46778
46779         * gnulib-tool (func_import): Output the include directives in three
46780         blocks, sorted separately.
46781         Reported by Ben Pfaff <blp@cs.stanford.edu>.
46782
46783 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
46784
46785         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
46786         to define main with arguments, for C++.  Reported by Eric Blake.
46787         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
46788         Prefer 'int main ()' to 'int main (void)', for C++.
46789         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
46790         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
46791         for 'main', for C99 and C++.
46792
46793 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
46794
46795         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
46796         Don't assume that exit status -1 is valid.
46797         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
46798         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
46799         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
46800         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
46801         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
46802         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
46803         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
46804         functions can be used without declaring them, or that you can
46805         exit with status -1.
46806         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
46807
46808 2006-04-24  Karl Berry  <karl@gnu.org>
46809
46810         * config/srclist.txt (longdouble.m4): sync lost.
46811
46812 2006-04-24  Eric Blake  <ebb9@byu.net>
46813
46814         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
46815
46816 2006-04-24  Bruno Haible  <bruno@clisp.org>
46817
46818         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
46819         poll() implementation in AIX.
46820         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
46821
46822 2006-04-24  Bruno Haible  <bruno@clisp.org>
46823
46824         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
46825         assigned exactly once.
46826
46827 2006-04-23  Claudio Fontana  <claudio@gnu.org>
46828             Bruno Haible  <bruno@clisp.org>
46829
46830         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
46831         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
46832         for AM_CPPFLAGS.
46833
46834 2006-04-23  Bruno Haible  <bruno@clisp.org>
46835
46836         * modules/copy-file: Depend on unistd.
46837         * modules/execute: Likewise.
46838         * modules/fatal-signal: Likewise.
46839         * modules/findprog: Likewise.
46840         * modules/mkdtemp : Likewise.
46841         * modules/pipe: Likewise.
46842         * modules/wait-process: Likewise.
46843
46844 2006-04-23  Bruno Haible  <bruno@clisp.org>
46845
46846         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
46847         condition was already detected.
46848         Reported by Ben Pfaff <blp@cs.stanford.edu>.
46849
46850 2006-04-23  Bruno Haible  <bruno@clisp.org>
46851
46852         * lib/copy-file.c: Include <unistd.h> unconditionally.
46853         * lib/execute.c: Likewise.
46854         * lib/fatal-signal.c: Likewise.
46855         * lib/findprog.c: Likewise.
46856         * lib/mkdtemp.c: Likewise.
46857         * lib/pipe.h: Likewise.
46858         * lib/pipe.c: Likewise.
46859         * lib/wait-process.h: Likewise.
46860
46861 2006-04-23  Bruno Haible  <bruno@clisp.org>
46862
46863         * gnulib-tool (func_usage): Fix --import description. Document
46864         --update.
46865         (func_import): Create temporary file in a temporary directory, if
46866         --dry-run is specified. Silence errors from 'grep' when there are no
46867         m4 files in $m4dir.
46868         (func_create_testdir): Silence errors from 'grep' when there are no
46869         m4 files in $m4dir.
46870         Reported by Karl Berry <karl@freefriends.org>.
46871
46872 2006-04-20  Bruno Haible  <bruno@clisp.org>
46873
46874         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
46875         one argument, so that the code will be portable to Autoconf 2.60.
46876         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
46877         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
46878         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
46879
46880 2006-04-19  Derek Price  <derek@ximbiot.com>
46881             Eric Blake  <ebb9@byu.net>
46882
46883         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
46884         rather than "/full/path.h".  Update comment to match.  Shorten &
46885         generalize m4_translit call via AS_TR_CPP.
46886
46887 2006-04-19  Derek Price  <derek@ximbiot.com>
46888             Eric Blake  <ebb9@byu.net>
46889
46890         * lib/inttypes.h: Correct grammar in comment.
46891
46892 2006-04-18  Derek Price  <derek@ximbiot.com>
46893             Paul Eggert  <eggert@cs.ucla.edu>
46894
46895         * modules/inttypes: New file.
46896         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
46897
46898 2006-04-18  Derek Price  <derek@ximbiot.com>
46899             Paul Eggert  <eggert@cs.ucla.edu>
46900
46901         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
46902         New files.
46903
46904 2006-04-18  Derek Price  <derek@ximbiot.com>
46905             Paul Eggert  <eggert@cs.ucla.edu>
46906
46907         * lib/inttypes.h: New file.
46908         * lib/strtoimax.c: Assume <inttypes.h>.
46909
46910 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
46911
46912         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
46913         isn't mounted.  Problem reported by Kir Kolyshkin.
46914
46915 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
46916
46917         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
46918         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
46919         Derek R. Price.
46920         * lib/regex.h (RE_DUP_MAX): Update comment to match current
46921         implementation.
46922
46923 2006-04-12  Eric Blake  <ebb9@byu.net>
46924
46925         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
46926         is now done automatically by the corresponding Autoconf macro.
46927
46928 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
46929
46930         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
46931         time_r.h.
46932
46933 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
46934
46935         Merge regex changes from libc, removing some of our
46936         POSIX-conformance changes that were rejected and redoing them in a
46937         less-intrusive way.
46938
46939         * lib/regcomp.c (re_compile_internal, init_dfa):
46940         Length arg is now size_t, not Idx.  All uses changed.
46941         (peek_token): Forward decl now says internal_function.
46942         (__re_error_msgid, __re_error_msgid_idx):
46943         Now static rather than extern with attribute_hidden.
46944         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
46945         For some reason libc prefers K&R style defns for external functions.
46946         (regerror) [!defined _LIBC]: Likewise.
46947         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
46948         (seek_collating_symbol_entry, lookup_collation_sequence_value):
46949         (build_range_exp, build_collating_symbol):
46950         Use K&R-style defn.
46951         (re_compile_fastmap): Use '\0' to memset, not 0.
46952         (utf8_sb_map): Make the calculations more obvious.
46953         (init_dfa, parse_bracket_exp, build_charclass_op):
46954         Call calloc and cast result, as glibc does.
46955         (init_word_char, fetch_token, peek_token, peek_token_bracket):
46956         (build_range_exp, build_collating_symbol):
46957         Now internal functions.
46958
46959         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
46960
46961         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
46962         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
46963         Don't depend on VMS; depend on __VMS instead, for POSIX
46964         namespace cleanness.
46965         (regoff_t): Define to ssize_t, not long int.
46966
46967         Remove the REG_ macros named below.  Instead, make the old names
46968         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
46969         __USE_GNU_REGEX.
46970         (REG_BACKSLASH_ESCAPE_IN_LISTS):
46971         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
46972         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
46973         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
46974         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
46975         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
46976         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
46977         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
46978         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
46979         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
46980         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
46981         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
46982         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
46983         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
46984         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
46985         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
46986         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
46987         (REG_NREGS):
46988         Remove.  All uses replaced by the old RE_* names.
46989         (RE_BACKSLASH_ESCAPE_IN_LISTS):
46990         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
46991         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
46992         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
46993         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
46994         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
46995         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
46996         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
46997         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
46998         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
46999         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
47000         Don't bother having these macros be independent of each others'
47001         values, since they no longer exist in the POSIX name space.
47002
47003         Rename the following member names back to their old names,
47004         unless !__USE_GNU_REGEX.  All uses changed back.
47005         (buffer): Renamed from re_buffer.
47006         (allocated): Renamed from re_allocated.
47007         (used): Renamed from re_used.
47008         (syntax): Renamed from re_syntax.
47009         (fastmap): Renamed from re_fastmap.
47010         (translate): Renamed from re_translate.
47011         (can_be_null): Renamed from re_can_be_null.
47012         (regs_allocated): Renamed from re_regs_allocated.
47013         (fastmap_accurate): Renamed from re_fastmap_accurate.
47014         (no_sub): Renamed from re_no_sub.
47015         (not_bol): Renamed from re_not_bol.
47016         (not_eol): Renamed from re_not_eol.
47017         (newline_anchor): Renamed from re_newline_anchor.
47018         (num_regs): Renamed from rm_num_regs.
47019         (start): Renamed from rm_start.
47020         (end): Renamed from rm_end.
47021
47022         (free_state): Move up a bit.
47023
47024         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
47025         #define to be empty.
47026         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
47027         when that is what is intended.
47028         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
47029         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
47030         (MAX): New macro.
47031         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
47032         All uses changed back to re_malloc, etc.  It's now the caller's
47033         responsibility to check for overflow; all callers changed.
47034         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
47035         (re_x2nrealloc): Remove.
47036         (free_state): Remove decl.
47037
47038         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
47039         (re_set_registers, re_exec):
47040         Use K&R-style defn.
47041
47042         2006-01-31  Roland McGrath  <roland@redhat.com>
47043
47044         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
47045         Reported by Mike Frysinger <vapier@gentoo.org>.
47046
47047         2006-01-15  Andreas Jaeger  <aj@suse.de>
47048
47049         [BZ #1950]
47050         * lib/regex_internal.c (re_string_reconstruct): Adjust for
47051         build_wcs_upper_buffer change.
47052         (build_wcs_upper_buffer): Change return type.
47053
47054         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
47055
47056         * lib/regex_internal.h: Include <stdint.h> if available.
47057
47058         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
47059
47060         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
47061
47062         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
47063
47064         * lib/regcomp.c: Adjust for changed secondary hash function.
47065
47066         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
47067
47068         * lib/regex.h: Pretty printing.
47069         Clean up namespace a bit.
47070
47071         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
47072
47073         * lib/regexec.c (update_cur_sifted_state, check_arrival,
47074         check_arrival_add_next_nodes): Avoid using uninitialized variable.
47075
47076         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
47077                     Ulrich Drepper  <drepper@redhat.com>
47078
47079         [BZ #1302]
47080         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
47081         changed.
47082         (bitset_word_t): Renamed from bitset_word.  All uses changed.
47083
47084         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
47085
47086         [BZ #281]
47087         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
47088         * lib/regcomp.c: Remove unnecessary uses of
47089         unsigned RE_TRANSLATE_TYPE.
47090         * lib/regex_internal.h: Likewise.
47091         * lib/regex_internal.c: Likewise.
47092         * lib/regexec.c: Likewise.
47093         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
47094
47095         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
47096
47097         * lib/regexec.c (find_recover_state): Remove unnecessary
47098         initialization.
47099         (transit_state_bkref): Make DFA a const pointer.
47100         (get_subexp): Likewise.
47101         (check_arrival): Likewise.
47102         (update_cur_sifted_state): Likewise.
47103         (re_search_internal): Likewise.
47104         (prune_impossible_nodes): Likewise.
47105         (acquire_init_state_context): Likewise.
47106         (proceed_next_node): Likewise.
47107         (set_regs): Likewise.
47108         (free_fail_stack_return): Likewise.
47109         (check_arrival_expand_ecl): Mark DFA parameter as const.
47110         (check_arrival_expand_ecl_sub): Likewise.
47111         (check_subexp_limits): Likewise.
47112         (sub_epsilon_src_nodes):  Likewise.
47113         (add_epsilon_src_nodes):  Likewise.
47114         (merge_state_array): Likewise.
47115         (update_regs): Likewise.
47116         (build_trtable): Likewise.
47117         (sift_states_backward): Mark MCTX parameter as const.
47118         (build_sifted_states): Likewise.
47119         (update_cur_sifted_state): Likewise.
47120         (sift_states_mkref): Likewise.
47121         (check_arrival_expand_ecl): Mark eclosure as const.
47122         (check_dst_limits_calc_pos_1): Likewise.
47123         * lib/regex_internal.h (re_match_context_t): Make dfa a const
47124         pointer.
47125
47126         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
47127
47128         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
47129         (transit_state_sb): Likewise.
47130         (transit_state_mb): Likewise.
47131         (sift_states_iter_mb): Likewise.
47132         (check_arrival_add_next_nodes): Likewise.
47133         (check_node_accept_bytes): Change first parameter to pointer-to-const.
47134         [_LIBC] (re_search_2_stub): Use mempcpy.
47135
47136         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
47137         mbrtowc for very simple UTF-8 case.
47138
47139         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
47140         a pointer-to-const.
47141         (re_acquire_state_context): Likewise.
47142         * lib/regex_internal.h: Adjust prototypes.
47143
47144         * lib/regex.c: Prevent using C++ compilers.
47145
47146         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
47147         (re_acquire_state_context): Likewise.
47148
47149 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47150
47151         * modules/regex (Depends-on): Add ssize_t.
47152
47153 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47154
47155         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
47156         translation table.
47157
47158 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47159
47160         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
47161
47162 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
47163             Bruno Haible  <bruno@clisp.org>
47164
47165         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
47166         <sys/types.h> and <inttypes.h>.
47167
47168 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47169
47170         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
47171         `__error_t_defined', so argp.h will not typedef the former.
47172
47173 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
47174
47175         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
47176         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
47177         glibc names.  Even if glibc is changed to conform to POSIX, the
47178         traditional names will be available anyway, since regex depends on
47179         the extensions module.  Also, fix a longstanding typo in the
47180         implementation of Spencer ERE test #75 from grep 2.3.  Problems
47181         reported by Emanuele Giaquinta.  Also, change sense of cached
47182         variable, so that the message makes sense.
47183
47184 2006-03-24  Simon Josefsson  <jas@extundo.com>
47185
47186         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
47187         including some doc fixes.
47188         (base64_encode_alloc): Fix +1 bug on allocation failures.
47189
47190 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47191
47192         * lib/base64.c (base64_encode): Do not read past end of array with
47193         unsanitized input on systems with CHAR_BIT > 8.
47194
47195 2006-03-24  Eric Blake  <ebb9@byu.net>
47196
47197         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
47198
47199 2006-03-22  Karl Berry  <karl@gnu.org>
47200
47201         * config/srclist.txt (*setenv.[ch]): get from coreutils.
47202         * config/srclistvars.sh (COREUTILS): new var.
47203
47204 2006-03-17  Jim Meyering  <jim@meyering.net>
47205
47206         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
47207         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
47208
47209 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
47210
47211         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
47212         no longer needs it.  Instead, check that regoff_t is as least
47213         as wide as ptrdiff_t.
47214
47215         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
47216         so that our regex.h stays compatible with the installed regex.
47217         This is helpful for installers who configure --without-included-regex.
47218         Problem reported by Emanuele Giaquinta.
47219
47220 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
47221
47222         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
47223         Typedef to long int, not to off_, as POSIX will likely change
47224         in that direction.
47225
47226 2006-03-15  Eric Blake  <ebb9@byu.net>
47227
47228         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
47229
47230 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
47231
47232         * lib/argp-help.c (validate_uparams): Fix typo
47233         * lib/argp-parse.c (argp_default_options): Consistently begin help
47234         messages with a lowercase letter.
47235
47236 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
47237
47238         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
47239         overrun buffers and shouldn't be used (much as gets shouldn't be
47240         used).
47241         * lib/time_r.c (asctime_r, ctime_r): Likewise.
47242
47243 2006-03-08  Simon Josefsson  <jas@extundo.com>
47244
47245         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
47246         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47247
47248 2006-03-08  Simon Josefsson  <jas@extundo.com>
47249
47250         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
47251         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47252
47253 2006-03-08  Simon Josefsson  <jas@extundo.com>
47254
47255         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
47256         signal that configure disabled the device.
47257
47258 2006-03-08  Simon Josefsson  <jas@extundo.com>
47259
47260         * build-aux/maint.mk: Fix refresh-po, to handle no translated
47261         languages.
47262
47263 2006-03-07  Simon Josefsson  <jas@extundo.com>
47264
47265         * modules/getopt (Depends-on): Add unistd.
47266
47267         * modules/unistd: New file.
47268
47269 2006-03-07  Simon Josefsson  <jas@extundo.com>
47270
47271         * modules/gc-random: New file.
47272
47273 2006-03-07  Simon Josefsson  <jas@extundo.com>
47274
47275         * m4/unistd_h.m4: New file.
47276
47277 2006-03-07  Simon Josefsson  <jas@extundo.com>
47278
47279         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
47280         test to be side-effect free by storing the result in the cache
47281         variable gl_cv_lib_readline, and moving the assignment of
47282         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
47283         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47284
47285 2006-03-07  Simon Josefsson  <jas@extundo.com>
47286
47287         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
47288         error on missing devices (the functions will return an error).
47289
47290         * m4/gc.m4: Move random stuff to gc-random.m4
47291
47292 2006-03-07  Simon Josefsson  <jas@extundo.com>
47293
47294         * lib/unistd_.h: New file.
47295
47296 2006-03-07  Simon Josefsson  <jas@extundo.com>
47297
47298         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
47299
47300 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
47301
47302         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
47303         Problem reported by Juan Manuel Guerrero.
47304
47305 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
47306
47307         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
47308         the unistd module.
47309         * lib/getlogin_r.c: Likewise.
47310         * lib/getlogin_r.h: Likewise.
47311         * lib/glob.c: Likewise.
47312         * lib/pagealign_alloc.c: Likewise.
47313         * lib/unistd_.h: Remove; no longer needed.
47314
47315 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
47316
47317         * MODULES.html.sh (Support for systems lacking POSIX:2001):
47318         Add unistd.
47319         * modules/c-stack (Depends-on): Add unistd.
47320         * modules/getlogin_r: Likewise.
47321         * modules/glob: Likewise.
47322         * modules/pagealign_alloc: Likewise.
47323         * modules/unistd (Files): Remove lib/unistd_.h.
47324         (EXTRA_DIST): Remove.
47325         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
47326         need unistd_.h.
47327         (MOSTLYCLEANFILES): Remove unistd.h-t.
47328
47329 2006-03-03  Simon Josefsson  <jas@extundo.com>
47330
47331         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
47332
47333 2006-03-03  Simon Josefsson  <jas@extundo.com>
47334
47335         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
47336         libidn and bison.
47337
47338 2006-03-03  Simon Josefsson  <jas@extundo.com>
47339
47340         * build-aux/maint.mk: Add indent target.
47341
47342 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
47343
47344         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
47345         our replacement poll.h in any case, to avoid a differing
47346         declaration from a system header.  Seen on AIX.
47347
47348 2006-03-01  Simon Josefsson  <jas@extundo.com>
47349
47350         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
47351         <kasal@ucw.cz>.
47352
47353 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
47354
47355         * modules/gettime (Depends-on): Add extensions module.
47356         * modules/nanosleep (Depends-on): Likewise.
47357         * modules/settime (Depends-on): Likewise.
47358
47359 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
47360
47361         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
47362         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
47363         pedantically.
47364         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
47365         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
47366
47367         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
47368         not "==".  Reported by Ralf Wildenhues.
47369
47370 2006-03-01  Karl Berry  <karl@gnu.org>
47371
47372         * doc/Copyright/request-*: new files, synced from gnuorg.
47373
47374 2006-03-01  Karl Berry  <karl@gnu.org>
47375
47376         * config/srclist.txt (Copyright/*): new entries.
47377
47378 2006-02-28  Simon Josefsson  <jas@extundo.com>
47379
47380         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
47381
47382 2006-02-27  Simon Josefsson  <jas@extundo.com>
47383
47384         * lib/base64.h: Indent #define's.  From Jim Meyering
47385         <jim@meyering.net>.
47386
47387 2006-02-27  Jim Meyering  <jim@meyering.net>
47388
47389         Revert the change of 2006-02-24, so these files can continue
47390         to be sync'd from gettext.
47391         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
47392         of `config.h'.
47393
47394 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
47395
47396         * modules/intprops: New file.
47397         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
47398         Add intprops.
47399         * modules/getloadavg (Files): Remove lib/intprops.h.
47400         (Depends-on): Add intprops.
47401         * modules/human: Likewise.
47402         * modules/inttostr: Likewise.
47403         * modules/openat: Likewise.
47404         * modules/sig2str: Likewise.
47405         * modules/userspec: Likewise.
47406         * modules/utimecmp: Likewise.
47407         * modules/xnanosleep: Likewise.
47408         * modules/xstrtol: Likewise.
47409
47410 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
47411
47412         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
47413         * modules/lock-tests (TESTS): Use $(EXEEXT).
47414         * modules/tls-tests: Likewise.
47415         * modules/argp-tests: Likewise.
47416         (check_PROGRAMS): New var, replacing...
47417         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
47418
47419 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47420
47421         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
47422         `config.h'.
47423
47424 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
47425
47426         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
47427
47428 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47429
47430         Sync from coreutils.
47431         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
47432         gl_CHDIR_SAFER.
47433
47434 2006-02-22  Jim Meyering  <jim@meyering.net>
47435
47436         Sync from coreutils.
47437         * m4/chdir-safer.m4: New file.
47438
47439 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
47440
47441         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
47442         AT_FDCWD exceeds INT_MAX.
47443         * lib/openat.h (AT_FDCWD): Likewise.
47444
47445 2006-02-17  Eric Blake  <address@hidden>
47446
47447         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
47448
47449 2006-02-16  Simon Josefsson  <jas@extundo.com>
47450
47451         * modules/getaddrinfo (Depends-on): Add sys_socket.
47452
47453 2006-02-15  Simon Josefsson  <jas@extundo.com>
47454
47455         * build-aux/maint.mk: Add dsyntax-check rule.
47456
47457 2006-02-15  Eric Blake  <ebb9@byu.net>
47458
47459         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
47460         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
47461         'present but cannot compile' warnings on cygwin.
47462         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
47463         use ws2tcpip.h if sys/socket.h works.
47464         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
47465         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
47466
47467 2006-02-14  Simon Josefsson  <jas@extundo.com>
47468
47469         * modules/maintainer-makefile (Files): Rename.
47470
47471         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
47472         and (the local) Makefile.cfg to maint-cfg.mk.
47473
47474         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
47475         to the latter.
47476
47477         * modules/maintainer-makefile: New module.
47478
47479         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
47480         severaly stripped to make it possible to build it up from scratch
47481         with reliable tests.
47482
47483         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
47484         fixes to permit overriding the default actions when configure and
47485         makefile are not available.
47486
47487 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
47488
47489         Sync from coreutils.
47490         * modules/lstat (Depends-on): Don't depend on xalloc.
47491         (License): Change from GPL to LGPL, since this is now simply a
47492         replacement for a libc function.
47493
47494 2006-02-14  Jim Meyering  <jim@meyering.net>
47495
47496         Sync from coreutils.
47497
47498         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
47499         failure on deficient systems, and simplify gnulib lgpl dependencies.
47500         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
47501         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
47502
47503         * lib/xalloc-die.c: Remove unused definition of N_.
47504
47505 2006-02-14  Jim Meyering  <jim@meyering.net>
47506
47507         Sync from coreutils.
47508         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
47509         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
47510         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
47511         double-quote uses of that variable, to accommodate the rare case in
47512         which getmntent is available in none of the libraries checked.  This
47513         happens at least on FreeBSD 5.0.
47514
47515 2006-02-13  Simon Josefsson  <jas@extundo.com>
47516
47517         * gnulib-tool (Usage): Fix --import, from
47518         karl@freefriends.org (Karl Berry).
47519
47520 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
47521
47522         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
47523
47524 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
47525
47526         * lib/argp-namefrob.h: Restore changes accidentally lost during the
47527         "autoupdate" on 2005-12-12.
47528
47529 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
47530
47531         * modules/closeout (Depends-on): Remove atexit.
47532
47533 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
47534
47535         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
47536         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
47537
47538 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
47539
47540         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
47541         __EXTENSIONS__ if this causes compilation to fail.  Problem
47542         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
47543         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
47544
47545 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
47546
47547         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
47548         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
47549         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
47550         All uses changed.
47551
47552 2006-01-26  Simon Josefsson  <jas@extundo.com>
47553
47554         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
47555         prototype is visible on mingw32.
47556
47557         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
47558         for mingw32.
47559
47560         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
47561         mingw32).
47562
47563 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
47564
47565         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
47566         attempt to open for write; this always fails, at least on POSIX
47567         hosts.  This reinstates the 2006-01-09 change, which was
47568         inadvertently removed.
47569
47570 2006-01-26  Bruno Haible  <bruno@clisp.org>
47571
47572         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
47573         Reported by Paul Eggert.
47574
47575 2006-01-26  Bruno Haible  <bruno@clisp.org>
47576             Paul Eggert  <eggert@cs.ucla.edu>
47577
47578         * lib/stdbool_.h (_Bool)
47579         [(! (defined __cplusplus || defined __BEOS__)
47580           && !defined __GNUC__
47581           && !(defined __HP_cc || defined __xlc__
47582                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
47583                || defined __sgi))]:
47584         #define to signed char in these cases too; this simplifies
47585         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
47586         etc., separately) and makes it more conservative.
47587
47588 2006-01-25  Simon Josefsson  <jas@extundo.com>
47589
47590         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
47591         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
47592         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
47593
47594 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
47595
47596         * lib/argp-namefrob.h: Bugfix. Remove stray #
47597
47598 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
47599
47600         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
47601         so that we test the test.
47602         Check for yet another HP-UX cc bug involving *bool |= bool.
47603
47604 2006-01-25  Karl Berry  <karl@gnu.org>
47605
47606         * config/srclist.txt (vasnprintf.c): sync lost.
47607
47608 2006-01-25  Jim Meyering  <jim@meyering.net>
47609
47610         Sync from the stable (b5) branch of coreutils:
47611
47612         * lib/fts.c (fts_children): Don't let close() clobber errno from
47613         failed fchdir().
47614
47615         * lib/fts.c (fts_stat): When following a symlink-to-directory,
47616         don't necessarily interpret stat-fails+lstat-succeeds as indicating
47617         a dangling symlink.  That can also happen at least for ELOOP.
47618         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
47619         FYI, this bug predates the inclusion of fts.c in coreutils.
47620
47621         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
47622         in their own block, so pre-c99 compilers don't object.
47623
47624         Avoid the double-free (first in fts_read, second in fts_close) that
47625         would occur when an `active' directory is made inaccessible (e.g.,
47626         via chmod a-x) during a traversal.
47627         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
47628         before returning.  Reproduce this failure by
47629         mkdir -p a/b; cd a; chmod a-x . b
47630         Reported by Stavros Passas.
47631
47632 2006-01-25  Jim Meyering  <jim@meyering.net>
47633
47634         * lib/fileblocks.c: Remove more useless parentheses.
47635         * lib/readutmp.h: Likewise.
47636
47637 2006-01-25  Bruno Haible  <bruno@clisp.org>
47638
47639         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
47640         warnings.
47641         Reported by Paul Eggert.
47642
47643 2006-01-25  Bruno Haible  <bruno@clisp.org>
47644
47645         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
47646         rid of a trap command. For Solaris sh.
47647         Reported by Mark D. Baushke <mdb@gnu.org>.
47648
47649 2006-01-24  Simon Josefsson  <jas@extundo.com>
47650
47651         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
47652         Bruno.
47653
47654 2006-01-24  Karl Berry  <karl@gnu.org>
47655
47656         * config/srclist.txt (argp-namefrob.h): sync lost.
47657
47658 2006-01-24  Jim Meyering  <jim@meyering.net>
47659
47660         * modules/openat (Files): Add lib/intprops.h.
47661         From Mark D. Baushke.
47662
47663 2006-01-24  Jim Meyering  <jim@meyering.net>
47664
47665         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
47666         Reported by Mark D. Baushke.
47667
47668 2006-01-24  Jim Meyering  <jim@meyering.net>
47669
47670         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
47671
47672 2006-01-24  Bruno Haible  <bruno@clisp.org>
47673
47674         * modules/strnlen (Maintainer): Change from glibc to all.
47675
47676 2006-01-24  Bruno Haible  <bruno@clisp.org>
47677
47678         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
47679         Patch by Paul Eggert.
47680
47681 2006-01-24  Bruno Haible  <bruno@clisp.org>
47682
47683         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
47684         already has it.
47685         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
47686         2005-11-26.
47687
47688         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
47689         'signed char' to avoid problems with the built-in _Bool type.
47690         Reported by Paul Eggert on 2005-11-26.
47691
47692 2006-01-24  Bruno Haible  <bruno@clisp.org>
47693
47694         * gnulib-tool (func_import): Avoid constructing complicated sed
47695         expressions inside backquote.
47696         Report and solution by Mark D. Baushke <mdb@gnu.org>.
47697
47698 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
47699
47700         These changes imported from libc.
47701         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
47702         test and two separate function calls.
47703         * lib/strndup.c (__strndup): Add libc_hidden_def.
47704
47705 2006-01-23  Simon Josefsson  <jas@extundo.com>
47706
47707         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
47708         Remove the test_*_SOURCES variable: automake infers it by default.
47709         * modules/tls-tests: Likewise.
47710
47711 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
47712
47713         Work around porting bugs reported by Dieter in
47714         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
47715         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
47716         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
47717         Include "getopt.h" first, to check interface.
47718         (getenv): Declare only if defined HAVE_DECL_GETENV &&
47719         !HAVE_DECL_GETENV.
47720         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
47721         (__strndup): Revert to K&R-style function dfns, the glibc style.
47722         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
47723         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
47724         Include strnlen.h first, to get prototype properly.
47725         (strnlen): Renamed from __strnlen.
47726         Remove weak alias.
47727
47728 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
47729
47730         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
47731
47732 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
47733
47734         * config/srclist.txt: Adjust to reflect glibc reorganization.
47735         This affects only comments.
47736
47737 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
47738
47739          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
47740          Reported by Bruce Korb <bkorb@gnu.org>.
47741
47742 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
47743
47744         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
47745         to pacify gcc -Wswitch-default.
47746
47747 2006-01-22  Bruno Haible  <bruno@clisp.org>
47748
47749         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
47750         temporary buffer for sprintf, take into account the precision also
47751         for 'd', 'i', 'u', 'o', 'x', 'X'.
47752
47753 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
47754
47755         * modules/argp-tests: New module
47756         * tests/test-argp.c: New file
47757         * tests/test-argp-2.sh: New file
47758
47759 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
47760
47761         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
47762         (__argp_base_name): Removed
47763         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
47764         typo.
47765         (__argp_base_name): Provide macro definition or extern declaration
47766         depending on the configuration
47767
47768 2006-01-20  Simon Josefsson  <jas@extundo.com>
47769
47770         * modules/inet_ntop (Depends-on): Depend on sys_socket.
47771
47772 2006-01-20  Simon Josefsson  <jas@extundo.com>
47773
47774         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
47775
47776 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
47777
47778         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
47779         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
47780         Suggested by Bruno Haible.
47781
47782 2006-01-20  Karl Berry  <karl@gnu.org>
47783
47784         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
47785         until changes propagate, I guess.
47786
47787 2006-01-19  Simon Josefsson  <jas@extundo.com>
47788
47789         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
47790
47791 2006-01-19  Simon Josefsson  <jas@extundo.com>
47792
47793         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
47794
47795 2006-01-19  Simon Josefsson  <jas@extundo.com>
47796
47797         * gnulib-tool: Set check_PROGRAMS.
47798
47799         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
47800         modules/des-tests, modules/gc-arcfour-tests,
47801         modules/gc-arctwo-tests, modules/gc-des-tests,
47802         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
47803         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
47804         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
47805         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
47806         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
47807         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
47808         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
47809         test_*_SOURCES.
47810
47811 2006-01-18  Simon Josefsson  <jas@extundo.com>
47812
47813         * modules/socklen (Depends-on): Depend on sys_socket.
47814
47815 2006-01-18  Simon Josefsson  <jas@extundo.com>
47816
47817         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
47818         modules/des-tests, modules/gc-arcfour-tests,
47819         modules/gc-arctwo-tests, modules/gc-des-tests,
47820         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
47821         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
47822         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
47823         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
47824         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
47825         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
47826         $(EXEEXT) to automake TESTS variable, for mingw32.
47827
47828 2006-01-17  Simon Josefsson  <jas@extundo.com>
47829
47830         * modules/socklen (Include): Need sys/socket.h.
47831
47832 2006-01-17  Bruno Haible  <bruno@clisp.org>
47833
47834         * modules/ssize_t (Include): Add <sys/types.h>.
47835
47836 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
47837
47838         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
47839         it's not portable and it doesn't work with cross-compiles.
47840         Problem reported by Bruno Haible.  Fix missing-$ typo in
47841         'test "gl_cv_ignore_unused_libraries" ...' that prevented
47842         -zignore from being used with Sun's C compiler.
47843
47844 2006-01-12  Simon Josefsson  <jas@extundo.com>
47845
47846         * lib/base64.c: Fix warning, reported by Bruno Haible
47847         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
47848
47849 2006-01-12  Bruno Haible  <bruno@clisp.org>
47850
47851         * modules/ldd: New file.
47852         * build-aux/ldd.sh.in: New file.
47853         * MODULES.html.sh (Support for building libraries and executables): Add
47854         ldd.
47855
47856 2006-01-12  Bruno Haible  <bruno@clisp.org>
47857
47858         * m4/ldd.m4: New file.
47859
47860 2006-01-12  Bruno Haible  <bruno@clisp.org>
47861
47862         * gnulib-tool (func_import, func_create_testdir): Don't go into an
47863         endless loop while replacing $auxdir with build-aux.
47864
47865 2006-01-11  Simon Josefsson  <jas@extundo.com>
47866
47867         * lib/stdint_.h (SIZE_MAX): Add missing (.
47868
47869 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
47870
47871         Sync from coreutils.
47872         * lib/md5.c: Fix commentary typos.
47873         (alignof, UNALIGNED_P): No need for a GCC-specific version.
47874         * lib/md5.h (__attribute__): Remove; unused.
47875         * lib/sha1.c: Fix commentary to match md5 better.
47876         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
47877         so that we don't need to worry about alignment.  All uses changed.
47878         This merges the 2005-10-28 md5 change into sha1.
47879
47880 2006-01-11  Jim Meyering  <jim@meyering.net>
47881
47882         Sync from coreutils.
47883         * lib/md5.c (OP): Fix spacing.
47884
47885 2006-01-11  Bruno Haible  <bruno@clisp.org>
47886
47887         Ensure automatic ordering between gl_LOCK and gl_ARGP.
47888         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
47889         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
47890
47891 2006-01-11  Bruno Haible  <bruno@clisp.org>
47892
47893         Ensure automatic ordering between gl_LOCK and gl_ARGP.
47894         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
47895         the "early" section as well.
47896
47897 2006-01-11  Bruno Haible  <bruno@clisp.org>
47898
47899         Avoid "ar: no archive members specified" error on MacOS X.
47900         * gnulib-tool (func_modules_add_dummy): New function.
47901         (func_import, func_create_testdir): Invoke it.
47902
47903 2006-01-11  Bruno Haible  <bruno@clisp.org>
47904
47905         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
47906         with $auxdir in AC_CONFIG_FILES statements.
47907
47908 2006-01-11  Bruno Haible  <bruno@clisp.org>
47909
47910         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
47911         Initialize also noinst_HEADERS to empty.
47912
47913 2006-01-11  Bruno Haible  <bruno@clisp.org>
47914
47915         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
47916         variables.
47917         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
47918         autoreconf.
47919
47920 2006-01-11  Bruno Haible  <bruno@clisp.org>
47921
47922         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
47923         overridable by the user.
47924         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47925
47926 2006-01-10  Simon Josefsson  <jas@extundo.com>
47927
47928         * modules/sys_socket: New file.
47929
47930 2006-01-10  Simon Josefsson  <jas@extundo.com>
47931
47932         * m4/sys_socket_h.m4: New file.
47933
47934 2006-01-10  Simon Josefsson  <jas@extundo.com>
47935
47936         * lib/socket_.h: New file.
47937
47938 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
47939
47940         * modules/readutmp (Maintainer): Add myself.
47941
47942 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
47943
47944         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
47945         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
47946         People who are still concerned with buggy memcmp implementations
47947         can invoke gl_FUNC_MEMCMP themselves.
47948
47949 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
47950
47951         * lib/regex_internal.h (BITSET_WORD_BITS):
47952         Work around a bug in 64-bit PGC (before version 6.1-2), where the
47953         preprocessor mishandles large unsigned values as if they were signed.
47954         Problem reported by Claudio Fontana in
47955         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
47956
47957 2006-01-10  Jim Meyering  <jim@meyering.net>
47958
47959         Avoid the double-free (first in fts_read, second in fts_close) that
47960         would occur when an `active' directory is made inaccessible (e.g.,
47961         via chmod a-x) during a traversal.
47962         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
47963         before returning.  Reproduce this failure by
47964         mkdir -p a/b; cd a; chmod a-x . b
47965         Reported by Stavros Passas.
47966
47967         Sync from coreutils.
47968         * lib/sha1.c: Tweak grammar in a comment.
47969
47970 2006-01-10  Jim Meyering  <jim@meyering.net>
47971
47972         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
47973         Patch by Joerg Sonnenberger.
47974
47975 2006-01-10  Bruno Haible  <bruno@clisp.org>
47976
47977         * modules/readutmp: Depend on module free.
47978         * modules/strtok_r: Depend on module restrict.
47979
47980 2006-01-10  Bruno Haible  <bruno@clisp.org>
47981
47982         * modules/gettext (configure.ac): Add an invocation of
47983         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
47984
47985 2006-01-10  Bruno Haible  <bruno@clisp.org>
47986
47987         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
47988         Reported by Werner Lemberg <wl@gnu.org>.
47989
47990 2006-01-10  Bruno Haible  <bruno@clisp.org>
47991
47992         * lib/localcharset.c: Update from GNU gettext.
47993
47994 2006-01-10  Bruno Haible  <bruno@clisp.org>
47995
47996         * lib/argp.h (__const): Remove macro. Use const instead.
47997         * lib/argp-fmtstream.h (__const): Likewise.
47998         * lib/glob_.h (__const): Remove macro.
47999         * lib/glob-libc.h: Use const instead of __const.
48000
48001 2006-01-10  Bruno Haible  <bruno@clisp.org>
48002
48003         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
48004         variable.
48005         Needed to avoid an automake error regarding the 'gettext' module.
48006
48007 2006-01-09  Simon Josefsson  <jas@extundo.com>
48008
48009         * modules/inet_ntop (Depends-on): Add restrict.
48010
48011 2006-01-09  Simon Josefsson  <jas@extundo.com>
48012
48013         * modules/gc-rijndael-tests (License): Put under LGPL.
48014
48015         * modules/gc-des-tests (License): Likewise.
48016
48017         * modules/gc-arcfour-tests (License): Likewise.
48018
48019         * modules/gc-arctwo-tests (License): Likewise.
48020
48021         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
48022
48023         * modules/gc-hmac-sha1-tests (Files): Likewise.
48024
48025         * modules/gc-hmac-md5-tests (License): Likewise.
48026
48027         * modules/gc-sha1-tests (License): Likewise.
48028
48029         * modules/gc-md5-tests (License): Likewise.
48030
48031         * modules/gc-md4-tests (License): Likewise.
48032
48033         * modules/gc-md2-tests (License): Likewise.
48034
48035         * modules/gc-tests (License): Likewise.
48036
48037         * modules/des-tests (License): Likewise.
48038
48039         * modules/md4-tests (License): Likewise.
48040
48041         * modules/md2-tests (License): Likewise.
48042
48043 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48044
48045         Sync from coreutils:
48046
48047         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
48048         * modules/lib-ignore: New file.
48049         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
48050         chdir-safer.m4, lchmod.m4.
48051         * modules/openat: Add mkdirat.c, openat-priv.h.
48052
48053 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48054
48055         Sync from coreutils.
48056         * m4/lib-ignore.m4: New file.
48057         * m4/lchmod.m4: New file.
48058
48059 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48060
48061         Sync from coreutils.
48062         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
48063         for write access: POSIX says that must fail.
48064         * lib/fts.c (diropen): Likewise.
48065         * lib/save-cwd.c (save_cwd): Likewise.
48066         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
48067         well, for minor improvements on hosts that lack O_DIRECTORY.
48068         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
48069         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
48070         Fall back on chown if open failed with EACCES.
48071
48072         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
48073         Report an error at compile-time if only a 1-second nominal clock
48074         resolution is found.
48075
48076         * lib/lchmod.h: New file.
48077         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
48078         (make_dir_parents): Use lchown rather than chown, and
48079         lchmod rather than chmod.
48080
48081         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
48082         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
48083         "proc" reported by n0dalus.
48084
48085         * lib/mountlist.c: Include <limits.h>.
48086         (dev_from_mount_options)
48087         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
48088         New function.  It no longer assumes "dev=" has the System V meaning
48089         on Linux (since it doesn't).  It also parses "dev=" more carefully.
48090         (read_file_system_list)
48091         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
48092         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
48093         dev= in that case.
48094
48095         * lib/posixtm.h (PDS_PRE_2000): New macro.
48096         * lib/posixtm.c (year): Arg is now syntax_bits rather than
48097         allow_century.  All usages changed.  Reject dates outside the range
48098         1969-1999 if PDS_PRE_2000 is used.
48099
48100 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48101
48102         Sync from coreutils.
48103         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
48104         (Time of day items): Mention the possibility of leap seconds.
48105         Problem reported by Dr. David Alan Gilbert.
48106
48107 2006-01-09  Jim Meyering  <jim@meyering.net>
48108
48109         Sync from coreutils.
48110
48111         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
48112
48113         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
48114
48115         * lib/modechange.c (mode_compile): Reject an invalid mode string
48116         that starts with an octal digit.  From Andreas Gruenbacher.
48117
48118         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
48119         and dup to open_safer and dup_safer, respectively.
48120         (openat_permissive): Fix typo in comment.
48121
48122         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
48123         "gettext.h"; either no longer needed or are guaranteed by openat.h.
48124         (_): Remove; no longer needed.
48125         (openat): Renamed from rpl_openat; no need for rpl_openat
48126         since openat.h renames openat for us.
48127         Replace most of the body with a call to openat_permissive,
48128         to avoid duplicate code.
48129         Port to (probably hypothetical) environments were mode_t is
48130         wider than int.
48131         (openat_permissive): Require mode arg, so that we can check
48132         types better.  Put it just after flags.  Change cwd failure
48133         indicator from pointer-to-bool to pointer-to-errno-value.
48134         All callers changed.
48135         Invoke openat_save_fail and/or openat_restore_fail if
48136         cwd_errno is null, so that openat can call us.
48137         (openat_permissive, fdopendir, fstatat, unlinkat):
48138         Simplify errno handling to avoid some duplicate code,
48139         as it's OK to set errno on success.
48140         * lib/openat.h: Revamp code so that function macros depend on
48141         __OPENAT_PREFIX only, not also on AT_FDCWD.
48142         (openat_ro): Remove.  Caller changed to use openat_permissive.
48143         (openat_permissive): Now a macro, if not a function.
48144         (openat_restore_fail, openat_save_fail): Now always functions,
48145         since mkdirat needs them even if __OPENAT_PREFIX is defined.
48146
48147         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
48148         and openat.c.
48149         * lib/mkdirat.c: Include openat-priv.h.
48150         Remove definitions of macros defined therein.
48151         * lib/openat.c: Likewise.
48152
48153         * lib/mkdirat.c (mkdirat): New file and function.
48154         * lib/openat.h (mkdirat): Declare.
48155
48156         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
48157
48158         * lib/openat.h (openat_permissive): Declare.
48159         (openat_ro): Define.
48160
48161         * lib/openat.c (EXPECTED_ERRNO): New macro.
48162         (openat_permissive): New function -- used in remove.c rewrite.
48163         (all functions): Set errno just before returning, only if there
48164         was an actual failure.
48165         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
48166
48167         Emulate openat-family functions using Linux's procfs, if possible.
48168         Idea and some code based on Ulrich Drepper's glibc changes.
48169
48170         * lib/openat.c: (BUILD_PROC_NAME): New macro.
48171         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
48172         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
48173         before falling back on save_cwd and restore_cwd.
48174         (fdopendir, fstatat, unlinkat): Likewise.
48175
48176         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
48177         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
48178
48179         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
48180         as second argument to va_arg.  Otherwise, some versions of gcc
48181         warn that `if this code is reached, the program will abort'.
48182
48183 2006-01-09  Jim Meyering  <jim@meyering.net>
48184
48185         Sync from coreutils.
48186         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
48187         Require openat-priv.h.
48188
48189 2006-01-09  Bruno Haible  <bruno@clisp.org>
48190
48191         * modules/strnlen (Include): Use strnlen.h.
48192
48193 2006-01-09  Bruno Haible  <bruno@clisp.org>
48194
48195         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
48196
48197 2006-01-09  Bruno Haible  <bruno@clisp.org>
48198
48199         * lib/sysexit_.h (EX_OK): New macro.
48200         Suggested by Martin Lambers <marlam@marlam.de>.
48201
48202 2006-01-09  Bruno Haible  <bruno@clisp.org>
48203
48204         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
48205         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
48206
48207 2006-01-09  Bruno Haible  <bruno@clisp.org>
48208
48209         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
48210         numbers.
48211
48212 2006-01-09  Bruno Haible  <bruno@clisp.org>
48213
48214         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
48215         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
48216         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
48217         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
48218
48219 2006-01-09  Bruno Haible  <bruno@clisp.org>
48220
48221         * build-aux/javacomp.sh.in: New file, moved from lib/.
48222         * modules/javacomp-script (Files): Update.
48223         (configure.ac): Add AC_CONFIG_FILES invocation.
48224         (EXTRA_DIST): Remove variable.
48225
48226         * build-aux/javaexec.sh.in: New file, moved from lib/.
48227         * modules/javaexec (Files): Update.
48228         (configure.ac): Add AC_CONFIG_FILES invocation.
48229         (EXTRA_DIST): Remove javaexec.sh.in.
48230
48231         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
48232         * modules/csharpcomp-script (Files): Update.
48233         (configure.ac): Add AC_CONFIG_FILES invocation.
48234         (EXTRA_DIST): Remove variable.
48235
48236         * build-aux/csharpexec.sh.in: New file, moved from lib/.
48237         * modules/csharpexec (Files): Update.
48238         (configure.ac): Add AC_CONFIG_FILES invocation.
48239         (EXTRA_DIST): Remove csharpexec.sh.in.
48240
48241 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
48242
48243         Sync from coreutils.
48244
48245         Add POSIX ACL support
48246         * lib/acl.h (copy_acl, set_acl): Add declarations.
48247         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
48248         systems other than Linux.
48249         (chmod_or_fchmod): New function: use fchmod when possible,
48250         and chmod otherwise.
48251         (file_has_acl): Add a POSIX ACL implementation, with a
48252         Linux-specific subcase.
48253         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
48254         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
48255         acls are unsupported.
48256         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
48257         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
48258         are unsupported.
48259
48260 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
48261
48262         Sync from coreutils.
48263         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
48264
48265 2006-01-07  Bruno Haible  <bruno@clisp.org>
48266
48267         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
48268         gl_EARLY.
48269
48270 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
48271
48272         * lib/strftime.c (tzname): Don't declare if it is already #defined.
48273         Problem reported for Mingw by Mark Junker.
48274
48275 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
48276
48277         * README: Gnulib normally doesn't generate a tarball.
48278
48279 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
48280
48281         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
48282         long int, not int, for nanosecond counts, so that people who are
48283         used to POSIX struct timespec won't be surprised.  Reported by Jim
48284         Meyering.
48285
48286 2005-12-28  Bruno Haible  <bruno@clisp.org>
48287
48288         * build-aux/config.rpath: Update from GNU gettext.
48289
48290 2005-12-16  Jim Meyering  <jim@meyering.net>
48291
48292         * modules/fprintftime: New module.
48293         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
48294
48295 2005-12-16  Jim Meyering  <jim@meyering.net>
48296
48297         * m4/fprintftime.m4: New file.
48298
48299 2005-12-16  Jim Meyering  <jim@meyering.net>
48300
48301         * lib/fprintftime.c, lib/fprintftime.h: New files.
48302
48303 2005-12-15  Simon Josefsson  <jas@extundo.com>
48304
48305         * modules/socklen (configure.ac): Fix M4 macro name, to align with
48306         new m4/socklen.m4.
48307
48308 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
48309
48310         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
48311         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
48312
48313 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
48314
48315         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
48316         * lib/argp-help.c (fill_in_uparams): Check if the constructed
48317         struct uparams is valid. Fall back to the default values if it is
48318         not.
48319
48320 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
48321
48322         * modules/argp (Files): Add argp-pin.c
48323         (Depends-on): dirname
48324         (lib_SOURCES): Add argp-pin.c
48325
48326 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
48327
48328         * m4/argp.m4:  Check if program_invocation_name and
48329         program_invocation_short_name are declared and define appropriate
48330         macros if they are not.
48331
48332 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
48333
48334         * lib/argp-help.c (__argp_base_name): New function
48335         (__argp_short_program_name): Rewrite using __argp_base_name
48336         * lib/argp-namefrob.h: Define program_invocation_name and
48337         program_invocation_short_name if requested
48338         (__argp_base_name): Add prototype
48339         * lib/argp-parse.c (argp_def): Use gettext wrappers
48340         (argp_default_parser): Use __argp_base_name
48341         * lib/argp-pin.c: New file. Defines program_invocation_name and
48342         program_invocation_short_name on systems that lack them.
48343
48344 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
48345
48346         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
48347         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
48348         porting problem reported by Georg Schwarz in
48349         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
48350
48351 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
48352
48353         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
48354         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
48355         porting problem reported by Georg Schwarz in
48356         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
48357
48358 2005-12-05  Bruno Haible  <bruno@clisp.org>
48359
48360         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
48361         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
48362         Reported by Mark Junker <mjscod@gmx.de>.
48363
48364 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
48365
48366         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
48367         Use implementation from Albert Chin, with some
48368         comments/corrections by Stepan Kasal and myself.
48369
48370 2005-12-02  Bruno Haible  <bruno@clisp.org>
48371
48372         * gnulib-tool (func_import): Accept GPLed build tool modules when
48373         --lgpl is given.
48374         * modules/csharpcomp-script: New file.
48375         * modules/csharpcomp: Depend on it.
48376         * modules/javacomp-script: New file.
48377         * modules/javacomp: Depend on it.
48378         Suggested by Simon Josefsson.
48379
48380 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
48381
48382         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
48383         statement, to work around an HP-UX 10.20 compiler bug reported by
48384         Peter O'Gorman.
48385
48386 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
48387
48388         * modules/savedir (Depends-on): Add openat.
48389
48390 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
48391
48392         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
48393         (uintmax_t) [defined uintmax_t]: Do not declare.
48394         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
48395         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
48396         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
48397         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
48398         sake of portability to weird hosts that C allows (though we don't
48399         know of any practical examples).
48400
48401         * lib/savedir.h (fdsavedir): New decl.
48402         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
48403         contains most of the former guts of savedir.
48404         (savedir): Use savedirstream.
48405         Include "openat.h".
48406
48407 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
48408
48409         * modules/obstack (Files): Add m4/ulonglong.m4.
48410         Problem reported by Davide Angelocola.
48411
48412 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
48413
48414         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
48415         coreutils no longer futzes with rounding modes.
48416
48417 2005-11-14  Jim Meyering  <jim@meyering.net>
48418
48419         * lib/mkstemp-safer.c: Include <config.h>, required for possible
48420         replacement of mkstemp.
48421
48422 2005-11-10  Simon Josefsson  <jas@extundo.com>
48423
48424         * lib/readline.c: Remove EOL.
48425
48426 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
48427
48428         * modules/gethrxtime (Depends-on): Add gettime.
48429
48430 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
48431
48432         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
48433         or gettimeofday; no longer needed.
48434
48435 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
48436
48437         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
48438         time business.
48439         (gethrxtime) [! (HAVE_NANOUPTIME
48440         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
48441         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
48442         our own approximation.
48443
48444 2005-11-08  Eric Blake  <ebb9@byu.net>
48445
48446         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
48447
48448 2005-11-08  Eric Blake  <ebb9@byu.net>
48449
48450         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
48451
48452 2005-11-04  Bruno Haible  <bruno@clisp.org>
48453
48454         * gnulib-tool: Implement --update mode.
48455
48456 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
48457
48458         Fix porting problem reported by Theodoros V. Kalamatianos.
48459         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
48460         Don't assume that futimes failing means we must fail.
48461
48462 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
48463
48464         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
48465         variables to suggest the intended function of the PATH_MAX check.
48466
48467 2005-10-30  Kean Johnston  <jkj@sco.com>
48468
48469         Trivial changes to support SCO systems.
48470         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
48471         as PATH_MAX.
48472         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
48473         where __ptr is null when no I/O is pending.
48474
48475 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
48476
48477         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
48478         leave errno alone.  Problem reported by Dmitry V. Levin.
48479
48480 2005-10-28  Simon Josefsson  <jas@extundo.com>
48481
48482         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
48483         Test more.
48484
48485         * tests/test-gc-md2.c, tests/test-md2.c: New files.
48486
48487         * modules/md2, modules/md2-tests: New files.
48488
48489 2005-10-28  Simon Josefsson  <jas@extundo.com>
48490
48491         * m4/inet_ntop.m4: More tests.
48492
48493         * m4/gc-md2.m4, md2.m4: New file.
48494
48495 2005-10-28  Simon Josefsson  <jas@extundo.com>
48496
48497         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
48498         "restrict" keywords, as per POSIX.  Protect the function
48499         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
48500         Don't use K&R prototypes.  Check the sprintf return values.
48501         Re-define EAFNOSUPPORT if not present.  Indent.
48502
48503         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
48504         suggested by Bruno Haible <bruno@clisp.org>.
48505
48506         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
48507
48508         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
48509
48510         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
48511         libgcrypt).
48512
48513         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
48514
48515         * lib/md2.h, lib/md2.c: New files.
48516
48517 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
48518
48519         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
48520         errno alone.  Problem reported by Frederic Jolliton.
48521
48522 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
48523
48524         * modules/verify (License): Change from GPL to LGPL.  This is a
48525         tiny module and there are apparently near-equivalents that are
48526         under the BSD license.
48527
48528 2005-10-24  Simon Josefsson  <jas@extundo.com>
48529
48530         * modules/sha1: Relicense to LGPL.
48531
48532 2005-10-24  Simon Josefsson  <jas@extundo.com>
48533
48534         * lib/md4.h: Shrink buffer size, now that we changed the type.
48535
48536 2005-10-23  Simon Josefsson  <jas@extundo.com>
48537
48538         * gnulib-tool (func_import): Fix --tests-base.
48539
48540 2005-10-22  Simon Josefsson  <jas@extundo.com>
48541
48542         * modules/arcfour (Depends-on): Need stdint.
48543
48544 2005-10-22  Simon Josefsson  <jas@extundo.com>
48545
48546         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
48547         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
48548
48549 2005-10-22  Simon Josefsson  <jas@extundo.com>
48550
48551         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
48552         suggested by Bruno Haible <bruno@clisp.org>.
48553
48554 2005-10-22  Simon Josefsson  <jas@extundo.com>
48555
48556         * lib/crc.h: Include stddef.h, for size_t.
48557
48558 2005-10-22  Simon Josefsson  <jas@extundo.com>
48559
48560         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
48561         arcfour_context struct (simplify test vector testing in GNU
48562         Shishi).
48563
48564 2005-10-21  Simon Josefsson  <jas@extundo.com>
48565
48566         * modules/des, modules/des-tests: New files.
48567
48568         * modules/gc-des, modules/gc-des-tests: New files.
48569
48570         * tests/test-des.c, tests/test-gc-des.c: New file.
48571
48572 2005-10-21  Simon Josefsson  <jas@extundo.com>
48573
48574         * modules/arctwo, modules/arctwo-tests: New files.
48575
48576         * tests/test-arctwo.c: New file.
48577
48578         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
48579
48580         * tests/test-gc-arctwo.c: New file.
48581
48582 2005-10-21  Simon Josefsson  <jas@extundo.com>
48583
48584         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
48585         Bruno Haible <bruno@clisp.org>.
48586
48587         * m4/gc-des.m4: New file.
48588
48589 2005-10-21  Simon Josefsson  <jas@extundo.com>
48590
48591         * m4/arctwo.m4: New file.
48592
48593         * m4/gc-arctwo.m4: New file.
48594
48595 2005-10-21  Simon Josefsson  <jas@extundo.com>
48596
48597         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
48598         block.
48599
48600 2005-10-21  Simon Josefsson  <jas@extundo.com>
48601
48602         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
48603         <bruno@clisp.org>.
48604
48605         * lib/hmac-sha1.c (hmac_sha1): Likewise.
48606
48607         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
48608         Bruno Haible <bruno@clisp.org>.
48609
48610         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
48611         <bruno@clisp.org>.
48612
48613 2005-10-21  Simon Josefsson  <jas@extundo.com>
48614
48615         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
48616
48617 2005-10-21  Simon Josefsson  <jas@extundo.com>
48618
48619         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
48620
48621 2005-10-21  Simon Josefsson  <jas@extundo.com>
48622
48623         * lib/des.h, lib/des.c: New files.
48624
48625         * lib/gc-gnulib.c: Support DES.c
48626
48627 2005-10-21  Simon Josefsson  <jas@extundo.com>
48628
48629         * lib/arctwo.h, lib/arctwo.c: New files.
48630
48631         * lib/gc-gnulib.c: Support ARCTWO.
48632
48633 2005-10-21  Simon Josefsson  <jas@extundo.com>
48634
48635         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
48636         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
48637
48638 2005-10-21  Simon Josefsson  <jas@extundo.com>
48639
48640         * gnulib-tool (func_import, func_create_testdir): Define automake
48641         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
48642         Makefile.am snippet),
48643         suggested by Bruno Haible <bruno@clisp.org>.
48644
48645         * modules/gc (Makefile.am): Use it.
48646
48647 2005-10-21  Bruno Haible  <bruno@clisp.org>
48648
48649         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
48650         patch.
48651
48652 2005-10-19  Simon Josefsson  <jas@extundo.com>
48653
48654         * tests/test-gc-rijndael.c: New file.
48655
48656         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
48657
48658 2005-10-19  Simon Josefsson  <jas@extundo.com>
48659
48660         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
48661         interface too.
48662
48663 2005-10-19  Simon Josefsson  <jas@extundo.com>
48664
48665         * tests/test-gc-arcfour.c: New file.
48666
48667         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
48668
48669 2005-10-19  Simon Josefsson  <jas@extundo.com>
48670
48671         * modules/gc-md4, modules/gc-md4-tests: New file.
48672
48673         * tests/test-gc-md4.c: New file.
48674
48675 2005-10-19  Simon Josefsson  <jas@extundo.com>
48676
48677         * m4/gc-md4.m4: New file.
48678
48679 2005-10-19  Simon Josefsson  <jas@extundo.com>
48680
48681         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
48682         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
48683         <kasal@ucw.cz>.
48684
48685 2005-10-19  Simon Josefsson  <jas@extundo.com>
48686
48687         * m4/gc-arcfour.m4: New file.
48688
48689         * m4/gc-rijndael.m4: New file.
48690
48691 2005-10-19  Simon Josefsson  <jas@extundo.com>
48692
48693         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
48694
48695 2005-10-19  Simon Josefsson  <jas@extundo.com>
48696
48697         * lib/gc-gnulib.c: Support ARCFOUR.
48698
48699 2005-10-19  Simon Josefsson  <jas@extundo.com>
48700
48701         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
48702         support.
48703
48704         * lib/gc.h: Add ECB enum type.
48705
48706         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
48707
48708 2005-10-18  Simon Josefsson  <jas@extundo.com>
48709
48710         * tests/test-md5.c: New file.
48711
48712         * modules/md5-tests: New file.
48713
48714 2005-10-18  Simon Josefsson  <jas@extundo.com>
48715
48716         * tests/test-md4.c: New file.
48717
48718         * modules/md4, modules/md4-tests: New files.
48719
48720 2005-10-18  Simon Josefsson  <jas@extundo.com>
48721
48722         * m4/md4.m4: New file.
48723
48724 2005-10-18  Simon Josefsson  <jas@extundo.com>
48725
48726         * lib/md4.h, lib/md4.c: New files, based on md5.?.
48727
48728 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
48729
48730         * gnulib-tool (func_create_testdir): Omit the second check whether
48731         BUILT_SOURCES in nonempty.
48732
48733 2005-10-17  Simon Josefsson  <jas@extundo.com>
48734
48735         * tests/test-rijndael.c: New file.
48736
48737 2005-10-17  Simon Josefsson  <jas@extundo.com>
48738
48739         * modules/sha1: Depend on stdint instead of md5.
48740
48741         * modules/md5: Depend on stdint, remove uint32_t.
48742
48743 2005-10-17  Simon Josefsson  <jas@extundo.com>
48744
48745         * modules/gc-sha1-tests: New file.
48746
48747         * tests/test-gc-sha1.c: New file.
48748
48749 2005-10-17  Simon Josefsson  <jas@extundo.com>
48750
48751         * m4/md5.m4: Remove call to uint32_t.m4.
48752
48753 2005-10-17  Simon Josefsson  <jas@extundo.com>
48754
48755         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
48756
48757         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
48758         md5.h.
48759
48760         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
48761
48762         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
48763
48764 2005-10-17  Simon Josefsson  <jas@extundo.com>
48765
48766         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
48767
48768 2005-10-17  Simon Josefsson  <jas@extundo.com>
48769
48770         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
48771
48772 2005-10-17  Simon Josefsson  <jas@extundo.com>
48773
48774         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
48775
48776         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
48777
48778 2005-10-17  Bruno Haible  <bruno@clisp.org>
48779
48780         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
48781         that it can also be used in a test.
48782
48783 2005-10-16  Bruno Haible  <bruno@clisp.org>
48784
48785         * gnulib-tool (func_emit_tests_Makefile_am): Also define
48786         TESTS_ENVIRONMENT, so that individual tests can augment it.
48787
48788         * gnulib-tool (func_create_testdir): Use an intermediate target for
48789         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
48790         macros, like $(ALLOCA_H), which cannot be passed through the command
48791         line.
48792
48793 2005-10-15  Simon Josefsson  <jas@extundo.com>
48794
48795         * modules/rijndael-tests: New file.
48796
48797         * modules/rijndael: New file.
48798
48799 2005-10-15  Simon Josefsson  <jas@extundo.com>
48800
48801         * m4/rijndael.m4: New file.
48802
48803 2005-10-15  Simon Josefsson  <jas@extundo.com>
48804
48805         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
48806
48807         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
48808
48809 2005-10-14  Simon Josefsson  <jas@extundo.com>
48810
48811         * tests/test-arcfour.c: New file.
48812
48813         * modules/arcfour, modules/arcfour-tests: New files.
48814
48815 2005-10-14  Simon Josefsson  <jas@extundo.com>
48816
48817         * m4/arcfour.m4: New file.
48818
48819 2005-10-14  Simon Josefsson  <jas@extundo.com>
48820
48821         * lib/arcfour.h, lib/arcfour.c: New files.
48822
48823 2005-10-14  Roland McGrath  <roland@redhat.com>
48824
48825         Import from libc.  [BZ #1331]
48826         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
48827         macro argument.
48828         Reported by Matej Vela <vela@debian.org>.
48829
48830 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
48831
48832         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
48833         include <wchar.h>; no longer needed.
48834
48835 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
48836
48837         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
48838
48839 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
48840         and  Ulrich Drepper  <drepper@redhat.com>
48841
48842         Import from libc.
48843         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
48844         instead of inline stream orientation test and two separate
48845         function calls.  Pay no attention to USE_IN_LIBIO.
48846
48847 2005-10-13  Simon Josefsson  <jas@extundo.com>
48848
48849         * modules/gc-hmac-md5-tests: New file.
48850
48851         * tests/test-gc-hmac-sha1.c: New file.
48852
48853         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
48854
48855         * modules/gc-hmac-md5-tests: New file.
48856
48857         * tests/test-gc-md5.c: New file.
48858
48859         * modules/gc-md5-tests: New file.
48860
48861 2005-10-13  Simon Josefsson  <jas@extundo.com>
48862
48863         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
48864         Move memory allocation outside of loop.
48865
48866 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
48867
48868         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
48869         intermediate directory is in a read-only file system.  Problem
48870         reported by Eric Blake.
48871
48872 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
48873
48874         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
48875
48876 2005-10-12  Simon Josefsson  <jas@extundo.com>
48877
48878         * tests/test-hmac-sha1.c: New file.
48879
48880         * modules/hmac-sha1-tests: New file.
48881
48882         * modules/hmac-sha1: New file.
48883
48884 2005-10-12  Simon Josefsson  <jas@extundo.com>
48885
48886         * modules/gc-sha1: New file.
48887
48888 2005-10-12  Simon Josefsson  <jas@extundo.com>
48889
48890         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
48891
48892         * tests/test-gc-pbkdf2-sha1.c: New file.
48893
48894 2005-10-12  Simon Josefsson  <jas@extundo.com>
48895
48896         * modules/gc-md5, modules/gc-hmac-md5: New files.
48897
48898         * modules/gc (Files): Remove md5, memxor and hmac files.
48899
48900 2005-10-12  Simon Josefsson  <jas@extundo.com>
48901
48902         * m4/gc-pbkdf2-sha1.m4: New file.
48903
48904         * m4/gc-hmac-sha1.m4: New file.
48905
48906         * m4/gc-sha1: New file.
48907
48908         * m4/hmac-sha1.m4: New file.
48909
48910 2005-10-12  Simon Josefsson  <jas@extundo.com>
48911
48912         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
48913
48914         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
48915
48916 2005-10-12  Simon Josefsson  <jas@extundo.com>
48917
48918         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
48919         suggested by Bruno Haible <bruno@clisp.org>.
48920
48921 2005-10-12  Simon Josefsson  <jas@extundo.com>
48922
48923         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
48924
48925 2005-10-12  Simon Josefsson  <jas@extundo.com>
48926
48927         * lib/gc-pbkdf2-sha1.c: New file.
48928
48929         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
48930
48931 2005-10-12  Simon Josefsson  <jas@extundo.com>
48932
48933         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
48934
48935         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
48936
48937 2005-10-12  Simon Josefsson  <jas@extundo.com>
48938
48939         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
48940         GC_USE_HMAC_MD5, respectively.
48941
48942         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
48943         (gc_md5): Fix typo.
48944
48945         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
48946
48947         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
48948
48949         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
48950
48951 2005-10-12  Bruno Haible  <bruno@clisp.org>
48952
48953         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
48954         Reported by Stepan Kasal <kasal@ucw.cz>.
48955
48956 2005-10-11  Simon Josefsson  <jas@extundo.com>
48957
48958         * tests/test-crc.c: New file.
48959
48960         * modules/crc, modules/crc-tests: New files.
48961
48962 2005-10-11  Simon Josefsson  <jas@extundo.com>
48963
48964         * m4/crc.m4: New file.
48965
48966 2005-10-11  Simon Josefsson  <jas@extundo.com>
48967
48968         * lib/gc.h: Add gc_hash and gc_hash_buffer.
48969
48970         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
48971
48972         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
48973
48974 2005-10-11  Simon Josefsson  <jas@extundo.com>
48975
48976         * lib/crc.h, lib/crc.c: New files.
48977
48978         * lib/gc.h (gc_hash_buffer): Add doc.
48979
48980 2005-10-11  Bruno Haible  <bruno@clisp.org>
48981
48982         * modules/c-strcasestr: New file.
48983         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
48984
48985 2005-10-11  Bruno Haible  <bruno@clisp.org>
48986
48987         * modules/c-strcase: New file.
48988         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
48989
48990 2005-10-11  Bruno Haible  <bruno@clisp.org>
48991
48992         * lib/strcasecmp.c: Include limits.h.
48993         (strcasecmp): Avoid integer overflow on exotic platforms.
48994         * lib/strncasecmp.c: Include limits.h.
48995         (strncasecmp): Avoid integer overflow on exotic platforms.
48996         Reported by Paul Eggert.
48997
48998 2005-10-11  Bruno Haible  <bruno@clisp.org>
48999
49000         * lib/c-strcasestr.h: New file, from GNU gettext.
49001         * lib/c-strcasestr.c: New file, from GNU gettext.
49002
49003 2005-10-11  Bruno Haible  <bruno@clisp.org>
49004
49005         * lib/c-strcase.h: New file, from GNU gettext.
49006         * lib/c-strcasecmp.c: New file, from GNU gettext.
49007         * lib/c-strncasecmp.c: New file, from GNU gettext.
49008
49009 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
49010
49011         * modules/mempcpy (License): GPL -> LGPL.
49012         * modules/strchrnul (License): Likewise.
49013         * modules/sysexits (License): Likewise.
49014
49015 2005-10-08  Simon Josefsson  <jas@extundo.com>
49016
49017         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
49018
49019 2005-10-07  Simon Josefsson  <jas@extundo.com>
49020
49021         * m4/memxor.m4: Remove gl_C_RESTRICT call.
49022
49023 2005-10-06  Simon Josefsson  <jas@extundo.com>
49024
49025         * tests/test-hmac-md5.c: New file.
49026
49027         * modules/hmac-md5-tests: New file.
49028
49029         * modules/hmac-md5: New file.
49030
49031 2005-10-06  Simon Josefsson  <jas@extundo.com>
49032
49033         * m4/hmac-md5.m4: New file.
49034
49035         * m4/memxor.m4: Require gl_C_RESTRICT.
49036
49037 2005-10-06  Simon Josefsson  <jas@extundo.com>
49038
49039         * lib/memxor.c (memxor): Avoid casts and warnings.
49040
49041 2005-10-06  Simon Josefsson  <jas@extundo.com>
49042
49043         * lib/hmac-md5.c: New file.
49044
49045         * lib/hmac.h: New file.
49046
49047 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
49048
49049         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
49050         promotes to int, not unsigned int, to catch the AIX 5.3
49051         compiler bug.
49052
49053 2005-10-05  Simon Josefsson  <jas@extundo.com>
49054
49055         * modules/memxor: New file.
49056
49057         * modules/iconv (Files): Move config.rpath to havelib, it is used
49058         there.
49059
49060         * modules/havelib (Files): Add config.rpath.
49061
49062 2005-10-05  Simon Josefsson  <jas@extundo.com>
49063
49064         * m4/memxor.m4: New file.
49065
49066 2005-10-05  Simon Josefsson  <jas@extundo.com>
49067
49068         * lib/memxor.c (memxor): Fix compiler error.
49069
49070         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
49071         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
49072
49073         * lib/memxor.h, lib/memxor.c: New files.
49074
49075         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
49076         we assume all systems have it, suggested by Jim Meyering
49077         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
49078         any systems lack sys/socket.h; mingw32 is known to lack it, but we
49079         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
49080         same reasons.
49081
49082 2005-10-05  Simon Josefsson  <jas@extundo.com>
49083
49084         * config/srclist.txt: Add glibc bug 1423 for md5.h.
49085
49086 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
49087
49088         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
49089         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
49090         needed, since the source code now assumes these .h files.
49091
49092 2005-10-05  Derek Price  <derek@ximbiot.com>
49093
49094         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
49095
49096 2005-10-05  Bruno Haible  <bruno@clisp.org>
49097
49098         * modules/stdint (License): Change to LGPL.
49099
49100 2005-10-04  Simon Josefsson  <jas@extundo.com>
49101
49102         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
49103         D. Baushke" <mdb@gnu.org>.
49104
49105 2005-10-04  Bruno Haible  <bruno@clisp.org>
49106
49107         * lib/verify.h (verify_true): Provide alternative definition for C++.
49108
49109 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
49110
49111         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
49112         (SSIZE_MAX): New macro, if not already defined.
49113         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
49114         than 2 GiB.
49115
49116 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49117
49118         Sync from coreutils.
49119         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
49120         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
49121         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
49122         ULLONG_MAX doesn't work with 2.7.2.1.
49123
49124 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49125
49126         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
49127         From Ben Pfaff.
49128
49129         * modules/exclude (Depends-on): Depend on verify.
49130         * modules/strtoimax (Depends-on): Likewise.
49131         * modules/utimecmp (Depends-on): Likewise.
49132
49133 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49134
49135         * lib/exclude.c: Include verify.h.
49136         (verify): Remove.  All callers changed to use verify.h's version.
49137         * lib/strtoimax.c: Likewise.
49138         * lib/utimecmp.c: Likewis.e
49139
49140         Sync from coreutils.
49141         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
49142         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
49143         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
49144         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
49145         bother returning ENOSYS if settimeofday or stime fails; just let
49146         them return whatever errno they want to return.
49147         * lib/utimens.c: Include unistd.h, for dup2.
49148         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
49149         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
49150
49151 2005-10-02  Jim Meyering  <jim@meyering.net>
49152
49153         Sync from coreutils.
49154         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
49155         from glibc-2.2.5 that fails for read-only files.
49156
49157 2005-10-02  Jim Meyering  <jim@meyering.net>
49158
49159         Sync from coreutils.
49160         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
49161         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
49162         `#if HAVE_CONFIG_H'.
49163         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
49164         Remove AT_FDCWD test.
49165         Do not consume the fd unless successful.
49166         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
49167         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
49168         block, so that we don't even try to compile it if settimeofday is
49169         available.  This works around a compilation failure on OSF1 V5.1,
49170         due to stime requiring a `long int*' while tv_sec is `int'.
49171
49172 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
49173
49174         Sync from coreutils.
49175         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
49176         against `yes', rather than just testing for nonempty.
49177
49178 2005-10-01  Simon Josefsson  <jas@extundo.com>
49179
49180         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
49181         and Darwin.
49182
49183         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
49184         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
49185         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
49186         freeaddrinfo and gai_strerror are declared by the POSIX headers.
49187         Check if struct addrinfo is declared.
49188
49189 2005-10-01  Simon Josefsson  <jas@extundo.com>
49190
49191         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
49192         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
49193         AI_* and EAI_* definitions.  Protect function declarations.
49194
49195 2005-10-01  Jim Meyering  <jim@meyering.net>
49196
49197         Sync from coreutils.
49198
49199         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
49200         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
49201         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
49202         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
49203         in the inet and nsl libraries.  Required on Solaris 5.7.
49204
49205 2005-10-01  Jim Meyering  <jim@meyering.net>
49206
49207         Sync from coreutils.
49208         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
49209         in the inet and nsl libraries.  Required on Solaris 5.7.
49210
49211 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
49212
49213         * lib/getdelim.c (getdelim): Remove unused variables.
49214
49215 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
49216
49217         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
49218         so that the code works even with ancient cpp.  Portability problem
49219         with GCC 2.7.2.1 reported by Thomas M.Ott.
49220
49221 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
49222
49223         * modules/regex (Depends-on): Add strcase.
49224
49225         * modules/gethostname (Licence): Change from GPL to LGPL, since
49226         gethostname.c is a trivial implementation of a standard library
49227         function.
49228         * modules/poll (License): Change from GPL to LGPL, since it's
49229         derived from LGPL code.
49230
49231 2005-09-27  Jim Meyering  <jim@meyering.net>
49232
49233         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
49234         HAVE_CONFIG_H.
49235
49236         * lib/intprops.h (signed_type_or_expr__): Define.
49237         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
49238         for unsigned types.
49239
49240 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
49241
49242         * lib/verify.h (verify_expr): Remove, replacing with:
49243         (verify_true): New macro that returns true instead of void.
49244         (verify_type__): Remove.
49245         (verify): Use verify_true rather than verify_type__.
49246
49247 2005-09-26  Bruno Haible  <bruno@clisp.org>
49248
49249         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
49250         is necessary.
49251         (lib_SOURCES): Remove mbchar.c.
49252         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
49253         (Files): Add m4/mbrtowc.m4.
49254         * modules/mbiter: Likewise.
49255         * modules/mbuiter: Likewise.
49256
49257 2005-09-26  Bruno Haible  <bruno@clisp.org>
49258
49259         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
49260         compile mbchar.c if they are not both present.
49261         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
49262         * m4/mbiter.m4 (gl_MBITER): Likewise.
49263         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
49264         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
49265         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
49266
49267 2005-09-25  Jim Meyering  <jim@meyering.net>
49268
49269         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
49270         also uses socklen_t.
49271
49272 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
49273
49274         * lib/utimens.c (ENOSYS): Define if not already defined.
49275         (futimens): Support having a null PATH if the file descriptor
49276         is nonnegative.
49277
49278         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
49279         Remove.
49280         (__attribute): Define to empty unless GCC 3.1 or later.
49281         This works around a core dump on OpenBSD 3.4, which has GCC
49282         2.95.3, which dumps core when given __attribute__(()).  It also
49283         simplifies other tests, since we really don't want to bother with
49284         worrying about which ancient version of GCC supported what.
49285         Original problem reported by Yoann Vandoorselaere, with part of
49286         the fix suggested by Derek Price.
49287
49288 2005-09-24  Jim Meyering  <jim@meyering.net>
49289
49290         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
49291         so we can once again use a positive bitfield width of 1 -- now we
49292         don't have to explain why we were using a bitfield width of 2.
49293
49294 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
49295
49296         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
49297         and similarly for the other external symbols.  Problem reported
49298         by James Gallager.
49299
49300         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
49301         bug reported by Jim Meyering.
49302
49303         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
49304         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
49305         not needed, since socklen is a prerequisite module.
49306
49307 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
49308
49309         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
49310         Problem reported by Eric Blake.
49311         (getaddrinfo): Initialize se so that it's not garbage.
49312         Redo internal storage allocation so that it doesn't make unportable
49313         assumptions about alignment.
49314         Fix a memory leak.
49315
49316         * lib/utimens.c (futimens): Use futimesat if available.
49317         Prefer it to futimes since it doesn't have the futimes bug.
49318
49319         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
49320         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
49321         Instead, declare a function that returns a pointer to an array,
49322         and use verify_type__ to declare the size of the array.
49323         Problem and germ of a solution reported by Bruno Haible.
49324         (verify_type__): Use 2, not 1, for bitfield size, to avoid
49325         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
49326
49327 2005-09-23  Jim Meyering  <jim@meyering.net>
49328
49329         Sync from coreutils.
49330         Correct build failure (socklen_t not defined) on at least
49331         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
49332         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
49333
49334 2005-09-23  Jim Meyering  <jim@meyering.net>
49335
49336         * modules/getaddrinfo (Depends-on): Add socklen.
49337
49338 2005-09-23  Bruno Haible  <bruno@clisp.org>
49339
49340         * tests/test-verify.c: New file.
49341
49342 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49343
49344         Sync from coreutils.
49345
49346         * modules/argmatch (Depends-on): Add verify.
49347         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
49348         unistd-safer.
49349         * modules/save-cwd (Depends-on): Likewise.
49350
49351         * modules/openat (Files): Add lib/openat-die.c.
49352         (Depends-on): Remove error, exitfail.
49353         Add dirname.
49354
49355         * modules/verify: New file.
49356         * MODULES.html.sh (Diagnostics <assert.h>): New section,
49357         with "verify" module.
49358
49359 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49360
49361         Sync from coreutils.
49362
49363         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
49364         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
49365         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
49366         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
49367         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
49368         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
49369         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
49370         Don't bother checking for string.h, stdlib.h, unistd.h.
49371         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
49372         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
49373         module's job.
49374         * m4/jm-macros.m4 (gl_MACROS): Likewise.
49375         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
49376
49377         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
49378         (gl_GETDATE): Use it.
49379
49380         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
49381
49382 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49383
49384         Sync from coreutils.
49385
49386         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
49387         stat-time.h.
49388         * lib/argmatch.h: Include verify.h
49389         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
49390         (ARGMATCH_ASSERT): Remove; unused.
49391         * lib/canonicalize.c: Assume STDC_HEADERS.
49392         * lib/exclude.c: Include "strcase.h".
49393         * lib/regex_internal.h [!defined _LIBC]: Likewise.
49394         * lib/getusershell.c: Include stdio--.h rather than stdio.h
49395         and stdio-safer.h.
49396         (getusershell): Call fopen, not fopen_safer.
49397         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
49398         Do not include unistd-safer.h.
49399         (save_cwd): Don't call fd_safer; no longer needed
49400         now that we include fcntl--.h.
49401
49402         * lib/getdate.y (relative_time): New type.
49403         (RELATIVE_TIME_0): New constant.
49404         (parser_control): Use relative_time instead of doing it ourselves.
49405         (%union): Add new relative_time rel member.
49406         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
49407         Now typeless.
49408         (relunit, relunit_snumber): Now of type rel.
49409         (zone, rel, relunit, get_date): Adjust to above changes.
49410
49411         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
49412         Do not include unistd-safer.h.
49413         (getloadavg): Don't call fd_safer; no longer needed
49414         now that we include fcntl--.h.
49415
49416         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
49417         (make_dir_parents): Treat ENOSYS like EEXIST.
49418
49419         Improve quality of diagnostics on restore_cwd failure.
49420         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
49421         (make_dir_parents): Last arg is now int * (for errno), not bool *.
49422         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
49423         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
49424         each time through the loop.  Do not diagnose restore_cwd failure;
49425         that is the caller's job (and perhaps the caller does not care).
49426
49427         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
49428         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
49429         If the file already exists but is not a directory, don't bother
49430         to try to make its parents.
49431         Close potential file descriptor leak if we can't chdir("/") (!).
49432         Don't always return true if chdir($PWD) fails; return true only
49433         if the requested action was done successfully (except for the
49434         chdir($PWD)).
49435         Don't log final directory unless we actually made it.
49436         Refactor to avoid duplicate code to fix up permissions.
49437         Don't attempt to fix up parent permissions if chdir($PWD) fails.
49438
49439         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
49440         to make it a bit faster and (I hope) clearer.
49441         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
49442         Fix bug in formats like %2N.
49443
49444         * lib/verify.h: New file.
49445
49446 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49447
49448         Sync from coreutils.
49449         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
49450
49451 2005-09-22  Jim Meyering  <jim@meyering.net>
49452
49453         Sync from coreutils.
49454
49455         * m4/lstat.m4 (gl_FUNC_LSTAT):
49456         Use AC_LIBSOURCES to require lstat.c and lstat.h.
49457         Remove obsolete comment.
49458         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
49459         * m4/xstrtod.m4: Likewise.
49460
49461         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
49462
49463 2005-09-22  Jim Meyering  <jim@meyering.net>
49464
49465         Sync from coreutils.
49466
49467         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
49468
49469         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
49470         the .tm_year member, since otherwise gcc-4.0 would now warn about
49471         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
49472
49473         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
49474         order to avoid an unsuppressible warning from gcc on 64-bit systems.
49475
49476         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
49477         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
49478         when run in a time zone for which daylight savings time is in effect
49479         for the starting date.
49480
49481         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
49482         stop us from restricting permissions of just-created absolute-named
49483         directories.
49484         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
49485         to restore initial working directory.
49486         * lib/mkdir-p.c (make_dir_parents): New parameter:
49487         different_working_dir, to tell caller if/when we change the working
49488         directory and are unable to return to the initial one.
49489         * lib/mkdir-p.h (make_dir_parents): Update prototype.
49490         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
49491         `return false'.  This fixes a bug introduced on 2004-07-30.
49492
49493         * lib/openat.c (fdopendir): Be sure to close the supplied
49494         file descriptor before returning.  This makes our replacement
49495         implementation a little closer to Solaris's, where fdopendir
49496         ties the file descriptor to the returned DIR* pointer.
49497         * lib/openat.c (unlinkat): New function.
49498         * lib/openat.h (unlinkat): Add prototype.
49499         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
49500         (openat_restore_fail): Rename from openat_restore_die.
49501         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
49502
49503         Provide an alternative to exiting immediately upon save_cwd or
49504         restore_cwd failure.  Now, an application can arrange e.g.,
49505         to perform a longjump in that case.
49506         * lib/openat.c: Include dirname.h.
49507         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
49508         (rpl_openat, fdopendir, fstatat): Call openat_save_die
49509         and openat_restore_die rather than calling error directly.
49510         Don't include "error.h" or "exitfail.h"; they're no longer needed.
49511
49512         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
49513         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
49514         define.
49515
49516         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
49517         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
49518                             int utc, int nanoseconds);
49519         Background:
49520         date should not have to allocate a megabyte of virtual memory to
49521         handle a format argument like +%1048575T.  When implemented with
49522         strftime, it must allocate such a buffer, use strftime to fill it
49523         in, print it, then free it.
49524         With fprintftime, it simply prints everything and exits.
49525         With no need for memory allocation, that's one fewer way to fail.
49526         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
49527         optional field width, not before, so we accept %9:z, not %:9z.
49528         (my_strftime): Be sure to use L_('x') for literals.
49529
49530         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
49531         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
49532         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
49533         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
49534         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
49535         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
49536         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
49537         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
49538         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
49539         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
49540         * lib/xgethostname.c, lib/xreadlink.c:
49541         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
49542
49543         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
49544         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
49545         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
49546         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
49547         and don't include <sys/file.h>).
49548
49549 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
49550
49551         Sync from coreutils.
49552
49553         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
49554         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
49555         [!LDAV_DONE]: Avoid unused variable warning.
49556
49557 2005-09-21  Bruno Haible  <bruno@clisp.org>
49558
49559         * lib/unicodeio.h (unicode_to_mb): New declaration.
49560
49561 2005-09-20  Derek Price  <derek@ximbiot.com>
49562
49563         * lib/getaddrinfo.c: Don't include <netdb.h> included from
49564         getaddrinfo.h.
49565
49566 2005-09-20  Bruno Haible  <bruno@clisp.org>
49567
49568         * gnulib-tool: Remove trailing slashes from the values specified for
49569         --source-base, --m4-base, --tests-base, --aux-dir.
49570         Suggested by Simon Josefsson <jas@extundo.com>.
49571
49572 2005-09-20  Bruno Haible  <bruno@clisp.org>
49573
49574         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
49575         func_modules_to_filelist, func_import, func_create_testdir): Make all
49576         sorting results locale-independent, so that gnulib-cache.m4 doesn't
49577         change when gnulib-tool is invoked in a different locale.
49578
49579 2005-09-19  Simon Josefsson  <jas@extundo.com>
49580
49581         * m4/socklen.m4: Fix typo.
49582
49583 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
49584
49585         Use a consistent style for including <config.h>.
49586         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
49587         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
49588         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
49589         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
49590         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
49591         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
49592         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
49593         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
49594         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
49595         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
49596         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
49597         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
49598         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
49599         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
49600         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
49601         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
49602         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
49603         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
49604         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
49605         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
49606         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
49607         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
49608         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
49609         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
49610         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
49611         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
49612         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
49613         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
49614         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
49615         lib/xstrtoumax.c, lib/yesno.c:
49616         Standardize inclusion of config.h.
49617         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
49618         lib/inttostr.h:  Removed inclusion of config.h from header files.
49619         * lib/inttostr.c:  Adjusted in-tree users.
49620         * lib/timespec.h: Remove superfluous warning to include config.h.
49621         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
49622         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
49623         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
49624         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
49625         config.h with HAVE_CONFIG_H.
49626
49627 2005-09-19  Jim Meyering  <jim@meyering.net>
49628
49629         * modules/pathmax (License): Change to LGPL.
49630
49631 2005-09-19  Derek Price  <derek@ximbiot.com>
49632
49633         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
49634
49635 2005-09-19  Bruno Haible  <bruno@clisp.org>
49636
49637         * gnulib-tool (import): Provide default for --tests-base.
49638
49639 2005-09-19  Bruno Haible  <bruno@clisp.org>
49640
49641         * doc/quote.texi: New file, extracted from gnulib.texi.
49642         * doc/ctime.texi: New file, extracted from gnulib.texi.
49643         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
49644         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
49645         * doc/gnulib.texi: Include them.
49646
49647 2005-09-18  Bruno Haible  <bruno@clisp.org>
49648
49649         Portability fix.
49650         * gnulib-tool (func_readlink): New function.
49651         (func_ln_if_changed): Use it.
49652
49653 2005-09-18  Bruno Haible  <bruno@clisp.org>
49654
49655         * gnulib-tool: Support --with-tests also with --import.
49656         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
49657         (func_import): Use variables $testsbase and $inctests. Emit a
49658         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
49659         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
49660         SUBDIRS += $testsdir.
49661         (func_create_testdir): Update.
49662
49663 2005-09-18  Bruno Haible  <bruno@clisp.org>
49664
49665         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
49666         instead of $dry_run.
49667         (func_cp_if_changed, func_mv_if_changed): Remove functions.
49668         (func_ln_if_changed): Don't handle dry-run here.
49669         (func_import): In dry-run mode, detect more precisely which actions
49670         would be performed, and don't use "...ing" verbs.
49671
49672 2005-09-18  Bruno Haible  <bruno@clisp.org>
49673
49674         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
49675         (func_import): Use join on two temporary files instead of three nested
49676         loops, in order to determine which files are new or old.
49677
49678 2005-09-18  Bruno Haible  <bruno@clisp.org>
49679
49680         * gnulib-tool (func_import): Comment out code that spits out the
49681         new files with --dry-run.
49682
49683 2005-09-18  Bruno Haible  <bruno@clisp.org>
49684
49685         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
49686
49687 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
49688
49689         * lib/stat-time.h: New file.
49690         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
49691         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
49692         in a different way.
49693         (timespec_cmp): New function.
49694         * lib/utimecmp.c: Include stat-time.h.
49695         (SYSCALL_RESOLUTION): Depend on whether various struct stat
49696         members exist, not on the obsolescent ST_MTIM_NSEC.
49697         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
49698
49699 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
49700
49701         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
49702
49703 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
49704
49705         * MODULES.html.sh (File system functions): Add stat-time.
49706         * modules/stat-time: New file.
49707         * modules/timespec (Files): Remove m4/st_mtim.m4; this
49708         is now done in a different way, by the stat-time module.
49709         * modules/utimecmp (Depends-on): Add stat-time.
49710
49711 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
49712
49713         * m4/st_mtim.m4: Remove.  Superseded by...
49714         * m4/stat-time.m4: New file.
49715         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
49716         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
49717
49718 2005-09-15  Derek Price  <derek@ximbiot.com>
49719
49720         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
49721
49722 2005-09-15  Derek Price  <derek@ximbiot.com>
49723
49724         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
49725         * lib/regex_internal.c: Ditto, using this...
49726         (__GNUC_PREREQ): ...new macro.
49727         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
49728         using...
49729         (__GNUC_PREREQ): ...this new macro.
49730
49731         * lib/strstr.h: Include string.h. Define strstr as a macro here.
49732
49733 2005-09-15  Derek Price  <derek@ximbiot.com>
49734             Paul Eggert  <eggert@cs.ucla.edu>
49735
49736         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
49737         changes, consolidating in...
49738         * lib/regex_internal.h: ...this file.
49739
49740 2005-09-13  Jim Meyering  <jim@meyering.net>
49741
49742         * lib/canon-host.c: Filter through gnu indent and reword comments
49743         slightly.
49744         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
49745
49746 2005-09-13  Derek Price  <derek@ximbiot.com>
49747
49748         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
49749         failure.
49750         Reported by Jim Meyering  <jim@meyering.net>.
49751
49752 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
49753
49754         * lib/base64.c: Typo.
49755         (base64_encode): Put b64str in initialized data section.
49756
49757 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
49758
49759         Merge glibc and coreutils changes into gnulib, plus a few
49760         extra fixes.
49761         * lib/md5.c: Use #error rather than a string.
49762         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
49763         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
49764         (__attribute__): Define to empty for non recent-GCC.
49765         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
49766         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
49767         Renamed from their non-__ counterparts, with new macros replacing
49768         them if not _LIBC.  Add __THROW attribute.
49769         (rol): Remove.
49770         (struct md5_ctx): Align buffer if using GCC.
49771         * lib/sha1.h (struct sha1_ctx): Likewise.
49772         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
49773         The old name was backwards.
49774         (NOTSWAP): Remove; not used.
49775         (rol): New macro, moved here from md5.h.
49776         (sha1_process_block): Remove a FIXME that doesn't make sense.
49777
49778 2005-09-12  Derek Price  <derek@ximbiot.com>
49779
49780         Return usable errors from canon-host.
49781         * lib/canon-host.h: New file.
49782         * lib/canon-host.c (canon_host): Wrap...
49783         (canon_host_r): ...this new function, which now relies exclusively on
49784         getaddrinfo.
49785         (ch_strerror): New function.
49786         (last_cherror): New global.
49787         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
49788         interface.
49789         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
49790         void *.
49791         (freeaddrinfo): Free ai->ai_canonname when set.
49792
49793 2005-09-12  Derek Price  <derek@ximbiot.com>
49794
49795         Make canon-host require getaddrinfo.
49796         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
49797         AC_LIBSOURCE canon-host.h.  Call...
49798         (gl_PREREQ_CANON_HOST): ...this new function, which requires
49799         gl_GETADDRINFO.
49800         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
49801
49802 2005-09-12  Derek Price  <derek@ximbiot.com>
49803
49804         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
49805         LGPL.
49806         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
49807
49808 2005-09-12  Derek Price  <derek@ximbiot.com>
49809
49810         * lib/gai_strerror.c: Include config.h when available.  Include
49811         getaddrinfo.h before other headers to test interface.
49812         Reported by Larry Jones <lawrence.jones@ugs.com>.
49813
49814 2005-09-12  Derek Price  <derek@ximbiot.com>
49815             Paul Eggert  <eggert@cs.ucla.edu>
49816
49817         * modules/glob (Files): Add glob-libc.h.
49818
49819 2005-09-12  Derek Price  <derek@ximbiot.com>
49820             Paul Eggert  <eggert@cs.ucla.edu>
49821
49822         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
49823         glob_.h, glob-libc.h.
49824         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
49825
49826 2005-09-12  Derek Price  <derek@ximbiot.com>
49827             Paul Eggert  <eggert@cs.ucla.edu>
49828
49829         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
49830         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
49831         protecting things that should be done only in gnulib contexts.
49832         * lib/glob_.h: New file, containing only the glob things needed for
49833         gnulib.
49834         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
49835         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
49836         (glob, globfree, glob_pattern_p): Now defined simply in terms of
49837         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
49838         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
49839         and to respect the namespace rules better.
49840
49841 2005-09-08  Simon Josefsson  <jas@extundo.com>
49842
49843         * modules/socklen: New file.
49844
49845 2005-09-08  Simon Josefsson  <jas@extundo.com>
49846
49847         * m4/socklen.m4: New file.
49848
49849 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
49850
49851         * modules/utimens (Files): Add m4/utimbuf.m4, since
49852         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
49853         Reported by Sergey Poznyakoff.
49854
49855 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
49856
49857         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
49858         definitions, since that's the preferred style in glibc.
49859         Fix a minor spacing issue, and update copyright notice to match
49860         glibc's.
49861
49862 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
49863
49864         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
49865
49866 2005-09-06  Simon Josefsson  <jas@extundo.com>
49867
49868         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
49869         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
49870
49871 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
49872
49873         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
49874         warning.
49875
49876 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
49877
49878         * config/srclist.txt: Add glibc bug 1302.
49879
49880 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
49881
49882         Change bitset word type from unsigned int to unsigned long int,
49883         as this has better performance on typical 64-bit hosts.
49884         Port bitset code to hosts with unusual word sizes.
49885         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
49886         (build_collating_symbol):
49887         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
49888         argument is a bitset.  This is merely a style issue, but it makes
49889         it clearer that an entire array is expected.
49890         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
49891         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
49892         Port to the case where bitset_word is not the same as unsigned int.
49893         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
49894         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
49895         Likewise.
49896         * lib/regexec.c (check_dst_limits_calc_pos_1,
49897         check_subexp_matching_top):
49898         (build_trtable, group_nodes_into_DFAstates):
49899         Likewise.
49900         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
49901         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
49902         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
49903         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
49904         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
49905         * lib/regcomp.c (optimize_subexps, lower_subexp):
49906         Work even if bitset_word has holes in its bitwise representation.
49907         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
49908         * lib/regexec.c (check_dst_limits_calc_pos_1,
49909         check_subexp_matching_top):
49910         Likewise.
49911         * lib/regex_internal.c (re_string_reconstruct):
49912         Don't assume UCHAR_MAX == 255.
49913         * lib/regex_internal.h (bitset_set_all): Likewise.
49914         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
49915         All uses changed.
49916         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
49917         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
49918         All uses changed.
49919         (BITSET_WORD_MAX): New macro.
49920         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
49921         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
49922         (bitset_empty, bitset_copy):
49923         Prefer sizeof (bitset) to multiplying it out ourselves.
49924         (bitset_not_merge): Remove; unused.
49925         (bitset_contain): Return bool, not unsigned int with one bit on.
49926         All callers changed.
49927         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
49928         alignment than re_node_set; do this by defining a new internal
49929         type struct dests_alloc and using it to allocate memory.
49930
49931 2005-09-05  Bruno Haible  <bruno@clisp.org>
49932
49933         * gnulib-tool (func_import): Fix comparison in handling of symbolic
49934         links.
49935
49936 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
49937
49938         * modules/size_max (Makefile.am): Add size_max.h
49939
49940 2005-09-04  Derek Price  <derek@ximbiot.com>
49941
49942         * gnulib-tool (func_import): Fix reversed $symbolic logic.
49943
49944 2005-09-03  Simon Josefsson  <jas@extundo.com>
49945
49946         * gnulib-tool: Fix typo.
49947
49948 2005-09-03  Simon Josefsson  <jas@extundo.com>
49949
49950         * config/srclist.txt: Add glibc bug 1293.
49951
49952 2005-09-03  Derek Price  <derek@ximbiot.com>
49953
49954         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
49955         From Larry Jones <lawrence.jones@ugs.com>.
49956
49957 2005-09-02  Simon Josefsson  <jas@extundo.com>
49958
49959         * modules/socklen: New file.
49960
49961 2005-09-02  Simon Josefsson  <jas@extundo.com>
49962
49963         * modules/havelib: New module.
49964
49965         * modules/gettext, modules/iconv, modules/lock, modules/readline:
49966         Use havelib.
49967
49968 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
49969
49970         Check for arithmetic overflow when calculating sizes, to prevent
49971         some buffer-overflow issues.  These patches are conservative, in the
49972         sense that when I couldn't determine whether an overflow was possible,
49973         I inserted a run-time check.
49974         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
49975         macros.
49976         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
49977         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
49978         (re_xnrealloc, re_x2nrealloc): New inline functions.
49979         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
49980         parse_bracket_exp):
49981         (build_equiv_class, build_charclass): Check for arithmetic overflow
49982         in size expression calculations.
49983         * lib/regex_internal.c (re_string_realloc_buffers):
49984         (build_wcs_upper_buffer, re_node_set_add_intersect):
49985         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
49986         (re_dfa_add_node, register_state): Likewise.
49987         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
49988         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
49989         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
49990         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
49991
49992 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
49993
49994         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
49995         m4/ulonglong.m4.  Problem reported by Martin Lambers.
49996
49997 2005-09-02  Bruno Haible  <bruno@clisp.org>
49998
49999         Support for lib vs. lib64 distinction on biarch platforms.
50000         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
50001         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
50002         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
50003
50004 2005-09-02  Bruno Haible  <bruno@clisp.org>
50005
50006         * gnulib-tool (import): In the other first-use case, provide defaults
50007         as well.
50008
50009 2005-09-02  Bruno Haible  <bruno@clisp.org>
50010
50011         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
50012         patches not yet found in the latest gettext release.
50013
50014 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
50015
50016         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
50017         to avoid a collision with bits/local_lim.h in glibc.
50018         All uses changed.  Problem reported by Dmitry V. Levin in
50019         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
50020
50021         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
50022         bugs in int versus size_t comparisons.
50023         (re_string_context_at): Fix bug where the code assumed that
50024         Idx is signed.
50025
50026         Use bool where appropriate.
50027         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
50028         All callers changed.
50029         (calc_eclosure_iter): Likewise, for ROOT arg.
50030         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
50031         (build_charclass_op): Likewise, for NON_MATCH arg.
50032         * lib/regex_internal.c (re_string_allocate, re_string_construct):
50033         (re_string_construct_common): Likewise, for ICASE arg.
50034         * lib/regexec.c (re_search_2_stub, re_search_stub):
50035         Likewise, for RET_LEN arg.
50036         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
50037         (set_regs): Likewise, for FL_BACKTRACK arg.
50038         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
50039         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
50040         (calc_eclosure_iter, parse_bracket_exp):
50041         Use bool for internal variables that are booleans.
50042         * lib/regexec.c (re_search_internal, check_matching,
50043         proceed_next_node):
50044         (set_regs, build_sifted_states, sift_states_bkref):
50045         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
50046         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
50047         (find_collation_sequence_value):
50048         Likewise.
50049         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
50050         (re_node_set_compare):
50051         Return bool, not int. All callers changed.
50052         * lib/regexec.c (check_halt_node_context, check_dst_limits):
50053         (build_trtable, check_node_accept): Likewise.
50054         * lib/regex_internal.h: Include stdbool.h.
50055
50056         Fix bugs uncovered when converting to bool.
50057         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
50058         failure instead of charging ahead blindly.
50059         * lib/regex_internal.c (register_state): Likewise.
50060         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
50061         for freeing internal storage.
50062         (group_nodes_into_DFA_states): Use unsigned int, not int, for
50063         bitset pieces used as boolean, to avoid undefined behavior
50064         on hosts that do int overflow checking.
50065
50066 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
50067
50068         * config/srclist.txt: Add glibc bugs 1285-1287.
50069
50070 2005-09-01  Jim Meyering  <jim@meyering.net>
50071
50072         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
50073         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
50074         Require gl_STAT_MACROS, too.
50075
50076 2005-09-01  Bruno Haible  <bruno@clisp.org>
50077
50078         * gnulib-tool (import): In the first-use case, provide defaults.
50079
50080 2005-09-01  Bruno Haible  <bruno@clisp.org>
50081
50082         * gnulib-tool (func_import): Remove the .tmp files.
50083
50084 2005-09-01  Bruno Haible  <bruno@clisp.org>
50085
50086         * gnulib-tool (func_import): Fix handling of symbolic links.
50087
50088 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50089
50090         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
50091         old glibc regex code mishandles strings longer than 2**31 bytes.
50092         This patch fixes this when the regex code is used in gnulib
50093         (i.e., outside glibc).
50094
50095         This patch should not affect the use of the regex code inside
50096         glibc.  No doubt this problem also needs to be handled for glibc
50097         as well, but the result will be an incompatible change to the
50098         glibc ABI, and the old ABI will have to be supported too.  That
50099         can be the the subject for another patch.
50100
50101         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
50102         governing whether the rest of this patch is active.  By default,
50103         the macro is disabled and the patch has no effect.
50104         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
50105         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
50106         (struct re_pattern_buffer, re_search, re_search_2, re_match):
50107         (re_match_2, re_set_registers): Use the new types.
50108         * lib/regex_internal.h (Idx, re_hashval_t): New types.
50109         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
50110         New macros.
50111         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
50112         (re_string_context_at, bin_tree_t, re_dfastate_t):
50113         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
50114         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
50115         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
50116         (re_string_char_size_at, re_string_wchar_at):
50117         (re_string_elem_size_at):
50118         Use the new types and macros to port to 64-bit hosts.
50119         Use unsigned types for internal values, so that the code
50120         mostly works even for arrays larger than SSIZE_MAX.
50121         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
50122         (search_duplicated_node, calc_eclosure_iter, fetch_number):
50123         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
50124         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
50125         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
50126         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
50127         (calc_inveclosure, parse_dup_op, build_range_exp):
50128         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
50129         (fetch_number, create_token_tree, mark_opt_subexp):
50130         Likewise.
50131         * lib/regex_internal.c (re_string_construct_common,
50132         create_ci_newstate):
50133         (create_cd_newstate, re_string_allocate, re_string_construct):
50134         (re_string_realloc_buffers, build_wcs_upper_buffer):
50135         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
50136         (re_string_reconstruct, re_string_peek_byte_case):
50137         (re_string_fetch_byte_case, re_string_context_at):
50138         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
50139         (re_node_set_init_copy, re_node_set_add_intersect):
50140         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
50141         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
50142         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
50143         (re_acquire_state, re_acquire_state_context, register_state):
50144         Likewise.
50145         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
50146         search_cur_bkref_entry):
50147         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
50148         (re_search_internal, re_search_2_stub, re_search_stub)
50149         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
50150         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
50151         (update_cur_sifted_state, check_dst_limits):
50152         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
50153         (check_subexp_limits, sift_states_bkref, merge_state_array):
50154         (check_subexp_matching_top, get_subexp, get_subexp_sub):
50155         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
50156         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
50157         (expand_bkref_cache, check_node_accept_bytes):
50158         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
50159         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
50160         (acquire_init_state_context, check_halt_node_context):
50161         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
50162         (sift_states_backward, clean_state_log_if_needed):
50163         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
50164         (find_recover_state, transit_state_sb, transit_state_mb):
50165         (transit_state_bkref, build_trtable, match_ctx_clean):
50166         Likewise.
50167         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
50168         to work around an assumption that REG_MISSING is negative.
50169
50170         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
50171         (seek_collating_symbol_entry) [defined _LIBC]:
50172         (lookup_collation_sequence_value) [defined _LIBC]:
50173         (build_range_exp, build_collating_symbol) [defined _LIBC]:
50174         Use prototypes rather than old-style function definitions.
50175         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
50176         (transit_state_sb) [0]:
50177         (find_collation_sequence_value) [defined _LIBC]: Likewise.
50178
50179         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
50180         rm_eo.
50181
50182         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
50183         (optimize_subexps, lower_subexp):
50184         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
50185         since the signed shift might overflow.  Use 1u<<31 instead.
50186         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
50187         Likewise.
50188         * lib/regexec.c (check_dst_limits_calc_pos_1,
50189         check_subexp_matching_top): Likewise.
50190
50191         * lib/regcomp.c (optimize_subexps, lower_subexp):
50192         Use CHAR_BIT rather than 8, for clarity.
50193         * lib/regexec.c (check_dst_limits_calc_pos_1):
50194         (check_subexp_matching_top): Likewise.
50195         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
50196         have to worry about portability issues when shifting it left.
50197         Remove no-longer-needed test for table_size > 0.
50198         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
50199         in a word, as the resulting behavior is undefined.
50200         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
50201         in one case, a <= should have been an <, and in another case the
50202         whole test was missing.
50203         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
50204         the standard name CHAR_BIT.
50205         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
50206         this is not true on one's complement and signed-magnitude hosts.
50207
50208         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
50209         next_last_offset.
50210         (struct re_dfa_t): Remove unused member states_alloc.
50211         * lib/regcomp.c (init_dfa): Don't initialize unused members.
50212
50213 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50214
50215         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
50216         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
50217         and large-file glibc and in 32-bit large-file Solaris.
50218
50219 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50220
50221         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
50222         lengths fit in regoff_t; this isn't true if regoff_t is the same
50223         width as size_t.
50224         * lib/regex.c (re_search_internal): 5th arg is LAST_START
50225         (= START + RANGE) instead of RANGE.  This avoids overflow
50226         problems when regoff_t is the same width as size_t.
50227         All callers changed.
50228         (re_search_2_stub): Check for overflow when adding the
50229         sizes of the two strings.
50230         (re_search_stub): Check for overflow when adding START
50231         to RANGE; if it occurs, substitute the extreme value.
50232
50233 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50234
50235         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
50236
50237 2005-08-31  Jim Meyering  <jim@meyering.net>
50238
50239         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
50240         a pointer-to-const.
50241         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
50242         (register_state): Likewise.
50243         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
50244         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
50245         (group_nodes_into_DFAstates): Likewise.
50246
50247 2005-08-31  Jim Meyering  <jim@meyering.net>
50248
50249         * check-module: Add a FIXME comment.
50250
50251 2005-08-31  Eric Blake  <ebb9@byu.net>
50252
50253         * modules/unistd-safer (Files): Add unistd--.h.
50254         * modules/stdio-safer (Files): Add stdio--.h.
50255
50256 2005-08-31  Derek Price  <derek@ximbiot.com>
50257
50258         * lib/getdelim.c (getdelim): Return EOF on EOF.
50259         Reported by Larry Jones <lawrence.jones@ugs.com>.
50260
50261 2005-08-31  Bruno Haible  <bruno@clisp.org>
50262
50263         Avoid unnecessary diffs in the generated lib/Makefile.am.
50264         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
50265         the generated files.
50266         (func_import): Don't set cmd.
50267
50268 2005-08-31  Bruno Haible  <bruno@clisp.org>
50269
50270         * lib/strstr.c: Include <stddef.h>, for NULL.
50271         * lib/strcasestr.c: Likewise.
50272         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
50273
50274 2005-08-31  Bruno Haible  <bruno@clisp.org>
50275
50276         * gnulib-tool: New option --macro-prefix.
50277         (func_import): Use macro_prefix.
50278         (import): Handle option --macro-prefix.
50279
50280 2005-08-31  Bruno Haible  <bruno@clisp.org>
50281
50282         * gnulib-tool (import): Rename most ac_* variables to cached_*.
50283         Also use new variables cached_lgpl, cached_libtool.
50284
50285 2005-08-31  Bruno Haible  <bruno@clisp.org>
50286
50287         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
50288         always instantiating them.
50289
50290 2005-08-31  Bruno Haible  <bruno@clisp.org>
50291
50292         * gnulib-tool (func_import): Read the previous cached settings
50293         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
50294         earlier added by gnulib but are now dropped. Warn when a gnulib file
50295         overwrites a non-gnulib file.
50296
50297 2005-08-31  Bruno Haible  <bruno@clisp.org>
50298
50299         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
50300         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
50301         projects that don't keep autogenerated files in CVS. Put into
50302         actioncmd only the specified modules, not the transitive closure.
50303
50304 2005-08-31  Bruno Haible  <bruno@clisp.org>
50305
50306         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
50307         Create directories that shall be filled.
50308         (import): Don't look for gl_* macros in configure.ac. Recurse across
50309         all directories containing a gnulib-cache.m4 files, if meaningful.
50310
50311 2005-08-31  Bruno Haible  <bruno@clisp.org>
50312
50313         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
50314         (import): Set seen_libtool when we see gl_LIBTOOL.
50315
50316 2005-08-31  Bruno Haible  <bruno@clisp.org>
50317
50318         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
50319         declaration macro definitions from generated gnulib.m4.
50320
50321 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
50322
50323         * lib/iconvme.h: Add prototype for iconv_alloc.
50324
50325 2005-08-29  Simon Josefsson  <jas@extundo.com>
50326
50327         * lib/iconvme.c: Fix errno.
50328
50329 2005-08-29  Bruno Haible  <bruno@clisp.org>
50330
50331         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
50332         that it works when the directory contains spaces.
50333
50334 2005-08-29  Bruno Haible  <bruno@clisp.org>
50335
50336         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
50337
50338 2005-08-29  Bruno Haible  <bruno@clisp.org>
50339
50340         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
50341         Emit more advice.
50342
50343 2005-08-29  Bruno Haible  <bruno@clisp.org>
50344         and Stepan Kasal  <kasal@ucw.cz>
50345
50346         * check-module: If more parameters are given, check each of them
50347         separately; add more exceptions, as noted by Jim Meyering.
50348         (check_module): New procedure.
50349         (%exempt_header): Now contains all exceptions.
50350
50351 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
50352
50353         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
50354
50355 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
50356
50357         * lib/iconvme.c: Split iconv_string into iconv_alloc.
50358
50359 2005-08-28  Bruno Haible  <bruno@clisp.org>
50360
50361         * m4/gnulib-tool.m4: New file.
50362
50363 2005-08-27  Jim Meyering  <jim@meyering.net>
50364
50365         * modules/unistd-safer (Files): Add pipe-safer.c.
50366         * modules/fcntl-safer (Files): Add creat-safer.c.
50367
50368 2005-08-27  Jim Meyering  <jim@meyering.net>
50369
50370         * m4/stdlib-safer.m4: New file.  From coreutils.
50371         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
50372         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
50373         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
50374         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
50375         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
50376
50377 2005-08-27  Jim Meyering  <jim@meyering.net>
50378
50379         * lib/fopen-safer.c: Merge minor changes from coreutils.
50380         * lib/dup-safer.c: Likewise.
50381         * lib/fd-safer.c: Likewise.
50382
50383         Merge from coreutils.
50384         * lib/stdio--.h: New file.
50385         * lib/stdlib--.h: New file.
50386         * lib/mkstemp-safer.c: New file.
50387
50388         GNU tar needs these.
50389         * lib/pipe-safer.c: New file.
50390         * lib/creat-safer.c: New file.
50391         * lib/fcntl--.h (creat): Define to creat_safer.
50392         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
50393         * lib/unistd--.h (pipe): Define to pipe_safer.
50394         * lib/unistd-safer.h: Declare pipe_safer.
50395
50396 2005-08-26  Simon Josefsson  <jas@extundo.com>
50397
50398         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
50399         Haible <bruno@clisp.org>.
50400
50401 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
50402
50403         * lib/regex_internal.h: Remove all references to
50404         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
50405         or better.
50406         (bitset_not, bitset_merge, bitset_not_merge):
50407         (bitset_mask, re_string_allocate, re_string_construct):
50408         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
50409         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
50410         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
50411         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
50412         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
50413         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
50414         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
50415         (re_acquire_state_context):
50416         Remove unnecessary forward decls.
50417         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
50418         Put __attribute at function definition,
50419         now that the function decl has been removed.
50420         * lib/regex_internal.c (re_string_peek_byte_case):
50421         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
50422         Likewise.
50423
50424 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
50425
50426         * m4/regex.m4: Add AC_PREREQ(2.50).
50427         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
50428
50429 2005-08-25  Simon Josefsson  <jas@extundo.com>
50430
50431         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
50432         __fsetlocking.
50433
50434 2005-08-25  Simon Josefsson  <jas@extundo.com>
50435
50436         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
50437         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
50438         GLIBC specific code.
50439
50440 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50441
50442         Make regex safe for g++.  This fixes one real bug (an "err"
50443         that should have been "*err").  g++ problem reported by
50444         Sam Steingold.
50445         * lib/regex_internal.h (re_calloc): New macro, consistent with
50446         re_malloc etc.  All callers of calloc changed to use re_calloc.
50447         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
50448         not int.  All callers changed.
50449         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
50450         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
50451         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
50452         (find_recover_state): Change "err" to "*err"; this fixes what
50453         appears to be a real bug.
50454         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
50455         versus int.
50456
50457 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50458
50459         * modules/regex (Depends-on): Add malloc, since the code
50460         assumes that !malloc(0) means failure.
50461
50462 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50463
50464         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
50465
50466         alloca modernization/simplification for regex.
50467         * lib/regex.c: Remove portability cruft for alloca.  This no longer
50468         needs to be at the start of the file, and can be moved into
50469         regex_internal.h and simplified.
50470         * lib/regex_internal.h: Include <alloca.h>.
50471         (__libc_use_alloca) [!defined _LIBC]: New macro.
50472         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
50473         now works outside glibc.
50474
50475 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50476
50477         * config/srclist.txt: Add glibc bugs 1241, 1245.
50478
50479 2005-08-25  Jim Meyering  <jim@meyering.net>
50480
50481         * lib/open-safer.c: Include <config.h>.
50482         Otherwise, we'd lose LARGEFILE support in any file using
50483         e.g. "fcntl--.h"
50484
50485 2005-08-25  Bruno Haible  <bruno@clisp.org>
50486
50487         * m4/minmax.m4: Require autoconf 2.52.
50488         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
50489         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
50490         alternatives of translit over the alphabet.
50491         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
50492
50493 2005-08-24  Simon Josefsson  <jas@extundo.com>
50494
50495         * tests/test-getpass.c: New file.
50496
50497 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
50498
50499         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
50500         for GNU regex features.
50501
50502 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
50503
50504         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
50505         * lib/regex.h (regerror): Likewise.
50506
50507         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
50508         requires this.  (The code never needed it.)
50509
50510         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
50511         All uses of recently-renamed identifiers changed to use the new,
50512         POSIX-compliant names.  The code will build and run just fine
50513         without these changes, but it's better to eat our own dog food
50514         and use the standard-conforming names.
50515
50516         * lib/regex.h: Fix a multitude of POSIX name space violations.
50517         These changes have an effect only for programs that define
50518         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
50519         do not change anything for programs compiled in the normal way.
50520         Also, there is no effect on the ABI.
50521
50522         (_REGEX_SOURCE): New macro.
50523         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
50524         defined and _GNU_SOURCE is not; this fixes a name space violation.
50525
50526         Rename the following macros to obey POSIX requirements.
50527         The old names are still visible as macros if _REGEX_SOURCE is defined.
50528         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
50529         RE_BACKSLASH_ESCAPE_IN_LISTS.
50530         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
50531         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
50532         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
50533         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
50534         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
50535         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
50536         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
50537         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
50538         (REG_INTERVALS): renamed from RE_INTERVALS.
50539         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
50540         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
50541         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
50542         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
50543         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
50544         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
50545         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
50546         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
50547         RE_UNMATCHED_RIGHT_PAREN_ORD.
50548         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
50549         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
50550         (REG_DEBUG): renamed from RE_DEBUG.
50551         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
50552         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
50553         unusual, since we can't clash with the POSIX REG_ICASE.
50554         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
50555         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
50556         (REG_NO_SUB): renamed from RE_NO_SUB.
50557         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
50558         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
50559         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
50560         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
50561         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
50562         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
50563         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
50564         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
50565         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
50566         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
50567         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
50568         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
50569         RE_SYNTAX_POSIX_MINIMAL_BASIC.
50570         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
50571         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
50572         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
50573         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
50574         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
50575         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
50576         (REG_FIXED): Renamed from REGS_FIXED.
50577         (REG_NREGS): Renamed from RE_NREGS.
50578
50579         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
50580         of other REG_* macros, since POSIX says the user is allowed to
50581         #undef these macros selectively.
50582
50583         (reg_errcode_t): Update comment stating what other tables need
50584         to be consistent.
50585
50586         Rename the following enum values to obey POSIX requirements.
50587         The old names are still visible as macros.
50588         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
50589         is not defined, since GNU is supposed to be a superset of POSIX as
50590         much as possible, and since we want reg_errcode_t to be a signed
50591         type for implementation consistency.
50592         (_REG_NOERROR): Renamed from REG_NOERROR.
50593         (_REG_NOMATCH): Renamed from REG_NOMATCH.
50594         (_REG_BADPAT): Renamed from REG_BADPAT.
50595         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
50596         (_REG_ECTYPE): Renamed from REG_ECTYPE.
50597         (_REG_EESCAPE): Renamed from REG_EESCAPE.
50598         (_REG_ESUBREG): Renamed from REG_ESUBREG.
50599         (_REG_EBRACK): Renamed from REG_EBRACK.
50600         (_REG_EPAREN): Renamed from REG_EPAREN.
50601         (_REG_EBRACE): Renamed from REG_EBRACE.
50602         (_REG_BADBR): Renamed from REG_BADBR.
50603         (_REG_ERANGE): Renamed from REG_ERANGE.
50604         (_REG_ESPACE): Renamed from REG_ESPACE.
50605         (_REG_BADRPT): Renamed from REG_BADRPT.
50606         (_REG_EEND): Renamed from REG_EEND.
50607         (_REG_ESIZE): Renamed from REG_ESIZE.
50608         (_REG_ERPAREN): Renamed from REG_ERPAREN.
50609         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
50610         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
50611         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
50612         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
50613
50614         (_REG_RE_NAME, _REG_RM_NAME): New macros.
50615         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
50616         changed.  But support the old name if the new one is not defined
50617         and if _REGEX_SOURCE.
50618
50619         Change the following member names in struct re_pattern_buffer.
50620         The old names are still supported if !_REGEX_SOURCE.
50621         The new names are always supported, regardless of _REGEX_SOURCE.
50622         (re_buffer): Renamed from buffer.
50623         (re_allocated): Renamed from allocated.
50624         (re_used): Renamed from used.
50625         (re_syntax): Renamed from syntax.
50626         (re_fastmap): Renamed from fastmap.
50627         (re_translate): Renamed from translate.
50628         (re_can_be_null): Renamed from can_be_null.
50629         (re_regs_allocated): Renamed from regs_allocated.
50630         (re_fastmap_accurate): Renamed from fastmap_accurate.
50631         (re_no_sub): Renamed from no_sub.
50632         (re_not_bol): Renamed from not_bol.
50633         (re_not_eol): Renamed from not_eol.
50634         (re_newline_anchor): Renamed from newline_anchor.
50635
50636         Change the following member names in struct re_registers.
50637         The old names are still supported if !_REGEX_SOURCE.
50638         The new names are always supported, regardless of _REGEX_SOURCE.
50639         (rm_num_regs): Renamed from num_regs.
50640         (rm_start): Renamed from start.
50641         (rm_end): Renamed from end.
50642
50643         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
50644         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
50645         Prepend __ to parameter names.
50646
50647         Undo yesterday's changes.
50648
50649 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
50650
50651         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
50652         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
50653         lib/regex.c.
50654
50655 2005-08-24  Jim Meyering  <jim@meyering.net>
50656
50657         Sync from coreutils.
50658         * m4/fcntl-safer.m4: New file.
50659
50660         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
50661         and object files for this module.
50662
50663 2005-08-24  Jim Meyering  <jim@meyering.net>
50664
50665         Sync from coreutils.
50666         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
50667
50668 2005-08-24  Jim Meyering  <jim@meyering.net>
50669
50670         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
50671         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
50672
50673 2005-08-24  Jim Meyering  <jim@meyering.net>
50674
50675         * modules/fcntl-safer: New module.
50676         * modules/fts (Depends-on): Add fcntl-safer.
50677         * MODULES.html.sh (File descriptor based Input/Output):
50678         Add fcntl-safer.
50679
50680 2005-08-24  Bruno Haible  <bruno@clisp.org>
50681
50682         Support for unit test modules.
50683         * modules/README: Mention tests modules.
50684         * modules/TEMPLATE-TESTS: New file.
50685         * gnulib-tool: New options --extract-tests-module, --with-tests and
50686         --tests-base (unused for the moment).
50687         (testsbase, inctests): New variables.
50688         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
50689         (func_verify_module): Exclude TEMPLATE-TESTS.
50690         (func_verify_nontests_module, func_verify_tests_module): New functions.
50691         (func_get_dependencies): Add implicit dependency for tests modules.
50692         (func_get_tests_module): New function.
50693         (func_modules_transitive_closure): When --with-tests was specified,
50694         include the unit tests as well, unless explicitly avoided.
50695         (func_emit_lib_Makefile_am): Ignore the tests modules here.
50696         (func_emit_tests_Makefile_am): New function.
50697         (func_create_testdir): When --with-tests was specified, emit a
50698         tests/ directory.
50699         * MODULES.html.sh (Future developments): Update.
50700
50701 2005-08-24  Bruno Haible  <bruno@clisp.org>
50702
50703         * modules/tls-tests: New file.
50704         * tests/test-tls.c: New file, from GNU gettext.
50705
50706 2005-08-24  Bruno Haible  <bruno@clisp.org>
50707
50708         * modules/lock-tests: New file.
50709         * tests/test-lock.c: New file, from GNU gettext.
50710
50711 2005-08-24  Bruno Haible  <bruno@clisp.org>
50712
50713         * lib/lock.h: Add multiple inclusion guard.
50714         * lib/tls.h: Add multiple inclusion guard.
50715
50716 2005-08-24  Bruno Haible  <bruno@clisp.org>
50717
50718         * gnulib-tool: Add support for the --aux-dir option to
50719         --create-testdir, --create-megatestdir, --test, --megatest.
50720         (func_create_testdir, func_create_megatestdir): Optionally emit a
50721         AC_CONFIG_AUX_DIR directive.
50722         (create-testdir, create-megatestdir, test, megatest): Provide a
50723         default value for $auxdir.
50724
50725 2005-08-24  Bruno Haible  <bruno@clisp.org>
50726
50727         * gnulib-tool (import): Use compound statement instead of subshell
50728         where possible.
50729
50730 2005-08-24  Bruno Haible  <bruno@clisp.org>
50731
50732         * gnulib-tool (import): Change --aux-dir default to "build-aux".
50733
50734 2005-08-24  Bruno Haible  <bruno@clisp.org>
50735
50736         * gnulib-tool (func_version): Update.
50737
50738 2005-08-24  Bruno Haible  <bruno@clisp.org>
50739
50740         * gnulib-tool (func_import, func_create_testdir,
50741         func_create_megatestdir): Quote all autoconf macro arguments.
50742
50743 2005-08-24  Bruno Haible  <bruno@clisp.org>
50744
50745         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
50746         option --force, because --force causes the aclocal.m4 of each
50747         subdirectory to be newer than the corresponding config.h.in.
50748
50749 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
50750
50751         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
50752         All contents moved to gl_REGEX.
50753         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
50754         assume that it does.
50755
50756 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
50757
50758         * lib/regex.h (REG_NOSYS)
50759         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
50760         Define, since POSIX requires it as of 2001.
50761         (_REG_ENOSYS)
50762         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
50763         New private symbol, used to keep the enum signed in all cases.
50764         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
50765         Youngman in
50766         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
50767
50768         * lib/regex_internal.c (re_string_skip_chars, register_state):
50769         (calc_state_hash):
50770         Remove forward decls; no longer needed now that we use prototypes.
50771         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
50772         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
50773         (clean_state_log_if_needed): Likewise.
50774
50775 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
50776
50777         * config/srclist.txt: Add glibc bugs 1231-1233.
50778
50779 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
50780
50781         Fix problems reported by Sam Steingold in
50782         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
50783         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
50784         assumed that reg_errcode_t is a signed type, which is not
50785         necessarily true if _XOPEN_SOURCE is not defined.
50786         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
50787         since some compilers warn about it otherwise.
50788
50789 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
50790
50791         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
50792         (init_word_char, create_initial_state, duplicate_node_closure):
50793         (fetch_token, peek_token_bracket, build_range_exp):
50794         (build_collating_symbol): Remove forward decls; no longer needed
50795         now that we use prototypes.
50796
50797         * lib/regcomp.c:
50798         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
50799         (re_compile_fastmap_iter, regcomp, regerror, regfree):
50800         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
50801         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
50802         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
50803         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
50804         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
50805         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
50806         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
50807         (build_range_exp, build_collating_symbol, parse_bracket_exp):
50808         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
50809         (build_charclass, build_charclass_op, fetch_number, create_tree):
50810         (create_token_tree, mark_opt_subexp, duplicate_tree):
50811         Use prototypes rather than old-style definitions.
50812
50813         * lib/regex_internal.c:
50814         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
50815         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
50816         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
50817         (re_string_reconstruct, re_string_peek_byte_case):
50818         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
50819         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
50820         (re_node_set_init_copy, re_node_set_add_intersect):
50821         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
50822         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
50823         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
50824         (re_acquire_state, re_acquire_state_context, register_state):
50825         (create_ci_newstate, create_cd_newstate, free_state):
50826         Likewise.
50827         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
50828         re_search_2):
50829         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
50830         (re_search_internal, prune_impossible_nodes):
50831         (acquire_init_state_context, check_matching, static):
50832         (check_halt_node_context, check_halt_state_context, proceed_next_node):
50833         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
50834         (update_regs, sift_states_backward, build_sifted_states):
50835         (clean_state_log_if_needed, merge_state_array):
50836         (update_cur_sifted_state, add_epsilon_src_nodes):
50837         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
50838         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
50839         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
50840         (find_recover_state, check_subexp_matching_top, transit_state_mb):
50841         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
50842         (check_arrival, check_arrival_add_next_nodes):
50843         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
50844         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
50845         (check_node_accept_bytes, check_node_accept, extend_buffers):
50846         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
50847         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
50848         (sift_ctx_init):
50849         Likewise.
50850
50851         * lib/regex_internal.h:
50852         (re_string_allocate, re_string_construct, re_string_reconstruct):
50853         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
50854         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
50855         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
50856         (re_string_context_at, re_string_peek_byte_case):
50857         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
50858         is defined, since we now use prototypes always.
50859
50860         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
50861         C89 or better.  All uses removed.
50862
50863 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
50864
50865         * config/srclist.txt: Add glibc bugs 1220-1227.
50866
50867 2005-08-20  Jim Meyering  <jim@meyering.net>
50868
50869         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
50870         of unused local, dfa.
50871
50872 2005-08-20  Bruno Haible  <bruno@clisp.org>
50873
50874         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
50875
50876 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
50877
50878         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
50879         (re_node_set_insert_last, re_dfa_add_node):
50880         Rename local variables to avoid GCC shadowing warnings.
50881
50882 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
50883
50884         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
50885         [defined lint]: Suppress bogus uninitialized-variable warnings.
50886
50887         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
50888         and let the caller return REG_ESPACE if out of space.  This
50889         removes an uninitialied-variable warning with GCC 4.0.1, and also
50890         avoids taking the address of a local variable.  All callers
50891         changed.
50892
50893 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
50894
50895         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
50896         $LIBCSRC/posix/regexec.c.
50897         Add glibc bug 1217 for regcomp.c.
50898
50899 2005-08-19  Jim Meyering  <jim@meyering.net>
50900
50901         * lib/regexec.c (proceed_next_node): Redo local variables to
50902         avoid GCC shadowing warnings.
50903
50904 2005-08-18  Bruno Haible  <bruno@clisp.org>
50905
50906         * lib/strstr.c (strstr): Fix return value in multibyte case.
50907         * lib/strcasestr.c (strcasestr): Likewise.
50908
50909 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
50910
50911         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
50912
50913 2005-08-17  Jim Meyering  <jim@meyering.net>
50914
50915         Make the %s format (seconds since the epoch) work for a negative
50916         number and when used with a zero-padded field width, e.g. %015s.
50917
50918         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
50919         label so that it precedes the code to set `digits'.  Otherwise,
50920         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
50921         print `00-22'.  Now, it prints `-0022', as it should.
50922
50923 2005-08-17  Bruno Haible  <bruno@clisp.org>
50924
50925         * modules/strstr (Files): Add m4/mbrtowc.m4.
50926         (Depends-on): Add mbuiter.
50927
50928 2005-08-17  Bruno Haible  <bruno@clisp.org>
50929
50930         * modules/strcasestr: New file.
50931         * MODULES.html.sh (String handling, based on ANSI C 89): Add
50932         strcasestr.
50933
50934 2005-08-17  Bruno Haible  <bruno@clisp.org>
50935
50936         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
50937
50938 2005-08-17  Bruno Haible  <bruno@clisp.org>
50939
50940         * modules/mbuiter: New file.
50941         * MODULES.html.sh (Extended multibyte and wide character utilities):
50942         Add mbuiter.
50943
50944 2005-08-17  Bruno Haible  <bruno@clisp.org>
50945
50946         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
50947         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
50948
50949 2005-08-17  Bruno Haible  <bruno@clisp.org>
50950
50951         * m4/strcasestr.m4: New file.
50952
50953 2005-08-17  Bruno Haible  <bruno@clisp.org>
50954
50955         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
50956         * lib/strstr.c: Completely rewritten, with multibyte locale support.
50957
50958 2005-08-17  Bruno Haible  <bruno@clisp.org>
50959
50960         * lib/strcasestr.h: New file.
50961         * lib/strcasestr.c: New file.
50962
50963 2005-08-17  Bruno Haible  <bruno@clisp.org>
50964
50965         * lib/strcasecmp.c: Use mbuiter.h.
50966
50967 2005-08-17  Bruno Haible  <bruno@clisp.org>
50968
50969         * lib/mbuiter.h: New file.
50970
50971 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
50972
50973         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
50974         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
50975         and gl_GETOPT are both invoked via different paths (as happens
50976         with GNU tar CVS because it uses both argp and getopt), the former
50977         wins.
50978
50979 2005-08-16  Bruno Haible  <bruno@clisp.org>
50980
50981         * modules/tls: New file.
50982         * MODULES.html.sh (Multithreading): Add tls.
50983
50984 2005-08-16  Bruno Haible  <bruno@clisp.org>
50985
50986         * modules/strnlen1: New file.
50987         * MODULES.html.sh (String handling): Add strnlen1.
50988
50989 2005-08-16  Bruno Haible  <bruno@clisp.org>
50990
50991         * modules/strcase (Files): Add m4/mbrtowc.m4.
50992         (Depends-on): Add strnlen1, mbchar.
50993
50994 2005-08-16  Bruno Haible  <bruno@clisp.org>
50995
50996         * modules/mbiter: New file.
50997         * MODULES.html.sh (Extended multibyte and wide character utilities):
50998         Add mbiter.
50999
51000 2005-08-16  Bruno Haible  <bruno@clisp.org>
51001
51002         * modules/mbfile: New file.
51003         * MODULES.html.sh (Extended multibyte and wide character utilities):
51004         Add mbfile.
51005
51006 2005-08-16  Bruno Haible  <bruno@clisp.org>
51007
51008         * modules/mbchar: New file.
51009         * MODULES.html.sh (Extended multibyte and wide character utilities):
51010         New section.
51011
51012 2005-08-16  Bruno Haible  <bruno@clisp.org>
51013
51014         * m4/tls.m4: New file, from GNU gettext.
51015
51016 2005-08-16  Bruno Haible  <bruno@clisp.org>
51017
51018         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
51019         always.
51020         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
51021
51022 2005-08-16  Bruno Haible  <bruno@clisp.org>
51023
51024         * m4/mbiter.m4: New file.
51025
51026 2005-08-16  Bruno Haible  <bruno@clisp.org>
51027
51028         * m4/mbfile.m4: New file.
51029
51030 2005-08-16  Bruno Haible  <bruno@clisp.org>
51031
51032         * m4/mbchar.m4: New file.
51033
51034 2005-08-16  Bruno Haible  <bruno@clisp.org>
51035
51036         * lib/tls.h: New file, from GNU gettext.
51037         * lib/tls.c: New file, from GNU gettext.
51038
51039 2005-08-16  Bruno Haible  <bruno@clisp.org>
51040
51041         * lib/strnlen1.h: New file.
51042         * lib/strnlen1.c: New file.
51043
51044 2005-08-16  Bruno Haible  <bruno@clisp.org>
51045
51046         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
51047         (mbi_init): Update.
51048         (mbi_avail, mbi_advance): Let the iteration end before the terminating
51049         NUL byte, not after it.
51050
51051 2005-08-16  Bruno Haible  <bruno@clisp.org>
51052
51053         * lib/strcase.h (strcasecmp): Add note in comments.
51054         * lib/strncasecmp.c: Use code from strcasecmp.c.
51055         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
51056         (strcasecmp): Work correctly in multibyte locales.
51057
51058 2005-08-16  Bruno Haible  <bruno@clisp.org>
51059
51060         * lib/mbiter.h: New file.
51061
51062 2005-08-16  Bruno Haible  <bruno@clisp.org>
51063
51064         * lib/mbfile.h: New file.
51065
51066 2005-08-16  Bruno Haible  <bruno@clisp.org>
51067
51068         * lib/mbchar.h: New file.
51069         * lib/mbchar.c: New file.
51070
51071 2005-08-16  Bruno Haible  <bruno@clisp.org>
51072
51073         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
51074         the valid ones. Makes the comparison operations transitive:
51075         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
51076         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
51077
51078 2005-08-15  Simon Josefsson  <jas@extundo.com>
51079
51080         * modules/ssize_t (License): Change to 'unlimited'.
51081
51082         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
51083
51084 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
51085
51086         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
51087         Add comments for each pending glibc patch.
51088
51089 2005-08-15  Bruno Haible  <bruno@clisp.org>
51090
51091         * lib/regex.h (__restrict_arr): Don't define to __restrict if
51092         __cplusplus is defined.
51093
51094 2005-08-14  Jim Meyering  <jim@meyering.net>
51095
51096         Sync from coreutils.
51097
51098         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
51099         Use the hash-table-based cycle-detection code not just when
51100         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
51101         Reported by James Youngman in
51102         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
51103         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
51104         FTS_TIGHT_CYCLE_CHECK.
51105         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
51106         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
51107         once again.
51108         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
51109         * lib/fts.c (fd_safer): Remove decl.
51110         Include fcntl--.h rather than unistd-safer.h
51111         (fts_safe_changedir): Don't call fd_safer; no longer needed
51112         now that we include fcntl--.h.
51113
51114 2005-08-12  Simon Josefsson  <jas@extundo.com>
51115
51116         * modules/getndelim2: Use ssize_t module.
51117         * modules/getnline: Likewise.
51118         * modules/safe-read: Likewise.
51119         * modules/xreadlink: Likewise.
51120
51121         * modules/ssize_t: New file.
51122
51123 2005-08-12  Simon Josefsson  <jas@extundo.com>
51124
51125         * m4/readline.m4: Look for termcap, curses or ncurses if required.
51126
51127 2005-08-12  Simon Josefsson  <jas@extundo.com>
51128
51129         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
51130         ssize_t.
51131
51132 2005-08-12  Simon Josefsson  <jas@extundo.com>
51133
51134         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
51135         readline, getdelim and check_version.
51136         (Support for systems lacking ISO C 99: Sizes of integer types):
51137         Add size_max.
51138
51139 2005-08-12  Bruno Haible  <bruno@clisp.org>
51140
51141         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
51142
51143 2005-08-11  Simon Josefsson  <jas@extundo.com>
51144
51145         * modules/readline: New file.
51146
51147         * modules/strnlen (Files): Add strnlen.h.
51148
51149 2005-08-11  Simon Josefsson  <jas@extundo.com>
51150
51151         * m4/readline.m4: New file.
51152
51153 2005-08-11  Simon Josefsson  <jas@extundo.com>
51154
51155         * lib/readline.h, readline.c: New file.
51156
51157 2005-08-11  Simon Josefsson  <jas@extundo.com>
51158
51159         * doc/gnulib.texi (Initial import, Finishing touches): Mention
51160         gl_AVOID.
51161
51162 2005-08-11  Bruno Haible  <bruno@clisp.org>
51163
51164         * lib/strnlen.h (strnlen): Change parameter name to match comment.
51165
51166 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
51167
51168         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
51169
51170 2005-08-10  Simon Josefsson  <jas@extundo.com>
51171
51172         * tests/test-iconvme.c: New file.
51173
51174 2005-08-10  Simon Josefsson  <jas@extundo.com>
51175
51176         * m4/strnlen.m4: New file.
51177
51178         * m4/strndup.m4: Don't check for strnlen declaration, done in
51179         strnlen.m4.
51180
51181 2005-08-10  Simon Josefsson  <jas@extundo.com>
51182
51183         * lib/strndup.c: Use strnlen.h.
51184
51185         * lib/strnlen.h: New file.
51186
51187 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
51188
51189         * README: Typos.
51190
51191 2005-08-02  Simon Josefsson  <jas@extundo.com>
51192
51193         * modules/readline: New file.
51194
51195 2005-08-02  Simon Josefsson  <jas@extundo.com>
51196
51197         * modules/getdelim: New file.
51198
51199         * modules/getline: Rewrite, don't use getndelim2.
51200
51201 2005-08-02  Simon Josefsson  <jas@extundo.com>
51202
51203         * m4/getline.m4: Separate out getdelim stuff into separate module.
51204
51205         * m4/getdelim.m4: New file.
51206
51207 2005-08-02  Simon Josefsson  <jas@extundo.com>
51208
51209         * lib/getline.h, getline.c: Rewrite.
51210
51211         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
51212
51213 2005-07-31  Bruno Haible  <bruno@clisp.org>
51214
51215         * lib/lock.h (gl_lock_initializer): New macro.
51216         (gl_lock_define_initialized): Use it.
51217         (gl_rwlock_initializer): New macro.
51218         (gl_rwlock_define_initialized): Use it.
51219         (gl_recursive_lock_initializer): New macro.
51220         (gl_recursive_lock_define_initialized): Use it.
51221
51222 2005-07-30  Karl Berry  <karl@gnu.org>
51223
51224         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
51225         Report from Ben Pfaff, regarding getopt.
51226
51227 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
51228
51229         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
51230         normal way.
51231         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
51232         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
51233         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
51234         (gl_GETOPT): Use the new macros.  Most of the implementation
51235         is moved to the new macros.  This is for programs like Emacs
51236         that don't want all the functionality of gl_GETOPT.
51237
51238 2005-07-26  Bruno Haible  <bruno@clisp.org>
51239
51240         * m4/lock.m4: Update from GNU gettext.
51241
51242 2005-07-26  Bruno Haible  <bruno@clisp.org>
51243
51244         * lib/lock.h: Update from GNU gettext.
51245         * lib/lock.c: Update from GNU gettext.
51246
51247 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
51248
51249         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
51250         obsolescent AC_TRY_RUN.  Include the default includes files, for
51251         'exit'.
51252
51253 2005-07-24  Bruno Haible  <bruno@clisp.org>
51254
51255         * modules/visibility: New file.
51256         * MODULES.html.sh (Misc): Add visibility.
51257
51258 2005-07-24  Bruno Haible  <bruno@clisp.org>
51259
51260         * m4/visibility.m4: New file.
51261
51262 2005-07-24  Bruno Haible  <bruno@clisp.org>
51263
51264         * doc/visibility.texi: New file.
51265
51266 2005-07-22  Bruno Haible  <bruno@clisp.org>
51267
51268         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
51269         $(ALLOCA_H), redundant through BUILT_SOURCES.
51270         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
51271         redundant through BUILT_SOURCES.
51272         * modules/byteswap (Makefile.am): Remove explicit dependency on
51273         $(BYTESWAP_H), redundant through BUILT_SOURCES.
51274         * modules/fnmatch (Makefile.am): Remove explicit dependency on
51275         $(FNMATCH_H), redundant through BUILT_SOURCES.
51276         * modules/getopt (Makefile.am): Remove explicit dependency on
51277         $(GETOPT_H), redundant through BUILT_SOURCES.
51278         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
51279         redundant through BUILT_SOURCES.
51280         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
51281         redundant through BUILT_SOURCES.
51282         * modules/stdbool (Makefile.am): Remove explicit dependency on
51283         $(STDBOOL_H), redundant through BUILT_SOURCES.
51284         * modules/stdint (Makefile.am): Remove explicit dependency on
51285         $(STDINT_H), redundant through BUILT_SOURCES.
51286         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
51287         Remove explicit dependency on $(SYSEXITS_H).
51288         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
51289
51290 2005-07-18  Simon Josefsson  <jas@extundo.com>
51291
51292         * lib/check-version.c (check_version): Accept identical versions too.
51293
51294 2005-07-18  Bruno Haible  <bruno@clisp.org>
51295
51296         * modules/lock: New file.
51297         * MODULES.html.sh (Multithreading): New section.
51298
51299 2005-07-18  Bruno Haible  <bruno@clisp.org>
51300
51301         * m4/lock.m4: New file, from GNU gettext.
51302
51303 2005-07-18  Bruno Haible  <bruno@clisp.org>
51304
51305         * lib/lock.h: New file, from GNU gettext.
51306         * lib/lock.c: New file, from GNU gettext.
51307
51308 2005-07-18  Bruno Haible  <bruno@clisp.org>
51309
51310         * lib/lock.h (gl_once_t): New type.
51311         (gl_once_define, gl_once): New macros.
51312         * lib/lock.c (fresh_once): New variable.
51313         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
51314         functions.
51315
51316 2005-07-16  Simon Josefsson  <jas@extundo.com>
51317
51318         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
51319         workaround, suggested by Bruno.
51320
51321 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
51322
51323         * modules/xalloc (Depends-on): Add xalloc-die.
51324         * modules/xvasprintf (Depends-on): Add xalloc-die.
51325
51326 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
51327
51328         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
51329         with a minor change.
51330
51331 2005-07-15  Bruno Haible  <bruno@clisp.org>
51332
51333         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
51334         When using lib/poll.c, define poll as rpl_poll.
51335
51336 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
51337
51338         * modules/argp (Depends-on): Remove unlocked-io.
51339
51340 2005-07-14  Derek Price  <derek@ximbiot.com>
51341
51342         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
51343         for glob symlink bug.
51344
51345 2005-07-14  Bruno Haible  <bruno@clisp.org>
51346
51347         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
51348         Instead, test for *_unlocked function declarations directly.
51349
51350 2005-07-11  Simon Josefsson  <jas@extundo.com>
51351
51352         * modules/size_max: New file.
51353
51354         * modules/xsize: Depend on size_max module for size_max.m4.
51355
51356 2005-07-11  Simon Josefsson  <jas@extundo.com>
51357
51358         * lib/size_max.h: New file.
51359
51360 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
51361
51362         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
51363         copyright symbol and the year.
51364         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
51365         (version_etc_va): Use parameterized copyright notice.
51366         Reword to conform to the current GNU coding standards.
51367
51368 2005-07-11  Karl Berry  <karl@gnu.org>
51369
51370         * doc/gnulib.texi (Quoting): new node.
51371         (Initial import): more info, from Patrice.
51372
51373 2005-07-11  Bruno Haible  <bruno@clisp.org>
51374
51375         * gnulib-tool (func_usage): Document option --avoid.
51376         (Command line options): Handle --avoid.
51377         (func_acceptable): New function.
51378         (func_modules_transitive_closure): Use it.
51379
51380 2005-07-11  Bruno Haible  <bruno@clisp.org>
51381
51382         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
51383         Reported by Jim Meyering.
51384
51385 2005-07-10  Bruno Haible  <bruno@clisp.org>
51386
51387         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
51388         Needed when size_t is smaller than 'unsigned int'.
51389         Reported by Paul Eggert.
51390
51391 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
51392
51393         * modules/argp (Depends-on): Add unlocked-io
51394
51395 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
51396
51397         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
51398         block of defines.
51399
51400 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
51401
51402         * config/srclist.txt: Comment out regcomp.c, since we have a porting
51403         fix now.
51404
51405 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
51406         and Paul Eggert  <eggert@cs.ucla.edu>
51407
51408         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
51409         in wint_t, not wchar_t.  Remove now-unnecessary cast.
51410
51411 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51412
51413         * modules/regex (Files): Add lib/regex_internal.c,
51414         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
51415         (Depends-on): Add extensions.
51416         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
51417
51418 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51419
51420         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
51421         pathconf.
51422         * m4/same.m4 (gl_SAME): Likewise.
51423         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
51424
51425         * m4/regex.m4: Adjust to new libc regex implementation.
51426         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
51427         all the .c and .h parts of (the new) regex.
51428         Quote the m4 stuff better.
51429         Check for RE_ICASE bug of old gnulib.
51430         Check for REG_STARTEND of recent libc.
51431         Rename local variables from jm_* to gl_*.
51432         Quote operand of "test -f".
51433         Say "recent enough" version of libc, not "version 2".
51434         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
51435         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
51436         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
51437         Remove check for btowc, isascii.
51438         Require AM_LANGINFO_CODESET.
51439
51440 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51441
51442         * lib/regex.c, regex.h: Sync from libc.
51443         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
51444         * lib/regexec.c:
51445         New files, synced from libc, except that regex_internal.h
51446         currently has a small porting fix.
51447
51448 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51449
51450         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
51451         regex_internal.c, regexec.c.
51452         Add regex_internal.h too, but as a comment, since the libc version
51453         is currently broken in gnulib mode.
51454
51455 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
51456
51457         Support programs like Emacs that use gnulib but not gettext.
51458         * MODULES.html.sh (Internationalization functions): Add gettext-h.
51459         * modules/gettext-h: New file.
51460         * modules/gettext (Files): Remove lib/gettext.h.
51461         (Depends-on): Add gettext-h.
51462         (Makefile.am): Remove lib_SOURCES.
51463         * modules/argmatch, modules/c-stack, modules/closeout:
51464         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
51465         * modules/execute, modules/file-type, modules/getaddrinfo:
51466         * modules/getopt, modules/human, modules/javacomp:
51467         * modules/javaexec, modules/mkdir-p, modules/obstack:
51468         * modules/openat, modules/pagealign_alloc, modules/pipe:
51469         * modules/quotearg, modules/regex, modules/rpmatch:
51470         * modules/unicodeio, modules/userspec, modules/version-etc:
51471         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
51472         * modules/xsetenv:
51473         Depend on gettext-h, not gettext.
51474
51475 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
51476
51477         * gnulib-tool (func_import): Add support for 'public domain' license.
51478         * modules/alloca, modules/atexit, modules/memmove:
51479         Now public domain, not GPL.
51480         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
51481         * modules/realloc, modules/strerror, modules/strtod:
51482         Now LGPL, not GPL.
51483
51484 2005-07-05  Bruno Haible  <bruno@clisp.org>
51485
51486         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
51487         autoconf CVS. Needed for mingw.
51488
51489 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
51490
51491         Remove the dependency of the strftime module on the tzset module.
51492         * modules/strftime (Depends-on): Remove dependency on tzset.
51493
51494 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
51495
51496         Remove the dependency of the strftime module on the tzset module.
51497         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
51498         gl_FUNC_TZSET_CLOBBER.
51499
51500 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
51501
51502         Remove the dependency of the strftime module on the tzset module.
51503         * lib/strftime.c (my_strftime)
51504         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
51505         Copy the input structure, to work around some of the bug with
51506         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
51507         Solaris releases, you should also use the tzset module, but we won't
51508         require it as a dependency any more since we don't want LGPLed code
51509         to depend on GPLed code.
51510
51511 2005-07-02  Jim Meyering  <jim@meyering.net>
51512
51513         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
51514         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
51515         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
51516         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
51517
51518 2005-07-02  Jim Meyering  <jim@meyering.net>
51519
51520         * lib/backupfile.c (backup_args): Change a `0' to NULL.
51521
51522 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
51523
51524         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
51525         declares only 'struct timespec;' (!).
51526
51527 2005-07-01  Jim Meyering  <jim@meyering.net>
51528
51529         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
51530         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
51531         * lib/save-cwd.c, tempname.c:
51532         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
51533         and don't include <sys/file.h>).
51534
51535 2005-06-29  Jim Meyering  <jim@meyering.net>
51536
51537         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
51538         type name.  Use the variable name instead.
51539         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
51540         Likewise.
51541
51542 2005-06-28  Simon Josefsson  <jas@extundo.com>
51543
51544         * modules/check-version (Files): Add check-version.m4.
51545
51546 2005-06-28  Simon Josefsson  <jas@extundo.com>
51547
51548         * m4/check-version.m4: New file, suggested by Jim Meyering
51549         <jim@meyering.net>.
51550
51551 2005-06-28  Simon Josefsson  <jas@extundo.com>
51552
51553         * lib/check-version.h, lib/check-version.c: New files.
51554
51555 2005-06-28  Simon Josefsson  <jas@extundo.com>
51556
51557         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
51558         collision with global variable.  Better indentation.  Don't
51559         increment buffer pointer beyond buffer end.  Based on comments
51560         from Paul Eggert <eggert@cs.ucla.edu>.
51561
51562         * lib/base64.h: Indent.
51563
51564 2005-06-28  Simon Josefsson  <jas@extundo.com>
51565
51566         * doc/gnulib.texi (Library version handling): New section.
51567
51568 2005-06-28  Jim Meyering  <jim@meyering.net>
51569
51570         * check-module (find_included_lib_files): Hard-code another
51571         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
51572         but modules/fts-lgpl (correctly) does not list those files.
51573
51574         * modules/canonicalize (Files): Add lib/pathmax.h.
51575
51576 2005-06-25  Simon Josefsson  <jas@extundo.com>
51577
51578         * modules/check-version: New file.
51579
51580 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
51581
51582         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
51583         initializer of struct addrinfo, as an indication that we don't
51584         care how many members the structure has.
51585
51586 2005-06-24  Derek Price  <derek@ximbiot.com>
51587         and Bruno Haible  <bruno@clisp.org>
51588
51589         Remove stat module & update lstat.
51590         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
51591         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
51592         * m4/stat.m4: Remove this file.
51593
51594 2005-06-24  Derek Price  <derek@ximbiot.com>
51595         and Bruno Haible  <bruno@clisp.org>
51596
51597         Remove stat module & update lstat.
51598         * lib/stat.c: Remove this file...
51599         (slash_aware_lstat): ...moving this content and its support...
51600         * lib/lstat.c (rpl_lstat): ...into here.
51601         * lib/lstat.h: New file.
51602
51603 2005-06-24  Derek Price  <derek@ximbiot.com>
51604         and Bruno Haible  <bruno@clisp.org>
51605
51606         Remove stat module & update lstat.
51607         * config/srclist.txt (libc sources): Remove stat.
51608
51609 2005-06-24  Derek Price  <derek@ximbiot.com>
51610         and Bruno Haible  <bruno@clisp.org>
51611
51612         Remove stat module & update lstat.
51613         * MODULES.html.sh (stat): Remove.
51614         * MODULES.html: Regenerated.
51615         * modules/lstat (Description): Correct function name.
51616         (Files): Add "lstat.h".
51617         (Depends-on): Remove stat, add xalloc, stat-macros.
51618         * modules/stat: Remove this file.
51619         (Include): Add "lstat.h", remove <sys/stat.h>.
51620
51621 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
51622
51623         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
51624         (ranged_convert): Don't save conversion in a temporary struct.
51625         This causes a warning with GCC 4.0.0, and anyway in the typical
51626         case it's not worth the extra 100 bytes or so of code.
51627         (ranged_convert, __mktime_internal): When calling a function via a
51628         pointer P, use P () rather than (*P) (), as we now assume C89 or
51629         better.
51630
51631 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
51632
51633         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
51634         "who -r" failed to give output.  Problem reported by Tim Waugh.
51635
51636         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
51637         (xcalloc): Use it to avoid needless tests.
51638         Problem reported by Jim Meyering.
51639
51640 2005-06-20  Derek Price  <derek@ximbiot.com>
51641
51642         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
51643         unnecessary for Autoconfs > 2.59c.
51644
51645 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
51646
51647         * lib/argp.h (__option_is_short): Check upper limit of
51648         __key. Isprint() requires its argument to have the value
51649         of an unsigned char or EOF.
51650
51651 2005-06-16  Jim Meyering  <jim@meyering.net>
51652
51653         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
51654         when either N or S is zero.
51655
51656 2005-06-16  Derek Price  <derek@ximbiot.com>
51657
51658         * m4/bison.m4: Declare YACC & YFLAGS precious.
51659
51660 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
51661
51662         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
51663         multibyte string or pattern, fall back on unibyte matching.
51664         Problem reported by James Youngman.
51665
51666 2005-06-08  Bruno Haible  <bruno@clisp.org>
51667
51668         * modules/csharpcomp: New file.
51669         * MODULES.html.sh (C#): Add csharpcomp.
51670
51671 2005-06-08  Bruno Haible  <bruno@clisp.org>
51672
51673         * m4/csharpcomp.m4: New file, from GNU gettext.
51674
51675 2005-06-08  Bruno Haible  <bruno@clisp.org>
51676
51677         * lib/csharpcomp.h: New file, from GNU gettext.
51678         * lib/csharpcomp.c: New file, from GNU gettext.
51679         * lib/csharpcomp.sh.in: New file, from GNU gettext.
51680
51681 2005-06-08  Bruno Haible  <bruno@clisp.org>
51682
51683         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
51684         warning on mingw.
51685
51686 2005-06-07  Derek Price  <derek@ximbiot.com>
51687
51688         Sync from CVS.
51689         * lib/glob_.h: Indent nested #ifdef.
51690
51691 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
51692
51693         Sync from coreutils.
51694         Use "file name" when talking about file names, instead of "filename"
51695         or "path", as per the GNU coding standards.
51696         * lib/mkdir-p.c: Renamed from makepath.c.
51697         (make_dir_parents): Renamed from make_path.  All callers changed.
51698         * lib/mkdir-p.h: Likewise.  All includers changed.
51699         * lib/filenamecat.c: Renamed from path-concat.c.
51700         (file_name_concat): Renamed from path_concat.  All callers changed.
51701         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
51702         * lib/filenamecat.h: Likewise.  All includers changed.
51703         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
51704         in comments or local variable names.
51705         * lib/basename.c: Likewise.
51706         * lib/canonicalize.c, canonicalize.h: Likewise.
51707         * lib/dirname.c, dirname.h: Likewise.
51708         * lib/euidaccess.c: Likewise.
51709         * lib/exclude.c: Likewise
51710         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
51711         * lib/fsusage.c, fsuage.h: Likewise.
51712         * lib/fts.c, fts_.h: Likewise.
51713         * lib/getcwd.c: Likewise.
51714         * lib/getloadavg.c: Likewise.
51715         * lib/mkstemp.c: Likewise.
51716         * lib/mountlist.c, mountlist.h: Likewise.
51717         * lib/openat.c, openat.h: Likewise.
51718         * lib/readlink-stub.c: Likewise.
51719         * lib/readutmp.c, readutmp.h: Likewise.
51720         * lib/rename.c: Likewise.
51721         * lib/rmdir.c: Likewise.
51722         * lib/same.c: Likewise.
51723         * lib/savedir.c: Likewise.
51724         * lib/stripslash.c: Likewise.
51725         * lib/tempname.c: Likewise.
51726         * lib/xreadlink.c: Likewise.
51727         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
51728         All uses changed.
51729         * lib/exclude.h: Likewise.
51730
51731         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
51732         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
51733         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
51734         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
51735         * lib/pathmax.h: Include <limits.h> unconditionally, since other
51736         files have been getting away with it for years (MORE/BSD 4.3
51737         is extinct now).
51738         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
51739         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
51740
51741         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
51742         Define to 256, not 255, as per modern POSIX.
51743
51744 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
51745
51746         Sync from coreutils.
51747         Use "file name" when talking about file names, instead of "filename"
51748         or "path", as per the GNU coding standards.
51749         * MODULES.html.sh: mkdir-p renamed from makepath.
51750         filenamecat renamed from path-concat.
51751         * modules/filenamecat: Renamed from modules/path-concat.
51752         (Files): filenamecat.h and filenamecat.c renamed from
51753         path-concat.h and path-concat.c.
51754         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
51755         (Include): filenamecat.h, not path-concat.h.
51756         * modules/mkdir-p: Renamed from modules/makepath.
51757         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
51758         makepath.c.
51759         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
51760         (Include): mkdir-p.h, not makepath.h.
51761
51762 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
51763
51764         Sync from coreutils.
51765         * m4/mkdir-p.m4: Renamed from makepath.m4.
51766         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
51767         Rename files from makepath.c to mkdir-p.c, and from
51768         makepath.h to mkdir-p.h.
51769         * m4/filenamecat.m4: Renamed from path-concat.m4.
51770         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
51771         Rename files from path-concat.c to filenamecat.c,
51772         and from path-concat.h to filenamecat.h.
51773         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
51774         "file name" in local variables or comments.
51775         * m4/rename.m4: Likewise.
51776
51777 2005-06-01  Bruno Haible  <bruno@clisp.org>
51778
51779         * modules/csharpexec: New file.
51780         * MODULES.html.sh (C#): New section.
51781
51782 2005-06-01  Bruno Haible  <bruno@clisp.org>
51783
51784         * m4/csharp.m4: New file, from GNU gettext.
51785         * m4/csharpexec.m4: New file, from GNU gettext.
51786
51787 2005-06-01  Bruno Haible  <bruno@clisp.org>
51788
51789         * lib/csharpexec.h: New file, from GNU gettext.
51790         * lib/csharpexec.c: New file, from GNU gettext.
51791         * lib/csharpexec.sh.in: New file, from GNU gettext.
51792
51793 2005-05-31  Derek Price  <derek@ximbiot.com>
51794             Paul Eggert  <eggert@cs.ucla.edu>
51795
51796         Sync from cvs.
51797         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
51798
51799 2005-05-31  Derek Price  <derek@ximbiot.com>
51800             Paul Eggert  <eggert@cs.ucla.edu>
51801
51802         Sync from cvs.
51803         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
51804
51805 2005-05-29  Derek Price  <derek@ximbiot.com>
51806
51807         * config/srclist.txt (glob_.h, glob.c): Add these files.
51808
51809 2005-05-29  Derek Price  <derek@ximbiot.com>
51810
51811         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
51812         * modules/glob: New file.
51813         * modules/getlogin_r: Add link to POSIX spec in description.
51814
51815 2005-05-29  Derek Price  <derek@ximbiot.com>
51816             Paul Eggert  <eggert@cs.ucla.edu>
51817
51818         * m4/glob.m4: New file.
51819
51820 2005-05-29  Derek Price  <derek@ximbiot.com>
51821             Paul Eggert  <eggert@cs.ucla.edu>
51822
51823         * lib/glob_.h, lib/glob.c: New files.
51824
51825 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
51826
51827         * modules/fts (Files): Remove m4/inttypes-pri.m4.
51828         * modules/fts-lgpl (Depends-on): Remove gettext.
51829
51830 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
51831
51832         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
51833         and don't require gt_INTTYPES_PRI.
51834
51835 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
51836
51837         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
51838
51839         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
51840         the configuration hassle isn't worth it.
51841         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
51842         (LONGEST_MODIFIER, PRIuMAX): Remove.
51843
51844 2005-05-27  Bruno Haible  <bruno@clisp.org>
51845
51846         * lib/getlogin_r.h: Remove second include of <stddef.h>.
51847
51848 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
51849
51850         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
51851         _POSIX_PTHREAD_SEMANTICS for Solaris.
51852
51853 2005-05-25  Derek Price  <derek@ximbiot.com>
51854
51855         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
51856
51857 2005-05-25  Derek Price  <derek@ximbiot.com>
51858             Paul Eggert  <eggert@cs.ucla.edu>
51859
51860         * modules/getlogin_r, m4/getlogin_r.m4: New files.
51861         * lib/getlogin_r.c, getlogin_r.h: New files.
51862
51863 2005-05-25  Bruno Haible  <bruno@clisp.org>
51864             Derek Price  <derek@ximbiot.com>
51865
51866         * lib/getlogin_r.h: Simplify API documentation.
51867
51868 2005-05-23  Derek Price  <derek@ximbiot.com>
51869
51870         * modules/minmax (Files): Add m4/minmax.m4.
51871         (configure.ac): Add gl_MINMAX.
51872
51873 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
51874
51875         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
51876         so that unistd-safer.h (GPL'ed code) need not be included.
51877
51878 2005-05-22  Bruno Haible  <bruno@clisp.org>
51879
51880         * m4/minmax.m4: New file.
51881         Based on a patch by Derek Price <derek@ximbiot.com>.
51882
51883 2005-05-22  Bruno Haible  <bruno@clisp.org>
51884
51885         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
51886         (INT64_MIN): Fix definition.
51887         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
51888
51889         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
51890         NEED_SIGNED_INT_TYPES.
51891
51892         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
51893         HAVE_SYSTEM_INTTYPES.
51894
51895 2005-05-22  Bruno Haible  <bruno@clisp.org>
51896
51897         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
51898         Also include <sys/param.h> if it defines MIN, MAX.
51899         Based on a patch by Derek Price <derek@ximbiot.com>.
51900
51901 2005-05-21  Jim Meyering  <jim@meyering.net>
51902
51903         * modules/fts (Files): Add m4/inttypes-pri.m4.
51904         (Depends-on): Add lstat and remove gettext.  Alphabetize.
51905
51906 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
51907
51908         New fts module.
51909         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
51910         (setup_dir, free_dir): New functions.
51911         (enter_dir, leave_dir): Define trivial
51912         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
51913         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
51914         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
51915         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
51916         Move to fts-cycle.c.
51917         (fts_open): Use setup_dir.
51918         (fts_close): Use free_dir.
51919         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
51920         This adds a label and some gotos, but the alternatives were messier.
51921         Check for memory allocation failure when entering a dir.
51922         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
51923         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
51924         (FTS): New member fts_cycle, that is a union that contains the
51925         old active_dir_ht and cycle_state.  All uses changed to mention
51926         fts_cycle.ht and fts_cycle.state.
51927         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
51928         fts.c, with the following changes:
51929         (setup_dir, free_dir): New functions.
51930         (enter_dir): Now returns bool.  Return true if successful, false
51931         if memory exhausted.  All callers changed.
51932         Do not bother partly cleaning up on
51933         memory allocation failure; that is free_dir's job.
51934         However, free ad if hash_insert fails, to avoid memory leak.
51935         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
51936         fts->fts_options to see which union member to use.
51937
51938 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
51939
51940         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
51941         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
51942
51943 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
51944
51945         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
51946
51947 2005-05-20  Jim Meyering  <jim@meyering.net>
51948
51949         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
51950         Now a macro, to pacify GCC.
51951
51952 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
51953
51954         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
51955         of -1.
51956
51957 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
51958
51959         * lib/chown.c (rpl_chown): Return -1 on failure.
51960
51961 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
51962
51963         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
51964         Don't check for stddef.h.
51965         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
51966         don't use its results.
51967         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
51968         since we include them unconditionally.  Don't require
51969         AM_STDBOOL_H, since stdbool is a prerequisite.
51970         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
51971         since we assume C89 or better.
51972         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
51973         as we don't use their results.
51974         Don't check for fchdir, memmove, memset, strrchr, as we use
51975         them unconditionally.
51976         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
51977         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
51978
51979 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
51980
51981         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
51982         Include <stddef.h> unconditionally, since we assume C89 now.
51983         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
51984         * lib/fts.c: Include fts_.h first, to check interface.
51985         Do not include intprops.h; no longer needed.
51986         Include cycle-check.h and hash.h, since fts_.h no longer does.
51987         Remove unnecessary casts of closedir to void.
51988         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
51989         decide whether to decrement nlinks.
51990         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
51991         (FTS): Use struct hash_table * instead of Hash_table, so that
51992         we no longer need to include hash.h here.
51993
51994 2005-05-18  Jim Meyering  <jim@meyering.net>
51995
51996         * modules/dirfd (License): Change to LGPL.  Most of the code
51997         is already in the public domain.
51998
51999 2005-05-18  Jim Meyering  <jim@meyering.net>
52000
52001         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
52002         Reported by Yoann Vandoorselaere.
52003
52004 2005-05-17  Jim Meyering  <jim@meyering.net>
52005
52006         * m4/fts.m4: New file, from coreutils.
52007
52008 2005-05-17  Jim Meyering  <jim@meyering.net>
52009
52010         * lib/fts.c, lib/fts_.h: New files, from coreutils.
52011
52012 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52013
52014         Sync from coreutils.
52015         * m4/unlinkdir.m4: New file.
52016
52017 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52018
52019         Sync from coreutils.
52020         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
52021         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
52022         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
52023         White space changes only.
52024         * lib/makepath.c (make_path): Port to hosts where leading "//" is
52025         special.
52026         * lib/yesno.c: Include getline.h, not ctype.h.
52027         (yesno): Don't remove leading white space; POSIX doesn't allow it.
52028         Use getline to remove arbitrary restriction on response length.
52029
52030 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52031
52032         * config/srclist-update: Spell out "Street" in FSF postal
52033         mail address; this is the style the FSF seems to prefer.
52034
52035         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
52036         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
52037         this updates FSF postal mail address.
52038
52039         Sync from coreutils.
52040         * modules/unlinkdir: New file.
52041         * modules/yesno (Depends-on): Add getline.
52042         * MODULES.html.sh (File system functions): Add unlinkdir.
52043
52044 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
52045
52046         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
52047         lib/strsep.h:
52048         Change the initial comment to refer to GPL, not LGPL.
52049         gnulib-tool will change it to LGPL as needed.
52050
52051         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
52052         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
52053         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
52054         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
52055         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
52056         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
52057         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
52058         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
52059         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
52060         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
52061         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
52062         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
52063         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
52064         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
52065         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
52066         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
52067         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
52068         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
52069         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
52070         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
52071         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
52072         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
52073         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
52074         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
52075         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
52076         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
52077         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
52078         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
52079         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
52080         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
52081         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
52082         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
52083         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
52084         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
52085         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
52086         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
52087         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
52088         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
52089         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
52090         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
52091         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
52092         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
52093         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
52094         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
52095         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
52096         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
52097         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
52098         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
52099         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
52100         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
52101         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
52102         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
52103         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
52104         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
52105         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
52106         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
52107         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
52108         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
52109         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
52110         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
52111         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
52112         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
52113         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
52114         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
52115         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
52116         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
52117         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
52118         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
52119         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
52120         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
52121         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
52122         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
52123         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
52124         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
52125         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
52126         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
52127         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
52128         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
52129         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
52130         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
52131         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
52132         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
52133         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
52134         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
52135         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
52136         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
52137         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
52138         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
52139         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
52140         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
52141         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
52142         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
52143         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
52144         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
52145         lib/yesno.c, lib/yesno.h:
52146         Update FSF postal mail address.
52147
52148 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
52149
52150         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
52151         tests/test-memmem.c, tests/test-stpncpy.c:
52152         Update FSF postal mail address.
52153
52154 2005-05-13  Bruno Haible  <bruno@clisp.org>
52155
52156         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
52157         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
52158         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
52159         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
52160         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
52161         Add support for 64-bit integers in the MSVC compiler.
52162
52163 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
52164
52165         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
52166
52167 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
52168
52169         * gnulib-tool (func_import): Sort and uniquify recommended includes.
52170
52171 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
52172
52173         * doc/getdate.texi (General date syntax): Don't say that date
52174         date --iso-8601=ns generates acceptable dates; it doesn't yet.
52175         Problem reported by Nic Ferrier.
52176
52177 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52178
52179         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
52180         specified in ai_socktype. Fix invalid ai_protocol
52181         check. ai_protocol is usually set to 0 or depending on
52182         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
52183         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
52184         ai_socktype / ai_protocol in the returned addrinfo structure.
52185
52186 2005-05-10  Simon Josefsson  <jas@extundo.com>
52187
52188         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
52189         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
52190
52191 2005-05-10  Karl Berry  <karl@gnu.org>
52192
52193         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
52194         (from http://www.gnu.org/licenses).
52195         * doc/COPYING.LIB: also rename to COPYING.LESSER.
52196         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
52197         fdl.texi suffices.
52198
52199 2005-05-10  Karl Berry  <karl@gnu.org>
52200
52201         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
52202         (COPYING.DOC): remove.
52203
52204         * config/srclist-update: new FSF address.
52205
52206 2005-05-10  Derek Price  <derek@ximbiot.com>
52207
52208         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
52209         possible.
52210
52211 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52212             Bruno Haible  <bruno@clisp.org>
52213
52214         * modules/inet_ntop: New file.
52215         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
52216         inet_ntop.
52217
52218 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52219             Bruno Haible  <bruno@clisp.org>
52220
52221         * m4/inet_ntop.m4: New file.
52222
52223 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52224             Bruno Haible  <bruno@clisp.org>
52225
52226         * lib/inet_ntop.h: New file.
52227         * lib/inet_ntop.c: New file, from glibc with modifications.
52228
52229 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
52230
52231         * modules/time_r (License): Change to LGPL.
52232         * modules/extensions (License): Change to LGPL.  Actually,
52233         the license is more permissive than that, but currently gnulib-tool
52234         doesn't know how to handle more-permissive licenses.
52235
52236         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
52237         Problem reported by Dave Love.
52238
52239 2005-05-08  Jim Meyering  <jim@meyering.net>
52240
52241         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
52242         blank.
52243
52244 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
52245
52246         * modules/argmatch (Depends-on): Add stdbool.
52247         * modules/backupfile (Depends-on): Likewise.
52248         * modules/chdir-long (Depends-on): Likewise.
52249         * modules/closeout (Depends-on): Likewise.
52250         * modules/cycle-check (Depends-on): Likewise.
52251         * modules/dirname (Depends-on): Likewise.
52252         * modules/fnmatch (Depends-on): Likewise.
52253         * modules/fsusage (Depends-on): Likewise.
52254         * modules/fwriteerror (Depends-on): Likewise.
52255         * modules/getcwd (Depends-on): Likewise.
52256         * modules/getloadavg (Depends-on): Likewise.
52257         * modules/hard-locale (Depends-on): Likewise.
52258         * modules/makepath (Depends-on): Likewise.
52259         * modules/mountlist (Depends-on): Likewise.
52260         * modules/nanosleep (Depends-on): Likewise.
52261         * modules/posixtm (Depends-on): Likewise.
52262         * modules/quotearg (Depends-on): Likewise.
52263         * modules/readtokens (Depends-on): Likewise.
52264         * modules/readtokens0 (Depends-on): Likewise.
52265         * modules/readutmp (Depends-on): Likewise.
52266         * modules/save-cwd (Depends-on): Likewise.
52267         * modules/strftime (Depends-on): Likewise.
52268         * modules/userspec (Depends-on): Likewise.
52269         * modules/utimecmp (Depends-on): Likewise.
52270         * modules/xgetcwd (Depends-on): Likewise.
52271         * modules/xnanosleep (Depends-on): Likewise.
52272         * modules/xstrtod (Depends-on): Likewise.
52273         * modules/yesno (Depends-on): Likewise.
52274
52275 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
52276
52277         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
52278         needless checks.
52279
52280 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52281
52282         Merge from coreutils.  Among other things,
52283         add bulletproofing for cases where stdin, stdout, or stderr are closed.
52284         * lib/fd-safer.c: New file.
52285         * lib/fcntl-safer.h, open-safer.c: Remove.
52286         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
52287         * lib/dup-safer.c: Include unistd-safer.h first.
52288         Don't include errno.h.
52289         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
52290         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
52291         * lib/file-type.c: Rely on file-type.h change.
52292         * lib/getloadavg.c: Include unistd-safer.h.
52293         (getloadavg): Use safer open.
52294         * lib/getusershell.c: Include "stdio-safer.h".
52295         (getusershell): Use safer fopen.
52296         * lib/long-options.c (long_options): Use NULL rather than 0.
52297         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
52298         'free'.
52299         * lib/modechange.c: Likewise.
52300         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
52301         (MODE_DONE): New constant.
52302         (struct mode_change): Remove 'next' member.
52303         (make_node_op_equals): New function; like the old one of the
52304         same name, except it allocates an array.
52305         (mode_compile, mode_create_from_ref): Use it.
52306         (mode_compile): Allocate result as an array, not a linked list.
52307         Parse octal string ourself, so that we catch mistakes like "+0".
52308         (mode_adjust): Arg is an array, not a linked list.
52309         * lib/modechange.c: Include stat-macros.h, xalloc.h.
52310         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
52311         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
52312         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
52313         Remove.  This is now stat-macros.h's job.
52314         (talloc): Remove.  All callers replaced by xalloc, so that
52315         our invokers don't have to worry about reporting memory failures.
52316         (make_node_op_equals): Remove.
52317         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
52318         New constants.
52319         (struct mode_change): Moved here from modechange.h.
52320         (mode_append_entry): Remove.
52321         (mode_compile): Remove MASKED_OPS arg, since it encouraged
52322         apps to have incorrect behavior.  Use simpler algorithm for head
52323         and tail.  Don't futz with umask; that's now the job of mode_adjust.
52324         Detect more invalid usages rather than having somewhat-random behavior.
52325         Don't insert an "a=" action, as that leads to incorrect behavior.
52326         (mode_compile, mode_create_from_ref): Return NULL on error instead
52327         of an enum, since now there's only one way to have an error.  All
52328         callers changed.
52329         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
52330         at the correct time.  Simplify calculation of "+u" and its ilk.
52331         Don't mishandle "+X".
52332         (mode_free): Remove "register" and localize decls.
52333         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
52334         (struct mode_change): Move to modechange.c; callers don't
52335         need to see this stuff.
52336         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
52337         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
52338         (mode_change, mode_adjust): Reflect the new signatures noted above.
52339         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
52340         that might redefine system include files.
52341         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
52342         (my_usleep): Use NULL rather than (void *) 0.
52343         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
52344         Use siginterrupt to specify that system calls should be interrupted.
52345         (rpl_nanosleep): Move initialization of suspended closer to call of
52346         my_usleep.
52347         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
52348         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
52349         (desirable_utmp_entry): New function.
52350         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
52351         using x2nrealloc, to simplify logic.
52352         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
52353         size calculation.  Do not assume utmp file is a regular file.
52354         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
52355         (READ_UTMP_CHECK_PIDS): New constant.
52356         * lib/save-cwd.c: Include unistd-safer.h.
52357         (save_cwd): Use fd_safer.
52358         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
52359         [!_LIBC] Include "stat-macros.h" instead.
52360         * lib/unistd-safer.h (fd_safer): New decl.
52361
52362 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52363
52364         * modules/getloadavg (Depends-on): Add unistd-safer.
52365         * modules/getusershell (Depends-on): Add stdio-safer.
52366         * modules/lstat (Depends-on): Remove xalloc.
52367         * modules/mkstemp (Depends-on): Add stat-macros.
52368         * modules/modechange (Depends-on): Remove xstrtol.
52369         Add stat-macros, xalloc.
52370         * modules/save-cwd (Depends-on): Add unistd-safer.
52371         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
52372         * modules/unistd-safer (Files): Add lib/fd-safer.c
52373         (Makefile.am): Remove lib_SOURCES.
52374
52375         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
52376         Remove fcntl-safer; unistd-safer supersedes it.
52377
52378 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52379
52380         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
52381         AC_HEADER_STAT.
52382         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
52383         (gl_PREREQ_CHOWN): Remove.
52384         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
52385         it.  Don't require AC_HEADER_STAT.
52386         (gl_PREREQ_LSTAT): Remove.
52387         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
52388         Don't require AC_HEADER_STAT.
52389         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
52390         (gl_PREREQ_RMDIR): Remove.
52391         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
52392         mention stat-macros.h or AC_HEADER_STAT, since we'll make
52393         the stat-macros module a prerequisite.
52394         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
52395         * m4/filemode.m4 (gl_FILEMODE): Likewise.
52396         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
52397         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
52398         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
52399         variable names.
52400         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
52401         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
52402         variable prefixes.
52403         * m4/fcntl-safer.m4: Remove.
52404         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
52405         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
52406         Invoke gl_PREREQ_FD_SAFER.
52407         (gl_PREREQ_FD_SAFER): New macro.
52408         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
52409         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
52410         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
52411         Remove duplicate call to AC_LIBOBJ(readutmp).
52412         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
52413
52414         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
52415         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
52416
52417 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52418
52419         * MODULES.html.sh (Misc): Add byteswap.
52420
52421 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52422
52423         * modules/getcwd (Depends-on): Add extensions.
52424         * modules/openat (Depends-on): Likewise.
52425
52426 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52427
52428         * modules/byteswap: New file.
52429
52430 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52431
52432         * m4/byteswap.m4: New file.
52433
52434 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52435
52436         * lib/byteswap_.h: New file.
52437
52438 2005-04-25  Karl Berry  <karl@gnu.org>
52439
52440         * m4/gettext.m4: Update from GNU gettext 0.14.4.
52441
52442 2005-04-25  Albert Chin  <china@thewrittenword.com>
52443
52444         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
52445         Toolkit C bug.
52446
52447 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
52448
52449         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
52450         (func_ln_if_changed) Remove forcibly for no error message
52451         in case file does not exist.
52452
52453 2005-04-19  Simon Josefsson  <jas@extundo.com>
52454
52455         * gnulib-tool (Options): Make --symlink mean --symbolic.
52456
52457 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
52458
52459         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
52460
52461 2005-04-16  Simon Josefsson  <jas@extundo.com>
52462
52463         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
52464
52465 2005-04-15  Simon Josefsson  <jas@extundo.com>
52466
52467         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
52468
52469 2005-04-15  Simon Josefsson  <jas@extundo.com>
52470
52471         * gnulib-tool: Rename --symlink to --symbolic.
52472
52473 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
52474
52475         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
52476         symbolic links to files instead of copying/moving.  Add --aux-dir,
52477         specifying directory relative --dir where auxiliary build tools
52478         are placed.
52479
52480 2005-04-14  Bruno Haible  <bruno@clisp.org>
52481
52482         * modules/allocsa (License): Change to LGPL.
52483         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
52484
52485 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
52486
52487         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
52488         that "UTC +1 second" continues to work.  Problem reported
52489         by Dmitry V. Levin.
52490         (relunit_snumber): New rule.
52491         (relunit): Use it.
52492
52493 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
52494
52495         * lib/getdate.y (universal_time_zone_table): New constant.
52496         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
52497         universal_time_zone_table.
52498         (lookup_zone): Prefer universal_time_zone_table to
52499         local_time_zone_table, so that "GMT" time stamps are allowed in
52500         London during the summer.  Problem reported by Ian Abbott.
52501
52502 2005-04-12  Jim Meyering  <jim@meyering.net>
52503
52504         * lib/human.c (humblock): Set *options even when returning due to
52505         xstrtoumax conversion failure.  Thanks to a used-uninitialized
52506         warning from gcc-4.
52507
52508 2005-04-09  Jim Meyering  <jim@meyering.net>
52509
52510         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
52511         -Wuninitialized: initialize tm0.tm_year.
52512
52513 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
52514
52515         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
52516         count, since there's no maximum.  All uses changed.
52517         Add member dsts_seen.
52518         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
52519         not being INT_MAX.
52520         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
52521         Use pc_rels_seen to decide whther a date is absolute.
52522
52523         * lib/getdate.y (number): Don't overwrite year.
52524         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
52525         check.
52526
52527 2005-04-02  Simon Josefsson  <jas@extundo.com>
52528
52529         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
52530         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
52531
52532 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
52533
52534         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
52535         where no absolute path name can be longer than PATH_MAX.
52536
52537 2005-03-27  Jim Meyering  <jim@meyering.net>
52538
52539         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
52540
52541 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
52542
52543         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
52544         "one's complement" -> "ones' complement" in comment, as per Knuth.
52545         "value of type" -> "type or expression" in comment.
52546         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
52547
52548 2005-03-26  Jim Meyering  <jim@meyering.net>
52549
52550         Comment nits.
52551         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
52552         Correct typos: s/or/of/.
52553
52554 2005-03-26  Jim Meyering  <jim@meyering.net>
52555
52556         * modules/check-include-files: Move to ../ and rename to...
52557         * check-module: ...this.
52558
52559 2005-03-25  Jim Meyering  <jim@meyering.net>
52560
52561         * modules/xvasprintf (Files): Add xalloc.h.
52562
52563 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
52564
52565         * modules/gettext (Files): config/config.rpath ->
52566         build-aux/config.rpath
52567         * modules/iconv (Files): Likewise.
52568         Problem reported by Oskar Liljeblad.
52569
52570 2005-03-23  Jim Meyering  <jim@meyering.net>
52571
52572         * modules/check-include-files: New script to check for
52573         missing dependencies, multiple includes, etc.
52574
52575         * modules/c-strtold (Depends-on): Add xalloc.
52576         * modules/c-strtod (Depends-on): Add xalloc.
52577         * modules/hash (Depends-on): Add xalloc.
52578         (Files): Remove lib/xalloc.h.
52579
52580         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
52581         * modules/userspec (Files): Add lib/inttostr.h.
52582
52583 2005-03-23  Jim Meyering  <jim@meyering.net>
52584
52585         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
52586
52587 2005-03-22  Jim Meyering  <jim@meyering.net>
52588
52589         * modules/stat-macros: New module.
52590         * modules/canonicalize, modules/euidaccess, modules/file-type,
52591         * modules/filemode, modules/lchown, modules/makepath,
52592         * modules/rmdir, modules/stat: Depend on new stat-macros module
52593         rather than listing lib/stat-macros.h manually.
52594         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
52595
52596 2005-03-22  Jim Meyering  <jim@meyering.net>
52597
52598         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
52599
52600 2005-03-22  Bruno Haible  <bruno@clisp.org>
52601
52602         * config/srclist.txt: Replace target directory 'config' with
52603         'build-aux'.
52604         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
52605         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
52606         ../build-aux/.
52607
52608 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
52609
52610         * modules/chdir-long (Depends-on): Add mempcpy.
52611
52612         * modules/acl, modules/backupfile, modules/c-strtod,
52613         modules/c-strtold, modules/canon-host, modules/canonicalize,
52614         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
52615         modules/exclude, modules/exitfail, modules/file-type,
52616         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
52617         modules/getdate, modules/getline, modules/getpagesize,
52618         modules/getpass, modules/getugroups, modules/group-member,
52619         modules/hard-locale, modules/hash, modules/human, modules/idcache,
52620         modules/inttostr, modules/long-options, modules/makepath,
52621         modules/md5, modules/memcasecmp, modules/memcoll,
52622         modules/modechange, modules/mountlist, modules/path-concat,
52623         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
52624         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
52625         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
52626         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
52627         modules/strftime, modules/strndup, modules/strverscmp,
52628         modules/timespec, modules/unlocked-io, modules/userspec,
52629         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
52630         modules/yesno:
52631         Remove lib_SOURCES line from Makefile.am section, as this is now
52632         done automatically by the corresponding Autoconf macro.
52633
52634 2005-03-21  Jim Meyering  <jim@meyering.net>
52635
52636         Changes imported from coreutils.
52637
52638         * lib/cycle-check.c: Don't include xalloc.h.
52639
52640         * lib/path-concat.c: Don't include assert.h.
52641         (path_concat): Remove assertion that would have triggered
52642         for ABASE starting with more than one slash.
52643         Reported by Andreas Schwab.
52644
52645         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
52646         properly when ABASE is an absolute file name.
52647         Correct the description of this function.
52648         Include <assert.h>.
52649         Add an assertion and a test driver.
52650         This fixes a bug introduced on 2004-07-02.
52651         Andreas Schwab reported the resulting failure of cp --parents:
52652         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
52653
52654 2005-03-21  Jim Meyering  <jim@meyering.net>
52655
52656         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
52657         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
52658
52659 2005-03-21  Jim Meyering  <jim@meyering.net>
52660         and  Paul Eggert  <eggert@cs.ucla.edu>
52661
52662         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
52663         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
52664         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
52665         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
52666         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
52667         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
52668         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
52669         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
52670         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
52671         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
52672         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
52673         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
52674         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
52675         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
52676         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
52677         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
52678         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
52679         for these modules.
52680
52681 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
52682
52683         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
52684         (which shouldn't happen), generate nothing instead of returning 0
52685         immediately, so that nstrftime (NULL, ...) doesn't return 0.
52686
52687 2005-03-16  Bruno Haible  <bruno@clisp.org>
52688
52689         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
52690         HAVE_LONGLONG_64BIT.
52691
52692 2005-03-16  Bruno Haible  <bruno@clisp.org>
52693
52694         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
52695         HAVE_LONGLONG_64BIT.
52696
52697 2005-03-16  Bruno Haible  <bruno@clisp.org>
52698
52699         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
52700         HAVE_LONGLONG_64BIT.
52701
52702 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
52703
52704         * lib/strftime.c (my_strftime): Prepend space to format so that we can
52705         reliably distinguish strftime failure from empty output on POSIX
52706         hosts.
52707
52708 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
52709
52710         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
52711         (iconv_string): Don't guess a size-zero buffer, as that might cause
52712         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
52713         result would be 'too large', where 'too large' is (heuristically)
52714         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
52715         overflow concerns.  This will prevent some unwanted malloc failures
52716         when the inputs are very large.
52717
52718 2005-03-15  Karl Berry  <karl@gnu.org>
52719
52720         * config/srclist.txt (config.rpath): from gettext.
52721         * config/config.rpath: update.
52722
52723 2005-03-15  Bruno Haible  <bruno@clisp.org>
52724
52725         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
52726         to 'negate'.
52727
52728         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
52729         variable.
52730
52731         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
52732         results.
52733
52734 2005-03-14  Simon Josefsson  <jas@extundo.com>
52735
52736         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
52737         <fx@gnu.org>.
52738
52739 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
52740
52741         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
52742         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
52743         intprops.h.
52744         * lib/strtol.c: Likewise.
52745
52746 2005-03-14  Jim Meyering  <jim@meyering.net>
52747
52748         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
52749         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
52750         to be nonzero so that we (and caller) can detect the difference
52751         between a valid zero-length expansion and an error return, even
52752         when the underlying strftime fails before writing anything into
52753         that location.
52754
52755 2005-03-14  Bruno Haible  <bruno@clisp.org>
52756
52757         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
52758         Update from GNU gettext 0.14.3.
52759
52760 2005-03-10  Jim Meyering  <jim@meyering.net>
52761
52762         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
52763
52764 2005-03-10  Jim Meyering  <jim@meyering.net>
52765
52766         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
52767         so that this module works on systems without fchdir.
52768
52769 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
52770
52771         Factor int-properties macros into a single file, except for
52772         glibc-related files.
52773         * lib/intprops.h: New file.
52774         * lib/getloadavg.c: Include it instead of limits.h.
52775         (INT_STRLEN_BOUND): Remove.
52776         * lib/human.c: Include intprops.h.
52777         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
52778         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
52779         302/1000.
52780         * lib/inttostr.h: Include intprops.h instead of limits.h.
52781         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
52782         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
52783         for consistency with intprops.h.
52784         (time_t_is_integer, twos_complement_arithmetic): Use them.
52785         * lib/sig2str.h: Include <signal.h>, intprops.h.
52786         (INT_STRLEN_BOUND): Remove.
52787         * lib/strftime.c (TYPE_SIGNED): Remove.
52788         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
52789         * lib/strtol.c: Adjust comments to match intprops.h.
52790         * lib/userspec.c: Include intprops.h.
52791         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
52792         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
52793         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
52794         instead of rolling our own expressions.
52795         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
52796
52797         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
52798         instead of int.
52799         (my_strftime): Do not mishandle years close to INT_MAX, by doing
52800         the right thing even if adding 1900 would overflow.  Similarly
52801         for tm_mon + 1 and tm_yday + 1.
52802         Make %Y always equivalent to %C%y, and similarly for %G and %g.
52803         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
52804         (DO_SIGNED_NUMBER): New macro.
52805         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
52806
52807 2005-03-07  Bruno Haible  <bruno@clisp.org>
52808
52809         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
52810
52811 2005-03-07  Bruno Haible  <bruno@clisp.org>
52812
52813         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
52814
52815 2005-03-04  Derek R. Price  <derek@ximbiot.com>
52816
52817         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
52818         (func_import): Only replace files via --import when they have actually
52819         changed.
52820
52821 2005-03-03  Derek R. Price  <derek@ximbiot.com>
52822
52823         * m4/mmap-anon.m4: New file.
52824         * m4/pagealign_alloc.m4: New file.
52825
52826 2005-03-03  Derek R. Price  <derek@ximbiot.com>
52827             Bruno Haible  <bruno@clisp.org>
52828
52829         * modules/pagealign_alloc: New file.
52830         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
52831
52832 2005-03-03  Derek R. Price  <derek@ximbiot.com>
52833             Bruno Haible  <bruno@clisp.org>
52834
52835         * lib/pagealign_alloc.h: New file.
52836         * lib/pagealign_alloc.c: New file.
52837
52838 2005-03-03  Bruno Haible  <bruno@clisp.org>
52839
52840         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
52841         Use an all-permissive copyright notice, recommended by RMS.
52842
52843 2005-03-02  Bruno Haible  <bruno@clisp.org>
52844
52845         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
52846         of AIX, the replacement has to be done only after <string.h> is
52847         included, therefore not in config.h. stpncpy.h does the replacement,
52848         and stpncpy.c uses it.
52849
52850 2005-03-02  Bruno Haible  <bruno@clisp.org>
52851
52852         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
52853         stpncpy.c uses it.
52854
52855 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
52856
52857         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
52858         The workaround isn't strictly needed for POSIX conformance, and
52859         it's too much of a pain to configure and maintain.  We'll ask
52860         people to fix their kernels instead.
52861         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
52862         (NANOSLEEP_BUG_WORKAROUND): Remove.
52863         (xnanosleep): Remove the workaround.
52864
52865 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
52866
52867         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
52868         Reported by Derek Price.
52869         (Include): Add "timespec.h".
52870
52871         * modules/xnanosleep (Depends-on): Remove gethrxtime.
52872
52873 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
52874
52875         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
52876         to detect nanosleep bug.
52877
52878 2005-03-01  Bruno Haible  <bruno@clisp.org>
52879
52880         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
52881
52882 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
52883
52884         * modules/gethrxtime: New file.
52885         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
52886         (Depends-on): Add gethrxtime.
52887         (configure.ac): Add gl_XNANOSLEEP.
52888         (Makefile.am): Remove lib_SOURCES line.
52889
52890 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
52891
52892         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
52893         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
52894
52895 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
52896
52897         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
52898         * lib/timespec.h (gettime): Return void, since it always
52899         succeeds now.  All uses changed.
52900         * lib/gettime.c (gettime) Likewise.
52901         [HAVE_NANOTIME]: Prefer nanotime.
52902         Assume gettimeofday succeeds, as POSIX requires.
52903         Assime time () succeeds, since other code already does.
52904         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
52905         (timespec_subtract): Remove.
52906         (NANOSLEEP_BUG_WORKAROUND): New constant.
52907         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
52908         things considerably.  Use it only on GNU/Linux hosts, since the
52909         workaround shouldn't be needed elsewhere.
52910
52911 2005-02-24  Bruno Haible  <bruno@clisp.org>
52912
52913         * modules/gettext (Files): Add m4/glibc2.m4.
52914
52915 2005-02-24  Bruno Haible  <bruno@clisp.org>
52916
52917         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
52918         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
52919         * m4/progtest.m4:
52920         Update from GNU gettext 0.14.2.
52921         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
52922
52923 2005-02-24  Bruno Haible  <bruno@clisp.org>
52924
52925         * lib/localcharset.c: Update from GNU gettext 0.14.2.
52926         * lib/config.charset: Update from GNU gettext 0.14.2.
52927
52928 2005-02-24  Bruno Haible  <bruno@clisp.org>
52929
52930         * lib/gettext.h: Update from GNU gettext 0.14.2.
52931
52932 2005-02-23  Simon Josefsson  <jas@extundo.com>
52933
52934         * m4/iconvme.m4: New file.
52935
52936 2005-02-23  Jim Meyering  <jim@meyering.net>
52937
52938         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
52939         change.
52940         Thanks to Bruno Haible for catching it.
52941
52942 2005-02-22  Simon Josefsson  <jas@extundo.com>
52943
52944         * modules/iconvme: New file.
52945
52946         * MODULES.html.sh: Add iconvme.
52947
52948 2005-02-22  Simon Josefsson  <jas@extundo.com>
52949
52950         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
52951
52952 2005-02-22  Simon Josefsson  <jas@extundo.com>
52953
52954         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
52955
52956 2005-02-22  Jim Meyering  <jim@meyering.net>
52957
52958         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
52959         s/ifndef/ifdef/.
52960
52961 2005-02-20  Neil Conway  <neilc@samurai.com>
52962
52963         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
52964         returned by OSX/Darwin if the specified buffer is not large
52965         enough for the hostname.
52966
52967 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
52968
52969         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
52970         pass it to _help, otherwise the latter coredumps trying to
52971         dereference state.root_argp.
52972
52973 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
52974
52975         * modules/chdir-long (Depends-on): Add memrchr.
52976         * modules/memrchr (Files): Add lib/memrchr.h.
52977         (Include): "memrchr.h".
52978
52979 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
52980
52981         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
52982
52983 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
52984
52985         * lib/memrchr.h: New file.
52986         * lib/chdir-long.c: Include it.
52987         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
52988         Don't bother including stddef.h.
52989
52990 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
52991
52992         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
52993         inclusion.
52994         Include <sys/types.h>, for dev_t.
52995         (ME_DUMMY, ME_REMOTE): Move from here....
52996         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
52997         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
52998         Dmitry V. Levin.
52999         Include mountlist.h first, to test the interface.
53000
53001 2005-01-29  Bruno Haible  <bruno@clisp.org>
53002
53003         * lib/progname.c (program_name): Initialize.
53004         Needed when linking statically on MacOS X.
53005
53006 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
53007
53008         Sync from coreutils.
53009         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
53010         (Depends-on): Add c-strtod.
53011         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
53012
53013 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
53014
53015         Sync from coreutils.
53016         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
53017
53018         Remove files that are specific to coreutils.
53019         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
53020
53021 2005-01-28  Bruno Haible  <bruno@clisp.org>
53022
53023         * modules/javacomp: New file.
53024         * MODULES.html.sh (Java): Add javacomp.
53025
53026 2005-01-28  Bruno Haible  <bruno@clisp.org>
53027
53028         * m4/javacomp.m4: New file, from GNU gettext.
53029
53030 2005-01-28  Bruno Haible  <bruno@clisp.org>
53031
53032         * lib/javacomp.sh.in: New file, from GNU gettext.
53033         * lib/javacomp.h: New file, from GNU gettext.
53034         * lib/javacomp.c: New file, from GNU gettext.
53035
53036 2005-01-26  Simon Josefsson  <jas@extundo.com>
53037
53038         * lib/gai_strerror.c: Use GPL in header.
53039
53040 2005-01-26  Bruno Haible  <bruno@clisp.org>
53041
53042         * modules/javaexec: New file.
53043         * MODULES.html.sh (Java): Add javaexec.
53044
53045 2005-01-26  Bruno Haible  <bruno@clisp.org>
53046
53047         * m4/javaexec.m4: New file, from GNU gettext.
53048
53049 2005-01-26  Bruno Haible  <bruno@clisp.org>
53050
53051         * lib/javaexec.sh.in: New file, from GNU gettext.
53052         * lib/javaexec.h: New file, from GNU gettext.
53053         * lib/javaexec.c: New file, from GNU gettext.
53054
53055 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53056
53057         * modules/lchown (Depends-on): Remove lchown.h
53058
53059 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53060
53061         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
53062         must be defined if the header file was not found, in order
53063         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
53064
53065 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53066
53067         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
53068         initializers for struct pentry_state.
53069         (__argp_error): Check return value of __asprintf
53070         (__argp_failure): Translate error message
53071
53072         * lib/argp-parse.c: Removed braces around the expansion of N_()
53073
53074 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
53075
53076         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
53077         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
53078         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
53079         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
53080         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
53081         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
53082         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
53083         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
53084         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
53085         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
53086         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
53087         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
53088         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
53089         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
53090         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
53091         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
53092         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
53093         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
53094         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
53095         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
53096         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
53097         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
53098         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
53099         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
53100         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
53101         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
53102         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
53103         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
53104         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
53105         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
53106         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
53107         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
53108         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
53109         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
53110         xstrtol.m4, xstrtoumax.m4, yesno.m4:
53111         Use an all-permissive copyright notice, recommended by RMS.
53112
53113 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
53114
53115         * modules/chdir-long (Depends-on): Remove mempcpy.
53116
53117 2005-01-21  Jim Meyering  <jim@meyering.net>
53118
53119         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
53120         same value as for Solaris 9.
53121
53122         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
53123         component length.  This included changing the parameter to be
53124         of type `char *' rather than `char const *'.
53125         * lib/chdir-long.h (chdir_long): Update prototype.
53126
53127         * lib/openat.c (fdopendir, fstatat): New functions.
53128         * lib/openat.h: Include headers required for use of DIR and struct
53129         stat.
53130         [AT_SYMLINK_NOFOLLOW]: Define.
53131         (fdopendir, fstatat): Add prototypes.
53132
53133 2005-01-21  Bruno Haible  <bruno@clisp.org>
53134
53135         * modules/classpath: New file.
53136         * MODULES.html.sh (Java): Add classpath.
53137
53138 2005-01-21  Bruno Haible  <bruno@clisp.org>
53139
53140         * lib/classpath.h: New file, from GNU gettext.
53141         * lib/classpath.c: New file, from GNU gettext.
53142
53143 2005-01-20  Simon Josefsson  <jas@extundo.com>
53144
53145         * modules/version-etc-fsf: New file.
53146
53147 2005-01-20  Simon Josefsson  <jas@extundo.com>
53148
53149         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
53150         * lib/version-etc.c: Remove version_etc_copyright.
53151         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
53152         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
53153
53154 2005-01-20  Simon Josefsson  <jas@extundo.com>
53155
53156         * lib/base64.h (isbase64): Add.
53157
53158         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
53159         using a unsigned prototype, don't inline.
53160         (base64_decode): Use it.
53161
53162 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53163
53164         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
53165         it.
53166
53167 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53168
53169         * lib/save-cwd.c (save_cwd): Remove code to support the case
53170         where fchdir is missing or flaky.
53171
53172 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53173
53174         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
53175
53176 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
53177
53178         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
53179         AC_LIBSOURCES now does this.
53180         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
53181         with new ullong_max module.
53182
53183 2005-01-19  Bruno Haible  <bruno@clisp.org>
53184
53185         * modules/sh-quote: New file.
53186         * MODULES.html.sh (Executing programs): Add sh-quote.
53187
53188 2005-01-19  Bruno Haible  <bruno@clisp.org>
53189
53190         * lib/sh-quote.h: New file, from GNU gettext.
53191         * lib/sh-quote.c: New file, from GNU gettext.
53192
53193 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53194
53195         Merge from coreutils.
53196         * m4/ullong_max.m4: New file.
53197         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
53198         (gl_MACROS): Assume localeconv exists.
53199
53200 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53201
53202         Merge changes from coreutils, as described below in several
53203         changelogs dated today.
53204
53205         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
53206         (O_DIRECTORY): Remove; not needed here, since "." must be
53207         a directory.  All uses removed.
53208         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
53209         universal on Suns, and we also need to test for IRIX.
53210         Revamp code to use 'if' rather than '#if'.
53211         Avoid unnecessary comparison of cwd->desc to 0.
53212
53213         * lib/utimens.c (futimens): Robustify the previous patch, by checking
53214         for known valid error numbers rather than observed invalid ones.
53215
53216 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53217
53218         * modules/ullong_max: New file.
53219
53220         * modules/chdir-long, modules/openat: New files.
53221         * modules/save-cwd (Depends-on): Depend on chdir-long.
53222         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
53223
53224 2005-01-18  Jim Meyering  <jim@meyering.net>
53225
53226         Merge from coreutils.
53227         * m4/chdir-long.m4, m4/openat.m4: New files.
53228         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
53229         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
53230         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
53231         is sane and DOES follow symlinks.  Besides, testing 20 different
53232         systems found no broken chown implementations.
53233         Prompted by a change in rsync's copy of this macro.
53234         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
53235
53236         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
53237
53238         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
53239         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
53240         NULL-means-set-to-current-time semantics.
53241         Remove temporary file immediately, rather than waiting
53242         for configure's at-exit trap code to do it.
53243
53244 2005-01-18  Jim Meyering  <jim@meyering.net>
53245
53246         * lib/version-etc.c (version_etc_copyright): Update copyright date.
53247
53248         * lib/utimens.c (futimens): Account for the fact that futimes
53249         can also fail with errno == ENOSYS or errno == ENOENT.
53250         Patch from Dmitry V. Levin.
53251
53252         Change the name of the robust chdir function from chdir to chdir_long.
53253         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
53254         (restore_cwd): Use chdir_long, not chdir.
53255         * lib/chdir-long.c: Renamed from chdir.c.
53256         * lib/chdir-long.h: Renamed from chdir.h.
53257         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
53258         Hurd.
53259
53260 2005-01-18  Bruno Haible  <bruno@clisp.org>
53261
53262         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
53263         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
53264         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
53265         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
53266         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
53267         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
53268         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
53269         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
53270         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
53271         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
53272         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
53273         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
53274         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
53275         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
53276         Use an all-permissive copyright notice, recommended by RMS.
53277
53278 2005-01-18  Bob Proulx  <bob@proulx.com>
53279
53280         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
53281         simplify offsetof() macro construct to avoid compile failure with
53282         native HP-UX 11.0 ANSI C compiler.
53283
53284 2005-01-17  Bruno Haible  <bruno@clisp.org>
53285
53286         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
53287         redundant because stpncpy.m4 takes care of it.
53288
53289 2005-01-17  Bruno Haible  <bruno@clisp.org>
53290
53291         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
53292
53293 2005-01-17  Bruno Haible  <bruno@clisp.org>
53294
53295         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
53296         used.
53297
53298 2005-01-17  Bruno Haible  <bruno@clisp.org>
53299
53300         * lib/fwriteerror.h (fwriteerror): Change specification to include
53301         fclose.
53302         * lib/fwriteerror.c: Include <stdbool.h>.
53303         (fwriteerror): At the end, close the file stream. Record whether
53304         stdout was already closed.
53305
53306 2005-01-17  Bruno Haible  <bruno@clisp.org>
53307
53308         * lib/execute.c (environ): Declare if needed.
53309         * lib/pipe.c (environ): Likewise.
53310         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
53311
53312 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53313
53314         * modules/argp: Depend on vsnprintf
53315
53316 2005-01-10  Jim Meyering  <jim@meyering.net>
53317
53318         * modules/closeout (Depends-on): Add atexit.
53319
53320 2005-01-06  Bruno Haible  <bruno@clisp.org>
53321
53322         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
53323
53324 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
53325
53326         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
53327         definitions to be after all include files, to avoid collisions.
53328         Problem reported by Bob Proulx.
53329
53330 2005-01-04  Jim Meyering  <jim@meyering.net>
53331
53332         Changes imported from coreutils.
53333         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
53334         as the mkstemp template, use a temporary directory and an
53335         8.3-friendly template to avoid trouble on systems like DJGPP.
53336         Reported by Juan M. Guerrero via Stepan Kasal.
53337         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
53338         close. Remove the temporary directory right away, rather than waiting
53339         for configure's at-exit trap code to do it.
53340         Suggestion from Stepan Kasal.
53341
53342 2005-01-01  Simon Josefsson  <jas@extundo.com>
53343
53344         * gnulib-tool: Print #include directives when --import'ing.
53345
53346 2004-12-28  Simon Josefsson  <jas@extundo.com>
53347
53348         * tests/test-base64.c: Include required header files.  Remove
53349         unused variables.
53350
53351 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
53352
53353         * modules/error (Depends-on): Remove gettext.
53354
53355 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
53356
53357         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
53358         not needed.  This removes a dependency on the gettext module.
53359         [defined _LIBC]: Do not include <libintl.h>; not needed.
53360
53361 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
53362
53363         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
53364         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
53365
53366 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
53367
53368         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
53369         HAVE_DECL_STRTOLD.
53370
53371 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
53372
53373         * modules/getdate (Depends-on): Remove alloca-opt.
53374
53375 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
53376
53377         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
53378
53379 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
53380
53381         * lib/argp-parse.c: Include <stddef.h>.
53382         (alignof, alignto): New macros.
53383         (parser_init): Don't assume that void * is aligned sufficiently
53384         for struct option.
53385
53386         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
53387         need to extend the stack.
53388         (YYINITDEPTH): New macro, so that the initial stack isn't overly
53389         large.
53390
53391 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53392
53393         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
53394
53395 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
53396
53397         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
53398         (2004-10-24) change.  Apparently this was a false alarm.
53399
53400         * modules/getdate: Depend on alloca-opt, not alloca.
53401
53402 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
53403
53404         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
53405         Remove now-obsolete comment about AIX.
53406         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
53407         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
53408         (YYMAXDEPTH): New macro.
53409
53410 2004-12-18  Simon Josefsson  <jas@extundo.com>
53411
53412         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
53413
53414 2004-12-18  Bruno Haible  <bruno@clisp.org>
53415
53416         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
53417
53418 2004-12-18  Bruno Haible  <bruno@clisp.org>
53419
53420         * lib/fatal-signal.c (fatal_signals): Make non-const.
53421         (init_fatal_signals): New function.
53422         (uninstall_handlers, install_handlers): Ignore signals that were set to
53423         SIG_IGN.
53424         (at_fatal_signal): Call init_fatal_signals.
53425         (init_fatal_signal_set): Likewise. Ignore signals that were set to
53426         SIG_IGN.
53427         Reported by Paul Eggert.
53428
53429 2004-12-18  Bruno Haible  <bruno@clisp.org>
53430
53431         * doc/alloca.texi: New file.
53432         * doc/alloca-opt.texi: New file.
53433
53434 2004-12-17  Jim Meyering  <jim@meyering.net>
53435
53436         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
53437         Otherwise, install-sh could exit with improper exit status when
53438         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
53439
53440 2004-12-16  Simon Josefsson  <jas@extundo.com>
53441
53442         * tests/test-base64.c: Add license.
53443
53444 2004-12-15  Stepan Kasal  <address@hidden>
53445
53446         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
53447
53448 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
53449
53450         * modules/getcwd (Files): Add m4/d-ino.m4.
53451         Suggested by Mark D. Baushke.
53452
53453 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
53454
53455         * lib/getdate.y (textint): New member "negative".
53456         (time_zone_hhmm): New function.
53457         Expect 14 shift-reduce conflicts, not 13.
53458         (o_colon_minutes): New rule.
53459         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
53460         (yylex): Set the "negative" member of signed numbers.
53461
53462 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
53463
53464         * doc/getdate.texi (Time of day items, Time zone items):
53465         Describe new formats +00:00, UTC+00:00.
53466
53467 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
53468
53469         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
53470         spurious "-l"s.  Problem reported by Stepan Kasal.
53471
53472 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
53473
53474         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
53475         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
53476
53477 2004-12-04  Simon Josefsson  <jas@extundo.com>
53478
53479         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
53480         Vandoorselaere <yoann@prelude-ids.org>.
53481
53482 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
53483
53484         Changes imported from coreutils.
53485         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
53486         exist.
53487         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
53488
53489 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
53490
53491         Changes imported from coreutils.
53492         * lib/hard-locale.c: Assume <locale.h> exists.
53493         Include "strdup.h".
53494         (GLIBC_VERSION): New macro.
53495         (hard_locale): Assume setlocale exists.
53496         Rewrite to avoid #ifdef.
53497         Use strdup rather than malloc + strcpy.
53498         * lib/human.c: Assume <locale.h> exists.
53499         (human_readable): Assume localeconv exists.
53500
53501 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
53502
53503         * modules/hard-locale (Depends-on): Add strdup.
53504
53505 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
53506
53507         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
53508         convert T2, not T.  (Imported from libc.)
53509
53510 2004-11-30  Simon Josefsson  <jas@extundo.com>
53511
53512         * modules/restrict (License): Change to LGPL.
53513
53514 2004-11-30  Simon Josefsson  <jas@extundo.com>
53515
53516         * m4/restrict.m4: Add copyright and copying conditions.
53517
53518 2004-11-30  Simon Josefsson  <jas@extundo.com>
53519
53520         * m4/base64.m4: New file.
53521
53522 2004-11-30  Simon Josefsson  <jas@extundo.com>
53523
53524         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
53525         base64.
53526
53527         * tests/test-base64.c: New file.
53528
53529         * modules/base64: New file.
53530
53531 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
53532
53533         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
53534         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
53535
53536         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
53537
53538 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
53539
53540         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
53541         (__getcwd.c): Don't restore errno; glibc doesn't.
53542         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
53543         first, falling back to our code only if its results look suspicious.
53544         Ensure that the resulting buffer is only as large as necessary.
53545
53546         * lib/readutmp.c: Include readutmp.h first.
53547         Include <errno.h>, since readutmp.h no longer does that.
53548         * lib/readutmp.h: Don't include <errno.h>,
53549         <sys/param.h>, <time.h>; not needed to establish interface.
53550         (errno): Remove decl.
53551         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
53552         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
53553         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
53554
53555 2004-11-28  Simon Josefsson  <jas@extundo.com>
53556
53557         * lib/base64.h, base64.c: New file.
53558
53559 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
53560
53561         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
53562
53563 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
53564
53565         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
53566         (Depends-on): Remove pathmax, same.  Add mempcpy.
53567         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
53568         (Makefile.am): Append getcwd.h to lib_SOURCES.
53569         (Include): Add getcwd.h.
53570         (Maintainer): Change from Jim Meyering to "all, glibc",
53571         since getdate now uses intended-for-glibc code.
53572         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
53573         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
53574
53575 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
53576
53577         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
53578         HP's ANSI C compiler.
53579         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
53580         Declaring int functions causes warnings on some modern systems and
53581         shouldn't be needed to compile on ancient ones.
53582         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
53583         defined.
53584
53585         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
53586         with the following changes.
53587         (__set_errno): Parenthesize properly.
53588         Include <stdbool.h>.
53589         (MIN, MAX, MATCHING_INO): New macros.
53590         (__getcwd): Define with prototype, not K&R form.
53591         Use heuristics to allocate default buffer on stack if possible.
53592         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
53593         behavior, and to avoid the PATH_MAX limit when computing
53594         ../../../../...
53595         Use MATCHING_INO to compare inode number to file.
53596         Check for arithmetic overflow in size calculations.
53597         Fix bug in reallocation of dot array that caused getcwd to fail
53598         on directories nested deeper than 75.
53599         Be more careful about saving errno on error.
53600         Do not use realloc; use only free+malloc, as this is a bit
53601         more flexible and avoids a needless copy operation.
53602         Do not inspect st_dev and st_ino for symbolic links; POSIX
53603         doesn't specify the latter.
53604         Check for closedir errors.
53605         Avoid needless casts.
53606         Use "#ifdef weak_alias" around weak_alias, to be like other
53607         glibc code.
53608         The following changes to getcwd.c have effect only when used in
53609         gnulib; they have no effect inside glibc proper.
53610         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
53611         as alloca isn't used.
53612         (alloca, __alloca): Likewise.
53613         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
53614         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
53615         unconditionally, as gnulib assumes C89 or better.
53616         Do not include <sys/param.h>.
53617         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
53618         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
53619         better.
53620         (NULL) [!defined NULL]: Remove; we assume C89 or better.
53621         Include <dirent.h> in a way that is compatible with modern Autoconf.
53622         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
53623         New macros, if not already defined.
53624         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
53625         Use "_LIBC", not "defined _LIBC", for consistency.
53626         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
53627         a mempcpy module.
53628         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
53629         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
53630         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
53631         credit only to Jim Meyering and adjust the copyright dates.
53632         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
53633         <stdlib.h>, <unistd.h>, "pathmax.h".
53634         Instead, include "xgetcwd.h" (first) and "getcwd.h".
53635         (INITIAL_BUFFER_SIZE): Remove.
53636         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
53637
53638 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
53639
53640         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
53641         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
53642         Use the _ONCE methods, for efficiency.
53643         Check for fcntl.h.  In test program, include <errno.h>
53644         and <fcntl.h> if available.  Remove old K&R cruft from
53645         test program.  Check for common errors in GNU/Linux,
53646         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
53647         don't do AC_LIBOBJ, as that's getcwd.m4's job.
53648         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
53649         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
53650         name accordingly.
53651         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
53652         accommodate new getcwd.c.
53653         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
53654         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
53655         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
53656         that's all we need now.
53657
53658 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53659
53660         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
53661         argp-parse.c depends on getopt internals, that means we should
53662         always use our getopt, to be on the safe side.
53663         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
53664         order not to spoil the result of an eventual previous invocation
53665         of gl_GETOPT_SUBSTITUTE.
53666
53667 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53668
53669         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
53670         redefinition warnings. To avoid them, include the defines
53671         in `#if !defined __need_getopt ... #endif'. The only place
53672         where __getopt_argv_const is used is in definitions
53673         of getopt_long and getopt_long_only below, which are as well
53674         protected by `#ifndef __need_getopt'.
53675         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
53676         __need_getopt after including <stdio.h> and <unistd.h> These
53677         headers might have defined it.
53678
53679 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
53680
53681         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
53682
53683 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
53684
53685         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
53686         (futimens): New function, which uses futimes if available.
53687         (futimens, utimens): Support timespec==NULL, with same semantics
53688         as utime and utimens.
53689         * lib/utimens.h (futimens): New decl.
53690
53691 2004-11-23  Jim Meyering  <jim@meyering.net>
53692
53693         * lib/getopt_.h: Remove trailing blanks.
53694
53695 2004-11-23  Jim Meyering  <jim@meyering.net>
53696
53697         * lib/__fpending.c: Add comment.
53698
53699 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
53700
53701         * modules/canonicalize (Depends-on): Add xreadlink.
53702         Problem reported by James Youngman.
53703
53704 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
53705
53706         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
53707         New macros.
53708         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
53709         optopt): Use them instead of invoking ## directly; otherwise, the
53710         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
53711
53712 2004-11-19  Bruno Haible  <bruno@clisp.org>
53713
53714         * lib/strtok_r.c: Move comments from here...
53715         * lib/strtok_r.h: ... to here.
53716
53717 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
53718
53719         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
53720         implementations that mishandle size_t overflow.
53721
53722 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
53723
53724         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
53725         might fail.  Problem reported by Yoann Vandoorselaere.
53726         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
53727         implementations that mishandle size_t overflow.
53728
53729 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
53730
53731         * modules/canon-host (Depends-on): Add strdup.
53732
53733 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
53734
53735         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
53736
53737 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
53738
53739         * lib/canon-host.c: Include "strdup.h".
53740         (canon_host): Use getaddrinfo if available, so that IPv6 works.
53741         Use strdup instead of malloc/strcpy to duplicate strings.
53742
53743         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
53744         (human_space_before_unit): New constant.
53745         * lib/human.c (human_readable): Support it.
53746
53747         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
53748         (xgetcwd): Set errno correctly when failing.
53749         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
53750         the failure is actually due to a PATH_MAX problem.
53751
53752         Further getopt changes to make it more likely that glibc will
53753         buy the changes back.
53754         * lib/getopt.c (POSIXLY_CORRECT): New constant.
53755         (getopt): Use it, so to preserve glibc semantic
53756         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
53757         when compiling for libc.
53758         * lib/getopt_.h (__getopt_argv_const): Bring it back.
53759         (getopt_long, getopt_long_only): Use it.
53760
53761         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
53762         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
53763         (getopt): Argv is now char * const *, as per standard.
53764         (_getopt_internal_r, _getopt_internal): Argv is now char **,
53765         not char *__getopt_argv_const *.
53766         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
53767         _getopt_long_only_r): Likewise.
53768         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
53769         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
53770         _getopt_long_r, _getopt_long_only_r): Likewise.
53771         * lib/getopt_.h (__getopt_argv_const): Remove.
53772         (getopt): Argv is now char * const *, as per standard.
53773
53774         * lib/getdate.y (tORDINAL): New token.
53775         (day, relunit): Allow it for relative times.
53776         (relative_time_table): Use tORDINAL for ordinals.
53777
53778 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
53779
53780         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
53781         Document that "second" isn't allowed as an ordinal number.
53782
53783 2004-11-16  Jim Meyering  <jim@meyering.net>
53784
53785         * modules/closeout (Depends-on): Add fpending.
53786
53787 2004-11-15  Jim Meyering  <jim@meyering.net>
53788
53789         * lib/closeout.c: Include "__fpending.h" once again.
53790         Include <stdbool.h>.
53791         (close_stdout): Don't fail just because stdout was closed initially,
53792         since some programs don't write to stdout in the normal course of
53793         operation (other than --version and --help), and we don't want this
53794         function to make e.g. `touch file >&-' fail.
53795         But do fail if it was closed and someone has tried to write to it.
53796         E.g., `printf foo >&-' must fail.
53797
53798 2004-11-13  Jim Meyering  <jim@meyering.net>
53799
53800         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
53801
53802 2004-11-12  Simon Josefsson  <jas@extundo.com>
53803
53804         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
53805         small doc fix is still pending.
53806
53807 2004-11-11  Simon Josefsson  <jas@extundo.com>
53808
53809         * modules/strtok_r: New file.
53810
53811         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
53812         strtok_r.
53813
53814 2004-11-11  Simon Josefsson  <jas@extundo.com>
53815
53816         * m4/strtok_r.m4: New file.
53817
53818         * m4/getopt.m4: Replace opterr.
53819
53820 2004-11-11  Simon Josefsson  <jas@extundo.com>
53821
53822         * lib/strtok_r.h, strtok_r.c: New file.
53823
53824 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
53825
53826         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
53827         of replacing opterr, getopt, etc.  This should handle the
53828         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
53829
53830 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
53831
53832         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
53833         we can stop lying to compilers about the constness of argv when we
53834         are compiled outside glibc.
53835         (getopt, getopt_long, getopt_long_only): Use it.
53836         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
53837         _getopt_internal, getopt): Likewise.
53838         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
53839         _getopt_long_only_r): Likewise.
53840         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
53841         _getopt_long_r, _getopt_long_only_r): Likewise.
53842
53843         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
53844         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
53845         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
53846         the other external symbols.
53847         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
53848         declaration, since the above renaming now works around collisions.
53849
53850 2004-11-11  Jim Meyering  <jim@meyering.net>
53851
53852         * lib/linebreak.c: Remove trailing blanks.
53853         * lib/alloca_.h: Likewise.
53854         * lib/acosl.c: Likewise.
53855         * lib/euidaccess.c: Likewise.
53856         * lib/allocsa.h: Likewise.
53857
53858 2004-11-10  Simon Josefsson  <jas@extundo.com>
53859
53860         * m4/getaddrinfo.m4: New file.
53861
53862 2004-11-10  Simon Josefsson  <jas@extundo.com>
53863
53864         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
53865
53866 2004-11-10  Simon Josefsson  <jas@extundo.com>
53867
53868         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
53869         getaddrinfo.
53870
53871         * modules/getaddrinfo: New file.
53872
53873 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
53874
53875         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
53876
53877 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
53878
53879         * lib/mktime.c (SHR): New macro, which is a portable
53880         substitute for >> that should work even on Crays.
53881         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
53882         Problem reported by Mark D. Baushke in
53883         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
53884         * lib/getdate.y (SHR): Likewise.
53885         (tm_diff): Use it.
53886         * lib/strftime.c (SHR): Likewise.
53887         (tm_diff): Use it.
53888         * lib/quotearg.c (struct quoting_options): Use unsigned int for
53889         quote_these_too, so that right shifts are well defined.  All uses
53890         changed.
53891
53892 2004-11-10  Jim Meyering  <jim@meyering.net>
53893
53894         Ensure that no close failure goes unreported.
53895         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
53896         return early when it seems there's nothing to flush.
53897         Don't include __fpending.h.
53898
53899 2004-11-10  Jim Meyering  <jim@meyering.net>
53900
53901         * modules/closeout (Depends-on): Remove fpending.
53902
53903 2004-11-10  Jim Meyering  <jim@meyering.net>
53904
53905         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
53906
53907 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
53908
53909         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
53910         gl_FUNC_STRFTIME.
53911         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
53912         and AC_REQUIRE when possible, to avoid duplicate checks.
53913         Check for <wchar.h>.
53914
53915 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
53916
53917         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
53918
53919 2004-11-09  Bruno Haible  <bruno@clisp.org>
53920
53921         * m4/sockpfaf.m4: New file.
53922
53923 2004-11-05  Bruno Haible  <bruno@clisp.org>
53924
53925         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
53926         Reported by Mark D. Baushke <mdb@cvshome.org>.
53927
53928 2004-11-04  Bruno Haible  <bruno@clisp.org>
53929
53930         2004-09-11  Bruno Haible  <bruno@clisp.org>
53931                 * allocsa.valgrind: New file.
53932         2004-02-06  Bruno Haible  <bruno@clisp.org>
53933                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
53934                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
53935                 Reported by Christopher Seip <chris.seip@hp.com>.
53936
53937 2004-11-04  Bruno Haible  <bruno@clisp.org>
53938
53939         * modules/allocsa (Files): Add lib/allocsa.valgrind.
53940         (Makefile.am): Distribute it.
53941
53942 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
53943
53944         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
53945         with errno == ERANGE if the buffer is too small.
53946         Problem reported by Mark D. Baushke.
53947
53948 2004-11-03  Albert Chin  <china@thewrittenword.com>
53949             Paul Eggert  <eggert@cs.ucla.edu>
53950
53951         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
53952         equivalent, substitute $ac_type for equivalent type rather than
53953         blindly using uint32_t *always* which won't work if uint32_t is not
53954         available.  Define _UINT32_T to work around typedef of uint32_t if
53955         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
53956         2.5.1.
53957
53958 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
53959
53960         * m4/jm-macros.m4: Sync from coreutils.
53961         (gl_MACROS): Check for mbrlen, for pathchk.
53962         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
53963
53964 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
53965
53966         * lib/xreadlink.c (MAXSIZE): New macro.
53967         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
53968         size does not exceed MAXSIZE.  Avoid cast.
53969         As suggested by Mark D. Baushke in
53970         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
53971         if readlink fails with buffer size just under MAXSIZE, try again
53972         with MAXSIZE.
53973
53974 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
53975
53976         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
53977
53978 2004-11-02  Derek R. Price  <derek@ximbiot.com>
53979         and  Paul Eggert  <eggert@cs.ucla.edu>
53980
53981         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
53982         (get_date): Overparenthesize to avoid GCC warning.
53983
53984 2004-11-02  Bruno Haible  <bruno@clisp.org>
53985
53986         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
53987         returns void.
53988
53989 2004-11-02  Bruno Haible  <bruno@clisp.org>
53990
53991         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
53992         function returns void.
53993
53994 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
53995
53996         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
53997         fflush_unlocked, flockfile, funlockfile, funlockfile,
53998         fputs_unlocked, putc_unlocked.
53999
54000 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
54001
54002         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
54003         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
54004         already declared.
54005
54006 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54007
54008         * modules/getdate (Files): Add doc/getdate.texi.
54009         (Depends-on): Add setenv, xalloc.
54010
54011 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54012
54013         * lib/getdate.y: Add support for TZ="foo" within a date string.
54014         Fix some bugs near time_t boundaries.  Reject dates with
54015         out-of-range components, e.g., "Sept 31".
54016         Include <stdlib.h>, "setenv.h", "xalloc.h".
54017         (ISDIGIT_LOCALE): Remove; unused.
54018         Note that the TZ and time functions used here are not reentrant.
54019         (mktime_ok, get_tz): New functions.
54020         (TZBUFSIZE): New constant.
54021         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
54022         This requires that we sometimes generate our own TZ="XXX..." setting.
54023
54024 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54025
54026         * doc/getdate.texi: New file, from coreutils with modifications for
54027         the new TZ parsing.
54028
54029 2004-10-27  Derek R. Price  <derek@ximbiot.com>
54030
54031         * lib/mktime.c (not_equal_tm): Remove redundant check.
54032
54033 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
54034
54035         * modules/regex (lib_SOURCES): Add regex.c.
54036         Reported by James Youngman in
54037         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
54038
54039 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
54040
54041         * lib/getdate.y: Use Bison 1.875 features, and some minor
54042         code cleanups.  This change does not affect semantics.
54043         Don't include <stdlib.h>; no longer needed.
54044         Don't include unlocked-io.h; only the "#if TEST" code uses
54045         stdio, and performance isn't crucial there.
54046         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
54047         Bison 1.875 features as described below.
54048         All uses of "PC." replaced by "pc->".
54049         (YYSTYPE): Add a forward declaration.
54050         (yylex, yyerror): Use full prototypes in forward decls.
54051         Use "%pure-parser" rather than obsolescent "%pure_parser".
54052         Use %parse-param and %lex-param instead of obsolescent
54053         YYPARSE_PARAM and YYLEX_PARAM.
54054         (meridian_table, month_and_day_table, time_units_table,
54055         relative_time_table, time_zone_table, military_table,
54056         lookup_zone, lookup_word, get_date):
54057         Use NULL instead of 0 where appropriate.
54058         (to_hour): Avoid abort (), to avoid a dependency on
54059         stdlib.h.
54060         (yyerror, yylex): Now accepts parser_control * arg.
54061         (main) [TEST]: Use '\0' rather than 0 for char.
54062
54063 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
54064
54065         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
54066
54067 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
54068
54069         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
54070         It's now the caller's responsibility to handle the case where
54071         !HAVE_GETPAGESIZE && !defined getpagesize.
54072
54073         * lib/mktime.c (leapyear): Arg is long int, not int.
54074
54075 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
54076
54077         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
54078
54079 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
54080
54081         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
54082         missing.  Problem reported by James Youngman.
54083
54084 2004-10-16  Simon Josefsson  <jas@extundo.com>
54085
54086         * gnulib-tool: Fix comments.  Fix parse problem.
54087         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
54088
54089 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
54090
54091         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
54092         implementation of getopt_long.  Problem reported by Alexander Taler in:
54093         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
54094
54095 2004-10-15  Bruno Haible  <bruno@clisp.org>
54096
54097         * gnulib-tool: Untabify. Initialize supplied_libname.
54098         (func_usage): More homogenous output.
54099         (func_modules_transitive_closure, func_modules_to_filelist,
54100         func_emit_lib_Makefile_am): New functions.
54101         (func_import): New function, extracted from big case statement. Use
54102         func_get_license, func_modules_transitive_closure,
54103         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
54104         opt_lgpl. Don't use test -a, as it's not portable.
54105         (func_create_testdir): Use func_modules_transitive_closure,
54106         func_modules_to_filelist, func_emit_lib_Makefile_am.
54107
54108 2004-10-15  Bruno Haible  <bruno@clisp.org>
54109
54110         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
54111
54112 2004-10-15  Bruno Haible  <bruno@clisp.org>
54113
54114         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
54115         the portions belonging to each module.
54116         Suggested by Derek Robert Price <derek@ximbiot.com>.
54117
54118 2004-10-12  Simon Josefsson  <jas@extundo.com>
54119
54120         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
54121         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
54122         to real functions.
54123
54124 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54125
54126         * modules/vsnprintf: New file.
54127
54128 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54129
54130         * m4/vsnprintf.m4: New file.
54131
54132 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54133
54134         * lib/vsnprintf.h: New file.
54135         * lib/vsnprintf.c: New file.
54136
54137 2004-10-11  Bruno Haible  <bruno@clisp.org>
54138
54139         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
54140         vsnprintf.
54141
54142 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
54143
54144         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
54145
54146 2004-10-07  Bruno Haible  <bruno@clisp.org>
54147
54148         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
54149         fits into the provided buffer.
54150
54151 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
54152
54153         * lib/diacrit.c, diacrit.h: Add GPL notice.
54154
54155         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
54156         notice.
54157         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
54158         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
54159         This avoids a potential constant-folding bug.
54160
54161 2004-10-05  Bruno Haible  <bruno@clisp.org>
54162
54163         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
54164         for the declaration of strsep.
54165
54166 2004-10-05  Bruno Haible  <bruno@clisp.org>
54167
54168         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
54169
54170 2004-10-04  Simon Josefsson  <jas@extundo.com>
54171
54172         * modules/memmem: New file.
54173         * tests/test-memmem.c: New file.
54174         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
54175
54176 2004-10-04  Simon Josefsson  <jas@extundo.com>
54177
54178         * m4/memmem.m4: New file.
54179
54180 2004-10-04  Simon Josefsson  <jas@extundo.com>
54181
54182         * lib/memmem.h: New file.
54183         * lib/memmem.c: New file, taken from glibc.
54184
54185 2004-10-04  Simon Josefsson  <jas@extundo.com>
54186
54187         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
54188         '#ifdef USE_UNLOCKED_IO'.
54189
54190 2004-10-04  Simon Josefsson  <jas@extundo.com>
54191
54192         * config/srclist.txt: Add memmem from glibc.
54193
54194 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54195
54196         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
54197
54198         * modules/argmatch, modules/argp, modules/closeout, modules/error,
54199         modules/exclude, modules/getdate, modules/getline,
54200         modules/getndelim2, modules/getpass, modules/getpass-gnu,
54201         modules/getusershell, modules/linebuffer, modules/md5,
54202         modules/mountlist, modules/posixtm, modules/readtokens,
54203         modules/readutmp, modules/regex, modules/sha1,
54204         modules/version-etc, modules/yesno:
54205         Remove dependency on unlocked-io.
54206
54207 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54208
54209         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
54210
54211         * m4/unlocked-io.m4: Add copyright notice.
54212         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
54213
54214 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54215
54216         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
54217         * lib/xmalloc.c (xmemdup): Likewise.
54218         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
54219         XFREE): Remove these long-obsolescent macros.
54220         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
54221         * lib/xstrdup.c: Remove.
54222
54223         * lib/regex.c (re_comp): Cast gettext return value to char *,
54224         Problem reported by Martin Neitzel via Mark D. Baushke.
54225
54226 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54227
54228         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
54229         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
54230         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
54231         regex.c, sha1.c, version-etc.c, yesno.c:
54232         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
54233         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
54234         the includer's responsibility.
54235
54236         Sync from coreutils.
54237
54238         * lib/modechange.c (mode_compile): Don't decrement a pointer that
54239         points to the start of a string, as the C Standard says the
54240         resulting behavior is undefined.
54241
54242         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
54243         simple -> simple_backups, numbered_existing ->
54244         numbered_existing_backups, numbered -> numbered_backups
54245         to avoid shadowing problems.  All uses changed.
54246         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
54247         * lib/backupfile.c (check_extension, numbered_backup):
54248         Rename locals to avoid shadowing 'basename'.
54249         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
54250         once.
54251
54252         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
54253         * lib/.cvsignore: Add getopt.h.
54254
54255 2004-10-04  Bruno Haible  <bruno@clisp.org>
54256
54257         * modules/README: New file.
54258         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
54259         not a module.
54260
54261 2004-10-02  Jim Meyering  <jim@meyering.net>
54262
54263         * lib/dirfd.h, getpagesize.h: Add copyright notice.
54264
54265 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54266
54267         * modules/strsep: New file.
54268
54269 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54270
54271         * m4/strsep.m4: New file.
54272
54273 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54274
54275         * lib/strsep.h: New file.
54276         * lib/strsep.c: New file.
54277
54278 2004-10-01  Simon Josefsson  <jas@extundo.com>
54279
54280         * lib/snprintf.c (snprintf): Handle size==0.
54281
54282 2004-10-01  Simon Josefsson  <jas@extundo.com>
54283             Bruno Haible  <bruno@clisp.org>
54284
54285         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
54286         (snprintf): Declare 'args'.
54287
54288 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
54289
54290         * lib/snprintf.c: Remove comments as to why each header is needed.
54291
54292 2004-10-01  Bruno Haible  <bruno@clisp.org>
54293
54294         * MODULES.html.sh: Add strsep.
54295
54296 2004-09-30  Simon Josefsson  <jas@extundo.com>
54297
54298         * modules/snprintf: New file.
54299
54300 2004-09-30  Simon Josefsson  <jas@extundo.com>
54301
54302         * m4/snprintf.m4: New file.
54303
54304 2004-09-30  Simon Josefsson  <jas@extundo.com>
54305
54306         * lib/snprintf.h, lib/snprintf.c: New files.
54307
54308 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54309
54310         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
54311         (hol_entry_help): Never translate an empty string.
54312         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
54313         * lib/argp.h (OPTION_NO_TRANS): New option.
54314
54315 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
54316
54317         * modules/argp (Maintainer): Replace Simon Josefsson
54318         by Sergey Poznyakoff.
54319
54320 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
54321
54322         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
54323         changes merged back into glibc.
54324
54325 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
54326
54327         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
54328
54329 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
54330
54331         * lib/xvasprintf.c: Include xalloc.h.
54332         (xvasprintf): Use xalloc_die, not xmalloc_die.
54333
54334 2004-09-29  Bruno Haible  <bruno@clisp.org>
54335
54336         * modules/alloca-opt: New file, derived from modules/alloca.
54337         * modules/allocsa: Depend on alloca-opt instead of alloca.
54338         * modules/setenv: Likewise.
54339         * modules/vasnprintf: Likewise.
54340         * MODULES.html.sh: Add alloca-opt.
54341
54342 2004-09-28  Simon Josefsson  <jas@extundo.com>
54343
54344         * gnulib-tool: New parameter --lgpl, to asseert that modules are
54345         LGPL, and to replace license template from GPL to LGPL.
54346
54347 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
54348
54349         * modules/dummy: Change license to LGPL.
54350
54351 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
54352
54353         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
54354
54355 2004-09-24  Simon Josefsson  <jas@extundo.com>
54356
54357         * modules/minmax (License): Change from GPL to LGPL.
54358
54359 2004-09-23  Simon Josefsson  <jas@extundo.com>
54360
54361         * gnulib-tool (--import): Typo.
54362
54363 2004-09-23  Simon Josefsson  <jas@extundo.com>
54364
54365         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
54366
54367 2004-09-22  Bruno Haible  <bruno@clisp.org>
54368
54369         * modules/*: Add 'License' field.
54370         * gnulib-tool: Accept --extract-license option.
54371         (func_get_license): New function.
54372
54373 2004-09-21  Bruno Haible  <bruno@clisp.org>
54374
54375         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
54376         Reported by Simon Josefsson.
54377
54378 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
54379
54380         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
54381         gl_AC_TYPE_LONG_LONG.
54382
54383 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
54384
54385         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
54386
54387 2004-09-18  Simon Josefsson  <jas@extundo.com>
54388         and  Paul Eggert  <eggert@cs.ucla.edu>
54389
54390         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
54391         calls with autoreconf.  Define GL_LIB.
54392
54393 2004-09-14  Karl Berry  <karl@gnu.org>
54394
54395         * config/srclist.txt: unsync setenv.c, sigh.
54396
54397 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
54398
54399         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
54400         Problem reported by Bruno Haible in:
54401         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
54402
54403 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
54404
54405         * config/srclist.txt: Comment out argp-pvh.c.
54406
54407 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
54408
54409         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
54410         in case some system header has #define'd it.  Problem reported by
54411         Soeren D. Schulze in
54412         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
54413
54414 2004-09-09  Karl Berry  <karl@gnu.org>
54415
54416         * regex.[ch]: delete from the root.  These were supposed to be
54417                 synced with emacs cvs, but this has not happened for about
54418                 a year, and anyway nothing else uses emacs regex.[ch].
54419                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
54420                 lib/regex[.ch] is untouched.
54421
54422 2004-09-09  Bruno Haible  <bruno@clisp.org>
54423
54424         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
54425
54426 2004-09-09  Bruno Haible  <bruno@clisp.org>
54427
54428         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
54429         modifications.
54430         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
54431
54432 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
54433
54434         * modules/xvasprintf: New file.
54435         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
54436
54437 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
54438
54439         * lib/xvasprintf.h: New file.
54440         * lib/xvasprintf.c: New file.
54441         * lib/xasprintf.c: New file.
54442
54443 2004-09-08  Bruno Haible  <bruno@clisp.org>
54444
54445         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
54446
54447 2004-09-08  Bruno Haible  <bruno@clisp.org>
54448
54449         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
54450         length is > INT_MAX.
54451         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
54452         more.
54453
54454 2004-09-08  Bruno Haible  <bruno@clisp.org>
54455
54456         * lib/stdint_.h: New file, taken from GNU clisp.
54457
54458 2004-09-08  Bruno Haible  <bruno@clisp.org>
54459             Oskar Liljeblad  <oskar@osk.mine.nu>
54460
54461         * modules/stdint: New file.
54462         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
54463
54464 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
54465
54466         Import from coreutils.
54467         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
54468         strings on unbounded length.  alloca's performance benefits aren't
54469         that important here.
54470         (V_STRDUP): Remove.
54471         (parse_with_separator): New function, with most of the internals
54472         of the old parse_user_spec.  Allow user to omit both user and group,
54473         for compatibility with FreeBSD.
54474         Clone only the user name, not the entire spec.
54475         Do not set *uid, *gid unless entirely successful.
54476         Avoid memory leak in some failing cases.
54477         Fix regression for USER.GROUP reported by Dmitry V. Levin in
54478         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
54479         (parse_user_spec): Rewrite to use parse_with_separator.
54480
54481 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
54482
54483         * modules/userspec: Don't depend on alloca.
54484
54485 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
54486
54487         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
54488
54489 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
54490
54491         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
54492         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
54493         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
54494
54495 2004-08-16  Simon Josefsson  <jas@extundo.com>
54496
54497         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
54498         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
54499         Add --dry-run for --import.
54500         Let user provided command line parameters override configure.ac
54501         settings.
54502
54503 2004-08-12  Simon Josefsson  <jas@extundo.com>
54504
54505         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
54506         as discussed with Paul Eggert in threads rooted at
54507         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
54508         and
54509         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
54510         Before, the test was empty, and relied on ELIDE_CODE in source
54511         code.)
54512         (gl_PREREQ_GETOPT): New macro.
54513         (gl_GETOPT): Use them.
54514
54515 2004-08-12  Simon Josefsson  <jas@extundo.com>
54516
54517         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
54518         * lib/getopt_.h: Renamed from getopt.h.
54519
54520 2004-08-12  Simon Josefsson  <jas@extundo.com>
54521
54522         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
54523         Change default library name from libfoo to libgnu.
54524         Now, if you have a configure.ac that says:
54525                 gl_SOURCE_BASE(gl)
54526                 gl_M4_BASE(gl/m4)
54527                 gl_MODULES(error getopt etcetera)
54528                 gl_INIT
54529         you can import all you need by running:
54530                 ../gnulib/gnulib-tool --import
54531
54532         * modules/getopt (Files): Rename getopt.h to getopt_.h.
54533         (Makefile.am): Rewrite, use logic from argz.
54534         (Include): Use <getopt.h> instead of "getopt.h".
54535
54536 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
54537
54538         * modules/argp (Files): Add m4/unlocked-io.m4.
54539         (Depends-on): Add extensions.
54540
54541 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
54542
54543         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
54544         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
54545         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
54546         Check for program_invocation_name, program_invocation_short_name,
54547         flockfile, funlockfile, features.h, _getopt_long_only_r.
54548
54549 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
54550
54551         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
54552         its complicated substitute.
54553         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
54554         and program_invocation_name.
54555         (__argp_basename) [!_LIBC]: Remove; the only use was
54556         replaced by its body.
54557         (__argp_short_program_name): Change condition from
54558         !defined __argp_short_program_name to
54559         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
54560         to match argp-namefrob.h.
54561         (__argp_failure): Don't assume strerror_r returns char *.
54562         * lib/argp-parse.c (N_): Define unconditionally.
54563         (argp_default_options): Fill out initializers with 0 to avoid
54564         gcc warnings.
54565
54566 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
54567
54568         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
54569         getopt1.c.
54570
54571 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
54572
54573         Merge from coreutils.
54574
54575         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
54576
54577         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
54578         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
54579
54580 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
54581
54582         Merge from coreutils.
54583
54584         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
54585         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
54586         for Reliant Unix 5.43.
54587
54588         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
54589         (union fooround): Use uintmax_t, not long int.
54590         The rest is a merge from libc:
54591         [defined _LIBC]: Include <shlib-compat.h>.
54592         (_obstack) [defined _LIBC]: Remove after 2.3.4.
54593
54594         * lib/settime.c (settime): Recode to avoid warning with
54595         Sun Forte C 6U2.
54596
54597         * lib/strverscmp.c: Convert to UTF-8.
54598
54599 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
54600
54601         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
54602         m4/uintmax_t.m4.
54603
54604 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
54605
54606         * modules/xalloc-die: New file.
54607         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
54608
54609         * modules/md5 (Files): Add m4/uint32_t.m4.
54610         * modules/sha1: Renamed from modules/sha.
54611         (Files):
54612         Rename lib/sha.h to lib/sha1.h.
54613         Rename lib/sha.c to lib/sha1.c.
54614         Rename m4/sha.m4 to m4/sha1.m4.
54615         (lib_SOURCES): Likewise.
54616         (configure.ac): Rename gl_SHA to gl_SHA1.
54617         (Include): sha.h -> sha1.h.
54618
54619 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
54620
54621         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
54622         * m4/sha1.m4: Renamed from sha.m4.
54623         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
54624
54625 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
54626
54627         * lib/obstack.h (obstack_empty_p):
54628         Don't assume that chunk->contents is suitably aligned.
54629         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
54630         Likewise. Problem reported by Benno in
54631         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
54632
54633         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
54634         readable.  This could be improved further but it'd take some work.
54635
54636 2004-08-08  Simon Josefsson  <jas@extundo.com>
54637
54638         * modules/xgethostname (Depends-on): Remove exit and error (not
54639         used).
54640
54641         * modules/getpass-gnu: Add getpass.h.
54642         (Depends-on): Add stdbool.
54643         * modules/getpass: Add getpass.h.
54644
54645 2004-08-08  Simon Josefsson  <jas@extundo.com>
54646
54647         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
54648         Check getpass declaration.
54649
54650 2004-08-08  Simon Josefsson  <jas@extundo.com>
54651
54652         * lib/xgethostname.c: Don't include error.h (not used).
54653
54654         * lib/getpass.h: Add.
54655         * lib/getpass.c: Include getpass.h first.
54656
54657 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
54658
54659         * lib/xalloc-die.c: New file.
54660         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
54661         All uses removed.
54662         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
54663         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
54664         xalloc-die.c.
54665         (_, N_, xalloc_die): Move to xalloc-die.c.
54666         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
54667         so that we needn't mess with xalloc_msg_memory_exhausted.
54668
54669         * lib/sha1.h: Renamed from sha.h.
54670         (SHA1_H): Renamed from _SHA_H.
54671         (sha1_ctx): Renamed from sha_ctx.
54672         (sha1_init_ctx): Renamed from sha_init_ctx.
54673         (sha1_process_block): Renamed from sha_process_block.
54674         (sha1_process_bytes): Renamed from sha_process_bytes.
54675         (sha1_finish_ctx): Renamed from sha_finish_ctx.
54676         (sha1_read_ctx): Renamed from sha_read_ctx.
54677         (sha1_stream): Renamed from sha_stream.
54678         (sha1_buffer): Renamed from sha_buffer.
54679         * lib/sha1.c: Likewise; renamed from sha.c.
54680         Do not include <sys/types.h>.
54681         Include <stddef.h> rather than <stdlib.h>.
54682
54683 2004-08-08  Bruno Haible  <bruno@clisp.org>
54684
54685         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
54686         FILESYSTEM_PREFIX_LEN.
54687         * lib/progreloc.c: Likewise.
54688         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
54689
54690 2004-08-06  Simon Josefsson  <jas@extundo.com>
54691
54692         * modules/progname (Depends-on): Don't depend on stdbool.
54693
54694 2004-08-06  Simon Josefsson  <jas@extundo.com>
54695
54696         * modules/getsubopt: New file.
54697         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
54698         getsubopt.
54699
54700 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
54701
54702         More merge from coreutils.
54703
54704         * m4/utimens.m4, m4/utimecmp.m4: New files.
54705         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
54706         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
54707         prereq.m4, sha.m4: Import changes from coreutils.
54708
54709 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
54710
54711         More merge from coreutils.
54712         * modules/raise, modules/readtokens0, modules/utimens:
54713         * modules/utimecmp, module/xnanosleep: New files.
54714         * modules/strftime: Add lib/strftime.h.
54715         Change include from <time.h> to "strftime.h".
54716         * modules/yesno: Add lib/yesno.h.
54717         * modules/backupfile: Remove lib/addext.c.
54718         * modules/euidaccess: Add stat-macros.h.
54719         * modules/canonicalize, modules/euidaccess,
54720         modules/filemode, modules/lchown, modules/makepath,
54721         modules/rmdir, modules/stat: Likewise.
54722
54723 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
54724
54725         Merge from tar.
54726         * lib/argp-help.c (make_hol, hol_append): Don't assume that
54727         SIZE_MAX is a valid preprocessor constant.
54728         (__argp_basename): Change from "#ifndef _LIBC"
54729         to "#ifndef __argp_short_program_name", so that
54730         we don't compile these functions for tar.
54731
54732         More merges from coreutils.
54733         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
54734         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
54735         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
54736         * lib/addext.c: Remove; no longer needed.
54737         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
54738         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
54739         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
54740         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
54741         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
54742         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
54743         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
54744         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
54745         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
54746         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
54747         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
54748         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
54749         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
54750         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
54751         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
54752         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
54753         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
54754         Import changes from coreutils.
54755
54756 2004-08-05  Simon Josefsson  <jas@extundo.com>
54757
54758         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
54759
54760 2004-08-05  Simon Josefsson  <jas@extundo.com>
54761
54762         * m4/getsubopt.m4: New file.
54763
54764 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
54765
54766         Merge from coreutils.
54767
54768         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
54769         * m4/getcwd-path-max.m4: New files.
54770
54771         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
54772         FILESYSTEM_PREFIX_LEN ->
54773         FILE_SYSTEM_PREFIX_LEN.
54774         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
54775         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
54776         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
54777         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
54778
54779         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
54780         prerequisite modules now handle the DOS stuff.
54781         Don't check for unistd.h.
54782
54783 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
54784
54785         Merge from coreutils.
54786
54787         * lib/.gdb-history: Remove; this doesn't belong here.
54788
54789         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
54790         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
54791         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
54792         * lib/getcwd.c: New files.
54793
54794         * lib/dirname.h: Include <stdbool.h>.
54795         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
54796         for consistency with POSIX terminology.  All uses changed.
54797         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
54798         (strip_trailing_slashes): Use bool for booleans.
54799         * lib/stripslash.c (strip_trailing_slashes): Likewise.
54800
54801         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
54802         sometimes returns a positive errno value even when it succeeds.
54803         (print_errno_message) [!LIBC]: Fall back on strerror if
54804         __strerror_r fails.
54805
54806         * lib/path-concat.c (mempcpy): Don't define if a system header defines
54807         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
54808         (longest_relative_suffix): New function.
54809         (path_concat): Use it.  Assume first argument is not NULL.
54810         Port to DOS.  Omit redundant separators.
54811         Report an error instead of returning NULL.
54812         Use mempcpy instead of memcpy.
54813         (xpath_concat): Remove: not declared or used.
54814
54815         * lib/same.h: Include <stdbool.h>
54816         (same_name): Return bool, not int.
54817         * lib/same.c (same_name): Likewise.
54818         (errno): Don't declare; we assume C89 or better now.
54819
54820         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
54821         if not already defined.
54822
54823         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
54824         * lib/dup-safer.c (errno): Likewise.
54825
54826 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
54827
54828         Merge from coreutils.
54829         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
54830         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
54831         * modules/path-concat: Don't depend on strdup.
54832
54833 2004-08-03  Simon Josefsson  <jas@extundo.com>
54834
54835         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
54836         * lib/progname.h: Don't include stdbool.h.
54837
54838 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
54839
54840         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
54841         * MODULES.html.sh (func_all_modules): Remove fatal.
54842
54843 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
54844
54845         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
54846
54847 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
54848
54849         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
54850         working.
54851
54852 2004-08-02  Simon Josefsson  <jas@extundo.com>
54853
54854         * lib/getsubopt.h: New file, with comments from Bruno Haible.
54855         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
54856         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
54857
54858 2004-08-01  Simon Josefsson  <jas@extundo.com>
54859
54860         * lib/xgetdomainname.c: Include stdlib.h, for free().
54861
54862 2004-07-19  Bruno Haible  <bruno@clisp.org>
54863
54864         * MODULES.html.sh (func_all_modules): Add dummy.
54865
54866 2004-07-16  Simon Josefsson  <jas@extundo.com>
54867
54868         * modules/dummy: New file.
54869
54870 2004-07-16  Simon Josefsson  <jas@extundo.com>
54871
54872         * lib/dummy.c: New file.
54873
54874 2004-07-16  Bruno Haible  <bruno@clisp.org>
54875
54876         * lib/backupfile.h: Add extern "C" for C++.
54877         * lib/closeout.h: Likewise.
54878         * lib/copy-file.h: Likewise.
54879         * lib/findprog.h: Likewise.
54880         * lib/full-write.h: Likewise.
54881         * lib/pathname.h: Likewise.
54882         * lib/progname.h: Likewise.
54883         * lib/stpcpy.h: Likewise.
54884         * lib/stpncpy.h: Likewise.
54885         * lib/strcase.h: Likewise.
54886         * lib/strstr.h: Likewise.
54887         * lib/xalloc.h: Likewise.
54888
54889         * lib/mbswidth.h: Add extern "C" for C++.
54890         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
54891
54892 2004-07-13  Robert Millan  <robertmh@gnu.org>
54893
54894         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
54895
54896 2004-07-09  Simon Josefsson  <jas@extundo.com>
54897
54898         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
54899         failed without this.)
54900
54901 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
54902
54903         * modules/chown (Files): Add lib/fchown-stub.c, since
54904         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
54905
54906 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
54907
54908         * lib/fchown-stub.c: New file.
54909
54910 2004-06-24  Jim Meyering  <jim@meyering.net>
54911
54912         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
54913
54914 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
54915
54916         * modules/argz: Omit "#include".
54917
54918         * MODULES.html.sh (func_all_modules): Add calloc, to match
54919         2004-06-01 addition of calloc module.
54920
54921 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
54922
54923         * m4/argz.m4: New file, which is autoupdated from libtool.
54924
54925 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
54926
54927         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
54928         libtool.
54929
54930 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
54931
54932         * config/srclist-update: Don't insist on "USA." before the
54933         close-comment, as libtool omits the period and puts the */ on a
54934         separate line.
54935         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
54936         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
54937
54938 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
54939
54940         * modules/argz: New file.
54941         * MODULES.html.sh (func_all_modules): Add argz.
54942
54943 2004-06-12  Jim Meyering  <jim@meyering.net>
54944         and  Paul Eggert  <eggert@cs.ucla.edu>
54945
54946         * modules/hash (Files): Add lib/xalloc.h.
54947         * modules/pipe (Depends-on): Add wait-process.
54948         * modules/stat (Depends-on): Add xalloc.
54949         * modules/userspec (Files): Add lib/userspec.h.
54950         * modules/xstrto
54951
54952         Upgrade from gettext-0.13.
54953         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
54954         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
54955         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
54956
54957 2004-06-10  Jim Meyering  <jim@meyering.net>
54958
54959         * lib/calloc.c: New file.
54960
54961 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
54962
54963         * lib/getdate.y (yylex): Allow space between sign and number.
54964         Problem reported by Dan Jacobson.
54965
54966 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
54967
54968         Merge from coreutils CVS.
54969
54970         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
54971         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
54972         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
54973         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
54974         xstrtol.m4: Fix copyright date and/or serial number.
54975
54976         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
54977         See if we need an fchown replacement.
54978         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
54979         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
54980         and use the replacement function if we detect either defect.
54981
54982         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
54983         gl_UTIMECMP.
54984
54985 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
54986         and  Jim Meyering  <jim@meyering.net>
54987
54988         Merge from coreutils CVS.
54989
54990         * lib/stat-macros.h: New file, with contents from file-type.h
54991         and coreutils' system.h.
54992         * lib/file-type.c: Include "stat-macros.h".
54993         * lib/file-type.h (file_type): Move all macro definitions to new file,
54994         stat-macros.h.
54995
54996         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
54997         Wrap old code with this conditional.
54998         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
54999         function that does not dereference symlinks.
55000         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
55001
55002         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
55003         dependency problems.
55004         (xreadlink): Accept new arg SIZE, for efficiency.
55005         All decls and uses changed.
55006         * lib/xreadlink.h: Include <stddef.h>, for size_t.
55007
55008         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
55009         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
55010
55011         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
55012         sysexits.h.
55013
55014 2004-06-01  Jim Meyering  <jim@meyering.net>
55015
55016         * m4/calloc.m4: New file.
55017
55018 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
55019
55020         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
55021         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
55022         Also, fix a typo in a diagnostic.
55023
55024 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
55025
55026         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
55027         or AC_FUNC_REALLOC.
55028
55029 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
55030
55031         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
55032         macros to be defined.
55033         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
55034         the allocator returns NULL because the requested size is zero.
55035
55036 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
55037
55038         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
55039         var.  Add comment explaining why libc still defines it.  This
55040         merges the following patch from glibc:
55041         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
55042
55043 2004-05-20  Andreas Schwab  <schwab@suse.de>
55044
55045         * m4/free.m4: Replace free if it not known to work, not the other
55046         way round.
55047
55048 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
55049
55050         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
55051         present in glibc since revision 1.1 of this file.
55052         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
55053         obstack_alignment_mask, obstack_alloc, obstack_base,
55054         obstack_blank, obstack_blank_fast, obstack_chunk_size,
55055         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
55056         obstack_grow0, obstack_init, obstack_int_grow,
55057         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
55058         obstack_next_free, obstack_object_size, obstack_ptr_grow,
55059         obstack_ptr_grow_fast, obstack_room): Remove declarations of
55060         nonexistent functions.
55061
55062 2004-05-18  Karl Berry  <karl@gnu.org>
55063
55064         * config/srclist.txt: break link for vasnprintf.c.
55065
55066 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
55067
55068         Port obstack to the AS/400, where pointers are 16 bytes wide and
55069         you cannot cast an integer to a valid pointer.  This patch is
55070         currently waiting to be integrated into glibc; see
55071         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
55072
55073         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
55074         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
55075         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
55076         (struct obstack): temp member is now a union of a pointer and
55077         an integer, instead of an integer.  All integer uses changed.
55078         This does not affect the physical layout of struct obstack,
55079         except on hosts (like the AS/400) where the size or alignment of
55080         void * is greater than that of ptrdiff_t.
55081         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
55082         __STDC__)]: Store temporary in pointer member of union, not
55083         integer member.
55084         * lib/obstack.c: Include <stddef.h>, for offsetof.
55085         (struct fooalign): Remove; it doesn't need a name.
55086         (union fooround): Change double to long double, and add void *.
55087         (DEFAULT_ALIGNMENT): Use offsetof to compute.
55088         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
55089         not a macro.  Hence the values are always int; so remove all
55090         casts-to-int in uses.
55091
55092 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
55093
55094         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
55095         we can get this patch merged into glibc.
55096
55097 2004-05-17  Derek R. Price  <derek@ximbiot.com>
55098             Paul Eggert  <eggert@cs.ucla.edu>
55099
55100         * m4/argp: Depend on alloca.
55101
55102 2004-05-17  Derek R. Price  <derek@ximbiot.com>
55103             Paul Eggert  <eggert@cs.ucla.edu>
55104
55105         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
55106         freecoding.
55107
55108 2004-05-17  Bruno Haible  <bruno@clisp.org>
55109
55110         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
55111         precision that consists of a '.' followed by an empty digit string.
55112         Patch by Tor Lillqvist <tml@iki.fi>.
55113
55114 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
55115
55116         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
55117         for backward compatibility with older code.  We need our own
55118         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
55119         it under some other name, and our alloca.h will define it.
55120
55121 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
55122             Derek Price  <derek@ximbiot.com>
55123
55124         * lib/alloca.c: Include <alloca.h>, to get our interface.
55125         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
55126         include <alloca.h> first.  Use C89 prototype for alloca; this
55127         requires including <stddef.h> for size_t.  Use extern "C" if C++.
55128         Use #elif for simplicity, since we can assume C89 now.
55129         Don't try to source the system alloca.h since it will not be found
55130         and to prevent recursively including its replacement.
55131         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
55132         * lib/regex.c: Likewise.
55133
55134 2004-05-16  Derek Price  <derek@ximbiot.com>
55135             Paul Eggert  <eggert@cs.ucla.edu>
55136
55137         getline cleanup.  This changes the getndelim2 API: both order of
55138         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
55139         no delimiter).
55140
55141         * lib/getline.c: Don't include stddef.h or stdio.h, since our
55142         interface does that.
55143         (getline): Always use getdelim, so that we don't have two
55144         copies of this code.
55145         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
55146         if available.
55147         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
55148         (GETNDELIM2_MAXIMUM): New macro.
55149         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
55150         instead of the old practice of delim2==0.  All callers changed.
55151         Return -1 on overflow, instead of returning junk.
55152         Do not set *linesize unless allocation succeeds.
55153         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
55154         that we include sys/types.h.
55155         * lib/getnline.h: Likewise.
55156         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
55157         (getndelim2): Reorder arguments.
55158         * lib/getnline.c (getnline, getndelim):
55159         Don't discard the NMAX argument.
55160         (getnline): Invoke getndelim, to avoid code duplication.
55161         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
55162         of (size_t) -1 by callers of the getnline family.
55163
55164 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
55165
55166         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
55167         Check for gettimeofday.
55168         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
55169         Check for settimeofday, stime.
55170
55171 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
55172
55173         * lib/nanosleep.c (suspended): Change its type from int to
55174         sig_atomic_t volatile.
55175         (first_call): Make it private to rpl_nanosleep, and have it
55176         be zero initially as that's a bit faster.
55177         (my_usleep): Round up fractional times instead of truncating them,
55178         as this is the usual meaning for 'sleep'.
55179
55180         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
55181         doesn't work.
55182         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
55183         (ENOSYS): Define if not defined.
55184         (settime): Fall back on stime if it exists and settimeofday fails.
55185         But don't bother with fallbacks if a method fails with errno == EPERM.
55186
55187 2004-05-11  Jim Meyering  <jim@meyering.net>
55188
55189         Prior to this change, the save_cwd caller required read access to the
55190         current directory on most systems (ones with the fchdir function).
55191
55192         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
55193         fails, try write-only, and finally, resort to using xgetcwd.
55194
55195 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
55196
55197         * lib/obstack.c, obstack.h: Import changes from libc.
55198
55199 2004-04-28  Bruno Haible  <bruno@clisp.org>
55200
55201         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
55202         also implicitly appends .exe to executables.
55203         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
55204         accepts Windows pathnames.
55205         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
55206         Treat Cygwin like Windows, since it now accepts Windows pathnames.
55207         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
55208         Treat Cygwin like Windows, since it now accepts Windows pathnames.
55209         Reported by Derek Robert Price <derek@ximbiot.com>.
55210
55211 2004-04-21  Karl Berry  <karl@gnu.org>
55212
55213         * config/srclist.txt (localcharset.c): break sync.
55214
55215 2004-04-20  Paul Eggert  <eggert@twinsun.com>
55216
55217         * m4/host-os.m4: Add a copyright notice.
55218
55219 2004-04-20  Jim Meyering  <jim@meyering.net>
55220
55221         Change UTILS_ to gl_ in AC_DEFINE'd names.
55222         Change utils_- and jm_-prefixed variables, too.
55223         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
55224         UTILS_FUNC_MKDIR_TRAILING_SLASH.
55225         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
55226
55227         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
55228         Don't emit trailing blanks.
55229         Also rename jm_-prefixed variables to have gl_ prefix.
55230
55231         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
55232         Also rename jm_-prefixed variables to have gl_ prefix.
55233
55234         * m4/jm-macros.m4: Reflect the renamings.
55235         * m4/prereq.m4: Likewise.
55236
55237 2004-04-20  Jim Meyering  <jim@meyering.net>
55238
55239         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
55240         memory.
55241
55242 2004-04-20  Jim Meyering  <jim@meyering.net>
55243             Bruno Haible  <bruno@clisp.org>
55244
55245         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
55246         memory when realloc fails.
55247
55248 2004-04-19  Jim Meyering  <jim@meyering.net>
55249
55250         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
55251         now that readutmp.c may call `free (0)'.
55252
55253 2004-04-19  Bruno Haible  <bruno@clisp.org>
55254
55255         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
55256         * m4/inttypes_h.m4: Likewise.
55257         * m4/stdint_h.m4: Likewise.
55258         * m4/intmax_t.m4: Likewise.
55259         * m4/uintmax_t.m4: Likewise.
55260
55261 2004-04-18  Jim Meyering  <jim@meyering.net>
55262
55263         * m4/prereq.m4: Don't forbid jm_ prefix.
55264
55265         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
55266         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
55267         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
55268         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
55269         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
55270         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
55271         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
55272         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
55273         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
55274         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
55275         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
55276         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
55277         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
55278         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
55279         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
55280         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
55281         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
55282         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
55283         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
55284
55285 2004-04-18  Jim Meyering  <jim@meyering.net>
55286
55287         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
55288         failure, don't leak memory and do call END_UTMP_ENT.
55289
55290 2004-04-16  Jim Meyering  <jim@meyering.net>
55291
55292         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
55293         coreutils' stat program.
55294         (gl_PREREQ): Don't require jm_PREREQ_STAT.
55295
55296 2004-04-11  Paul Eggert  <eggert@twinsun.com>
55297
55298         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
55299         C89.
55300         (CHAR_BIT): Remove, since we assume C89.
55301         Include <stdint.h> if available, as per current Autoconf CVS advice.
55302
55303 2004-03-31  Jim Meyering  <jim@meyering.net>
55304
55305         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
55306         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
55307         * m4/xalloc.m4: Likewise.
55308
55309 2004-03-30  Paul Eggert  <eggert@twinsun.com>
55310
55311         Merge from coreutils.
55312
55313         * m4/inttostr.m4: New file.
55314         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
55315         Require AM_STDBOOL_H and gl_TIMESPEC instead.
55316         Require gl_CLOCK_TIME.
55317         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
55318
55319 2004-03-30  Paul Eggert  <eggert@twinsun.com>
55320
55321         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
55322         not bool, to be more consistent with Unix conventions.
55323         Suggested by Bruno Haible.
55324
55325         Merge from coreutils.
55326
55327         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
55328         * lib/umaxtostr.c: New files.
55329
55330         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
55331         the usual <time.h> dance.
55332         (get_date): Change signature to support fractional time stamps.
55333         All callers changed.
55334         * lib/getdate.y: Include "getdate.h" first, as we can now
55335         assume C89 and don't need to worry about 'const'.
55336         Similarly, include "unlocked-io.h" near start, not in middle.
55337         Include <limits.h>.
55338         (textint.value): Use long int rather than int.
55339         (textint.digits): Use size_t rather than int.
55340         (BILLION, LOG10_BILLION): New constants.
55341         (parser_control): New member rel_ns.  Members day_ordinal,
55342         time_zone, month, day, hour, minutes, rel_year, rel_month,
55343         rel_day, rel_hour, rel_minutes, rel_seconds
55344         are now long int, not int.  Member seconds is now struct timespec,
55345         not int.  New member timespec_seen.  Members dates_seen, days_seen,
55346         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
55347         not int.
55348         (%union.intval): Now long int, not int.
55349         New member timespec.
55350         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
55351         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
55352         (spec): Now is a timespec or an item list.
55353         (timespec, items): New nonterminals.
55354         (time, rel, relunit, number, get_date):
55355         Add support for fractional seconds.
55356         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
55357         (gmtime, localtime, mktime): Remove decls; not needed with C89.
55358         (to_hour): First arg is now long int, not int.
55359         (to_year): Returns long int, not int.
55360         Don't treat year -70 like 70.
55361         (tm_diff): Returns long int, not int.
55362         (lookup_word): Use bool instead of int when appropriate.
55363         (yylex): Use size_t for count, not int.
55364         Detect overflow when parsing large integer constants.
55365         Add support for fractions.
55366         (get_date): Make pointers 'const' if possible.
55367         Use more-portable code to detect integer overflow.
55368         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
55369         Don't use ctime; it's not reliable if the year has >4 digits.
55370
55371         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
55372         This is for compatibility with BSD.
55373
55374         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
55375         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
55376         From coreutils' system.h.
55377
55378         * lib/userspec.c: Don't include "posixver.h".
55379         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
55380         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
55381         compatible extension.  Simplify code by removing a boolean int
55382         that was always nonzero if a string was nonnull.
55383
55384 2004-03-30  Jim Meyering  <jim@meyering.net>
55385
55386         Merge from coreutils.
55387
55388         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
55389         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
55390         on some systems one must include <grp.h> before it.
55391         Reported by Christian Krackowizer.
55392
55393 2004-03-30  Jim Meyering  <jim@meyering.net>
55394
55395         Merge from coreutils.
55396
55397         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
55398
55399         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
55400         an empty input stream.
55401
55402         * lib/readtokens.c: Include <stdbool.h>.
55403         (readtoken): Use `size_t' rather than int/long.
55404         All callers adjusted.
55405         Use `bool' rather than `int' where appropriate.
55406         Use memset rather than an explicit loop.
55407         Use x2nrealloc rather than xrealloc.
55408         Allow the use of `\0' as a delimiter.
55409         (readtokens): Likewise.
55410         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
55411
55412 2004-03-30  Jim Meyering  <jim@meyering.net>
55413
55414         * m4/realloc.m4: Remove file, since now it does no more than
55415         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
55416         the `configure.ac' section of module/realloc.
55417         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
55418
55419 2004-03-30  Bruno Haible  <bruno@clisp.org>
55420
55421         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
55422         nonnull.
55423
55424 2004-03-29  Paul Eggert  <eggert@twinsun.com>
55425
55426         Merge changes to getloadavg.c from coreutils and Emacs.
55427
55428         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
55429         Define to an expression, not to the empty string.
55430         Include cloexec.h and xalloc.h.
55431         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
55432         Use set_cloexec_flag rather than rolling our own.
55433         * lib/cloexec.c, lib/cloexec.h: New files.
55434
55435 2004-03-29  Paul Eggert  <eggert@twinsun.com>
55436
55437         * m4/cloexec.m4: New file.
55438
55439 2004-03-18  Paul Eggert  <eggert@twinsun.com>
55440
55441         * lib/getopt.h: Sync with libc CVS.
55442
55443 2004-03-18  Paul Eggert  <eggert@twinsun.com>
55444             Bruno Haible  <bruno@clisp.org>
55445
55446         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
55447         mbswidth.
55448
55449 2004-03-18  Paul Eggert  <eggert@twinsun.com>
55450             Bruno Haible  <bruno@clisp.org>
55451
55452         * lib/mbswidth.h: Include <wchar.h> only if
55453         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
55454         <wchar.h>.
55455         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
55456
55457 2004-03-09  Paul Eggert  <eggert@twinsun.com>
55458
55459         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
55460         Sync with libc CVS.
55461         * lib/getopt_int.h: New file, also synced from libc.
55462
55463 2004-03-09  Paul Eggert  <eggert@twinsun.com>
55464
55465         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
55466         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
55467         Bring back getopt.c, getopt.h, getopt1.c.
55468
55469 2004-03-07  Paul Eggert  <eggert@twinsun.com>
55470
55471         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
55472         All uses changed.  Check for sa_sigaction member; this fixes
55473         a bug first reported by Jason Andrade in
55474         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
55475
55476 2004-03-07  Paul Eggert  <eggert@twinsun.com>
55477
55478         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
55479         '#if' expressions.  Unlike the code it replaces, it does not
55480         depend on (defined _SC_PAGESIZE).  However, it does depend on
55481         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
55482         first reported by Jason Andrade in
55483         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
55484
55485 2004-02-25  Simon Josefsson  <jas@extundo.com>
55486
55487         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
55488
55489 2004-02-25  Simon Josefsson  <jas@extundo.com>
55490
55491         * lib/strdup.h: New file.
55492         * lib/strdup.c: Include it.
55493         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
55494         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
55495
55496 2004-02-23  Karl Berry  <karl@gnu.org>
55497
55498         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
55499         (from fencepost.gnu.org:/gd/gnuorg).
55500
55501 2004-02-23  Karl Berry  <karl@gnu.org>
55502
55503         * config/srclistvars.sh (GNUORG) [karl]: redefine.
55504         * config/srclist.txt: add maintain/standards documents.
55505
55506 2004-02-18  Bruno Haible  <bruno@clisp.org>
55507
55508         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
55509         Reported by Derek Robert Price <derek@ximbiot.com>.
55510
55511 2004-02-16  Karl Berry  <karl@gnu.org>
55512
55513         * config/mkinstalldirs, install-sh: update from automake.
55514
55515 2004-02-06  Karl Berry  <karl@gnu.org>
55516
55517         * m4/po.m4: update from gettext 0.14.1.
55518
55519 2004-02-06  Karl Berry  <karl@gnu.org>
55520
55521         * lib/config.charset: update from gettext 0.14.1.
55522
55523 2004-02-05  Paul Eggert  <eggert@twinsun.com>
55524
55525         Add comments and code, prompted by suggestions from Bruno Haible
55526         for sh-quote.
55527         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
55528         describing the enum quoting_style values.
55529         * lib/quotearg.c (quotearg_alloc): New function.
55530         (quotearg_buffer_restyled): Treat lone { and } as special.
55531         Treat = as special.  Work around bug with older shells
55532         that "see" a '\' that is really the 2nd byte of a multibyte char.
55533         Quote empty string with shell_quoting_style.
55534
55535 2004-02-03  Bruno Haible  <bruno@clisp.org>
55536
55537         * m4/pipe.m4: New file, from GNU gettext.
55538
55539 2004-02-03  Bruno Haible  <bruno@clisp.org>
55540
55541         * lib/pipe.h: New file, from GNU gettext.
55542         * lib/pipe.c: New file, from GNU gettext.
55543
55544 2004-01-27  Bruno Haible  <bruno@clisp.org>
55545
55546         * m4/execute.m4: New file, from GNU gettext.
55547
55548 2004-01-27  Bruno Haible  <bruno@clisp.org>
55549
55550         * lib/execute.h: New file, from GNU gettext.
55551         * lib/execute.c: New file, from GNU gettext.
55552         * lib/w32spawn.h: New file, from GNU gettext.
55553
55554 2004-01-24  Paul Eggert  <eggert@twinsun.com>
55555
55556         Merge from diffutils.
55557
55558         * lib/file-type.c (file_type): Add typed memory objects.
55559         * lib/file-type.h (S_TYPEISTMO): New macro.
55560
55561         * lib/c-stack.h (c_stack_action): Remove argv argument.
55562         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
55563         (die): Don't calculate message unless segv_action returns.
55564         (get_stack_location, min_address_from_argv, max_address_from_argv,
55565         volatile stack_base, volatile_stack_size): Remove.
55566         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
55567         that every segmentation violation is a stack overflow.  (Ouch!)
55568         See Debian bug 136249 (still outstanding) for more info about why
55569         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
55570
55571 2004-01-24  Paul Eggert  <eggert@twinsun.com>
55572
55573         Exit-status fix from coreutils.
55574
55575         Use exit_failure consistently in place of EXIT_FAILURE,
55576         so that program exit statuses are consistent on failure.
55577
55578         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
55579         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
55580         * lib/argmatch.h: Comment fix to match the above.
55581         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
55582         Now a macro referring to exit_failure, instead of a separate
55583         variable.  Include "exitfail.h" to get it.
55584         * lib/xstrtol.h: Include "exitfail.h".
55585         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
55586
55587         * lib/long-options.c (parse_long_options): Use prototype
55588         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
55589         for clarity.
55590
55591 2004-01-21  Jim Meyering  <jim@meyering.net>
55592
55593         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
55594         so as not to conflict with a different-sized __mktime_internal
55595         function in GNU libc.
55596         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
55597         Problem building statically-linked `ls' reported by Michael Brunnbauer.
55598
55599 2004-01-20  Karl Berry  <karl@gnu.org>
55600
55601         * config/config.guess: update from config.
55602
55603         * config/srclistvars.sh: GNUWWWLICENSES for karl.
55604
55605 2004-01-20  Bruno Haible  <bruno@clisp.org>
55606
55607         Safer stack allocation.
55608         * lib/setenv.c: Include allocsa.h.
55609         (alloca): Remove fallback definition.
55610         (freea): Remove macro.
55611         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
55612         instead of freea.
55613
55614 2004-01-20  Bruno Haible  <bruno@clisp.org>
55615
55616         * m4/eealloc.m4: New file, from GNU gettext.
55617
55618 2004-01-20  Bruno Haible  <bruno@clisp.org>
55619
55620         * m4/allocsa.m4: New file, from GNU gettext.
55621
55622 2004-01-20  Bruno Haible  <bruno@clisp.org>
55623
55624         * lib/xallocsa.h: New file, from GNU gettext.
55625         * lib/xallocsa.c: New file, from GNU gettext.
55626
55627 2004-01-20  Bruno Haible  <bruno@clisp.org>
55628
55629         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
55630
55631 2004-01-20  Bruno Haible  <bruno@clisp.org>
55632
55633         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
55634         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
55635         specially.
55636
55637 2004-01-20  Bruno Haible  <bruno@clisp.org>
55638
55639         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
55640         patch.
55641
55642 2004-01-20  Bruno Haible  <bruno@clisp.org>
55643
55644         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
55645
55646 2004-01-20  Bruno Haible  <bruno@clisp.org>
55647
55648         * lib/eealloc.h: New file.
55649
55650 2004-01-20  Bruno Haible  <bruno@clisp.org>
55651
55652         * lib/binary-io.h: Avoid warnings on Cygwin.
55653
55654 2004-01-20  Bruno Haible  <bruno@clisp.org>
55655
55656         * lib/allocsa.h: New file, from GNU gettext.
55657         * lib/allocsa.c: New file, from GNU gettext.
55658
55659 2004-01-18  Karl Berry  <karl@gnu.org>
55660
55661         * doc/gpl.texi, doc/lgpl.texi: new files.
55662
55663 2004-01-18  Karl Berry  <karl@gnu.org>
55664
55665         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
55666         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
55667
55668 2004-01-15  Paul Eggert  <eggert@twinsun.com>
55669
55670         Merge from coreutils.
55671
55672         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
55673         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
55674         (gl_DEFAULT_POSIX2_VERSION): Move
55675         the documentation from 'configure' into 'config.hin',
55676         so that 'configure --help' isn't burdened by it and
55677         we don't have to worry about its formatting there.
55678         Reword the documentation so that it's more succinct
55679         and can be run together into a single paragraph.
55680         * m4/same.m4 (gl_SAME): Check for pathconf.
55681
55682 2004-01-15  Paul Eggert  <eggert@twinsun.com>
55683
55684         Merge from coreutils.
55685
55686         * lib/posixver.c: Include posixver.h.
55687
55688         * lib/same.c: Include <stdbool.h>, <limits.h>.
55689         (_POSIX_NAME_MAX): Define if not defined.
55690         (MIN): New macro.
55691         (same_name): If file names are silently truncated, report
55692         that the file names are the same if they are the same after
55693         the silent truncation.
55694
55695         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
55696         conversion function.
55697         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
55698         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
55699         longer needed.
55700
55701 2004-01-15  Jim Meyering  <jim@meyering.net>
55702
55703         Merge from coreutils.
55704
55705         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
55706         if no library is required.
55707         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
55708         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
55709         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
55710         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
55711         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
55712         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
55713         value, $ac_cv_search_crypt, if it's "none required".
55714         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
55715         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
55716         not gl_FUNC_GETLOADAVG.
55717         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
55718         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
55719
55720 2004-01-15  Jim Meyering  <jim@meyering.net>
55721
55722         Merge from coreutils.
55723
55724         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
55725         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
55726         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
55727
55728         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
55729         optional configure-time default.
55730
55731         * lib/version-etc.c (version_etc_copyright): Update copyright date.
55732
55733         * lib/xreadlink.c (xreadlink): Correct outdated comment.
55734
55735 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
55736
55737         Merge from coreutils.
55738
55739         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
55740         value, $ac_cv_search_nanosleep, if it's "none required".
55741
55742 2004-01-14  Paul Eggert  <eggert@twinsun.com>
55743
55744         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
55745         with like-named macro in fnmatch.c.
55746         (EXT): Use an internal constant instead.
55747
55748         Merge fnmatch patches from glibc.
55749         * lib/fnmatch.c (mbsinit): Remove define.
55750         Add libc_hidden_ver (__fnmatch, fnmatch).
55751         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
55752         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
55753
55754 2004-01-14  Karl Berry  <karl@gnu.org>
55755
55756         * config/install-sh: update from automake.
55757
55758 2004-01-13  Karl Berry  <karl@gnu.org>
55759
55760         * config/install-sh: update from automake.
55761
55762 2004-01-09  Karl Berry  <karl@gnu.org>
55763
55764         * config/install-sh: update from automake.
55765
55766 2004-01-05  Karl Berry  <karl@gnu.org>
55767
55768         * config/config.{sub,guess}: update from config.
55769
55770 2003-12-31  Karl Berry  <karl@gnu.org>
55771
55772         * config/depcomp: update from automake.
55773
55774 2003-12-14  Karl Berry  <karl@gnu.org>
55775
55776         * lib/config.charset: update from gettext-runtime.
55777
55778 2003-12-03  Paul Eggert  <eggert@twinsun.com>
55779
55780         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
55781         Bug reported by Alfred M. Szmidt.
55782
55783 2003-12-03  Bruno Haible  <bruno@clisp.org>
55784
55785         * m4/gettext.m4: Upgrade from gettext-0.13.
55786         * m4/po.m4: Upgrade from gettext-0.13.
55787         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
55788         * m4/intmax.m4: New file, from gettext-0.13.
55789         * m4/printf-posix.m4: New file, from gettext-0.13.
55790
55791 2003-11-29  Karl Berry  <karl@gnu.org>
55792
55793         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
55794
55795 2003-11-25  Paul Eggert  <eggert@twinsun.com>
55796             Bruno Haible  <bruno@clisp.org>
55797
55798         * lib/printf-parse.h: Don't include sys/types.h.
55799         (ARG_NONE): New macro.
55800         (char_directive): Change type of *arg_index fields to size_t.
55801         * lib/printf-parse.c: Don't include sys/types.h.
55802         (SSIZE_MAX): Remove macro.
55803         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
55804         Remove unnecessary overflow check.
55805         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
55806         fields.
55807
55808 2003-11-25  Bruno Haible  <bruno@clisp.org>
55809
55810         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
55811
55812 2003-11-25  Bruno Haible  <bruno@clisp.org>
55813
55814         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
55815         gt_TYPE_SSIZE_T.
55816
55817 2003-11-24  Paul Eggert  <eggert@twinsun.com>
55818
55819         * modules/alloca: Remove dependency on xalloc.
55820
55821 2003-11-24  Paul Eggert  <eggert@twinsun.com>
55822
55823         * lib/alloca.c: Remove dependency on xalloc module.
55824         (xalloc_die): Remove.
55825         (memory_full) [!defined emacs]: New macro.
55826         [!defined emacs]: Don't include xalloc.h.
55827         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
55828         address arithmetic overflows.  Change datatypes a bit to avoid
55829         unnecessary casts.
55830
55831 2003-11-22  Jim Meyering  <jim@meyering.net>
55832
55833         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
55834         s/size/size_t/.
55835
55836 2003-11-21  Karl Berry  <karl@gnu.org>
55837
55838         * config/config.{sub,guess}: update from config.
55839
55840 2003-11-18  Karl Berry  <karl@gnu.org>
55841
55842         * config/config.{sub,guess}: update from config.
55843
55844         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
55845
55846 2003-11-17  Paul Eggert  <eggert@twinsun.com>
55847
55848         * README: Mention that S+T cannot overflow if S is the size of
55849         an existing object and T is sufficiently small.
55850
55851 2003-11-17  Jim Meyering  <jim@meyering.net>
55852
55853         On systems without utime and without a utimes function capable of
55854         dealing with a NULL struct utimbuf* argument, this utime replacement
55855         could -- in unusual circumstances -- leak a file descriptor.
55856         * lib/utime.c: Include <unistd.h> and <errno.h>.
55857         (utime_null): Be sure to close `fd' and to preserve errno.
55858         Reported by Geoff Collyer via Arnold Robbins.
55859
55860 2003-11-17  Bruno Haible  <bruno@clisp.org>
55861
55862         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
55863         (Depends-on): Add xsize.
55864
55865 2003-11-17  Bruno Haible  <bruno@clisp.org>
55866
55867         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
55868
55869 2003-11-17  Bruno Haible  <bruno@clisp.org>
55870
55871         * lib/vasnprintf.c (alloca): Remove fallback definition.
55872         (freea): Remove definition.
55873         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
55874         Reported by Paul Eggert.
55875
55876 2003-11-16  Paul Eggert  <eggert@twinsun.com>
55877             Bruno Haible  <bruno@clisp.org>
55878
55879         Protect against address arithmetic overflow.
55880         * lib/printf-args.h: Include stddef.h.
55881         (arguments): Change type of field 'count' to size_t.
55882         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
55883         'unsigned int' where appropriate.
55884         * lib/printf-parse.h: Include sys/types.h.
55885         (char_directive): Change type of *arg_index fields to ssize_t.
55886         (char_directives): Change type of fields 'count', max_*_length to
55887         size_t.
55888         * lib/printf-parse.c: Include sys/types.h and xsize.h.
55889         (SSIZE_MAX): Define fallback value.
55890         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
55891         instead of 'int' where appropriate. Check a_allocated, d_allocated
55892         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
55893         * lib/vasnprintf.c: Include xsize.h.
55894         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
55895         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
55896         overflow. Avoid wraparound when converting a width or precision from
55897         decimal to binary.
55898
55899 2003-11-16  Bruno Haible  <bruno@clisp.org>
55900
55901         Update from GNU gettext.
55902         * lib/printf-parse.c: Generalize to it can be compiled for wide
55903         strings.
55904         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
55905         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
55906         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
55907         SNPRINTF): New macros.
55908         Don't include <alloca.h> if the file is used inside libintl.
55909         (local_wcslen): New function, for Solaris 2.5.1.
55910         (VASNPRINTF): Use it instead of wcslen.
55911
55912 2003-11-16  Bruno Haible  <bruno@clisp.org>
55913
55914         * lib/xsize.h (xmax): New function.
55915         (xsum, xsum3, xsum4): Declare as "pure" functions.
55916
55917 2003-11-12  Paul Eggert  <eggert@twinsun.com>
55918
55919         * modules/xalloc (Files): Undo latest change, since xalloc.h
55920         no longer needs SIZE_MAX or PTRDIFF_MAX.
55921
55922 2003-11-12  Paul Eggert  <eggert@twinsun.com>
55923
55924         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
55925         gl_PTRDIFF_MAX.
55926
55927 2003-11-12  Paul Eggert  <eggert@twinsun.com>
55928
55929         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
55930         "return", to pacify some unknown compiler.  Problem reported
55931         by Joerg Schilling.
55932
55933 2003-11-12  Paul Eggert  <eggert@twinsun.com>
55934
55935         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
55936         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
55937         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
55938         heuristic is just as accurate as far as we know, and it removes a
55939         dependency on size_max.m4 and ptrdiff_max.m4.
55940
55941 2003-11-11  Bruno Haible  <bruno@clisp.org>
55942
55943         * modules/xsize (Files): Add m4/size_max.m4.
55944         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
55945
55946 2003-11-11  Bruno Haible  <bruno@clisp.org>
55947
55948         * m4/size_max.m4: New file.
55949         * m4/ptrdiff_max.m4: New file.
55950         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
55951         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
55952         (gl_XALLOC): Invoke it.
55953
55954 2003-11-11  Bruno Haible  <bruno@clisp.org>
55955
55956         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
55957         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
55958         defined.
55959
55960 2003-11-10  Paul Eggert  <eggert@twinsun.com>
55961
55962         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
55963         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
55964         rejected some allocations of exactly SIZE_MAX - 2 bytes.
55965         From Bruno Haible.
55966         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
55967         not (size_t) -1, since it's defined here.
55968
55969 2003-11-09  Karl Berry  <karl@gnu.org>
55970
55971         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
55972
55973 2003-11-06  Paul Eggert  <eggert@twinsun.com>
55974
55975         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
55976         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
55977         Reject sizes of exactly SIZE_MAX bytes.
55978         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
55979         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
55980
55981 2003-11-05  Bruno Haible  <bruno@clisp.org>
55982
55983         * lib/xsize.h: Include limits.h, to avoid a possible collision with
55984         SIZE_MAX defined in <limits.h> on Solaris.
55985
55986 2003-11-04  Jim Meyering  <jim@meyering.net>
55987
55988         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
55989         variable names, rather than @VAR@.
55990         * modules/poll: Likewise.
55991
55992 2003-11-04  Bruno Haible  <bruno@clisp.org>
55993
55994         * modules/xsize: New file.
55995         * modules/linebreak: Depend on xsize.
55996         * MODULES.html.sh (func_all_modules): Add xsize.
55997
55998 2003-11-04  Bruno Haible  <bruno@clisp.org>
55999
56000         * m4/xsize.m4: New file.
56001
56002 2003-11-04  Bruno Haible  <bruno@clisp.org>
56003
56004         * lib/xsize.h: New file.
56005         * lib/linebreak.c: Include xsize.h.
56006         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
56007         argument for overflow.
56008         Suggested by Paul Eggert.
56009
56010 2003-11-03  Karl Berry  <karl@gnu.org>
56011
56012         * config/config.{guess,sub}: update from config.
56013
56014 2003-11-03  Jim Meyering  <jim@meyering.net>
56015
56016         * modules/userspec (lib_SOURCES): Add userspec.h.
56017         (Include): Add "userspec.h".
56018         Improve description.
56019
56020 2003-11-03  Jim Meyering  <jim@meyering.net>
56021
56022         * lib/userspec.c: Include "userspec.h".
56023         * lib/userspec.h: New file.
56024
56025 2003-11-03  Bruno Haible  <bruno@clisp.org>
56026
56027         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
56028
56029 2003-11-03  Bruno Haible  <bruno@clisp.org>
56030
56031         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
56032         available, to avoid (extremely rare) race condition.
56033         Suggested by Paul Eggert.
56034
56035 2003-11-02  Karl Berry  <karl@gnu.org>
56036
56037         * config/srclist.txt (vasprintf.c): sync broken, sigh.
56038
56039 2003-10-31  Paul Eggert  <eggert@twinsun.com>
56040
56041         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
56042         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
56043         (read_filesystem_list): Set and use me_type_malloced.
56044         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
56045         whatever the type happens to be), for brevity and consistency.
56046         Check for size calculation overflow on Alphas running OSF/1.
56047
56048 2003-10-31  Jim Meyering  <jim@meyering.net>
56049
56050         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
56051
56052         * lib/linebuffer.c: Include <string.h> for declaration of memset.
56053
56054 2003-10-30  Paul Eggert  <eggert@twinsun.com>
56055             Bruno Haible  <bruno@clisp.org>
56056
56057         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
56058         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
56059
56060 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
56061
56062         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
56063         netbsd*-gnu*.  Suggested by Robert Millan.
56064
56065 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56066
56067         * modules/group-member: Depend on stdbool.
56068
56069 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56070
56071         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
56072
56073 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56074
56075         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
56076         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
56077         after the 'gnu' in these cases.  This fixes some bugs in the
56078         previous change, and is based on suggestions by Robert Millan.
56079
56080 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56081
56082         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
56083         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
56084         no longer needed.
56085         * lib/quotearg.c (quotearg_n_options): Use it.
56086         * lib/group-member.c: Include <stdbool.h>.
56087         (free_group_info): Arg is now const *; don't free arg.
56088         (get_group_info): Now returns bool and accepts struct group_info *,
56089         rather than returning a malloc'ed struct group_info *.
56090         All uses changed.  Check for overflow in internal size calculation.
56091
56092         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
56093         rather than xmalloc/xrealloc.
56094         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
56095         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
56096         conformance bug: the old code used a pointer after freeing the
56097         storage that it addressed.
56098         * lib/hash.c (hash_initialize): Simplify the code by using
56099         xalloc_oversized rather than doing it by hand.
56100         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
56101         the buffer preserved.  Use free and xmalloc instead.
56102         * lib/quotearg.c (quotearg_n_options): Likewise.
56103         Use a simpler test for size overflow.  Don't use xalloc_oversized
56104         because unsigned int might be wider than size_t (!); this suggests
56105         that we should switch from unsigned int to size_t for slot numbers.
56106
56107 2003-10-28  Paul Eggert  <eggert@twinsun.com>
56108
56109         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
56110         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
56111         NetBSD kernels.  Requested by Richard Stallman.
56112
56113 2003-10-27  Paul Eggert  <eggert@twinsun.com>
56114
56115         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
56116         to allocate the returned structure.  Do not allocate a subarray,
56117         as x2nrealloc will do that.
56118         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
56119         instead of xnrealloc.
56120         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
56121
56122 2003-10-27  Bruno Haible  <bruno@clisp.org>
56123
56124         * lib/stdbool_.h: Better support for BeOS.
56125
56126 2003-10-26  Paul Eggert  <eggert@twinsun.com>
56127
56128         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
56129         now uses inline.
56130
56131 2003-10-26  Paul Eggert  <eggert@twinsun.com>
56132
56133         * lib/xalloc.h (xalloc_oversized): New static inline function, for
56134         callers that want to do their own size-overflow checking.  Include
56135         <stdbool.h>, since xalloc_oversized returns bool.
56136         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
56137         to use xalloc_oversized.
56138
56139         Add two functions x2realloc, x2nrealloc, for programs that grow
56140         arrays dynamically by doubling their sizes.
56141         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
56142         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
56143         New functions.
56144
56145         Port to C99 semantics for 'inline' of external functions.
56146         Bug reported by Bruno Haible.
56147         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
56148         with the old contents of xnmalloc.
56149         (xnmalloc, xmalloc): Use it.
56150         (xnrealloc_inline): New static inline function,
56151         with the old contents of xnrealloc.
56152         (xnrealloc, xrealloc): Use it.
56153
56154         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
56155         that.
56156
56157 2003-10-26  Karl Berry  <karl@gnu.org>
56158
56159         * config/srclist.txt (COPYING.DOC): no longer available from
56160         /gd/gnuorg; don't know where the ultimate source is.
56161
56162 2003-10-25  Paul Eggert  <eggert@twinsun.com>
56163
56164         Fix several address-calculation bugs in the hash modules,
56165         plus some minor code cleanup.
56166
56167         * lib/hash.h: Include <stdbool.h>, for bool.
56168         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
56169         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
56170         hash_get_n_entries, hash_get_max_bucket_length,
56171         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
56172         hash_rehash): Use size_t rather than unsigned.
56173         * lib/hash.c (struct hash_table, hash_get_n_buckets,
56174         hash_get_n_buckets_used, hash_get_n_entries,
56175         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
56176         hash_get_entries, hash_do_for_each, hash_string, is_prime,
56177         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
56178         Likewise.
56179         (SIZE_MAX): Define if not defined.
56180         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
56181         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
56182         hash_print):
56183         Use const * when possible.
56184         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
56185         (check_tuning): Fix bug: if tuning parameters were very close to
56186         0 or 1, rounding errors could have caused subscript violations.
56187         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
56188         (hash_initialize): Add 'fail:' label
56189         to free table and return NULL, and use it to simplify code.
56190         Use calloc rather than clearing the storage ourself.
56191         (hash_initialize, hash_rehash): Check for arithmetic overflow in
56192         buffer size calculations.
56193         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
56194         Include <stddef.h>, for size_t.
56195         * lib/hash-pjw.c (hash_pjw): Likewise.
56196         Switch to method described by Bruno Haible.
56197         Include <limits.h>, for CHAR_BIT.
56198         (SIZE_BITS): New macro.
56199
56200 2003-10-23  Paul Eggert  <eggert@twinsun.com>
56201
56202         * m4/getline.m4 (AM_FUNC_GETLINE):
56203         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
56204         hosts.  Problem reported by Derek Robert Price in
56205         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
56206         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
56207         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
56208
56209 2003-10-21  Paul Eggert  <eggert@twinsun.com>
56210
56211         * lib/getndelim2.c (getndelim2): When size calculation overflows,
56212         ceiling the allocation at NMAX bytes rather than silently
56213         discarding input bytes before NMAX is reached.  This makes
56214         a difference only if NMAX exceeds SIZE_MAX / 2.
56215
56216         * lib/obstack.c: Merge from glibc.
56217         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
56218         Add libc_hidden_def (_obstack_newchunk).
56219         (_obstack_free) [! defined _LIBC]: Remove.
56220         [defined _LIBC]: Make a strong alias from obstack_free, rather than
56221         a clone of the function body.
56222         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
56223         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
56224
56225         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
56226         glibc.
56227         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
56228         arg to memcpy.
56229
56230         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
56231         (obstack_ptr_grow_fast, obstack_int_grow_fast):
56232         Don't use lvalue casts, as GCC plans to remove support for them
56233         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
56234         was also present in the non-GCC version, indicating that this
56235         code had always been buggy and had never been widely used.
56236         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
56237         Use the fast variant of each macro, rather than copying the
56238         definiens of the fast variant; that way, we'll be more likely to
56239         catch future bugs in the fast variants.
56240
56241 2003-10-20  Bruno Haible  <bruno@clisp.org>
56242
56243         * modules/wait-process: New file.
56244         * MODULES.html.sh (func_all_modules): Add wait-process.
56245
56246 2003-10-20  Bruno Haible  <bruno@clisp.org>
56247
56248         * m4/wait-process.m4: New file.
56249
56250 2003-10-20  Bruno Haible  <bruno@clisp.org>
56251
56252         * lib/wait-process.h: New file, from GNU gettext.
56253         * lib/wait-process.c: New file, from GNU gettext.
56254
56255 2003-10-19  Jim Meyering  <jim@meyering.net>
56256
56257         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
56258         HPUX 10.20.
56259
56260 2003-10-18  Karl Berry  <karl@gnu.org>
56261
56262         * config/config.guess: update from config.
56263
56264 2003-10-16  Paul Eggert  <eggert@twinsun.com>
56265
56266         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
56267         (getgroups): First arg is int, not size_t.
56268         Don't let 'free' mangle errno.
56269
56270 2003-10-16  Paul Eggert  <eggert@twinsun.com>
56271
56272         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
56273
56274 2003-10-16  Karl Berry  <karl@gnu.org>
56275
56276         * config/config.{guess,sub}: update from config.
56277
56278 2003-10-16  Jim Meyering  <jim@meyering.net>
56279
56280         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
56281         memcpy.
56282
56283 2003-10-15  Paul Eggert  <eggert@twinsun.com>
56284
56285         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
56286         (SIZE_MAX): Remove.
56287         (new_exclude, add_exclude_file): Initial size no longer needs to
56288         be a power of 2.
56289         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
56290         our own address arithmetic overflow checking.
56291
56292         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
56293         (fnmatch): Do not alloca more than 2000 wide characters;
56294         instead, use malloc for large buffers.
56295         Check for address arithmetic overflow, and return -1
56296         with errno set to ENOMEM in that case.
56297         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
56298         (NEW_PATTERN): Do not alloca more than 8000 bytes;
56299         instead, return -1.  Check for address arithmetic overflow.
56300
56301 2003-10-14  Paul Eggert  <eggert@twinsun.com>
56302
56303         Handle invalid suffixes and overflow independently, so that
56304         callers can treat them independently as needed.  Fix some bugs in
56305         suffix handling, e.g., "100k@" was not diagnosed as an invalid
56306         suffix for a human-readable blocksize.  The major caller-visible
56307         change is the addition of a new
56308         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
56309         that both overflow and suffix chars were found.
56310
56311         * lib/human.c (humblock): Don't check separately for invalid suffix
56312         char; that is xstrtoumax's job (now that its bug is fixed).
56313         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
56314         INTMAX_MAX]: New macros.
56315         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
56316         TYPE_MAXIMUM): New macros.
56317         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
56318         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
56319         if overflow occurs, as it's what __strtol does and it's more useful
56320         in practice.
56321         (__xstrtol): If __strtol reports some error other than ERANGE,
56322         reflect it to the caller as LONGINT_INVALID.  If it reports
56323         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
56324         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
56325         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
56326         value.
56327         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
56328         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
56329         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
56330         [defined UINTMAX_MAX]: New macros.
56331
56332 2003-10-14  Bruno Haible  <bruno@clisp.org>
56333
56334         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
56335
56336 2003-10-14  Bruno Haible  <bruno@clisp.org>
56337
56338         * m4/sig_atomic_t: New file, from GNU gettext.
56339         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
56340
56341 2003-10-14  Bruno Haible  <bruno@clisp.org>
56342
56343         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
56344         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
56345         Also use volatile where needed.
56346
56347 2003-10-12  Paul Eggert  <eggert@twinsun.com>
56348
56349         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
56350         Change maintainer from Bruno Haible to 'all'.
56351
56352 2003-10-12  Paul Eggert  <eggert@twinsun.com>
56353
56354         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
56355
56356 2003-10-12  Paul Eggert  <eggert@twinsun.com>
56357
56358         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
56359         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
56360         and define in terms of the other primitives.
56361         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
56362         (SIZE_MAX): Define if not already defined.
56363         (array_size_overflow): New function.
56364         (xalloc_die): Abort instead of exiting if 'error' returns.
56365         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
56366         (xmalloc, xrealloc): Use them.
56367         (xcalloc): Check for address arithmetic overflow.
56368         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
56369         a bit faster than strcpy.
56370
56371 2003-10-10  Simon Josefsson  <jas@extundo.com>
56372
56373         * modules/argp (Depends-on): Add restrict and strcase.
56374
56375 2003-10-10  Simon Josefsson  <jas@extundo.com>
56376
56377         * m4/argp.m4: Add AC_C_INLINE.
56378
56379 2003-10-08  Paul Eggert  <eggert@twinsun.com>
56380
56381         Merge getpass from libc, plus a few fixes.
56382
56383         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
56384         Include <stdbool.h>.
56385         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
56386         __fsetlocking to empty.
56387         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
56388         do include <bits/libc-lock.h>.
56389         Do not include <fcntl.h>; not needed.
56390         [_LIBC]: Include <wchar.h>.
56391         (NOTCANCEL_MODE): New macro.
56392         (flockfile, funlockfile) [_LIBC]: New macros.
56393         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
56394         [!_LIBC]: New macros.
56395         (call_fclose): New function.
56396         (getpass): Use it.  Save tty stream separately; this simplifies the
56397         code and makes it more reliable if stdin happens to equal stdout.
56398         Invoke __fsetlocking on tty.
56399         Handle thread cancellation if needed.
56400         Namespace cleanup (use __tcgetattr, __getline).
56401         Use bool for Booleans.
56402         [USE_IN_LIBIO]: Handle wide streams.
56403         [!_LIBC]: Unconditionally do the fseek, since we don't know what
56404         stream might go where.
56405
56406         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
56407         doesn't have to include <stdio.h> before us.
56408         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
56409         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
56410         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
56411         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
56412         if not declared, so that we can use getpass.c code from libc without
56413         rewriting it.
56414         (flockfile, ftrylockfile, funlockfile): New macros.
56415
56416 2003-10-08  Paul Eggert  <eggert@twinsun.com>
56417
56418         * modules/getpass: Depend on stdbool.
56419
56420 2003-10-08  Paul Eggert  <eggert@twinsun.com>
56421
56422         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
56423
56424 2003-10-07  Karl Berry  <karl@gnu.org>
56425
56426         * config/config.{guess,sub}: update from config.
56427
56428 2003-10-06  Jim Meyering  <jim@meyering.net>
56429             Bruno Haible  <bruno@clisp.org>
56430
56431         This lets translators provide better translations for the
56432         "Written by ..." part of --version output.
56433         * lib/version-etc.h: Include stdarg.h.
56434         (version_etc_copyright): Declare as readonly.
56435         (version_etc): Make this function variadic with a NULL-terminated list
56436         of author name strings.
56437         (version_etc_va): New declaration.
56438         * lib/version-etc.c: Include stdarg.h, stdlib.h.
56439         (version_etc_copyright): Declare as readonly.
56440         (version_etc_va): New function. Provide a different translatable string
56441         for each possible number of authors < 10. Abbreviate when there are 10
56442         authors or more.
56443         (version_etc): Make this function variadic. Call version_etc_va.
56444         Suggestion from Gary V. Vaughan.
56445
56446         * lib/long-options.h (parse_long_options): Change prototype: the
56447         authors string is moved to the end and becomes variadic.
56448         * lib/long-options.c: Include stdarg.h.
56449         (parse_long_options): Make this function variadic, too.
56450         Call version_etc_va, not version_etc.
56451
56452 2003-10-06  Bruno Haible  <bruno@clisp.org>
56453
56454         * modules/version-etc-2: Remove file.
56455         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
56456
56457 2003-10-06  Bruno Haible  <bruno@clisp.org>
56458
56459         * modules/fatal-signal: New file.
56460         * MODULES.html.sh (func_all_modules): Add fatal-signal.
56461
56462 2003-10-06  Bruno Haible  <bruno@clisp.org>
56463
56464         * m4/fatal-signal.m4: New file.
56465         * m4/signalblocking.m4: New file, from GNU gettext.
56466
56467 2003-10-06  Bruno Haible  <bruno@clisp.org>
56468
56469         * lib/version-etc-2.h: Remove file.
56470         * lib/version-etc-2.c: Remove file.
56471
56472 2003-10-06  Bruno Haible  <bruno@clisp.org>
56473
56474         * lib/fatal-signal.h: New file, from GNU gettext.
56475         * lib/fatal-signal.c: New file, from GNU gettext.
56476
56477 2003-10-05  Paul Eggert  <eggert@twinsun.com>
56478
56479         * README: Rework advice for preventing empty .o files.
56480         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
56481         not <sys/types.h>.
56482
56483 2003-10-04  Karl Berry  <karl@gnu.org>
56484
56485         * lib/argp*: update from libc.
56486
56487 2003-10-04  Karl Berry  <karl@gnu.org>
56488
56489         * config/config.{guess,sub}: update from config.
56490
56491 2003-10-02  Bruno Haible  <bruno@clisp.org>
56492
56493         * modules/lchown (Include): Add lchown.h.
56494         * modules/time_r (Include): Use "..." syntax.
56495         * modules/xgetdomainname (Include): Add xgetdomainname.h.
56496
56497 2003-10-01  Simon Josefsson  <jas@extundo.com>
56498
56499         * MODULES.html.sh (func_all_modules): Move gethostname from section
56500         'based on' to section 'lacking' POSIX:2001.
56501
56502 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
56503
56504         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
56505         to output mode on the same stream.
56506
56507 2003-09-29  Paul Eggert  <eggert@twinsun.com>
56508
56509         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
56510         Fix arg typo in previous patch.
56511
56512 2003-09-28  Jim Meyering  <jim@meyering.net>
56513
56514         * lib/error.c: Correct cpp indentation.
56515
56516 2003-09-27  Paul Eggert  <eggert@twinsun.com>
56517
56518         * modules/free: New file.
56519
56520 2003-09-27  Paul Eggert  <eggert@twinsun.com>
56521
56522         * m4/free.m4: New file.
56523
56524 2003-09-27  Paul Eggert  <eggert@twinsun.com>
56525
56526         * lib/minmax.h (MIN, MAX)
56527         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
56528         Omit the special code that used __typeof__, since we worry that
56529         it could be more trouble than it's worth.  See:
56530         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
56531         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
56532
56533         * lib/free.c: New file.
56534
56535 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
56536
56537         Trivial fixes to Makefile.am parts of module listings.
56538         * modules/strstr: Append strstr.h to lib_SOURCES.
56539         * modules/strcase: Likewise, for strcase.h.
56540
56541 2003-09-27  Karl Berry  <karl@gnu.org>
56542
56543         * config/mkinstalldirs: update from automake.
56544
56545 2003-09-26  Paul Eggert  <eggert@twinsun.com>
56546
56547         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
56548         (error_tail): Do not loop, reallocating temporary buffer, since
56549         the output cannot contain more wide characters than the input
56550         contains bytes, the size must be big enough already.  This avoids
56551         one potential size overflow calculation.  Check for size overflow
56552         when calculating temporary buffer size.  Free temporary buffer
56553         when done, if it was allocated with malloc; this plugs a memory
56554         leak.  Remove casts from void * to pointers, that are no longer
56555         needed now that we're assuming C89 or better.
56556
56557         Merge error changes from glibc.
56558
56559         * lib/error.c, error.h: Update copyright notice header to match glibc.
56560         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
56561         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
56562         Disable cancellation while printing error.
56563         * lib/error.h: Prepend __ to parameter names.
56564
56565 2003-09-26  Jim Meyering  <jim@meyering.net>
56566
56567         * lib/error.c (error_tail): Move some declarations
56568         into inner scope where the local variables are used.
56569
56570 2003-09-26  Bruno Haible  <bruno@clisp.org>
56571
56572         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
56573         stpncpy().
56574         Don't define stpncpy through config.h; it's now done through stpncpy.h.
56575
56576 2003-09-26  Bruno Haible  <bruno@clisp.org>
56577
56578         * lib/stpncpy.h (gnu_stpncpy): New declaration.
56579         (stpncpy): Define as alias for gnu_stpncpy.
56580         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
56581
56582 2003-09-25  Simon Josefsson  <jas@extundo.com>
56583
56584         * lib/xgetdomainname.h: New file.
56585         * lib/xgetdomainname.c: New file.
56586
56587 2003-09-25  Simon Josefsson  <jas@extundo.com>
56588             Bruno Haible  <bruno@clisp.org>
56589
56590         * modules/getdomainname: New file.
56591         * modules/xgetdomainname: New file.
56592         * MODULES.html.sh (func_all_modules): Add getdomainname,
56593         xgetdomainname.
56594
56595 2003-09-25  Simon Josefsson  <jas@extundo.com>
56596             Bruno Haible  <bruno@clisp.org>
56597
56598         * m4/getdomainname.m4: New file.
56599
56600 2003-09-25  Simon Josefsson  <jas@extundo.com>
56601             Bruno Haible  <bruno@clisp.org>
56602
56603         * lib/getdomainname.h: New file.
56604         * lib/getdomainname.c: New file.
56605
56606 2003-09-25  Karl Berry  <karl@gnu.org>
56607
56608         * lib/argp-fmtstream.c, argp-help.c: update from libc.
56609
56610 2003-09-25  Karl Berry  <karl@gnu.org>
56611
56612         * config/install-sh: update from automake.
56613
56614 2003-09-25  Bruno Haible  <bruno@clisp.org>
56615
56616         * modules/version-etc-2: New file, from modules/version-etc with
56617         modifications.
56618         * MODULES.html.sh (func_all_modules): Add version-etc-2.
56619
56620 2003-09-25  Bruno Haible  <bruno@clisp.org>
56621
56622         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
56623         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
56624
56625 2003-09-24  Simon Josefsson  <jas@extundo.com>
56626
56627         * modules/xgethostname: Add xgethostname.h.
56628
56629 2003-09-24  Paul Eggert  <eggert@twinsun.com>
56630
56631         * lib/linebuffer.c (freebuffer): Don't free the argument, just
56632         the buffer associated with the argument.  Bug reported by
56633         Simon Josefsson.
56634
56635 2003-09-24  Paul Eggert  <eggert@twinsun.com>
56636
56637         * README: Document assumptions that 'int' is at least 32 bits
56638         wide, that integer arithmetic is 2's complement without overflow,
56639         that there are no holes in integer values, that adding sizes of
56640         two nonoverlapping objects can't overflow, and that all-bits-zero
56641         yields scalar zero.  Fix spelling and capitalization typos.
56642
56643 2003-09-19  Karl Berry  <karl@gnu.org>
56644
56645         * lib/argp.h: update from libc.
56646
56647 2003-09-17  Paul Eggert  <eggert@twinsun.com>
56648
56649         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
56650         to avoid spurious warnings like "AC_RUN_IFELSE was called before
56651         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
56652
56653 2003-09-17  Paul Eggert  <eggert@twinsun.com>
56654
56655         * gnulib-tool: Use "test -h", not "test -L", for portability
56656         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
56657         (tags_regexp): Remove, since \| doesn't conform to POSIX.
56658         (sed_extract_prog): Issue s commands one-by-one, rather than
56659         using \| in one s command.
56660
56661 2003-09-16  Paul Eggert  <eggert@twinsun.com>
56662
56663         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
56664         input error, instead of returning NULL the next time we are called
56665         (and therefore losing track of errno).
56666
56667 2003-09-16  Bruno Haible  <bruno@clisp.org>
56668
56669         * gnulib-tool (func_create_testdir): Warn about duplicated
56670         dependencies.
56671
56672 2003-09-15  Paul Eggert  <eggert@twinsun.com>
56673
56674         * modules/argmatch, modules/fatal, modules/obstack,
56675         modules/xalloc, modules/xgethostname: Sort dependencies by
56676         importance, not alphabetically.
56677
56678 2003-09-15  Paul Eggert  <eggert@twinsun.com>
56679
56680         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
56681         fails, so that the caller gets the proper errno.
56682
56683         * lib/readutmp.c (read_utmp): Likewise.
56684         Check for fstat error.  Close stream and free storage
56685         when failing.
56686
56687 2003-09-14  Karl Berry  <karl@gnu.org>
56688
56689         * config/srclist.txt (strdup.c): disable for c89 changes.
56690
56691 2003-09-14  Jim Meyering  <jim@meyering.net>
56692
56693         * lib/getloadavg.c: Correct cpp indentation.
56694         * lib/strdup.c: Likewise.
56695         * lib/vasnprintf.c: Likewise.
56696
56697 2003-09-14  Bruno Haible  <bruno@clisp.org>
56698
56699         * modules/fwriteerror: New file.
56700         * MODULES.html.sh (func_all_modules): Add fwriteerror.
56701
56702 2003-09-14  Bruno Haible  <bruno@clisp.org>
56703
56704         * lib/fwriteerror.h: New file.
56705         * lib/fwriteerror.c: New file.
56706
56707 2003-09-12  Paul Eggert  <eggert@twinsun.com>
56708
56709         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
56710         modules/xgethostname, modules/xalloc: Depend on exit.
56711
56712 2003-09-12  Paul Eggert  <eggert@twinsun.com>
56713
56714         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
56715
56716         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
56717         and AC_MINIX, too, so that their extensions are available.
56718
56719         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
56720         This macro has been superseded by gl_BACKUPFILE.
56721
56722         More patches to assume C89 or better.
56723
56724         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
56725
56726         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
56727         unconditionally.
56728         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
56729         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
56730         Include <string.h>, <stdlib.h> unconditionally.
56731         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
56732         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
56733         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
56734         headers or for string.h.
56735         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
56736         or strtoul.
56737
56738         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
56739         headers.
56740         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
56741         * m4/userspec.m4 (gl_USERSPEC): Likewise.
56742         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
56743         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
56744         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
56745         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
56746         memcpy, memset.
56747         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
56748         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
56749         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
56750         strtol.
56751         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
56752         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
56753         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
56754         strtoul.
56755
56756 2003-09-12  Paul Eggert  <eggert@twinsun.com>
56757
56758         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
56759         * lib/obstack.c [!defined _LIBC]: Likewise.
56760         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
56761         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
56762         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
56763
56764         More changes to assume C89 or better.
56765
56766         * lib/error.c (error_tail): Assume vprintf.
56767
56768         * lib/argmatch.c (getenv): Remove decl.
56769         * lib/progreloc.c (get_full_program_name): Define via prototype.
56770         * lib/setenv.c (clearenv): Likewise.
56771         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
56772         needed.
56773         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
56774         (malloc, memcpy): Remove decls.
56775         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
56776         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
56777         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
56778         (memcpy): Remove macro.
56779         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
56780         (__P): Remove.  All uses removed.
56781         (PTR): Remove.  All uses changed to void *.
56782         (CHAR_BIT, NULL): Remove.
56783         (spaces, zeros, memset_space, memset_zero)
56784         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
56785         Remove.
56786         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
56787         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
56788         Define with prototype.
56789         Remove now-unnecessary prototype decl.
56790         (extra_args_spec): Assume ANSI C.  All uses changed.
56791         (extra_args_spec_iso): Remove.
56792         (my_strftime, emacs_strftimeu): Define via prototype.
56793         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
56794         unconditionally.
56795         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
56796         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
56797         (strtoul, strtol): Remove decls.
56798         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
56799         LONG_MAX): Remove.
56800         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
56801         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
56802         (LOCALE_PARAM_PROTO): New macro.
56803         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
56804         (INTERNAL (strtol), strtol): Define with a prototype.
56805         (PARAMS): Remove.  All uses removed.
56806         * lib/tempname.c: Include <string.h> unconditionally.
56807         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
56808         * lib/xgethostname.c (main): Define with a prototype.
56809         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
56810         Include <stdlib.h> unconditionally.
56811         (calloc, malloc, realloc, free): Remove decls.
56812         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
56813         Include <stdlib.h> unconditionally.  Sort include file names.
56814         (strtod): Remove.
56815         (xstrtod): Define with a prototype.
56816         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
56817         (strtol, strtoul): Remove decls.
56818
56819 2003-09-11  Paul Eggert  <eggert@twinsun.com>
56820
56821         More patches to assume C89 or better.
56822         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
56823         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
56824         string.h, memchr, STDC_HEADERS.
56825
56826 2003-09-11  Paul Eggert  <eggert@twinsun.com>
56827
56828         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
56829         Include <stdlib.h>, <string.h> unconditionally.
56830         Remove now-unnecessary cast to char *.
56831         * lib/strnlen.c: Include <string.h> unconditionally.
56832         * lib/yesno.c (yesno): Define with a prototype.
56833
56834 2003-09-11  Bruno Haible  <bruno@clisp.org>
56835
56836         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
56837
56838 2003-09-10  Jim Meyering  <jim@meyering.net>
56839
56840         * lib/error.c: Correct indentation of cpp directives.
56841
56842 2003-09-10  Bruno Haible  <bruno@clisp.org>
56843
56844         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
56845         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
56846         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
56847         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
56848         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
56849         <stdlib.h> and <string.h> checks.
56850         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
56851         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
56852
56853 2003-09-10  Bruno Haible  <bruno@clisp.org>
56854
56855         * lib/strcspn.c: Include <string.h> unconditionally.
56856         * lib/strpbrk.c: Include <string.h> unconditionally.
56857         * lib/strstr.c: Include <string.h> unconditionally.
56858         * lib/unicodeio.c: Include <string.h> unconditionally.
56859         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
56860         * lib/unsetenv.c: Likewise.
56861         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
56862         * lib/yesno.c: Include <stdlib.h> unconditionally.
56863         (rpmatch): Add prototype.
56864
56865 2003-09-09  Paul Eggert  <eggert@twinsun.com>
56866
56867         More patches to assume C89 or better.
56868         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
56869         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
56870         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
56871         or for string.h.
56872         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
56873         stdlib.h.
56874         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
56875         C headers.
56876         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
56877         string.h.
56878         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
56879         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
56880         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
56881         or for string.h.
56882         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
56883         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
56884         C headers.
56885         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
56886         memcpy.
56887         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
56888         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
56889         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
56890         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
56891         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
56892         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
56893         string.h, free.
56894         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
56895         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
56896         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
56897         C headers, or for string.h.
56898         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
56899         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
56900         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
56901         headers, memory.h, stdlib.h, string.h, strings.h.
56902         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
56903         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
56904         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
56905         strchr.
56906         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
56907         headers, memory.h, string.h.
56908         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
56909         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
56910         free.
56911         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
56912         headers.
56913         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
56914         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
56915         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
56916         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
56917         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
56918
56919 2003-09-09  Paul Eggert  <eggert@twinsun.com>
56920
56921         More K&R removal.
56922
56923         * lib/acosl.c (main): Use a prototype.
56924         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
56925         tanl.c: Likewise.
56926
56927         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
56928
56929         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
56930         (getopt, etopt_long, getopt_long_only, _getopt_internal)
56931         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
56932         with a prototype.
56933         * lib/getopt.c (const): Remove macro.
56934         Include <string.h> unconditionally.
56935         (my_index): Remove; all uses changed to strchr.
56936         (strlen): Remove decl.
56937         (exchange): Remove forward decl; no longer needed.
56938         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
56939         Define with prototype.
56940         * lib/getopt1.c (const): Remove macro.
56941         (getopt_long, getopt_long_only, main): Define with prototype.
56942
56943         * lib/getugroups.c: Include <string.h> unconditionally.
56944
56945         * lib/getusershell.c: Include <stdlib.h> unconditionally.
56946         (getusershell, setusershell, endusershell, readname, main):
56947         Define with prototypes.
56948
56949         * lib/group-member.c: Include group-member.h first.
56950         Include <stdlib.h> unconditionally.
56951
56952         * lib/hard-locale.c: Include hard-locale.h first.
56953         Include <stdlib.h>, <string.h> unconditionally.
56954
56955         * lib/hash.c (free, malloc): Remove decls.
56956         Include <stdlib.h> unconditionally.
56957
56958         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
56959         (getenv): Do not declare.
56960
56961         * lib/idcache.c: Include <string.h> unconditionally.
56962
56963         * lib/long-options.c: Include long-options.h first, to test interface.
56964         Include <stdlib.h> unconditionally.
56965
56966         * lib/makepath.c: Include makepath.h first, to test interface.
56967         Include <stdlib.h> and <string.h> unconditionally.
56968
56969         * lib/linebuffer.c: Include <stdlib.h>.
56970         (free): Remove decl.
56971
56972         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
56973         stddef.h. rpl_malloc returns void *, not char *.
56974         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
56975         prototype.
56976
56977         * lib/md5.h: Include <limits.h> unconditionally.
56978         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
56979         (__P): Remove; all uses removed.
56980         * lib/md5.c: Include "md5.h" first.
56981         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
56982         md5_buffer, md5_process_bytes, md5_process_block):
56983         Define with prototypes.
56984         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
56985         * lib/sha.c: Include "sha.h" first.
56986         Include <stdlib.h>, <string.h> unconditionally.
56987
56988         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
56989         * lib/memcmp.c (__ptr_t): Likewise.
56990         * lib/memrchr.c (__ptr_t): Likewise.
56991         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
56992         Include <string.h> unconditionally.
56993         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
56994         * lib/memchr.c: Include <stdlib.h> unconditionally.
56995         * lib/memchr.c (LONG_MAX): Remove.
56996         * lib/memrchr.c (LONG_MAX): Likewise.
56997         * lib/memchr.c (__memchr): Define via a prototype.
56998         * lib/memrchr.c (__memrchr): Likewise.
56999         * lib/memcmp.c (__P): Remove, and remove all uses.
57000         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
57001         Remove forward decls; no longer needed.
57002         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
57003         Use types required by C89 in prototype.
57004
57005         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
57006         * lib/savedir.c: Likewise.
57007         * lib/mkdir.c (free): Remove decl.
57008         * lib/rmdir.c (rmdir): Define with a prototype.
57009         * lib/savedir.c: Include savedir.h first, to test interface.
57010
57011         * lib/mktime.c (STDC_HEADERS): Remove.
57012         Include <stdlib.h>, <string.h> unconditionally.
57013
57014         * lib/modechange.c: Include <stdlib.h> unconditionally.
57015         (malloc): Remove decl.
57016
57017         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
57018         (free): Remove decl.
57019
57020         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
57021         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
57022         (This type really should be intptr_t, but that's a C99ism.)
57023         (_obstack_memcpy): Remove: all uses changed to memcpy.
57024         Include <string.h> unconditionally.
57025         (struct obstack): Assume __STDC__ for types of members
57026         chunkfun, freefun, extra_arg.
57027         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
57028         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
57029         obstack_begin, obstack_specify_allocation,
57030         obstack_specify_allocation_with_arg, obstack_chunkfun,
57031         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
57032         Remove unprototyped decls and the macros that use them.
57033         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
57034         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
57035         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
57036         (defined __STDC__ && __STDC__)]:
57037         Remove nonprototyped code.
57038         Include <stdlib.h> unconditionally.
57039         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
57040         _obstack_allocated_p, _obstack_free, obstack_free,
57041         _obstack_memory_used, print_and_abort):
57042         Define using prototypes.
57043         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
57044         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
57045         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
57046         obstack_next_free, obstack_object_size, obstack_room) [0]:
57047         Remove unused, unprototyped code.
57048
57049         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
57050
57051         * lib/physmem.c (physmem_total, physmem_available, main): Define
57052         with prototypes.
57053
57054         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
57055         (main): Define with a prototype.
57056
57057         * lib/posixver.c (getenv): Remove decl.
57058
57059         * lib/putenv.c (malloc): Returns void *, not char *.
57060         Include <string.h> unconditionally.
57061         (strchr, memcpy, NULL): Do not define.
57062
57063         * lib/readtokens.c: Include readtokens.h first, to test interface.
57064         Include <stdlib.h>, <string.h> unconditionally.
57065         (init_tokenbuffer): Define with a prototype.
57066
57067         * lib/regex.c (PARAMS): Remove.  All uses removed.
57068         All uses of _RE_ARGS removed, too.
57069         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
57070         unconditionally.
57071         (bzero): Assume memset exists.
57072         (memcmp, memcpy, NULL): Remove.
57073         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
57074         char, or assignments to local vars of type signed char.
57075         (init_syntax_once, PREFIX(extract_number_and_incr),
57076         PREFIX(print_partial_compiled_pattern),
57077         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
57078         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
57079         PREFIX(regex_grow_registers), PREFIX(regex_compile),
57080         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
57081         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
57082         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
57083         wcs_compile_range, byte_compile_range, truncate_wchar,
57084         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
57085         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
57086         count_mbs_length, wcs_re_match_2_internal,
57087         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
57088         PREFIX(alt_match_null_string_p),
57089         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
57090         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
57091         regfree, PREFIX(extract_number)): Define with prototype.  Remove
57092         now-unnecessary declaration, if any.
57093         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
57094         regcomp, regexec):
57095         Remove now-unnecessary casts among pointer types.
57096         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
57097
57098         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
57099         (free): Remove decl.
57100
57101         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
57102
57103         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
57104         (free): Remove decl.
57105
57106         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
57107         * lib/xgetcwd.c: Likewise.
57108
57109         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
57110         (free): Remove decl.
57111
57112         * lib/strchrnul.c (strchrnul): Define with a prototype.
57113         Fix bug: c_in was not converted to char before searching.
57114
57115         The following changes are not K&R related:
57116
57117         * lib/group-member.h: Include <sys/types.h>, so that this file is
57118         self-contained.
57119         * lib/makepath.h: Likewise.
57120
57121         * lib/getusershell.c (readname, default_index, line_size, readname):
57122         Use size_t, not int, for sizes.
57123         (readname): If the size overflows, report an error instead of
57124         looping forever.
57125
57126 2003-09-09  Paul Eggert  <eggert@twinsun.com>
57127
57128         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
57129         libc.
57130
57131 2003-09-09  Paul Eggert  <eggert@twinsun.com>
57132
57133         * README: New section: portability guidelines.
57134
57135 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
57136
57137         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
57138         C89 spec.
57139
57140 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
57141
57142         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
57143
57144 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57145
57146         Assume C89 or better; remove K&R cruft.
57147         A few of these changes were first proposed by Derek Robert Price
57148         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
57149
57150         * lib/addext.c: Include <string.h> unconditionally.
57151         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
57152         Don't declare getenv or malloc.
57153
57154         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
57155         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
57156         (NULL): Remove.
57157         (find_stack_direction, alloca): Use prototypes.
57158
57159         * lib/atexit.c (atexit): Define using a prototype.
57160
57161         * lib/basename.c, dirname.c, stripslash.c:
57162         Include <string.h> unconditionally.
57163
57164         * lib/bcopy.c: Include <stddef.h>.
57165         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
57166
57167         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
57168
57169         * lib/error.h (error, error_at_line, error_print_progname)
57170         [! (defined (__STDC__) && __STDC__)]: Remove decls.
57171         * lib/error.c: Include error.h first, to check interface.
57172         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
57173         (VA_START): Remove; all uses changeed to va_start.
57174         (exit, strerror): Remove decls.
57175         (error_print_progname): Prototype uncondionally.
57176         Don't include <errno.h>; no longer needed.
57177         (private_strerror): Remove.
57178         (error_tail): Always define.
57179         (error, error_at_line): Assume C89 or better; always use prototypes.
57180         * lib/fatal.c: Include "fatal.h" first, to test interface.
57181         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
57182         (VA_START): Remove; all uses changed to va_start.
57183         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
57184         this case.
57185         (exit): Remove decl.
57186         (fatal): Prototype unconditionally.  Assume va_start works.
57187         Abort at end, to pacify gcc.
57188
57189         * lib/euidaccess.c (main): Define with a prototype.
57190
57191         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
57192
57193         * lib/exitfail.c: Include <stdlib.h> unconditionally.
57194
57195         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
57196         prototypes.
57197         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
57198         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
57199         (getenv): Remove decl.
57200         (fnmatch): Define using a prototype.
57201         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
57202         (FCT): Define using a prototype.
57203
57204         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
57205
57206         * lib/gethostname.c: Include <stddef.h>.
57207         (gethostname): Define with prototype.  Length is size_t, not int.
57208
57209 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57210
57211         Assume C89 or better; remove K&R cruft.
57212         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
57213         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
57214         string.h, getenv, malloc.
57215         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
57216         headers.
57217         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
57218         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
57219         do not check for strerror.
57220         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
57221         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
57222         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
57223         do not check for doprnt or vprintf.
57224         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
57225         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
57226
57227 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57228
57229         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
57230         getversion.c should have been removed then, but was accidentally
57231         preserved.
57232
57233         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
57234         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
57235
57236 2003-09-08  Karl Berry  <karl@gnu.org>
57237
57238         * config/config.sub, config.guess, srclistvars.sh: update from savannah
57239                 config, forget about prep.
57240
57241         * config/depcomp, missing: update from automake.
57242
57243 2003-09-07  Paul Eggert  <eggert@twinsun.com>
57244
57245         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
57246         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
57247
57248 2003-09-07  Paul Eggert  <eggert@twinsun.com>
57249
57250         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
57251         copy_tm_result.  Bug reported by Simon Josefsson in
57252         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
57253
57254 2003-09-06  Paul Eggert  <eggert@twinsun.com>
57255
57256         * m4/time_r.m4: New file.
57257         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
57258         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
57259         is. Check for timegm declaration.
57260         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
57261         Do not check for gmtime_r.
57262         Replace mktime if __mktime_internal does not exist and if mktime
57263         hasn't been replaced already.
57264
57265 2003-09-06  Paul Eggert  <eggert@twinsun.com>
57266
57267         * lib/time_r.c, lib/time_r.h: New files.
57268
57269         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
57270         __localtime_r.
57271         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
57272         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
57273
57274         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
57275         __gmtime_r.
57276         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
57277         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
57278         Include <time_r.h>.
57279
57280         * lib/timegm.c: Switch to glibc implementation, with the following
57281         changes:
57282         [defined HAVE_CONFIG_H]: Include <config.h>.
57283         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
57284         (__mktime_internal) [!defined _LIBC]: New decl.
57285         (__gmtime_r) [!defined _LIBC]: New macro and function.
57286         (timegm): Use a prototype, since gnulib assumes C89.
57287         Do not bother declaring tmp to be const, as it's not really usefu.
57288         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
57289         (timegm): Declare only if HAVE_DECL_TIMEGM.
57290
57291 2003-09-06  Paul Eggert  <eggert@twinsun.com>
57292
57293         * MODULES.html.sh (func_all_modules): Add time_r.
57294         * modules/time_r: New file.
57295         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
57296         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
57297
57298 2003-09-03  Paul Eggert  <eggert@twinsun.com>
57299
57300         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
57301         Bug reported by Lute Kamstra in
57302         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
57303
57304         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
57305         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
57306         course with correspondingly smaller numbers for tomorrow and
57307         yesterday.  From Tadayoshi Funaba.  Originally installed into
57308         sh-utils on 1999-08-07, but the patch got lost (I guess during the
57309         coreutils merge?).
57310
57311 2003-08-31  Simon Josefsson  <jas@extundo.com>
57312
57313         * modules/timegm: New file.
57314         * MODULES.html.sh (func_all_modules): Add timegm.
57315
57316 2003-08-31  Simon Josefsson  <jas@extundo.com>
57317
57318         * m4/timegm.m4: New file.
57319
57320 2003-08-31  Simon Josefsson  <jas@extundo.com>
57321
57322         * lib/timegm.h: New file.
57323         * lib/timegm.c: New file.  Based on
57324         wget-1.8.2/src/http.c:mktime_from_utc.
57325
57326 2003-08-31  Karl Berry  <karl@gnu.org>
57327
57328         * lib/argp.h: update from libc.
57329
57330 2003-08-28  Bruno Haible  <bruno@clisp.org>
57331
57332         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
57333         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
57334         followed by '#define fnmatch fnmatch_posix' gives an error.
57335
57336 2003-08-28  Bruno Haible  <bruno@clisp.org>
57337
57338         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
57339         warning on QNX, which defines O_BINARY to 000000.
57340
57341 2003-08-27  Jim Meyering  <jim@meyering.net>
57342
57343         * m4/mkstemp.m4: Require that the system mkstemp be able to create
57344         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
57345         would fail after 32.  Reported by Danny Levinson.  Details here:
57346         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
57347
57348 2003-08-24  Bruno Haible  <bruno@clisp.org>
57349
57350         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
57351         MSVC7 <stdio.h> is included later.
57352
57353 2003-08-22  Simon Josefsson  <jas@extundo.com>
57354
57355         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
57356
57357 2003-08-20  Karl Berry  <karl@gnu.org>
57358
57359         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
57360
57361 2003-08-20  Bruno Haible  <bruno@clisp.org>
57362
57363         * modules/progname: New file.
57364         * MODULES.html.sh (func_all_modules): Add progname.
57365
57366 2003-08-20  Bruno Haible  <bruno@clisp.org>
57367
57368         * lib/progname.h: New file, from GNU gettext.
57369         * lib/progname.c: New file, from GNU gettext.
57370         * lib/progreloc.c: New file, from GNU gettext.
57371
57372 2003-08-19  Jim Meyering  <jim@meyering.net>
57373
57374         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
57375         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
57376
57377 2003-08-19  Bruno Haible  <bruno@clisp.org>
57378
57379         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
57380         more.
57381
57382 2003-08-19  Bruno Haible  <bruno@clisp.org>
57383
57384         * lib/xstrdup.c: Assume <string.h> exists.
57385
57386 2003-08-18  Paul Eggert  <eggert@twinsun.com>
57387
57388         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
57389         in makefile rules.
57390
57391 2003-08-18  Jim Meyering  <jim@meyering.net>
57392
57393         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
57394         * m4/lib-ld.m4: Likewise.
57395
57396 2003-08-18  Jim Meyering  <jim@meyering.net>
57397
57398         * lib/setenv.h: Indent nested cpp directive.
57399         * lib/vasnprintf.c: Remove trailing blanks.
57400
57401 2003-08-17  Simon Josefsson  <jas@extundo.com>
57402
57403         * modules/xstrndup: New file.
57404         * MODULES.html.sh (func_all_modules): Add xstrndup.
57405
57406 2003-08-17  Simon Josefsson  <jas@extundo.com>
57407
57408         * modules/argp: Fix autoconf macro name. Add more dependencies.
57409
57410 2003-08-17  Simon Josefsson  <jas@extundo.com>
57411
57412         * m4/xstrndup.m4: New file.
57413
57414 2003-08-17  Simon Josefsson  <jas@extundo.com>
57415
57416         * m4/argp.m4: New file.
57417
57418 2003-08-17  Simon Josefsson  <jas@extundo.com>
57419             Bruno Haible  <bruno@clisp.org>
57420
57421         * lib/xstrndup.h: New file.
57422         * lib/xstrndup.c: New file.
57423
57424 2003-08-17  Bruno Haible  <bruno@clisp.org>
57425
57426         * modules/strndup (Files, Include): Add lib/strndup.h.
57427
57428 2003-08-17  Bruno Haible  <bruno@clisp.org>
57429
57430         * modules/euidaccess (Files): Add lib/euidaccess.h.
57431
57432 2003-08-17  Bruno Haible  <bruno@clisp.org>
57433
57434         * lib/strndup.h: New file.
57435
57436 2003-08-17  Bruno Haible  <bruno@clisp.org>
57437
57438         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
57439         like AC_GNU_SOURCE.
57440         * modules/extensions (configure.ac): Comment out the invocation of
57441         gl_USE_SYSTEM_EXTENSIONS.
57442
57443 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57444
57445         Merges from coreutils, etc.
57446         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
57447         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
57448         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
57449         fixing a typo.
57450         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
57451         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
57452
57453 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57454
57455         Document merge from coreutils.
57456         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
57457         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
57458         * modules/utime: Add m4/utimes-null.m4.
57459
57460 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57461
57462         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
57463         space, undoing this 2003-08-12 change:
57464         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
57465
57466 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57467
57468         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
57469         strtoul.c from libc, undoing this 2003-08-12 change:
57470         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
57471
57472 2003-08-16  Jim Meyering  <jim@meyering.net>
57473
57474         Merges from coreutils.
57475         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
57476         prefix.  Adjust cache variables similarly.  Create 500 rather than
57477         just 300 files, to exercise bug on Darwin6.5, too.
57478         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
57479         $missing_dir.
57480         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
57481         AM_SYS_POSIX_TERMIOS.
57482         Reported by mkc@mathdogs.com.
57483         Also change use of $am_cv_sys_posix_termios
57484         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
57485         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
57486         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
57487         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
57488         in /proc/mounts until it finds one with matching device number.  This
57489         is unnecessary when the FILE argument *is* a mount point.  No stat call
57490         is necessary in that case.  So, disable the statvfs-testing code on
57491         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
57492         as RedHat bug# 84846.
57493         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
57494         to 1MB, so as not to render systems with no stack size limit (e.g.,
57495         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
57496         Include <unistd.h>.  On some systems,
57497         it is required for the definition of _SC_PAGESIZE.
57498
57499 2003-08-16  Jim Meyering  <jim@meyering.net>
57500
57501         Merge from coreutils.
57502         * lib/xstrtoimax.c: #else #if -> #elif.
57503         * lib/xstrtoumax.c: Likewise.
57504
57505 2003-08-16  Jim Meyering  <jim@meyering.net>
57506
57507         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
57508         * m4/utimes.m4: Removed.
57509         * m4/utimes-null.m4: Renamed from utimes.m4.
57510
57511         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
57512         to 1MB, so as not to render systems with no stack size limit (e.g.,
57513         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
57514         Include <unistd.h>.  On some systems,
57515         it is required for the definition of _SC_PAGESIZE.
57516
57517 2003-08-16  Jim Meyering  <jim@meyering.net>
57518         and Paul Eggert  <eggert@cs.ucla.edu>
57519
57520         Merges from coreutils, etc.
57521
57522         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
57523         using the latest version from cvs.  This avoids problems with #line
57524         directives using a vendor (Sun) compiler.
57525         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
57526         Don't set GETGROUPS_LIB here; now it's
57527         done via getgroups.m4's wrapper function.
57528         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
57529         rather than just in sh-util/configure.in, so that the
57530         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
57531         same.
57532         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
57533         AC_FUNC_GETLOADAVG where to find getloadavg.c.
57534         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
57535         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
57536         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
57537         Remove code that is now done by the newly-required macros.
57538         Append $(EXEEXT) to DF_PROG.
57539         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
57540         Do not invoke or require the following here,
57541         since prereq.m4 or some gnulib .m4 now does this for us:
57542         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
57543         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
57544         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
57545         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
57546         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
57547         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
57548         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
57549         AC_FUNC_OBSTACK.
57550         Do not replace the following functions, as this is now the job
57551         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
57552         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
57553         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
57554         atexit getpass, strdup, getpagesize.
57555         Replace 'raise'.
57556         Do not check for the following functions, as this is now the job
57557         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
57558         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
57559         setregid.
57560         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
57561         Check for sys/sysctl.h.
57562         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
57563         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
57564         of checking for ssize_t ourselves.
57565
57566         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
57567         Require every macro that gnulib/modules/* suggests for us.
57568         (jm_PREREQ_ADDEXT): New macro.
57569         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
57570         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
57571
57572         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
57573         (gl_PHYSMEM): Use it.
57574         Also check for `table' function.
57575         Check for new headers and functions.
57576         Add check for sys/sysmp.h.
57577         With suggestions from Kaveh Ghazi.
57578         Ignore headers that are present but cannot be compiled.  This
57579         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
57580         C 5.4.
57581
57582 2003-08-15  Paul Eggert  <eggert@twinsun.com>
57583
57584         Document merge from coreutils.
57585         * modules/userspec: Depend on posixver.
57586         * modules/strftime: Depend on tzset.
57587
57588 2003-08-15  Paul Eggert  <eggert@twinsun.com>
57589
57590         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
57591         rather than tab, after '#' in shell-script copyright notices.
57592         Suggested by Bruno Haible.
57593
57594 2003-08-15  Paul Eggert  <eggert@twinsun.com>
57595
57596         * config/srclist-update: Use three spaces, rather than tab, after '#'
57597         in shell-script copyright notices.  Suggested by Bruno Haible.
57598         Remove unnecessary parenthesization in regular expression.
57599
57600 2003-08-15  Jim Meyering  <jim@meyering.net>
57601
57602         Merge from coreutils.
57603         * lib/xgethostname.c: Include <stdlib.h>.
57604         (xghostname): Don't exit for anything other than memory-related
57605         failure; just return NULL.
57606         * lib/userspec.c: Include "posixver.h".
57607         (parse_user_spec): Accept `.' as a separator only
57608         in pre-POSIX-200112 mode.
57609         * lib/strtoimax.c: Use #elif rather than #else #if.
57610         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
57611         Remove function, now that we can rely on a working tzset function.
57612         [!_LIBC]: Ensure that the required autoconf test has been run.
57613         [!defined _NL_CURRENT && HAVE_STRFTIME]:
57614         Use underlying_strftime for %r.
57615         * lib/sha.c: Merge in some clean-up and optimization changes from
57616         glibc.
57617         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
57618         Ensure that it is a multiple of 64.
57619         Rearrange loop exit tests so as to avoid performing an
57620         additional fread after encountering an error or EOF.
57621         * lib/realloc.c: Update copyright date.
57622
57623 2003-08-15  Jim Meyering  <jim@meyering.net>
57624         and Paul Eggert  <eggert@twinsun.com>
57625
57626         Merge from coreutils.
57627         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
57628         member but strut utmpx does not.  Needed for AIX 4.3.3.
57629         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
57630
57631 2003-08-15  Jim Meyering  <jim@meyering.net>
57632         and Paul Eggert  <eggert@cs.ucla.edu>
57633
57634         Merges from coreutils, etc.
57635         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
57636         Require gl_FUNC_TZSET_CLOBBER.
57637         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
57638         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
57639         members.
57640
57641 2003-08-14  Paul Eggert  <eggert@twinsun.com>
57642
57643         Help the merge from coreutils.
57644         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
57645         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
57646         * m4/tzset.m4: Use it too.
57647
57648 2003-08-14  Paul Eggert  <eggert@twinsun.com>
57649
57650         * modules/tzset: New file.
57651
57652 2003-08-14  Jim Meyering  <jim@meyering.net>
57653
57654         Merges from coreutils.
57655         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
57656         variable names, rather than @FNMATCH_H@.
57657         * modules/alloca: Likewise for $(ALLOCA_H).
57658
57659         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
57660         the three copies of the literal target, `fnmatch.h'.
57661         * modules/alloca (alloca.h): Likewise.
57662
57663 2003-08-14  Jim Meyering  <jim@meyering.net>
57664
57665         Merge from coreutils.
57666         * m4/tzset.m4: New file.
57667         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
57668         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
57669         otherwise, AIX 5.1 systems would end up using the latter.
57670         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
57671         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
57672         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
57673         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
57674
57675 2003-08-14  Jim Meyering  <jim@meyering.net>
57676
57677         Merge from coreutils.
57678         * lib/obstack.h: Whitespace changes.
57679         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
57680         and xcalloc return values.
57681         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
57682         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
57683         hang on OSF/1 5.1 for DIR on both local and remote file systems.
57684         Reported by (and fix confirmed by) Nelson H. F. Beebe.
57685         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
57686         error from mntctl.
57687         Use mntctl's return value to drive the entry-processing loop, since
57688         we can't rely on the value of the vmt_length member in the last
57689         entry.  On some systems doing so could result in exhausting
57690         virtual memory.  Based in part on a patch from Mike Jetzer.
57691
57692 2003-08-14  Jim Meyering  <jim@meyering.net>
57693         and Paul Eggert  <eggert@twinsun.com>
57694
57695         Merges from coreutils, plus other fixes.
57696         * lib/physmem.c: Merge in portability changes from gcc/libiberty
57697         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
57698         for credits and details.  Thanks to Kaveh Ghazi for helping
57699         to keep these files in sync.
57700         (ARRAY_SIZE): Define it.
57701         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
57702         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
57703         (memcasecmp): Don't assume size_t fits in unsigned int.
57704         Remove casts and duplicate code.
57705         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
57706         (memcpy): Remove definition.
57707         Merge in some clean-up and optimization changes from glibc.
57708         [BLOCKSIZE]: Move definition to top of file.
57709         Ensure that it is a multiple of 64.
57710         Rearrange loop exit tests so as to avoid performing an
57711         additional fread after encountering an error or EOF.
57712         * lib/md5.h (md5_uintptr): Define.
57713         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
57714         return to the initial working directory.  Preserve errno
57715         for caller.
57716         * lib/idcache.c: Include "xalloc.h".
57717         (xmalloc, xrealloc): Remove decls.
57718         (getuser): Remove casts no longer required in C89.
57719         * lib/human.c: Include stdio.h, for sprintf.
57720         * lib/group-member.c: Include "xalloc.h".
57721         (xmalloc, xrealloc): Remove decls.
57722         (get_group_info): Remove casts no longer required in C89.
57723         * lib/getusershell.c (readname): Remove casts no longer required in
57724         C89.
57725         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
57726         * lib/getline.c: Whitespace fix, from coreutils.
57727
57728 2003-08-13  Paul Eggert  <eggert@twinsun.com>
57729
57730         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
57731         Check for isascii.
57732
57733         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
57734         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
57735         Undo previous (whitespace-only) change.
57736
57737 2003-08-13  Paul Eggert  <eggert@twinsun.com>
57738
57739         * lib/exclude.c: Include <ctype.h>
57740         (IN_CTYPE_DOMAIN): New macro.
57741         (is_space): New fn.
57742         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
57743         and empty lines.
57744
57745         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
57746         Undo previous (whitespace-only) change.
57747
57748 2003-08-13  Paul Eggert  <eggert@twinsun.com>
57749
57750         * config/srclist-update: Change update back to the old behavior,
57751         leaving whitespace alone.  Use one 'sed' command rather than a
57752         pipeline.
57753         (fixlicense): Now a variable, not a function.
57754         (remove_trailing_blanks): Remove.
57755         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
57756         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
57757         Undo previous (whitespace-only) change.
57758
57759 2003-08-12  Paul Eggert  <eggert@twinsun.com>
57760
57761         Merge from coreutils.
57762         * modules/euidaccess: Add lib_SOURCES, include for new
57763         file euidaccess.h
57764
57765 2003-08-12  Paul Eggert  <eggert@twinsun.com>
57766
57767         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
57768         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
57769         Normalize leading white space and remove trailing white space.
57770
57771         Merge from coreutils
57772         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
57773
57774         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
57775         0.12.1.  These files are now being upgraded automatically by
57776         ../config/srclist-update.
57777
57778 2003-08-12  Paul Eggert  <eggert@twinsun.com>
57779
57780         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
57781         Normalize leading white space and remove trailing white space.
57782         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
57783         notice, as per ../config/srclist-update.
57784
57785         Merge from coreutils.
57786         * lib/euidaccess.h: New file.
57787         * lib/euidaccess.c: Include it.
57788         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
57789         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
57790         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
57791
57792 2003-08-12  Paul Eggert  <eggert@twinsun.com>
57793
57794         * config/srclist-update: Add copyright notice.
57795         (remove_id_lines, remove_trailing_blanks): New constants.
57796         (fixfile): Use them to normalize spacing a bit in copied files.
57797         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
57798         Normalize leading white space and remove trailing white space.
57799
57800         * config/texinfo.tex: Sync with texinfo.
57801
57802         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
57803         strtoul.c from libc, to merge coreutils whitespace changes.
57804
57805         * config/srclist.txt: Get the following m4 files from gettext:
57806         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
57807         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
57808         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
57809         wint_t.m4.
57810
57811 2003-08-12  Karl Berry  <karl@gnu.org>
57812
57813         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
57814         been made.
57815
57816 2003-08-11  Paul Eggert  <eggert@twinsun.com>
57817
57818         * modules/gnu-source, m4/gnu-source.m4:
57819         Remove; we're assuming Autoconf 2.54 or later now.
57820         Suggested by Bruno Haible.
57821         * MODULES.html.sh (func_all_modules): Remove gnu-source.
57822
57823 2003-08-11  Bruno Haible  <bruno@clisp.org>
57824
57825         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
57826
57827 2003-08-11  Bruno Haible  <bruno@clisp.org>
57828
57829         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
57830         (vasnprintf): Use it instead of wcslen.
57831
57832 2003-08-11  Bruno Haible  <bruno@clisp.org>
57833
57834         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
57835         value to ensure that _Bool promotes to int. Use #define for _Bool when
57836         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
57837
57838 2003-08-10  Karl Berry  <karl@gnu.org>
57839
57840         * lib/regex.h: update from libc (whitespace fix).
57841
57842 2003-08-09  Paul Eggert  <eggert@twinsun.com>
57843
57844         Merge some files from coreutils.  These changes were
57845         originally made by Jim Meyering.
57846         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
57847         many older Unixes require this.
57848         * lib/alloca.c (alloca): Remove cast to argument of free;
57849         no longer needed in C89.
57850         * lib/alloca_.h, regex.h: Fix white space to match
57851         what GNU indent does.
57852
57853 2003-08-09  Paul Eggert  <eggert@twinsun.com>
57854
57855         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
57856         apparently Emacs's Unicode mode got confused before my 2003-08-05
57857         checkin.
57858
57859 2003-08-08  Paul Eggert  <eggert@twinsun.com>
57860
57861         * m4/extensions.m4: New file.
57862         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
57863         Require gl_USE_SYSTEM_EXTENSIONS.
57864         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
57865         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
57866
57867 2003-08-08  Paul Eggert  <eggert@twinsun.com>
57868
57869         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
57870         * modules/extensions, modules/gnu-source: New files.
57871         * modules/timespec, modules/unlocked-io: Depend on extensions.
57872
57873 2003-08-07  Paul Eggert  <eggert@twinsun.com>
57874
57875         * modules/restrict: New file.
57876         * MODULES.html.sh (func_all_modules): Add restrict.
57877         * modules/regex: Depend on restrict.
57878
57879 2003-08-07  Paul Eggert  <eggert@twinsun.com>
57880
57881         * m4/restrict.m4: New file.
57882         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
57883
57884 2003-08-07  Bruno Haible  <bruno@clisp.org>
57885
57886         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
57887         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
57888
57889 2003-08-07  Bruno Haible  <bruno@clisp.org>
57890
57891         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
57892         makes the module 'getndelim2' compatible with the module 'getline'.
57893
57894 2003-08-05  Paul Eggert  <eggert@twinsun.com>
57895
57896         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
57897         byte with "\201" to avoid glitches when editing that source file
57898         with multi-gnome-terminal.
57899
57900 2003-08-05  Paul Eggert  <eggert@twinsun.com>
57901
57902         * lib/bumpalloc.h: Remove.
57903
57904 2003-08-05  Paul Eggert  <eggert@twinsun.com>
57905
57906         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
57907         * modules/bumpalloc: Remove.
57908
57909 2003-08-04  Paul Eggert  <eggert@twinsun.com>
57910
57911         * lib/getloadavg.c: Change copyright notice and spacing to conform to
57912         GNU coding style.
57913
57914         Merge from coreutils.
57915         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
57916         1. From glibc.
57917         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
57918         from Karl Berry, implemented by Jim Meyering.
57919         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
57920         from Dmitry V. Levin.
57921         Remove anachronistic cast of xrealloc.
57922         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
57923         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
57924         type. Otherwise, it wouldn't compile with at least /bin/cc on
57925         ymp-cray-unicos9.0.2.X.
57926         Combine two mostly-identical uses of alloca into one.
57927         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
57928
57929 2003-08-04  Dave Love  <d.love@dl.ac.uk>
57930
57931         [From Emacs.]
57932
57933         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
57934         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
57935         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
57936         obsolete NLIST_NAME_UNION.
57937         [__GNU__]: Undef BSD and FSCALE.
57938         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
57939
57940 2003-08-03  Paul Eggert  <eggert@twinsun.com>
57941
57942         * lib/stdbool_.h (_Bool): Make it signed char, instead of
57943         an enum type, so that it's guaranteed to promote to int.  See:
57944         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
57945
57946 2003-08-03  Karl Berry  <karl@gnu.org>
57947
57948         * config/depcomp: update from automake.
57949
57950 2003-07-31  Paul Eggert  <eggert@twinsun.com>
57951
57952         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
57953         (strerror): Don't assume that a printable int fits in 14 bytes.
57954
57955 2003-07-31  Bruno Haible  <bruno@clisp.org>
57956
57957         * modules/getpass-gnu: New file.
57958         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
57959
57960 2003-07-31  Bruno Haible  <bruno@clisp.org>
57961
57962         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
57963
57964 2003-07-24  Karl Berry  <karl@gnu.org>
57965
57966         * config/missing: update from automake.
57967
57968 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
57969             Bruno Haible  <bruno@clisp.org>
57970
57971         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
57972         * lib/getline.c (getline, getdelim): Likewise.
57973         Remove _GNU_SOURCE define; now it's defined in config.h through
57974         m4/getline.m4.
57975
57976 2003-07-23  Karl Berry  <karl@gnu.org>
57977
57978         * config/config.sub: update from prep.
57979
57980 2003-07-22  Paul Eggert  <eggert@twinsun.com>
57981
57982         * modules/xalloc (Depends-on): Add exitfail.
57983         * modules/xmemcoll: Likewise.
57984
57985 2003-07-22  Paul Eggert  <eggert@twinsun.com>
57986
57987         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
57988         over-parenthesization in macros.
57989
57990         Sync with coreutils.
57991
57992         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
57993         required by C99.
57994
57995         Use `exit_failure' for xalloc and xmemcoll instead of their own
57996         private exit-failure variables.
57997         * lib/xalloc.h (xalloc_exit_failure): Remove.
57998         * lib/xmalloc.c: Likewise.  Include exitfail.h.
57999         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
58000         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
58001         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
58002         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
58003
58004 2003-07-20  Jim Meyering  <jim@meyering.net>
58005
58006         * modules/closeout (Depends-on): Add exitfail.
58007         Suggestion from Bruno Haible.
58008
58009 2003-07-19  Karl Berry  <karl@gnu.org>
58010
58011         * config/config.sub: update from prep.
58012
58013 2003-07-18  Paul Eggert  <eggert@twinsun.com>
58014
58015         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
58016         Remove.
58017         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
58018         to test that it can stand by itself.  Include "exitfail.h".
58019         Clients should set exit_failure instead.
58020         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
58021
58022 2003-07-18  Bruno Haible  <bruno@clisp.org>
58023
58024         * modules/getndelim2: New file.
58025         * modules/getline: Share files with module getndelim2.
58026         * modules/getnline: Depend on getndelim2 instead of sharing files with
58027         it. Add getnline.c to lib_SOURCES.
58028         * MODULES.html.sh (func_all_modules): Add getndelim2.
58029
58030 2003-07-18  Bruno Haible  <bruno@clisp.org>
58031
58032         * m4/getndelim2.m4: New file.
58033         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
58034         invoke gl_PREREQ_GETNDELIM2.
58035         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
58036         gl_PREREQ_GETNDELIM2.
58037         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
58038         gl_GETNDELIM2.
58039
58040 2003-07-18  Bruno Haible  <bruno@clisp.org>
58041
58042         * lib/getndelim2.h: New file.
58043         * lib/getndelim2.c: Make into a module of its own. Include config.h,
58044         getndelim2.h.
58045         (getndelim2): Make non-static. Change return type to ssize_t.
58046         * lib/getline.h: Change argument names.
58047         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
58048         * lib/getnline.c: Include getndelim2.h.
58049
58050 2003-07-18  Andreas Schwab  <schwab@suse.de>
58051
58052         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
58053
58054 2003-07-17  Karl Berry  <karl@gnu.org>
58055
58056         * config/config.sub: update from prep.
58057
58058 2003-07-17  Bruno Haible  <bruno@clisp.org>
58059
58060         * modules/getnline: New file.
58061         * modules/getline: Add lib/getndelim2.c to source file list.
58062         * MODULES.html.sh (func_all_modules): Add getnline.
58063
58064 2003-07-17  Bruno Haible  <bruno@clisp.org>
58065
58066         * m4/getnline.m4: New file.
58067
58068 2003-07-17  Bruno Haible  <bruno@clisp.org>
58069
58070         * m4/Makefile.am.in: Remove file.
58071         * m4/Makefile.am: Remove file.
58072         * m4/Makefile.in: Remove file.
58073
58074 2003-07-17  Bruno Haible  <bruno@clisp.org>
58075
58076         * lib/getnline.h: New file.
58077         * lib/getnline.c: New file.
58078         * lib/getndelim2.c: New file, extracted from getline.c.
58079         (getndelim2): Renamed from getdelim2, with added nmax argument.
58080         * lib/getline.c: Include getndelim2.c.
58081         (getdelim2): Moved out to getndelim2.c.
58082         (getline, getdelim): Update.
58083
58084 2003-07-17  Bruno Haible  <bruno@clisp.org>
58085
58086         * lib/Makefile.am: Remove file.
58087         * lib/Makefile.in: Remove file.
58088
58089 2003-07-17  Bruno Haible  <bruno@clisp.org>
58090
58091         * configure.in: Remove file.
58092         * Makefile.in: Remove file.
58093
58094 2003-07-17  Bruno Haible  <bruno@clisp.org>
58095
58096         * MODULES.html.sh: Put the </BODY> right before </HTML>.
58097
58098 2003-07-16  Karl Berry  <karl@gnu.org>
58099
58100         * config/srclist-update: was running fixlicense twice, which caused
58101                 texinfo.tex to be nullified for some reason.  Simplify,
58102                 $gplsrc is no longer needed as far as I can see?
58103
58104 2003-07-16  Jim Meyering  <jim@meyering.net>
58105
58106         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
58107
58108 2003-07-15  Paul Eggert  <eggert@twinsun.com>
58109
58110         * config/srclist.txt: Get the following files from gettext-runtime/intl
58111         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
58112         ref-del.sin.  From Bruno Haible.
58113         * config/srclist-update (fixfile): Change grep pattern again, since the
58114         previous fix didn't work (there was another trailing $).  Use
58115         '[$]' to escape the $s.
58116
58117 2003-07-15  Karl Berry  <karl@gnu.org>
58118
58119         * lib/vasnprintf.c: update from gettext.
58120
58121 2003-07-15  Karl Berry  <karl@gnu.org>
58122
58123         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
58124         gets expanded when surrounded by '$'.
58125
58126 2003-07-15  Jim Meyering  <jim@meyering.net>
58127
58128         * modules/save-cwd: Don't depend on error.  From Derek Price.
58129
58130 2003-07-15  Jim Meyering  <jim@meyering.net>
58131
58132         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
58133
58134 2003-07-14  Simon Josefsson  <jas@extundo.com>
58135
58136         * modules/mempcpy: New file.
58137         * MODULES.html.sh (func_all_modules): Add mempcpy.
58138
58139 2003-07-14  Simon Josefsson  <jas@extundo.com>
58140
58141         * m4/mempcpy.m4: New file.
58142
58143 2003-07-14  Simon Josefsson  <jas@extundo.com>
58144
58145         * lib/mempcpy.h: New file.
58146         * lib/mempcpy.c: New file.
58147
58148 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58149
58150         * modules/getdate, modules/posixtm: Depend on mktime.
58151
58152 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58153
58154         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
58155         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
58156         unicodeio.c, unicodeio.h, unlocked-io.h:
58157         Switch from LGPL to GPL.
58158
58159 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58160
58161         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
58162         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
58163         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
58164         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
58165         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
58166         updated automatically by ../config/srclist-update.  This changes
58167         their license from LPGL to GPL.
58168
58169 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58170
58171         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
58172         assumed to refer to the root of the most recent stable gettext version.
58173         * config/srclistvars.sh: Add defaults for eggert.
58174         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
58175         Match "This program" as well as "The program".  This is needed
58176         for gettext.
58177
58178 2003-07-14  Jim Meyering  <jim@meyering.net>
58179
58180         Don't emit diagnostics.  Let callers do that.
58181         * lib/save-cwd.c: Don't include "error.h".
58182         (save_cwd): Don't call error.  Ensure that errno is valid
58183         when returning nonzero.
58184
58185         * lib/save-cwd.h (restore_cwd): Update prototype.
58186         * lib/save-cwd.c (restore_cwd): Remove two parameters.
58187         Simplify.  Don't call error upon failure.  Let callers do that.
58188         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
58189         when auditing is enabled.  But don't bother updating the #if.
58190
58191 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
58192
58193         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
58194         it breaks C++ compilation.
58195         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
58196
58197 2003-07-10  Simon Josefsson  <jas@extundo.com>
58198
58199         * modules/strchrnul (Makefile.am): Add strchrnul.h.
58200
58201 2003-07-10  Jim Meyering  <jim@meyering.net>
58202
58203         * m4/clock_time.m4: Remove trailing blank.
58204         * m4/intmax_t.m4: Likewise.
58205
58206 2003-07-10  Jim Meyering  <jim@meyering.net>
58207
58208         * lib/vasnprintf.c: Remove trailing blanks.
58209         Make cpp indentation consistent.
58210
58211 2003-07-09  Paul Eggert  <eggert@twinsun.com>
58212
58213         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
58214         posixver.c, strftime.c, strnlen.c, strverscmp.c:
58215         Switch from LGPL to GPL.
58216
58217 2003-07-09  Paul Eggert  <eggert@twinsun.com>
58218
58219         * config/srclist.txt: Sort sublists.  Add
58220         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
58221         that differ from gnulib for one reason or another; we'd like this list
58222         to be smaller but for now let's document what we have.
58223
58224 2003-07-08  Paul Eggert  <eggert@twinsun.com>
58225
58226         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
58227         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
58228         and sweeter "eval x=$x".
58229         * config/srclist.txt: Get lib/argp* from glibc.
58230
58231 2003-07-07  Paul Eggert  <eggert@twinsun.com>
58232
58233         * lib/mktime.c: Fix some boundary cases and remove need for floating
58234         point.
58235
58236         Issue a compile-time diagnostic if time_t is floating point, or if
58237         two's complement arithmetic is not in effect, or if arithmetic
58238         right shift does not propagate the sign.  These assumptions were
58239         all in the original code but they weren't checked.
58240
58241         (TIME_T_MIDPOINT, verify): New macros.
58242         (__isleap): Remove; it has integer overflow problems.
58243         (leapyear): New function, without those problems.
58244         (ydhms_tm_diff): Remove; splitting into two parts.
58245         (ydhms_diff): New function, containing the arithmetic part of
58246         the old ydhms_tm_diff function.  Issue a compile-time
58247         diagnostic if we are not using C99 integer division.
58248         Avoid casts when possible.
58249         (guess_time_tm): New function, containing the checking part of
58250         the old ydhms_tm_diff function.  Return the new value, rather than
58251         the difference between it and the old.  Accept a new argument T
58252         so that *T specifies the old value.  Check for overflow in the result.
58253
58254         (__mktime_internal): Use a time_t offset, not a long int offset.
58255         This undoes the 2003-06-04 change, which is no longer needed now
58256         that we have better overflow checking.
58257         (localtime_offset): Likewise.
58258
58259         (__mktime_internal): Avoid harmful overflow on hosts where time_t
58260         and long are 64-bit but int is only 32-bit.
58261         (ydhms_diff): Use long int to store year1 and yday1.
58262         Issue a compile-time diagnostic if long int is not wide enough.
58263
58264         (__mktime_internal): Use long int to store adjusted year and yday.
58265         Use plain C rather than preprocessor commands, if that doesn't
58266         affect efficiency.
58267         Check for overflow (and try to repair) after each probe
58268         rather than checking only at the very end.  This avoids some bugs
58269         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
58270         does not equal GMT offset at maximum time).
58271         Use integer to check for overflow rather than floating point; this
58272         is more portable to non-IEEE hosts, and is a tad faster.
58273         When we detect that we are oscillating between two values,
58274         don't check whether tm_isdst has the requested value, since
58275         we already know the answer.  When tm_isdst has the wrong value,
58276         use a different heuristic to find the right one, based on the
58277         extreme values actually observed in practice in tz2003a,
58278         rather than the (overly optimistic) "previous 3 calendar quarters".
58279
58280         (not_equal_tm, print_tm, check_result): Use "const T" rather than
58281         "T const" to accommodate glibc style.
58282         (check_result): Use less-confusing report format.  "long" -> "long int.
58283         (main): Likewise.
58284         Don't loop if the iteration overflows time_t.
58285         Allow a negative step in the iteration.
58286
58287 2003-07-06  Karl Berry  <karl@gnu.org>
58288
58289         * config/depcomp: update from automake.
58290         * config/config.sub: update from prep.
58291
58292 2003-07-03  Karl Berry  <karl@gnu.org>
58293
58294         * config/config.guess: update from prep.
58295
58296 2003-07-01  Paul Eggert  <eggert@twinsun.com>
58297
58298         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
58299         xreadlink.c now includes it unconditionally.
58300
58301 2003-07-01  Paul Eggert  <eggert@twinsun.com>
58302
58303         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
58304         having it depend on HAVE_SYS_TYPES_H.
58305
58306 2003-07-01  Bruno Haible  <bruno@clisp.org>
58307
58308         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
58309         <sys/types.h> should be sufficient.
58310         Reported by Paul Eggert.
58311
58312 2003-06-26  Karl Berry  <karl@gnu.org>
58313
58314         * config/depcomp: update from automake.
58315
58316 2003-06-26  Bruno Haible  <bruno@clisp.org>
58317
58318         * modules/human: Depend on module stdbool.
58319
58320 2003-06-25  Bruno Haible  <bruno@clisp.org>
58321
58322         * modules/readlink: New file.
58323         * modules/xreadlink: Depend on it.
58324         * MODULES.html.sh (func_all_modules): Add readlink.
58325
58326 2003-06-25  Bruno Haible  <bruno@clisp.org>
58327
58328         * m4/readlink.m4: New file.
58329
58330 2003-06-25  Bruno Haible  <bruno@clisp.org>
58331
58332         * lib/readlink.c: New file.
58333
58334 2003-06-22  Karl Berry  <karl@gnu.org>
58335
58336         * config/srclist.txt: update mkinstalldirs from automake.
58337         * config/mkinstalldirs: update.
58338
58339 2003-06-22  Bruno Haible  <bruno@clisp.org>
58340
58341         Portability to mingw32.
58342         * m4/ssize_t.m4: New file, from GNU gettext.
58343         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
58344         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
58345
58346 2003-06-22  Bruno Haible  <bruno@clisp.org>
58347
58348         * modules/safe-read: Add m4/ssize_t.m4.
58349         * modules/xreadlink: Add m4/ssize_t.m4.
58350
58351 2003-06-20  Bruno Haible  <bruno@clisp.org>
58352
58353         Assume C89, so PARAMS isn't needed.
58354         * lib/unicodeio.h (PARAMS): Remove.
58355         * lib/unicodeio.c: Don't use PARAMS.
58356
58357 2003-06-18  Karl Berry  <karl@gnu.org>
58358
58359         * config/config.{guess,sub}: update from prep.
58360
58361 2003-06-18  Jim Meyering  <jim@meyering.net>
58362
58363         Merge changes from coreutils.
58364         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
58365         Remove explicit declarations of xmalloc and realloc.
58366         Include xalloc.h.
58367         (read_utmp): Remove anachronistic cast of xmalloc.
58368
58369 2003-06-17  Paul Eggert  <eggert@twinsun.com>
58370
58371         Assume C89, so PARAMS isn't needed.
58372         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
58373         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
58374         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
58375         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
58376         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
58377         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
58378         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
58379         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
58380         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
58381         lib/xstrtod.h, lib/xstrtol.h: Likewise.
58382         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
58383         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
58384         no longer needed. Anyway, config.h should always be included before any
58385         other file.
58386
58387 2003-06-11  Simon Josefsson  <jas@extundo.com>
58388
58389         * modules/sysexits: New file.
58390         * MODULES.html.sh (func_all_modules): Add sysexits.
58391
58392 2003-06-11  Simon Josefsson  <jas@extundo.com>
58393
58394         * lib/sysexit_.h: New file.
58395
58396 2003-06-11  Derek Price  <derek@ximbiot.com>
58397
58398         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
58399         necessary.
58400
58401 2003-06-11  Bruno Haible  <bruno@clisp.org>
58402
58403         * m4/sysexits.m4: New file.
58404
58405 2003-06-10  Simon Josefsson  <jas@extundo.com>
58406
58407         * lib/argp.h: New file, from glibc.
58408         * lib/argp-ba.c: New file, from glibc.
58409         * lib/argp-eexst.c: New file, from glibc.
58410         * lib/argp-fmtstream.c: New file, from glibc.
58411         * lib/argp-fmtstream.h: New file, from glibc.
58412         * lib/argp-fs-xinl.c: New file, from glibc.
58413         * lib/argp-help.c: New file, from glibc.
58414         * lib/argp-namefrob.h: New file, from glibc.
58415         * lib/argp-parse.c: New file, from glibc.
58416         * lib/argp-pv.c: New file, from glibc.
58417         * lib/argp-pvh.c: New file, from glibc.
58418         * lib/argp-xinl.c: New file, from glibc.
58419
58420 2003-06-10  Simon Josefsson  <jas@extundo.com>
58421
58422         * modules/strchrnul: New file.
58423
58424 2003-06-10  Simon Josefsson  <jas@extundo.com>
58425
58426         * modules/argp: New file.
58427
58428 2003-06-10  Simon Josefsson  <jas@extundo.com>
58429
58430         * m4/strchrnul.m4: New file.
58431
58432 2003-06-10  Simon Josefsson  <jas@extundo.com>
58433
58434         * lib/strchrnul.h: New file.
58435         * lib/strchrnul.c: New file.
58436
58437 2003-06-10  Bruno Haible  <bruno@clisp.org>
58438
58439         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
58440
58441 2003-06-07  Karl Berry  <karl@gnu.org>
58442
58443         * config/config.{guess,sub}: update from prep.
58444
58445 2003-06-07  Jim Meyering  <jim@meyering.net>
58446
58447         * modules/strtod: Use $(...) notation, not @...@ for
58448         AC_REPLACE'd variables.
58449         * modules/localcharset: Likewise.
58450
58451 2003-06-07  Jim Meyering  <jim@meyering.net>
58452
58453         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
58454         in place of my name in the copyright comment.
58455         Remove definition and uses of __P.
58456
58457         From coreutils.
58458         * lib/stat.c: Don't declare xmalloc explicitly.
58459         Instead, include "xalloc.h".
58460         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
58461         xrealloc, and xcalloc return values.
58462         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
58463         Improve comment.
58464         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
58465
58466 2003-06-07  Bruno Haible  <bruno@clisp.org>
58467
58468         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
58469         avoid AC_CONFIG_LINKS.
58470         * modules/fnmatch (Makefile.am): Use explicit creation rule for
58471         fnmatch.h, to avoid AC_CONFIG_LINKS.
58472         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
58473
58474 2003-06-07  Bruno Haible  <bruno@clisp.org>
58475
58476         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
58477         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
58478         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
58479         directory.
58480         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
58481         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
58482         directory.
58483
58484 2003-06-06  Jim Meyering  <jim@meyering.net>
58485
58486         Merge from coreutils.
58487         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
58488         Consolidate declarations and initializations of *_base* locals.
58489
58490         Merge from coreutils.
58491         This avoids a core dump on systems without GNU putenv,
58492         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
58493         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
58494         (unsetenv): New static function, from GNU libc.
58495         (rpl_putenv): Use it.
58496
58497         * lib/modechange.c: Remove trailing blanks.
58498
58499         Merge from coreutils.
58500         * lib/fsusage.c: Remove declaration of statfs.
58501         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
58502
58503         * lib/posixtm.c: Include <stdbool.h> unconditionally.
58504
58505 2003-06-06  Jim Meyering  <jim@meyering.net>
58506
58507         * lib/stdbool_.h: Renamed from stdbool.h.in.
58508
58509 2003-06-06  Jim Meyering  <jim@meyering.net>
58510             Bruno Haible  <bruno@clisp.org>
58511
58512         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
58513         Adjust Makefile.am snippet not to redirect directly to target.
58514         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
58515
58516 2003-06-05  Paul Eggert  <eggert@twinsun.com>
58517
58518         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
58519         mismatch, look in future quarters as well as past.  This fixes a
58520         bug when processing fall-backwards gaps immediately after a long
58521         period of daylight-saving time.
58522
58523         * lib/mktime.c: Assume freestanding C89 or better.
58524         (HAVE_LIMITS_H): Remove.  Assume it's 1.
58525         (__P): Remove; not used.
58526         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
58527         (mktime, not_equal_tm, print_tm, check_result,
58528         main): Use prototypes.  Use const * where appropriate.
58529         (main): Fix typo in testing code that uncovered by above changes.
58530         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
58531
58532 2003-06-04  Paul Eggert  <eggert@twinsun.com>
58533
58534         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
58535         locale.h, localeconv.  This merges changes from coreutils.
58536
58537         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
58538         It can be removed after the next Autoconf is released.
58539         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
58540         needed.
58541
58542 2003-06-04  Paul Eggert  <eggert@twinsun.com>
58543
58544         * lib/mktime.c: Fix Debian bug 177940
58545         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
58546         (localtime_offset): Now long int, not time_t, because we want it
58547         to be guaranteed to be signed.  All uses changed.
58548         (__mktime_internal): If overflow would occur when adding offset,
58549         don't add it.
58550
58551         Merge 'human' changes from coreutils.  Rewrite to support
58552         locale-specific notations like thousands separators.
58553         * lib/human.c: Simplify authorship notice.
58554         Include human.h immediately after config.h.
58555         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
58556         <limits.h>: Do not include, since human.h does.
58557         (SIZE_MAX, UINTMAX_MAX): New macros.
58558         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
58559         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
58560         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
58561         (power_letter): Renamed from suffixes.
58562         (generate_suffix_backwards): Remove.
58563         (adjust_value): Now takes int style (because of human.h changes)
58564         and long double value (for greater precision on some platforms).
58565         (group_number): New function.
58566         (human_readable): Use it.  Use integer options, not enum.
58567         Put the options before the sizes in the arg list.
58568         Support all the new options.
58569         The old human_readable function has been removed;
58570         use inttostr.h instead.
58571         (human_readable, default_block_size, humblock):
58572         Use uintmax_t, not int, for block sizes.
58573         (human_readable_inexact, block_size_types): Remove.
58574         (block_size_opts): New constant.
58575         (human_options): Renamed from human_block_size, with new signature
58576         that allows block sizes up to UINTMAX_MAX.  All callers changed.
58577         * lib/human.h: Add copyright and authorship notice.
58578         Include <limits.h> and <stdbool.h> unconditionally.
58579         (PARAMS): Remove.  All uses removed.
58580         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
58581         (enum human_inexact_style): Remove tag; now a nameless enum.
58582         (human_floor, human_ceiling, human_round_to_even): Now have
58583         values 2, 0, 1 rather than -1, 1, 0.
58584         (human_group_digits, human_suppress_point_zero, human_autoscale,
58585         human_base_1024, human_SI, human_B): New constants.
58586         (human_readable_inexact, human_block_size): Remove.
58587         (human_readable): Size args are now uintmax_t, not int.
58588         (human_options): New decl.
58589
58590         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
58591         unnecessary now that we assume C89 or better.  This change
58592         imported from coreutils.
58593
58594         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
58595         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
58596         in the 2003-05-30 sync from glibc.
58597
58598         .h files should stand alone, but we shouldn't include <sys/types.h>
58599         if we can get away with just <stddef.h>.
58600
58601         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
58602         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
58603         rather than <sys/types.h>, as we merely need size_t.
58604         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
58605         to get size_t.
58606         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
58607         Include <stdio.h>, to get FILE.
58608         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
58609         memcasecmp.h has included <stddef.h> and all we need is size_t.
58610         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
58611         our interface, instead of including <sys/types.h>
58612
58613 2003-06-04  Paul Eggert  <eggert@twinsun.com>
58614
58615         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
58616         now, as glibc mktime is buggy on non-glibc systems.
58617
58618 2003-06-03  Karl Berry  <karl@gnu.org>
58619
58620         * config/config.sub: update from prep.
58621
58622 2003-06-02  Paul Eggert  <eggert@twinsun.com>
58623
58624         [from coreutils]
58625         Fix some minor time-related bugs with POSIX time arguments.
58626         Some valid time stamps were being rejected (notably -1, and
58627         time stamps before 1900 on 64-bit hosts).  And some invalid
58628         time stamps were being accepted, e.g. September 31.
58629
58630         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
58631         that we can return (time_t) -1 successfully.
58632         * lib/posixtm.c: Likewise.
58633         [HAVE_STDBOOL_H]: Include <stdbool.h>.
58634         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
58635         (t): Remove static var.
58636         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
58637         of static var.  All uses changed.
58638         (year): Do not reject years before 1900; they can occur with
58639         64-bit time_t.
58640         (posix_time_parse): Do not check for out-of-range components;
58641         that is now the caller's responsibility, since our checks were
58642         only approximations.
58643         (posixtime): Use mktime to check for out-of-range components,
58644         since it knows them exactly.
58645         If mktime returns (time_t) -1, check whether an error actually occurred
58646         by invoking localtime on -1.
58647         (main) [TEST_POSIXTIME]: Check for input data errors, and report
58648         posixtime failures better.
58649         Improve the test data (in comments only).
58650
58651 2003-06-02  Karl Berry  <karl@gnu.org>
58652
58653         * config/mkinstalldirs (version): new variable.
58654         (--version): new option.
58655         (usage): improve message.
58656
58657 2003-05-30  Karl Berry  <karl@gnu.org>
58658
58659         * lib/mktime.c: update from libc.
58660
58661 2003-05-30  Bruno Haible  <bruno@clisp.org>
58662
58663         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
58664         * config/config.rpath: Upgrade to gettext-0.12.1.
58665
58666 2003-05-30  Bruno Haible  <bruno@clisp.org>
58667
58668         * m4/gettext.m4: Upgrade to gettext-0.12.1.
58669         * m4/nls.m4: New file, from gettext-0.12.1.
58670         * m4/po.m4: New file, from gettext-0.12.1.
58671         * m4/progtest.m4: Upgrade to gettext-0.12.1.
58672
58673 2003-05-30  Bruno Haible  <bruno@clisp.org>
58674
58675         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
58676         * lib/localcharset.h: Likewise.
58677         * lib/localcharset.c: Likewise.
58678
58679 2003-05-29  Karl Berry  <karl@gnu.org>
58680
58681         * config/config.rpath: update from gettext.
58682
58683 2003-05-28  Paul Eggert  <eggert@twinsun.com>
58684
58685         Assume the headers required for C89 freestanding compilers.
58686         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
58687         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
58688         * m4/human.m4 (gl_HUMAN): Likewise.
58689         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
58690         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
58691         * m4/userspec.m4 (gl_USERSPEC): Likewise.
58692         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
58693         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
58694         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
58695
58696 2003-05-28  Paul Eggert  <eggert@twinsun.com>
58697
58698         Assume the headers required for C89 freestanding compilers.
58699         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
58700         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
58701         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
58702         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
58703         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
58704         define, since <limits.h> is guaranteed to do that.
58705         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
58706         * lib/exclude.c: Include <stdbool.h> unconditionally.
58707         * lib/tempname.c: Include <stddef.h> unconditionally.
58708         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
58709         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
58710         <stddef.h> does that.
58711         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
58712         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
58713         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
58714         needed.
58715         * lib/xstrtol.c: Likewise.
58716         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
58717         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
58718
58719         * lib/addext.c (addext): Use assignment rather than cast, to avoid
58720         warnings on some platforms.
58721
58722         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
58723         arbitrarily.
58724
58725 2003-05-26  Jim Meyering  <jim@meyering.net>
58726
58727         Merge in a change from coreutils:
58728         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
58729         that is guaranteed to be `no'.  Use `no_such_member' to indicate
58730         that condition, rather than `-1' which is slightly misleading.
58731         Change the name of the cache variable to have the gl_ prefix.
58732         Prompted by a patch from Richard Dawe for DJGPP.
58733
58734 2003-05-24  Karl Berry  <karl@gnu.org>
58735
58736         * config/config.guess: update from prep.
58737
58738 2003-05-22  Karl Berry  <karl@gnu.org>
58739
58740         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
58741
58742 2003-05-20  Karl Berry  <karl@gnu.org>
58743
58744         * config/config.guess: update from prep.
58745
58746 2003-05-18  Karl Berry  <karl@gnu.org>
58747
58748         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
58749         might actually be set by the user.
58750
58751         * config/depcomp, install-sh, mdate-sh: update from automake.
58752
58753 2003-05-17  Bruno Haible  <bruno@clisp.org>
58754
58755         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
58756         invalid expansion for AC_EGREP_CPP.
58757         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
58758         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
58759         Suggested by Akim Demaille <akim@epita.fr> in
58760         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
58761
58762 2003-05-12  Jim Meyering  <jim@meyering.net>
58763
58764         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
58765         the space-padded-by-default conversion specifiers, %e, %k, %l.
58766
58767 2003-05-12  Bruno Haible  <bruno@clisp.org>
58768
58769         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
58770         the string is longer than 4 KB.
58771
58772 2003-05-11  Karl Berry  <karl@gnu.org>
58773
58774         * config/config.{guess,sub}: update from prep.
58775
58776 2003-05-09  Bruno Haible  <bruno@clisp.org>
58777
58778         * modules/error: Add m4/strerror_r.m4 to file list.
58779
58780 2003-05-03  Bruno Haible  <bruno@clisp.org>
58781
58782         Upgrade to Unicode-4.0.
58783         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
58784         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
58785         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
58786         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
58787         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
58788         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
58789         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
58790         Change width of U+E0100..U+E01EF from 1 to 0.
58791
58792 2003-04-25  Jim Meyering  <jim@meyering.net>
58793
58794         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
58795         of type size_t, not int.
58796
58797 2003-04-25  Bruno Haible  <bruno@clisp.org>
58798
58799         * lib/copy-file.c: Include <stddef.h>, for size_t.
58800
58801 2003-04-21  Paul Eggert  <eggert@twinsun.com>
58802
58803         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
58804         code which expansion is under static control.  Patch imported from
58805         Akim Demaille's patch to Bison; see
58806         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
58807
58808 2003-04-14  Bruno Haible  <bruno@clisp.org>
58809
58810         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
58811
58812 2003-04-11  Jim Meyering  <jim@meyering.net>
58813
58814         Merge changes from Coreutils.
58815
58816         2003-03-22  Jim Meyering  <jim@meyering.net>
58817
58818         * lib/strftime.c (widen): Cast alloca return value to proper type.
58819
58820         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
58821
58822         From GNU libc.
58823         * lib/strftime.c (my_strftime): Handle very large width
58824         specifications for numeric values correctly.  Improve checks for
58825         overflow.
58826
58827         2003-01-19  Jim Meyering  <jim@meyering.net>
58828
58829         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
58830         definitions.
58831         (nl_get_alt_digit) [! defined my_strftime]: Define.
58832         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
58833         _nl_get_alt_digit and _nl_get_walt_digit.
58834
58835         * lib/strftime.c (my_strftime): Merge in locale-related changes from
58836         libc. These changes have no effect outside of _LIBC.
58837
58838 2003-04-10  Bruno Haible  <bruno@clisp.org>
58839
58840         * modules/findprog: New file.
58841         * MODULES.html.sh (func_all_modules): Add it.
58842
58843 2003-04-10  Bruno Haible  <bruno@clisp.org>
58844
58845         * m4/findprog.m4: New file.
58846         * m4/eaccess.m4: New file.
58847
58848 2003-04-10  Bruno Haible  <bruno@clisp.org>
58849
58850         * lib/findprog.h: New file, from GNU gettext.
58851         * lib/findprog.c: New file, from GNU gettext.
58852
58853 2003-04-05  Jim Meyering  <jim@meyering.net>
58854
58855         Merge changes from Coreutils.
58856
58857         * lib/exclude.h (PARAMS): Remove definition and uses.
58858         * lib/exclude.c: Remove uses of `PARAMS'.
58859
58860         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
58861         Add test-cases for DOS filenames. Declare program_name.
58862         (main): Set up program_name.  Patch by Rich Dawe.
58863
58864         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
58865         error from mntctl.
58866         Use mntctl's return value to drive the entry-processing loop, since
58867         we can't rely on the value of the vmt_length member in the last
58868         entry.  On some systems doing so could result in exhausting
58869         virtual memory.  Based in part on a patch from Mike Jetzer.
58870
58871 2003-04-04  Bruno Haible  <bruno@clisp.org>
58872
58873         * modules/linebreak: New file.
58874         * MODULES.html.sh (func_all_modules): Add it.
58875
58876 2003-04-04  Bruno Haible  <bruno@clisp.org>
58877
58878         * m4/linebreak.m4: New file.
58879
58880 2003-04-04  Bruno Haible  <bruno@clisp.org>
58881
58882         * lib/linebreak.h: New file, from GNU gettext.
58883         * lib/linebreak.c: New file, from GNU gettext with slight
58884         modifications.
58885         * lib/lbrkprop.h: New file, from GNU gettext.
58886
58887 2003-04-03  Bruno Haible  <bruno@clisp.org>
58888
58889         * modules/utf8-ucs4: New file.
58890         * modules/utf16-ucs4: New file.
58891         * modules/ucs4-utf8: New file.
58892         * modules/ucs4-utf16: New file.
58893         * MODULES.html.sh (func_all_modules): Add them.
58894
58895 2003-04-03  Bruno Haible  <bruno@clisp.org>
58896
58897         * m4/utf-ucs4.m4: New file.
58898         * m4/ucs4-utf.m4: New file.
58899
58900 2003-04-03  Bruno Haible  <bruno@clisp.org>
58901
58902         * lib/utf8-ucs4.h: New file, from GNU gettext.
58903         * lib/utf16-ucs4.h: New file, from GNU gettext.
58904         * lib/ucs4-utf8.h: New file, from GNU gettext.
58905         * lib/ucs4-utf16.h: New file, from GNU gettext.
58906
58907 2003-04-02  Bruno Haible  <bruno@clisp.org>
58908
58909         * modules/binary-io: New file.
58910         * MODULES.html.sh (func_all_modules): Add it.
58911
58912 2003-04-02  Bruno Haible  <bruno@clisp.org>
58913
58914         * lib/binary-io.h: New file, from GNU gettext.
58915
58916 2003-04-01  Bruno Haible  <bruno@clisp.org>
58917
58918         * modules/pathname: New file.
58919         * MODULES.html.sh (func_all_modules): Add it.
58920
58921 2003-04-01  Bruno Haible  <bruno@clisp.org>
58922
58923         * lib/pathname.h: New file, from GNU gettext.
58924         * lib/concatpath.c: New file, from GNU gettext.
58925
58926 2003-03-30  Bruno Haible  <bruno@clisp.org>
58927
58928         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
58929
58930 2003-03-30  Bruno Haible  <bruno@clisp.org>
58931
58932         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
58933         function chown() doesn't exist.
58934
58935 2003-03-28  Bruno Haible  <bruno@clisp.org>
58936
58937         * modules/copy-file: New file.
58938         * MODULES.html.sh (func_all_modules): Add it.
58939
58940 2003-03-28  Bruno Haible  <bruno@clisp.org>
58941
58942         * m4/copy-file.m4: New file.
58943
58944 2003-03-28  Bruno Haible  <bruno@clisp.org>
58945
58946         * lib/copy-file.h: New file, from GNU gettext.
58947         * lib/copy-file.c: New file, from GNU gettext.
58948
58949 2003-03-18  Jim Meyering  <jim@meyering.net>
58950
58951         * lib/quote.c (quote_n): Fix typo in comment.
58952
58953 2003-03-18  Bruno Haible  <bruno@clisp.org>
58954
58955         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
58956         checking.
58957         * m4/onceonly_2_57.m4: Likewise.
58958
58959 2003-03-17  Bruno Haible  <bruno@clisp.org>
58960
58961         * m4/onceonly.m4: Require autoconf 2.54 or newer.
58962         (m4_quote): Remove macro.
58963         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
58964
58965 2003-03-14  Jim Meyering  <jim@meyering.net>
58966
58967         Merge changes from Coreutils.
58968         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
58969         to be const, in order to avoid warnings.
58970         (obstack_room): Likewise.
58971         (obstack_empty_p): Likewise.
58972
58973 2003-03-14  Bruno Haible  <bruno@clisp.org>
58974
58975         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
58976         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
58977
58978 2003-03-13  Paul Eggert  <eggert@twinsun.com>
58979
58980         Merge changes from Bison.
58981         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
58982         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
58983         when compiling Bison 1.875's `bitset bset = obstack_alloc
58984         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
58985         * lib/hash.c: Include <stdbool.h> unconditionally.
58986
58987 2003-03-13  Paul Eggert  <eggert@twinsun.com>
58988
58989         * m4/onceonly.m4 (m4_quote): New macro.
58990         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
58991         Quote AC_FOREACH variable-expansions properly.
58992
58993 2003-03-13  Paul Eggert  <eggert@twinsun.com>
58994
58995         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
58996
58997 2003-03-09  Paul Eggert  <eggert@twinsun.com>
58998
58999         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
59000         Reported by Bruce Becker; see:
59001         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
59002
59003 2003-03-03  Paul Eggert  <eggert@twinsun.com>
59004             Bruno Haible  <bruno@clisp.org>
59005
59006         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
59007         Reported by John Hughes, see
59008         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
59009
59010 2003-02-20  Bruno Haible  <bruno@clisp.org>
59011
59012         * MODULES.html.sh (func_all_modules): Add poll.
59013
59014 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59015
59016         * modules/poll: New file.
59017
59018 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59019
59020         * lib/poll_.h: New file.
59021         * lib/poll.c: New file.
59022
59023 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59024
59025         * m4/poll.m4: New file.
59026
59027 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59028
59029         * modules/mathl: New file.
59030
59031 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59032
59033         * lib/mathl.h: New file.
59034         * lib/acosl.c: New file.
59035         * lib/asinl.c: New file.
59036         * lib/atanl.c: New file.
59037         * lib/ceill.c: New file.
59038         * lib/cosl.c: New file.
59039         * lib/expl.c: New file.
59040         * lib/floorl.c: New file.
59041         * lib/frexpl.c: New file.
59042         * lib/ldexpl.c: New file.
59043         * lib/logl.c: New file.
59044         * lib/sincosl.c: New file.
59045         * lib/sinl.c: New file.
59046         * lib/sqrtl.c: New file.
59047         * lib/tanl.c: New file.
59048         * lib/trigl.c: New file.
59049         * lib/trigl.h: New file.
59050
59051 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59052
59053         * m4/mathl.m4: New file.
59054
59055 2003-02-18  Bruno Haible  <bruno@clisp.org>
59056
59057         * MODULES.html.sh (func_all_modules): Add mathl.
59058
59059 2003-02-17  Bruno Haible  <bruno@clisp.org>
59060
59061         * modules/mkdtemp: New module.
59062         * MODULES.html.sh (func_all_modules): Add it.
59063
59064 2003-02-17  Bruno Haible  <bruno@clisp.org>
59065
59066         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
59067
59068 2003-02-17  Bruno Haible  <bruno@clisp.org>
59069
59070         * lib/mkdtemp.h: New file, from GNU gettext.
59071         * lib/mkdtemp.c: New file, from GNU gettext.
59072
59073 2003-02-02  Jim Meyering  <jim@meyering.net>
59074
59075         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
59076         e.g. glibc-2.2.93.
59077
59078 2003-01-31  Bruno Haible  <bruno@clisp.org>
59079
59080         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
59081         'rpl_rename'.
59082         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
59083         'rpl_strnlen'.
59084         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
59085         'rpl_strtod'.
59086         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
59087         'rpl_utime'.
59088
59089 2003-01-31  Bruno Haible  <bruno@clisp.org>
59090
59091         * lib/rename.c: #undef rename before defining rpl_rename.
59092         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
59093
59094 2003-01-30  Bruno Haible  <bruno@clisp.org>
59095
59096         * modules/vasnprintf, modules/vasprintf: New modules.
59097         * MODULES.html.sh (func_all_modules): Add them.
59098
59099 2003-01-30  Bruno Haible  <bruno@clisp.org>
59100
59101         * m4/signed.m4: New file, from GNU gettext.
59102         * m4/longdouble.m4: New file, from GNU gettext.
59103         * m4/wchar_t.m4: New file, from GNU gettext.
59104         * m4/wint_t.m4: New file, from GNU gettext.
59105         * m4/vasnprintf.m4: New file.
59106         * m4/vasprintf.m4: New file.
59107
59108 2003-01-30  Bruno Haible  <bruno@clisp.org>
59109
59110         * lib/printf-args.h: New file, from GNU gettext.
59111         * lib/printf-args.c: New file, from GNU gettext.
59112         * lib/printf-parse.h: New file, from GNU gettext.
59113         * lib/printf-parse.c: New file, from GNU gettext.
59114         * lib/vasnprintf.h: New file, from GNU gettext.
59115         * lib/vasnprintf.c: New file, from GNU gettext.
59116         * lib/asnprintf.c: New file, from GNU gettext.
59117         * lib/vasprintf.h: New file, from GNU gettext with modifications.
59118         * lib/vasprintf.c: New file, from GNU gettext.
59119         * lib/asprintf.c: New file, from GNU gettext.
59120
59121 2003-01-29  Bruno Haible  <bruno@clisp.org>
59122
59123         * modules/stpncpy: New module.
59124         * MODULES.html.sh (func_all_modules): Add it.
59125
59126 2003-01-29  Bruno Haible  <bruno@clisp.org>
59127
59128         * m4/stpncpy.m4: New file.
59129
59130 2003-01-29  Bruno Haible  <bruno@clisp.org>
59131
59132         * lib/stpncpy.h: New file, from GNU gettext with modifications.
59133         * lib/stpncpy.c: New file, from GNU gettext with modifications.
59134
59135 2003-01-28  Bruno Haible  <bruno@clisp.org>
59136
59137         * modules/c-ctype: New module.
59138         * MODULES.html.sh (func_all_modules): Add it.
59139
59140 2003-01-28  Bruno Haible  <bruno@clisp.org>
59141
59142         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
59143         Paul Eggert.
59144         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
59145         Paul Eggert.
59146
59147 2003-01-27  Bruno Haible  <bruno@clisp.org>
59148
59149         * modules/xsetenv: New module.
59150         * MODULES.html.sh (func_all_modules): Add it.
59151
59152 2003-01-27  Bruno Haible  <bruno@clisp.org>
59153
59154         * lib/xsetenv.h: New file, from GNU gettext.
59155         * lib/xsetenv.c: New file, from GNU gettext.
59156
59157 2003-01-23  Jim Meyering  <jim@meyering.net>
59158
59159         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
59160         from working on systems without dirfd (at least Irix and OSF1/Tru64).
59161
59162 2003-01-23  Bruno Haible  <bruno@clisp.org>
59163
59164         * modules/minmax: New module.
59165         * MODULES.html.sh (func_all_modules): Add it.
59166
59167 2003-01-23  Bruno Haible  <bruno@clisp.org>
59168
59169         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
59170         Eggert.
59171
59172 2003-01-22  Bruno Haible  <bruno@clisp.org>
59173
59174         * modules/exit: New module.
59175         * MODULES.html.sh (func_all_modules): Add it.
59176
59177 2003-01-22  Bruno Haible  <bruno@clisp.org>
59178
59179         * lib/exit.h: New file, from GNU gettext.
59180
59181 2003-01-19  Bruno Haible  <bruno@clisp.org>
59182
59183         * gnulib-tool: Recognize option --extract-maintainer.
59184         (func_get_maintainer): New function.
59185         * modules/*: Add Maintainer entry.
59186
59187 2003-01-16  Jim Meyering  <jim@meyering.net>
59188
59189         * m4/regex.m4: The `regex' struct is both input and output.
59190         Initialize it before each use.  Patch by Tim Waugh.
59191
59192 2003-01-16  Bruno Haible  <bruno@clisp.org>
59193
59194         * MODULES.html.sh: Add a table of contents. Add the module name as
59195         leftmost column. Add hyperlinks.
59196
59197 2003-01-15  Bruno Haible  <bruno@clisp.org>
59198
59199         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
59200
59201 2003-01-15  Bruno Haible  <bruno@clisp.org>
59202
59203         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
59204         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
59205         suffix.
59206
59207 2003-01-15  Bruno Haible  <bruno@clisp.org>
59208
59209         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
59210
59211 2003-01-15  Bruno Haible  <bruno@clisp.org>
59212
59213         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
59214         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
59215
59216 2003-01-14  Jim Meyering  <jim@meyering.net>
59217
59218         * lib/same.c (same_name): Tweak a comment.
59219
59220 2003-01-14  Bruno Haible  <bruno@clisp.org>
59221
59222         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
59223         when a string comparison is sufficient.
59224
59225 2003-01-14  Bruno Haible  <bruno@clisp.org>
59226
59227         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
59228         'unsigned int'.
59229
59230 2003-01-14  Bruno Haible  <bruno@clisp.org>
59231
59232         * lib/hash-pjw.c: Add comment about low quality of this function.
59233
59234 2003-01-13  Bruno Haible  <bruno@clisp.org>
59235
59236         * modules/stpcpy: Distribute lib/stpcpy.h.
59237         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
59238
59239 2003-01-13  Bruno Haible  <bruno@clisp.org>
59240
59241         * modules/*: Add a description.
59242         * modules/strpbrk: Fix Makefile.am snippet.
59243         * modules/strtoimax: Fix dependencies.
59244         * modules/strtoumax: Likewise.
59245
59246 2003-01-13  Bruno Haible  <bruno@clisp.org>
59247
59248         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
59249         * modules/alloca (Makefile.am): All object files depend on alloca.h.
59250         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
59251
59252 2003-01-13  Bruno Haible  <bruno@clisp.org>
59253
59254         * gnulib-tool (func_create_testdir): Store config/* files in the main
59255         directory.
59256         * config.rpath: Move to ...
59257         * config/config.rpath: ... here.
59258         * modules/gettext: Contains config/config.rpath, not config.rpath.
59259         * modules/iconv: Likewise.
59260
59261 2003-01-12  Paul Eggert  <eggert@twinsun.com>
59262
59263         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
59264         to avoid collisions with libcurses and libreadline.
59265
59266         * m4/getstr.m4: Remove.
59267         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
59268
59269 2003-01-12  Paul Eggert  <eggert@twinsun.com>
59270
59271         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
59272         to avoid collisions with libcurses and libreadline.
59273
59274         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
59275         * lib/getstr.h, getstr.c: Remove.
59276         * lib/getline.c: Include "getline.h", to check interface.
59277         Move body of old getstr.c here: this defines MIN_CHUNK and
59278         declares getdelim2, which is renamed from getstr.
59279         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
59280
59281         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
59282         All uses changed.
59283         * lib/linebuffer.h: Likewise.
59284         (readline): Remove backward-compatibility macro.
59285
59286 2003-01-12  Paul Eggert  <eggert@twinsun.com>
59287
59288         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
59289         to avoid collisions with libcurses and libreadline.
59290         * getstr: Remove.
59291         * MODULES.html.sh: Remove getstr.
59292         * modules/getline: Depend on unlocked-io, not getstr.
59293
59294 2003-01-12  Jim Meyering  <jim@meyering.net>
59295
59296         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
59297
59298 2003-01-10  Bruno Haible  <bruno@clisp.org>
59299
59300         * modules/alloca: Change Makefile.am requirements. Simplify Include
59301         requirements. Add lib/alloca_.h to file list.
59302
59303 2003-01-10  Bruno Haible  <bruno@clisp.org>
59304
59305         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
59306
59307 2003-01-10  Bruno Haible  <bruno@clisp.org>
59308
59309         * lib/alloca_.h: New file.
59310         * lib/getdate.y: Unconditionally include alloca.h.
59311         * lib/makepath.c: Likewise.
59312         * lib/setenv.c: Likewise.
59313         * lib/userspec.c: Likewise.
59314
59315 2003-01-09  Karl Berry  <karl@gnu.org>
59316
59317         * MODULES.html.sh: include `dirname $0` in PATH, to find
59318         gnulib-tool.
59319
59320 2003-01-09  Bruno Haible  <bruno@clisp.org>
59321
59322         * modules/stdbool: Change configure.ac, Makefile.am requirements.
59323         Simplify Include requirements. Add lib/stdbool.h.in to file list.
59324
59325 2003-01-09  Bruno Haible  <bruno@clisp.org>
59326
59327         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
59328
59329 2003-01-09  Bruno Haible  <bruno@clisp.org>
59330
59331         * lib/stdbool.h.in: New file.
59332
59333 2003-01-09  Bruno Haible  <bruno@clisp.org>
59334
59335         * gnulib-tool (func_all_modules): Ignore files ending in ~.
59336         * MODULES.html.sh: Likewise.
59337
59338 2003-01-08  Jim Meyering  <jim@meyering.net>
59339
59340         * lib/full-write.c: Undefine and define-away `const' after inclusion
59341         of errno.h, not before.  Suggestion from Bruno Haible.
59342
59343 2003-01-08  Bruno Haible  <bruno@clisp.org>
59344
59345         * modules/full-read: Depend on full-write.
59346
59347 2003-01-08  Bruno Haible  <bruno@clisp.org>
59348
59349         * lib/safe-read.c: Include specification header first, to ensure its
59350         selfcontainedness.
59351         * lib/full-write.c: Likewise.
59352
59353 2003-01-07  Jim Meyering  <jim@meyering.net>
59354
59355         * lib/full-write.c: Rework so that it may serve to define full_read,
59356         too.
59357         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
59358
59359 2003-01-07  Bruno Haible  <bruno@clisp.org>
59360
59361         * lib/strtoimax.c: Include <stdint.h> as an alternative to
59362         <inttypes.h>.
59363         * lib/xstrtol.h: Likewise.
59364         * lib/xstrtoimax.c: Likewise.
59365         * lib/xstrtoumax.c: Likewise.
59366         * lib/human.h: Likewise.
59367
59368         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
59369         on systems that have <inttypes.h> but not <stdint.h>.
59370
59371 2003-01-07  Bruno Haible  <bruno@clisp.org>
59372
59373         * MODULES.html.sh: Add copyright notice.
59374         (missed_files): Omit CVS directory entries.
59375         (func_module): Make it work with sed-3.02.
59376         * MODULES.txt: Remove file.
59377
59378 2003-01-06  Jim Meyering  <jim@meyering.net>
59379
59380         * lib/version-etc.c: Update year in translatable copyright string.
59381
59382 2003-01-03  Karl Berry  <karl@gnu.org>
59383
59384         * config/config.{guess,sub}: update from prep.
59385
59386 2003-01-02  Karl Berry  <karl@gnu.org>
59387
59388         * doc/COPYING.DOC: belatedly updated to 1.2.
59389
59390 2003-01-01  Karl Berry  <karl@gnu.org>
59391
59392         * gnulib-tool (func_verify_module): report module name $module in
59393         error message, not $1.
59394         * gnulib-tool (create-testdir): don't complain if destdir couldn't
59395         be created, only if it doesn't exist.
59396         * gnulib-tool (last_checkin_date): don't expand the $Date here.
59397
59398 2002-12-31  Paul Eggert  <eggert@twinsun.com>
59399
59400         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
59401
59402 2002-12-31  Paul Eggert  <eggert@twinsun.com>
59403
59404         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
59405         memcmp if strcoll doesn't work.
59406
59407 2002-12-31  Bruno Haible  <bruno@clisp.org>
59408
59409         * lib/utime.c (utime_null): No need to call ftruncate if the file was
59410         nonempty.
59411
59412 2002-12-31  Bruno Haible  <bruno@clisp.org>
59413
59414         * lib/memcoll.c (STRCOLL): New macro.
59415         (memcoll): Use it.
59416
59417 2002-12-31  Bruno Haible  <bruno@clisp.org>
59418
59419         * lib/localcharset.h: New file.
59420         * lib/localcharset.c: Include it.
59421         * lib/unicodeio.c: Likewise.
59422
59423 2002-12-31  Bruno Haible  <bruno@clisp.org>
59424
59425         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
59426         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
59427
59428 2002-12-31  Bruno Haible  <bruno@clisp.org>
59429
59430         * lib/getline.h: Include <stddef.h>, for size_t.
59431
59432         * lib/unicodeio.h: Include <stddef.h>, for size_t.
59433         * lib/unicodeio.c: Don't include <stddef.h>.
59434
59435 2002-12-31  Bruno Haible  <bruno@clisp.org>
59436
59437         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
59438         HAVE_TM_ZONE.
59439
59440 2002-12-24  Karl Berry  <karl@gnu.org>
59441
59442         * config/config.guess: update from prep.
59443
59444 2002-12-24  Bruno Haible  <bruno@clisp.org>
59445
59446         General infrasructure.
59447         * m4/README: Rewritten.
59448         * m4/onceonly.m4: New file.
59449         * m4/onceonly_2_57.m4: New file.
59450
59451         Module atexit.
59452         * m4/atexit.m4: New file.
59453
59454         Module strtod.
59455         * m4/strtod.m4: New file.
59456
59457         Module strtol.
59458         * m4/strtol.m4: New file.
59459
59460         Module strtoul.
59461         * m4/strtoul.m4: New file.
59462
59463         Module memchr.
59464         * m4/memchr.m4: New file.
59465
59466         Module memcmp.
59467         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
59468         (jm_FUNC_MEMCMP): Invoke it.
59469
59470         Module memcpy.
59471         * m4/memcpy.m4: New file.
59472
59473         Module memmove.
59474         * m4/memmove.m4: New file.
59475
59476         Module memset.
59477         * m4/memset.m4: New file.
59478
59479         Module strcspn.
59480         * m4/strcspn.m4: New file.
59481
59482         Module strpbrk.
59483         * m4/strpbrk.m4: New file.
59484
59485         Module strstr.
59486         * m4/strstr.m4: New file.
59487
59488         Module strerror.
59489         * m4/strerror.m4: New file.
59490
59491         Module mktime.
59492         * m4/mktime.m4: Renamed from jm-mktime.m4.
59493         (gl_PREREQ_MKTIME): New macro.
59494         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
59495
59496         Module malloc.
59497         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
59498         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
59499         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
59500
59501         Module realloc.
59502         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
59503         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
59504         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
59505
59506         Module strftime.
59507         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
59508         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
59509         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
59510         gl_TM_GMTOFF.
59511         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
59512
59513         Module xalloc.
59514         * m4/xalloc.m4: New file.
59515
59516         Module alloca.
59517         * m4/alloca.m4: New file.
59518
59519         Module putenv.
59520         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
59521         (jm_FUNC_PUTENV): Invoke it.
59522
59523         Module setenv.
59524         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
59525         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
59526         when invoked twice.
59527         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
59528         gt_FUNC_SETENV.
59529
59530         Module memrchr.
59531         * m4/memrchr.m4: New file.
59532
59533         Module stpcpy.
59534         * m4/stpcpy.m4: New file.
59535
59536         Module strcase.
59537         * m4/strcase.m4: New file.
59538
59539         Module strdup.
59540         * m4/strdup.m4: New file.
59541
59542         Module strnlen.
59543         * m4/strnlen.m4: New file.
59544
59545         Module strndup.
59546         * m4/strndup.m4: New file.
59547
59548         Module xstrtod.
59549         * m4/xstrtod.m4: New file.
59550
59551         Module xstrtol.
59552         * m4/xstrtol.m4: New file.
59553
59554         Module getdate.
59555         * m4/getdate.m4: New file.
59556
59557         Module unlocked-io.
59558         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
59559         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
59560         * m4/jm-glibc-io.m4n: Remove file.
59561
59562         Module long-options.
59563         * m4/long-options.m4: New file.
59564
59565         Module md5.
59566         * m4/md5.m4: New file.
59567
59568         Module sha.
59569         * m4/sha.m4: New file.
59570
59571         Module getstr.
59572         * m4/getstr.m4: New file.
59573
59574         Module getline.
59575         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
59576         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
59577         <sys/types.h>, for size_t. Use the function name gnu_getline, not
59578         simply getline. Infoke gl_PREREQ_GETLINE.
59579
59580         Module obstack.
59581         * m4/obstack.m4: New file.
59582
59583         Module hash.
59584         * m4/hash.m4: New file.
59585
59586         Module readtokens.
59587         * m4/readtokens.m4: New file.
59588
59589         Module strverscmp.
59590         * m4/strverscmp.m4: New file.
59591
59592         Module stdbool.
59593         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
59594         OSF/1.
59595
59596         Module strtoll.
59597         * m4/strtoll.m4: New file.
59598
59599         Module strtoull.
59600         * m4/strtoull.m4: New file.
59601
59602         Module strtoimax.
59603         * m4/strtoimax.m4: New file.
59604
59605         Module strtoumax.
59606         * m4/strtoumax.m4: New file.
59607
59608         Module xstrtoimax.
59609         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
59610         jm_AC_PREREQ_XSTRTOIMAX.
59611         Moved the strtol prerequisites to strtol.m4.
59612         Moved the strtoll prerequisites to strtoll.m4.
59613         Moved the strtoimax prerequisites to strtoimax.m4.
59614
59615         Module xstrtoumax.
59616         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
59617         jm_AC_PREREQ_XSTRTOUMAX.
59618         Moved the strtoul prerequisites to strtoul.m4.
59619         Moved the strtoull prerequisites to strtoull.m4.
59620         Moved the strtoumax prerequisites to strtoumax.m4.
59621
59622         Module chown.
59623         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
59624         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
59625
59626         Module dup2.
59627         * m4/dup2.m4: New file.
59628
59629         Module ftruncate.
59630         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
59631         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
59632
59633         Module getgroups.
59634         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
59635         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
59636
59637         Module gettimeofday.
59638         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
59639         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
59640         gl_PREREQ_GETTIMEOFDAY.
59641
59642         Module mkdir.
59643         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
59644         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
59645
59646         Module mkstemp.
59647         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
59648         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
59649         jm_AC_TYPE_UINTMAX_T.
59650         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
59651
59652         Module stat.
59653         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
59654         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
59655
59656         Module lstat.
59657         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
59658         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
59659
59660         Module timespec.
59661         * m4/timespec.m4 (gl_TIMESPEC): New macro.
59662         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
59663         * m4/st_mtim.m4: Indentation.
59664
59665         Module nanosleep.
59666         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
59667         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
59668         gl_PREREQ_NANOSLEEP.
59669
59670         Module regex.
59671         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
59672         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
59673         (gl_REGEX): New macro.
59674
59675         Module rename.
59676         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
59677         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
59678
59679         Module rmdir.
59680         * m4/rmdir.m4: New file.
59681
59682         Module utime.
59683         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
59684         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
59685         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
59686
59687         Module dirname.
59688         * m4/dirname.m4: New file.
59689
59690         Module getopt.
59691         * m4/getopt.m4: New file.
59692
59693         Module unistd-safer.
59694         * m4/unistd-safer.m4: New file.
59695
59696         Module fnmatch.
59697         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
59698         declaration.
59699         (gl_PREREQ_FNMATCH_EXTRA): New macro.
59700         (gl_FUNC_FNMATCH_POSIX): New macro.
59701         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
59702         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
59703         simply fnmatch.
59704
59705         Module exclude.
59706         * m4/exclude.m4: New file.
59707
59708         Module human.
59709         * m4/human.m4: New file.
59710
59711         Module acl.
59712         * m4/acl.m4: Nop.
59713
59714         Module backupfile.
59715         * m4/backupfile.m4: New file.
59716         * m4/d-ino.m4: Indentation.
59717
59718         Module fsusage.
59719         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
59720         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
59721         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
59722
59723         Module dirfd.
59724         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
59725         requirements.
59726
59727         Module euidaccess.
59728         * m4/euidaccess.m4: New file.
59729
59730         Module file-type.
59731         * m4/file-type.m4: New file.
59732
59733         Module fileblocks.
59734         * m4/fileblocks.m4: New file.
59735
59736         Module filemode.
59737         * m4/filemode.m4: New file.
59738
59739         Module isdir.
59740         * m4/isdir.m4: New file.
59741
59742         Module lchown.
59743         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
59744         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
59745
59746         Module makepath.
59747         * m4/makepath.m4: New file.
59748
59749         Module modechange.
59750         * m4/modechange.m4: New file.
59751
59752         Module mountlist.
59753         * m4/mountlist.m4: New file.
59754         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
59755         Indentation.
59756
59757         Module path-concat.
59758         * m4/path-concat.m4: New file.
59759
59760         Module pathmax.
59761         * m4/pathmax.m4: New file.
59762
59763         Module same.
59764         * m4/same.m4: New file.
59765
59766         Module save-cwd.
59767         * m4/save-cwd.m4: New file.
59768
59769         Module savedir.
59770         * m4/savedir.m4: New file.
59771
59772         Module xgetcwd.
59773         * m4/xgetcwd.m4: New file.
59774         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
59775
59776         Module xreadlink.
59777         * m4/xreadlink.m4: New file.
59778
59779         Module safe-read.
59780         * m4/safe-read.m4: New file.
59781
59782         Module safe-write.
59783         * m4/safe-write.m4: New file.
59784
59785         Module closeout.
59786         * m4/closeout.m4: New file.
59787
59788         Module stdio-safer.
59789         * m4/stdio-safer.m4: New file.
59790
59791         Module getpass.
59792         * m4/getpass.m4: New file.
59793
59794         Module getugroups.
59795         * m4/getugroups.m4: New file.
59796
59797         Module group-member.
59798         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
59799         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
59800
59801         Module idcache.
59802         * m4/idcache.m4: New file.
59803
59804         Module userspec.
59805         * m4/userspec.m4: New file.
59806
59807         Module gettime.
59808         * m4/clock_time.m4: New file.
59809         * m4/gettime.m4: New file.
59810
59811         Module settime.
59812         * m4/settime.m4: New file.
59813
59814         Module posixtm.
59815         * m4/posixtm.m4: New file.
59816
59817         Module gethostname.
59818         * m4/gethostname.m4: New file.
59819
59820         Module canon-host.
59821         * m4/canon-host.m4: New file.
59822
59823         Module gettext.
59824         * m4/codeset.m4: New file, from gettext-0.11.5.
59825         * m4/gettext.m4: New file, from gettext-0.11.5.
59826         * m4/glibc21.m4: New file, from gettext-0.11.5.
59827         * m4/iconv.m4: New file, from gettext-0.11.5.
59828         * m4/intdiv0.m4: New file, from gettext-0.11.5.
59829         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
59830         * m4/inttypes.m4: New file, from gettext-0.11.5.
59831         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
59832         * m4/isc-posix.m4: New file, from gettext-0.11.5.
59833         * m4/lcmessage.m4: New file, from gettext-0.11.5.
59834         * m4/lib-ld.m4: New file, from gettext-0.11.5.
59835         * m4/lib-link.m4: New file, from gettext-0.11.5.
59836         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
59837         * m4/progtest.m4: New file, from gettext-0.11.5.
59838         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
59839         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
59840         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
59841
59842         Module localcharset.
59843         * m4/localcharset.m4: New file.
59844
59845         Module hard-locale.
59846         * m4/hard-locale.m4: New file.
59847
59848         Module mbswidth.
59849         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
59850         onceonly macros.
59851         * m4/mbrtowc.m4: Add comment.
59852
59853         Module memcasecmp.
59854         * m4/memcasecmp.m4: New file.
59855
59856         Module memcoll.
59857         * m4/memcoll.m4: New file.
59858
59859         Module unicodeio.
59860         * m4/unicodeio.m4: New file.
59861
59862         Module rpmatch.
59863         * m4/rpmatch.m4: New file.
59864
59865         Module yesno.
59866         * m4/yesno.m4: New file.
59867
59868         Module exitfail.
59869         * m4/exitfail.m4: New file.
59870
59871         Module c-stack.
59872         * m4/c-stack.m4 (gl_C_STACK): New macro.
59873         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
59874
59875         Module error.
59876         * m4/error.m4 (gl_ERROR): New macro.
59877         (jm_PREREQ_ERROR): Use onceonly macros.
59878
59879         Module fatal.
59880         * m4/fatal.m4: New file.
59881
59882         Module getloadavg.
59883         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
59884         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
59885
59886         Module getpagesize.
59887         * m4/getpagesize.m4: New file.
59888
59889         Module getusershell.
59890         * m4/getusershell.m4: New file.
59891
59892         Module physmem.
59893         * m4/physmem.m4: New file.
59894
59895         Module posixver.
59896         * m4/posixver.m4: New file.
59897
59898         Module quotearg.
59899         * m4/quotearg.m4: New file.
59900
59901         Module quote.
59902         * m4/quote.m4: New file.
59903
59904         Module readutmp.
59905         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
59906
59907         Module sig2str.
59908         * m4/sig2str.m4: New file.
59909
59910         Other.
59911         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
59912         ulonglong.m4.
59913         * m4/intmax_t.m4: New file.
59914         * m4/d-type.m4: Indentation.
59915         * m4/jm-macros.m4: Update.
59916         * m4/prereq.m4 (jm_PREREQ): Update.
59917         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
59918         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
59919         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
59920         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
59921         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
59922         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
59923         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
59924         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
59925         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
59926         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
59927         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
59928         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
59929         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
59930         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
59931         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
59932         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
59933         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
59934         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
59935         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
59936
59937 2002-12-24  Bruno Haible  <bruno@clisp.org>
59938
59939         * MODULES.txt: Update according to m4/ changes.
59940
59941         Module gettext.
59942         * config.rpath: New file, from gettext-0.11.5.
59943
59944         * modules/*: New module descriptions.
59945         * gnulib-tool: New file.
59946         * MODULES.html.sh: New file.
59947
59948 2002-12-21  Karl Berry  <karl@gnu.org>
59949
59950         * doc/fdl.texi: update to version 1.2.
59951
59952 2002-12-19  Karl Berry  <karl@gnu.org>
59953
59954         * config/config.guess: update from prep.
59955
59956 2002-12-18  Bruno Haible  <bruno@clisp.org>
59957
59958         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
59959         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
59960
59961 2002-12-17  Bruno Haible  <bruno@clisp.org>
59962
59963         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
59964         stdlib.h, string.h.
59965
59966 2002-12-17  Bruno Haible  <bruno@clisp.org>
59967
59968         * lib/canon-host.c (strdup): Remove unused declaration.
59969
59970         * lib/fsusage.c: Include full_read.h.
59971         (get_fs_usage): Use full_read instead of safe_read.
59972
59973         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
59974
59975 2002-12-12  Karl Berry  <karl@gnu.org>
59976
59977         * config/config.guess: update from prep.
59978
59979 2002-12-11  Bruno Haible  <bruno@clisp.org>
59980
59981         * m4/setenv.m4: New file, from gettext-0.11.5.
59982
59983 2002-12-11  Bruno Haible  <bruno@clisp.org>
59984
59985         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
59986         not unsetenv().
59987         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
59988         modifications:
59989
59990         2002-12-11  Bruno Haible  <bruno@clisp.org>
59991
59992                 * setenv.c (alloca): Fall back to malloc.
59993                 (freea): New macro.
59994                 (setenv): Use freea() to free memory allocated with alloca().
59995
59996         2002-11-13  Bruno Haible  <bruno@clisp.org>
59997
59998                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
59999                 function declarations.
60000                 * unsetenv.c (unsetenv): Likewise.
60001
60002         2002-03-04  Bruno Haible  <bruno@clisp.org>
60003
60004                 Portability to AIX 4.3.3.
60005                 * unsetenv.c: New file, extracted from setenv.c.
60006                 * setenv.c: Move the unsetenv() function to unsetenv.c.
60007
60008         2001-12-20  Bruno Haible  <bruno@clisp.org>
60009
60010                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
60011                 use malloc instead. For SunOS 4.
60012
60013         2001-12-11  Bruno Haible  <bruno@clisp.org>
60014
60015                 * setenv.c: Declare alloca.
60016                 (compar_fn_t): New typedef.
60017                 (KNOWN_VALUE, STORE_VALUE): Use it.
60018
60019         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
60020         setenv.h.
60021
60022 2002-12-10  Paul Eggert  <eggert@twinsun.com>
60023
60024         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
60025         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
60026         Choose values that are less likely to collide with system fnmatch
60027         options.
60028         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
60029         defined (e.g., a pure POSIX system).
60030         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
60031         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
60032
60033 2002-12-06  Paul Eggert  <eggert@twinsun.com>
60034
60035         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
60036         a pain in practice to deal with generated m4 files.  This change
60037         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
60038
60039         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
60040         and jm-glibc-io.m4, as they are no longer a special case.
60041         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
60042         kludge and the auto-generation stuff.  Check only whether the
60043         functions are declared, not whether they exist, since older hosts
60044         that don't declare the functions can't use the optimization anyway.
60045
60046 2002-12-06  Jim Meyering  <jim@meyering.net>
60047
60048         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
60049
60050         Merge in changes from libc's misc/error.c, in preparation
60051         for the merge of gnulib's changes back into libc.
60052
60053         * lib/error.c (_): Define only if not already defined.
60054         Move definition to follow all #include directives.
60055         Include unlocked-io.h only if !_LIBC.
60056         [_LIBC]: Include <libio/libioP.h>.
60057         [USE_IN_LIBIO]: Include <libio/iolibio.h>
60058         (fflush): Tweak definition to use INTUSE.
60059         (putc): Define.
60060
60061 2002-12-05  Paul Eggert  <eggert@twinsun.com>
60062
60063         * lib/alloca.c [defined emacs]: Include "lisp.h".
60064         (xalloc_die) [defined emacs]: New macro.
60065         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
60066         [! defined emacs]: Include <xalloc.h>.
60067         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
60068         (pointer): Typedef to POINTER_TYPE *.
60069         (malloc): Remove decl; we now always use xmalloc.
60070         (alloca): Use old-style definition, since Emacs needs this.
60071         Check for arithmetic overflow when computing combined size.
60072
60073 2002-12-04  Paul Eggert  <eggert@twinsun.com>
60074
60075         Do not generate unlocked-io.h automatically, since it's easier to
60076         maintain it by hand.
60077
60078         * lib/unlocked-io.h: New file, from GNU diffutils,
60079         but with proper copyright notice and attribution.
60080         * lib/gen-uio: Remove.
60081         * lib/Makefile.am: Add copyright notice.
60082         (libfetish_a_SOURCES): Add unlocked-io.h.
60083         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
60084         (DISTCLEANFILES, io_functions): Remove macros.
60085         (EXTRA_DIST): Remove gen_uio.
60086         (unlocked-io.h): Remove rule.
60087
60088 2002-12-04  Jim Meyering  <jim@meyering.net>
60089
60090         Reflect the fact that stat.c and lstat.c are no longer generated.
60091         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
60092         (DISTCLEANFILES): Likewise.
60093         (EXTRA_DIST): Likewise.
60094         (all_local): Don't depend on stat.c or lstat.c.
60095         (stat.c, lstat.c): Remove rules.
60096         (EXTRA_DIST): Remove xstat.in.
60097
60098         * lib/xstat.in: Remove file.  Contents moved into stat.c.
60099         * lib/stat.c: New file.  Contents mostly from xstat.in.
60100         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
60101         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
60102
60103         * lib/safe-read.c: Rework so that it may serve to define safe_write,
60104         too.
60105         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
60106
60107 2002-12-03  Jim Meyering  <jim@meyering.net>
60108
60109         * lib/safe-read.c, safe-write.c: Change variable names and comments,
60110         but not semantics, to minimize the differences between these two files.
60111         (safe_read): Change comment to mention SAFE_READ_ERROR.
60112
60113         * lib/safe-read.c (IS_EINTR): Define.
60114         (safe_read): Use IS_EINTR in place of in-function cpp directives.
60115
60116 2002-12-02  Jim Meyering  <jim@meyering.net>
60117
60118         * lib/safe-read.c (EINTR): Define.
60119         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
60120         (INT_MAX): Provide fallback.
60121         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
60122
60123         * lib/safe-read.h (SAFE_READ_ERROR): Define.
60124
60125 2002-12-02  Bruno Haible  <bruno@clisp.org>
60126
60127         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
60128         Define, taken from safe-read.c.
60129         (INT_MAX): Provide fallback.
60130         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
60131         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
60132
60133         * lib/safe-read.c (EINTR): Remove definition.
60134         (safe_read): Don't use EINTR if it is absent.
60135
60136 2002-12-01  Jim Meyering  <jim@meyering.net>
60137
60138         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
60139         zero.
60140         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
60141
60142 2002-11-27  Paul Eggert  <eggert@twinsun.com>
60143
60144         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
60145         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
60146         with `if (! (value < limit)) abort ();', for readability.
60147
60148 2002-11-26  Karl Berry  <karl@gnu.org>
60149
60150         * lib/strdup.c: copy from libc again, with jim's ok.
60151         * lib/.cppi-disable: re-add strdup.c
60152
60153 2002-11-25  Karl Berry  <karl@gnu.org>
60154
60155         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
60156         instead of "strtol.c".
60157
60158 2002-11-25  Karl Berry  <karl@gnu.org>
60159
60160         * config/install-sh: update from automake for variable quoting, $0 in
60161         error msgs, etc.
60162
60163         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
60164         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
60165         entry.
60166
60167 2002-11-25  Jim Meyering  <jim@meyering.net>
60168
60169         * lib/mktime.c: Sync from libc, now that it has the latest fix.
60170
60171 2002-11-24  Karl Berry  <karl@gnu.org>
60172
60173         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
60174         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
60175
60176 2002-11-24  Jim Meyering  <jim@meyering.net>
60177
60178         Update from coreutils:
60179
60180         * lib/mktime.c: Merge in changes from libc.
60181
60182         Avoid a link-time failure on some Linux systems.
60183         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
60184         (otherwise).
60185         (__mon_yday): Declare with the STATIC attribute.
60186         (__mktime_internal): Likewise.
60187         Based on a report from Greg Schafer.
60188
60189 2002-11-23  Jim Meyering  <jim@meyering.net>
60190
60191         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
60192         Use `unsigned', not `int', as type of index.
60193
60194         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
60195
60196         * lib/fsusage.c: Remove unneeded parentheses around operands of
60197         `defined'.
60198
60199 2002-11-22  Paul Eggert  <eggert@twinsun.com>
60200
60201         * lib/quotearg.h: Allow multiple inclusion by surrounding with
60202         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
60203         so that we can be included first.
60204         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
60205         * lib/quotearg.c: Include quotearg.h immediately after config.h.
60206         No need to include stddef.h or sys/types.h any more.
60207         Surround local include files with "", not "<>".
60208         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
60209         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
60210         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
60211         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
60212         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
60213         (ISPRINT): Remove; no longer needed now that we assume C89.
60214
60215         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
60216         Preserve errno.
60217
60218         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
60219         quotearg_char): Use SIZE_MAX rather than
60220         (size_t) -1 when we are talking about "infinity".
60221
60222         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
60223
60224 2002-11-22  Paul Eggert  <eggert@twinsun.com>
60225
60226         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
60227         hint that one should use `if (! x) abort ();' rather than `assert
60228         (x);', and anyway it's one less thing to worry about configuring.
60229         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
60230         hash_rehash, hash_insert): Use abort rather than assert.
60231
60232 2002-11-22  Bruno Haible  <bruno@clisp.org>
60233
60234         * lib/safe-read.h: Assume C89. Add comments.
60235         (safe_read): Change return type to size_t.
60236         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
60237         byte counts > SSIZE_MAX correctly.
60238         * lib/safe-write.h: New file.
60239         * lib/safe-write.c: New file.
60240         * lib/full-read.h: New file.
60241         * lib/full-read.c: New file.
60242         * lib/full-write.h: Assume C89. Add comments.
60243         * lib/full-write.c: Include safe-write.h.
60244         (full_write): Rewritten to use safe_write.
60245         Suggested by Jim Meyering and Paul Eggert.
60246
60247 2002-11-21  Jim Meyering  <jim@meyering.net>
60248
60249         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
60250
60251         Merge in changes from the coreutils.
60252
60253         2002-09-25  Paul Eggert  <eggert@twinsun.com>
60254         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
60255         <stdint.h>.
60256         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
60257         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
60258         int.  Work more efficiently if X is the same width as uintmax_t.
60259         Do not compare X to -1, to avoid bogus compiler warning.
60260         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
60261         Don't assume that f_frsize and f_bsize are the same type.
60262
60263         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
60264         warning on FreeBSD.
60265
60266         * lib/makepath.c (make_path): Restore umask *before* creating the final
60267         component.
60268         (make_path): Minor reformatting.
60269
60270         * lib/xmalloc.c: Adjust to work with new autoconf macros,
60271         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
60272         HAVE_MALLOC/HAVE_REALLOC.
60273
60274         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
60275         dummy ones.  At least on GNU/Linux systems, `auto' means something
60276         else.
60277         From Michael Stone.
60278
60279 2002-11-21  Bruno Haible  <bruno@clisp.org>
60280
60281         Remove case insensitive option matching.
60282         * lib/argmatch.h (argcasematch): Remove declaration.
60283         (ARGCASEMATCH): Remove macro.
60284         (__xargmatch_internal): Remove case_sensitive argument.
60285         (XARGMATCH): Update.
60286         (XARGCASEMATCH): Remove macro.
60287         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
60288         case_sensitive argument.
60289         (argcasematch): Remove function.
60290         (__xargmatch_internal): Remove case_sensitive argument.
60291         (main): Use XARGMATCH instead of XARGCASEMATCH.
60292
60293         * lib/xmalloc.c: Change compile-time error message. Add comment about
60294         required autoconf version.
60295
60296 2002-11-20  Paul Eggert  <eggert@twinsun.com>
60297
60298         Merge argmatch cleanups from Bison.  Assume C89.
60299
60300         * lib/argmatch.c: Include config.h here, not in argmatch.h.
60301         Include stdlib.h, for EXIT_FAILURE.
60302         Always include <string.h>, since we assume C89.
60303         (EXIT_FAILURE): Remove pre-C89 bug workaround.
60304         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
60305         Include <stddef.h> instead, since it's all we need for size_t.
60306         (PARAMS): Remove.  All uses removed.
60307         (ARRAY_CARDINALITY): Do not bother to #undef.
60308         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
60309         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
60310         Remove unnecessary parentheses.
60311         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
60312         Insert necessary parentheses.
60313         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
60314         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
60315
60316 2002-11-19  Bruno Haible  <bruno@clisp.org>
60317
60318         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
60319         * lib/mbswidth.h: Include <stddef.h>, for size_t.
60320
60321         * lib/mbswidth.h (PARAMS): Remove macro.
60322         (mbswidth, mbsnwidth): Use ANSI C function declarations.
60323         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
60324
60325         * lib/gcd.h (PARAMS): Remove macro.
60326         (gcd): Use ANSI C function declarations.
60327         * lib/gcd.c (gcd): Likewise.
60328
60329 2002-11-15  Bruno Haible  <bruno@clisp.org>
60330
60331         * lib/strcspn.c: Include <stddef.h>.
60332         (strcspn): Use ANSI C function declaration. Change return type to
60333         size_t. Use NULL.
60334         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
60335         (strpbrk): Use NULL.
60336         * lib/strpbrk.h (PARAMS): Remove macro.
60337         (strpbrk): Use ANSI C function declaration.
60338         * lib/strstr.c: Don't include <sys/types.h>.
60339         * lib/strstr.h (PARAMS): Remove macro.
60340         (strstr): Use ANSI C function declarations.
60341
60342 2002-11-14  Karl Berry  <karl@gnu.org>
60343
60344         * config/mkinstalldirs: `do' on separate line, instead of
60345         `for var; do'.
60346
60347 2002-11-06  Bruno Haible  <bruno@clisp.org>
60348
60349         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
60350         * lib/gcd.c (gcd): Likewise.
60351
60352 2002-11-05  Bruno Haible  <bruno@clisp.org>
60353
60354         * lib/gcd.h: New file, from gettext-0.11.5.
60355         * lib/gcd.c: New file, from gettext-0.11.5.
60356
60357 2002-11-05  Bruno Haible  <bruno@clisp.org>
60358
60359         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60360         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60361         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60362         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60363
60364         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
60365         <libintl.h>.
60366         * lib/makepath.c: Include gettext.h instead of <locale.h> and
60367         <libintl.h>.
60368
60369         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
60370         * lib/human.c: Include gettext.h instead of <libintl.h>.
60371         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
60372         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
60373         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
60374         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
60375         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
60376         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
60377         (textdomain): Remove definition.
60378         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
60379
60380         * lib/long-options.c: Remove include of <libintl.h> and definition of
60381         _.
60382         * lib/same.c: Remove include of <libintl.h> and definition of _.
60383
60384 2002-11-04  Owen Taylor  <otaylor@redhat.com>
60385
60386         * lib/config.charset: A few additions for Solaris.
60387
60388 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
60389
60390         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
60391         * lib/localcharset.c (locale_charset): Declare as extern "C".
60392
60393 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
60394
60395         * lib/config.charset: msdos in uk_UA uses CP1125.
60396
60397 2002-11-04  Bruno Haible  <bruno@clisp.org>
60398
60399         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
60400         * lib/strcase.h: New file, from GNU gettext-0.11.5.
60401         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
60402         * lib/strstr.h: New file, from GNU gettext-0.11.5.
60403         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
60404
60405 2002-11-04  Bruno Haible  <bruno@clisp.org>
60406
60407         * lib/localcharset.c (locale_charset): Don't return an empty string.
60408
60409 2002-11-04  Bruno Haible  <bruno@clisp.org>
60410
60411         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
60412         aliases.
60413
60414 2002-11-04  Bruno Haible  <bruno@clisp.org>
60415
60416         * lib/config.charset: Update for newest glibc. Add canonical names
60417         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
60418
60419 2002-11-04  Bruno Haible  <bruno@clisp.org>
60420
60421         * lib/config.charset: Add support for NetBSD.
60422
60423 2002-11-04  Bruno Haible  <bruno@clisp.org>
60424
60425         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
60426
60427 2002-11-01  Bruno Haible  <bruno@clisp.org>
60428
60429         * configure.in: Add AC_CONFIG_AUX_DIR call.
60430         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
60431         test/Makefile.
60432         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
60433
60434 2002-09-28  Karl Berry  <karl@gnu.org>
60435
60436         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
60437         installed automake until the next release, since changes have been
60438         made.
60439
60440 2002-09-25  Karl Berry  <karl@gnu.org>
60441
60442         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
60443         * lib/getopt*: copy from libc/posix.
60444         * lib/gettext.h: copy from gettext.
60445         * lib/.cppi-disable: add strdup.c, gettext.h.
60446
60447 2002-09-25  Karl Berry  <karl@gnu.org>
60448
60449         * config/srclist.txt: enable gettext.h check.
60450         * config/config.{guess,sub}: update from prep.
60451         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
60452                 from automake 1.6.3.
60453         See srclist*.
60454
60455 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
60456
60457         * regex.c (PATFETCH): Remove the translating fetch.
60458         (PATFETCH_RAW): Rename to PATFETCH.
60459         (set_image_of_range): New fun.
60460         (SET_RANGE_TABLE_WORK_AREA): Use it.
60461         (regex_compile): Don't translate the pattern chars so eagerly.
60462         Only do it when inserting an `exactn' bytecode or when handling
60463         a char-range.
60464         (mutually_exclusive_p): Avoid empty statement.
60465
60466 2002-07-06  Jim Meyering  <meyering@lucent.com>
60467
60468         * m4/README: Don't mention Makefile.am.in.
60469         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
60470
60471 2002-07-01  Jim Meyering  <meyering@lucent.com>
60472
60473         * lib/c-stack.c: Include sys/time.h.
60474         From Volker Borchert.
60475
60476 2002-06-26  Paul Eggert  <eggert@twinsun.com>
60477
60478         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
60479
60480 2002-06-26  Paul Eggert  <eggert@twinsun.com>
60481
60482         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
60483         New macro.  Use it uniformly instead of
60484         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
60485         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
60486         reported by Vin Shelton.
60487
60488 2002-06-22  Paul Eggert  <eggert@twinsun.com>
60489
60490         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
60491         Do not assume SA_SIGINFO behavior.
60492         Bug reported by Jim Meyering on NetBSD 1.5.2.
60493
60494 2002-06-22  Jim Meyering  <meyering@lucent.com>
60495
60496         * m4/c-stack.m4: New file, from diffutils-2.8.2.
60497         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
60498
60499         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
60500         now that configure.ac uses AC_GNU_SOURCE.
60501         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
60502         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
60503
60504         Update to latest tools.  Suggestions from Paul Eggert.
60505         * m4/stdbool.m4: New file, from diffutils-2.8.2.
60506         * m4/gnu-source.m4: Update from diffutils-2.8.2.
60507         * m4/fnmatch.m4: Likewise.
60508         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
60509         to AC_HEADER_STDBOOL
60510
60511 2002-06-22  Jim Meyering  <meyering@lucent.com>
60512
60513         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
60514         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
60515
60516 2002-06-22  Jim Meyering  <meyering@lucent.com>
60517
60518         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
60519
60520         * lib/exitfail.c, exitfail.h: Likewise.
60521         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
60522
60523         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
60524         of fnmatch.h.
60525         (EXTRA_DIST): Add fnmatch_loop.c.
60526         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
60527
60528         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
60529         * lib/fnmatch.c: Update from diffutils-2.8.2.
60530         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
60531         * lib/fnmatch.h: Remove file.
60532
60533 2002-06-21  Jim Meyering  <meyering@lucent.com>
60534
60535         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
60536         * m4/mbrtowc.m4: Likewise.
60537
60538         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
60539         * m4/mbswidth.m4: Reflect name change:
60540         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
60541         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
60542
60543         * m4/lib-link.m4: Update from gettext-0.11.2.
60544         * m4/gettext.m4: Likewise.
60545
60546         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
60547         From Alfred M. Szmidt.
60548
60549 2002-06-18  Paul Eggert  <eggert@twinsun.com>
60550
60551         * lib/file-type.h: Report an error if neither S_ISREG nor
60552         S_IFREG is defined, instead of using a test specific to glibc
60553         2.2.  This should be safe, since POSIX requires S_ISREG and
60554         Unix Version 7 had S_IFREG.  We don't need to check for
60555         <sys/types.h> since we don't use any symbols that it defines.
60556
60557 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
60558
60559         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
60560         $@-t, so that each temporary file name is unique and valid in the first
60561         8 characters, for operation under DOS.
60562
60563 2002-06-15  Paul Eggert  <eggert@twinsun.com>
60564
60565         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
60566
60567 2002-06-15  Jim Meyering  <meyering@lucent.com>
60568
60569         Work even with DJGPP 2.03, which lacks support for symlinks.
60570         From Richard Dawe.
60571         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
60572         is defined.
60573         * lib/lchown.c (S_ISLNK): Likewise.
60574
60575 2002-06-15  Jim Meyering  <meyering@lucent.com>
60576
60577         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
60578         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
60579         have been included before this file.
60580
60581 2002-06-14  Jim Meyering  <meyering@lucent.com>
60582
60583         * lib/file-type.h: Use the version from diffutils-2.8.2.
60584         * lib/file-type.c: Likewise.
60585
60586 2002-06-07  Jim Meyering  <meyering@lucent.com>
60587
60588         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
60589         They're needed at least for NetBSD 1.5.2.
60590         ($statxfs_includes): Include those same headers.
60591         ($statxfs_includes): Include sys/vfs.h if available.
60592         ($statxfs_includes): Likewise for sys/statvfs.h.
60593         Check for the following members in both structs statfs and statvfs:
60594         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
60595
60596 2002-06-01  Jim Meyering  <meyering@lucent.com>
60597
60598         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
60599         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
60600
60601 2002-05-28  Jim Meyering  <meyering@lucent.com>
60602
60603         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
60604         Reported by Volker Borchert.
60605
60606 2002-05-27  Jim Meyering  <meyering@lucent.com>
60607
60608         Fix a problem seen only on nonconforming systems whereby ls.c's
60609         use of localtime, and then of gettimeofday would cause trouble:
60610         the localtime call used to initialize rpl_gettimeofday's save
60611         mechanism would clobber ls's current local time information so
60612         that in any long listing the first file would always be listed
60613         with date 1970-01-01.  Analysis by Volker Borchert.
60614
60615         * lib/gettimeofday.c (localtime): Undefine.
60616         (rpl_localtime): New function.
60617
60618 2002-05-27  Jim Meyering  <meyering@lucent.com>
60619
60620         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
60621         localtime.
60622
60623         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
60624         use the replacement function; it wouldn't resolve at link time.
60625         Reported by Volker Borchert.
60626
60627 2002-05-22  Jim Meyering  <meyering@lucent.com>
60628
60629         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
60630         file-type.h.
60631         * lib/file-type.h: New file.
60632         * lib/file-type.c (file_type): New file/function.  Extracted from
60633         diffutils.
60634
60635 2002-04-30  Jim Meyering  <meyering@lucent.com>
60636
60637         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
60638
60639 2002-04-29  Paul Eggert  <eggert@twinsun.com>
60640
60641         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
60642
60643 2002-04-29  Paul Eggert  <eggert@twinsun.com>
60644
60645         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
60646         Do not check for alloca.h (no longer used) or stdbool.h (was never
60647         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
60648
60649 2002-04-29  Paul Eggert  <eggert@twinsun.com>
60650
60651         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
60652
60653 2002-04-29  Jim Meyering  <meyering@lucent.com>
60654
60655         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
60656         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
60657         Use AC_FUNC_STRNLEN here instead.
60658
60659         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
60660         With autoconf-2.53a, it's part of AC_PROG_CC.
60661
60662 2002-04-28  Paul Eggert  <eggert@twinsun.com>
60663
60664         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
60665         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
60666
60667 2002-04-28  Paul Eggert  <eggert@twinsun.com>
60668
60669         * lib/sig2str.h, lib/sig2str.c: New files.
60670         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
60671
60672 2002-04-28  Paul Eggert  <eggert@twinsun.com>
60673
60674         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
60675         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
60676         of 127, since 64 is the largest conceivable number for ancient
60677         nonstandard hosts.
60678         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
60679
60680 2002-04-28  Jim Meyering  <meyering@lucent.com>
60681
60682         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
60683
60684 2002-04-24  Jim Meyering  <meyering@lucent.com>
60685
60686         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
60687         (jm_PREREQ): Use it.
60688
60689         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
60690         mach/mach.h fcntl.h.
60691         Check for this function: setlocale.
60692
60693 2002-04-24  Jim Meyering  <meyering@lucent.com>
60694
60695         * lib/gettext.h: New file, from Gettext.
60696         * lib/Makefile.am (INCLUDES): Remove -I../intl.
60697         (libfetish_a_SOURCES): Add gettext.h.
60698
60699 2002-04-16  Jim Meyering  <meyering@lucent.com>
60700
60701         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
60702         ut_pid, ut_id, ut_exit.
60703
60704 2002-04-16  Jim Meyering  <meyering@lucent.com>
60705
60706         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
60707         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
60708         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
60709
60710 2002-04-12  Jim Meyering  <meyering@lucent.com>
60711
60712         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
60713         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
60714         existence of the getmntinfo function.  Needed for Darwin 5.3.
60715
60716         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
60717         This is necessary at least on Darwin 5.3.
60718
60719         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
60720         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
60721         strnlen.o in the library, and that makes some versions of ranlib
60722         object.
60723
60724 2002-04-12  Jim Meyering  <meyering@lucent.com>
60725
60726         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
60727
60728 2002-04-09  Jim Meyering  <meyering@lucent.com>
60729
60730         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
60731         to be more precise.  Rather than saying we're checking whether the
60732         function `works', say what we're testing.
60733         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
60734         Reported by Bruno Haible.
60735
60736 2002-03-10  Jim Meyering  <meyering@lucent.com>
60737
60738         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
60739         Suggestion from Santiago Vila.
60740
60741 2002-03-08  Jim Meyering  <meyering@lucent.com>
60742
60743         * lib/rename.c: Mention that this wrapper is needed also on
60744         mips-dec-ultrix4.4 systems.
60745
60746 2002-03-02  Jim Meyering  <meyering@lucent.com>
60747
60748         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
60749         not HAVE_CLOCK_SETTIME.
60750
60751 2002-02-27  Paul Eggert  <eggert@twinsun.com>
60752
60753         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
60754         Check for clock_settime.
60755
60756 2002-02-27  Paul Eggert  <eggert@twinsun.com>
60757
60758         * lib/nanosleep.h: Rename to....
60759         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
60760
60761         * lib/gettime.c: New file.
60762         * lib/settime.c: New file.
60763         * lib/stime.c: Remove.
60764
60765         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
60766         timespec.h.  Remove nanosleep.h.
60767
60768 2002-02-25  Paul Eggert  <eggert@twinsun.com>
60769
60770         * m4/acl.m4: New file.
60771         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
60772         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
60773
60774 2002-02-25  Paul Eggert  <eggert@twinsun.com>
60775
60776         * lib/acl.c, lib/acl.h: New files.
60777         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
60778
60779 2002-02-24  Jim Meyering  <meyering@lucent.com>
60780
60781         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
60782         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
60783         cause trouble.  Reported by Nelson Beebe.
60784
60785 2002-02-23  Paul Eggert  <eggert@twinsun.com>
60786
60787         * lib/path-concat.c (xpath_concat): Reorder code to pacify
60788         compilers that don't know that xalloc_die never returns.
60789
60790 2002-02-20  Jim Meyering  <meyering@lucent.com>
60791
60792         * lib/getdate.c: Regenerate using bison-1.33.
60793
60794 2002-02-17  Jim Meyering  <meyering@lucent.com>
60795
60796         * config/config.guess (main): Don't use `head -1'; it's no longer
60797         portable. Use `sed 1q' instead.
60798
60799 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
60800
60801         * m4/codeset.m4: Upgrade to gettext-0.11.
60802         * m4/gettext.m4: Upgrade to gettext-0.11.
60803         * m4/glibc21.m4: Upgrade to gettext-0.11.
60804         * m4/iconv.m4: Upgrade to gettext-0.11.
60805         * m4/isc-posix.m4: Upgrade to gettext-0.11.
60806         * m4/lcmessage.m4: Upgrade to gettext-0.11.
60807         * m4/lib-ld.m4: New file, from gettext-0.11.
60808         * m4/lib-link.m4: New file, from gettext-0.11.
60809         * m4/lib-prefix.m4: New file, from gettext-0.11.
60810         * m4/progtest.m4: Upgrade to gettext-0.11.
60811
60812 2002-02-15  Paul Eggert  <eggert@twinsun.com>
60813
60814         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
60815         (jm_PREREQ): Use it.
60816
60817 2002-02-15  Paul Eggert  <eggert@twinsun.com>
60818
60819         * lib/posixver.c, lib/posixver.h: New files.
60820         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
60821
60822 2002-02-02  Paul Eggert  <eggert@twinsun.com>
60823             Bruno Haible  <bruno@clisp.org>
60824
60825         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
60826         (fwrite_success_callback): New declaration.
60827         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
60828         print_unicode_char. Call failure callback instead of error.
60829         (fwrite_success_callback): New function.
60830         (exit_failure_callback): New function.
60831         (fallback_failure_callback): New function.
60832         (print_unicode_char): Call unicode_to_mb.
60833
60834 2002-01-26  Jim Meyering  <meyering@lucent.com>
60835
60836         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
60837         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
60838
60839 2002-01-26  Jim Meyering  <meyering@lucent.com>
60840
60841         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
60842
60843 2002-01-22  Paul Eggert  <eggert@twinsun.com>
60844
60845         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
60846
60847 2002-01-22  Jim Meyering  <meyering@lucent.com>
60848
60849         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
60850         Otherwise, some versions of automake would omit the rule that makes
60851         Makefile from Makefile.in.
60852
60853 2002-01-21  Paul Eggert  <eggert@twinsun.com>
60854
60855         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
60856         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
60857         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
60858         (memcoll): Set errno to zero if there is no error.
60859
60860         * lib/quotearg.c (quotearg_buffer_restyled):
60861         Fix bug with quoting buffers containing NUL when backslashing escapes.
60862         This bug was exposed by the other changes in this patch.
60863         (quotearg_n_options): New arg ARGSIZE.
60864         All callers changed.
60865         (quoting_options_from_style): New function.
60866         (quotearg_n_style): Use it.
60867         (quotearg_n_style_mem): New function.
60868
60869         * lib/quotearg.h (quotearg_n_style_mem): New function.
60870
60871 2002-01-19  Jim Meyering  <meyering@lucent.com>
60872
60873         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
60874         Remove useless quotes: DF_PROG="df".
60875         * m4/strnlen.m4: New file.
60876
60877 2002-01-16  Paul Eggert  <eggert@twinsun.com>
60878
60879         * lib/backupfile.c (ISDIGIT): Comment fix.
60880         * lib/getdate.y (ISDIGIT): Likewise.
60881         * lib/posixtm.c (ISDIGIT, year): Likewise.
60882         * lib/strverscmp.c (ISDIGIT): Likewise.
60883         * lib/userspec.c (ISDIGIT): Likewise.
60884
60885 2002-01-16  Jim Meyering  <meyering@lucent.com>
60886
60887         * lib/getdate.y: Add three semicolons, each just before a closing
60888         brace. Bison (as of version 1.31) no longer papers over that mistake.
60889
60890 2002-01-05  Jim Meyering  <meyering@lucent.com>
60891
60892         * lib/version-etc.c (version_etc_copyright): Update copyright year.
60893
60894 2001-12-19  Paul Eggert  <eggert@twinsun.com>
60895
60896         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
60897         not silently exit merely because the output buffer happens to
60898         have nothing pending.
60899
60900 2001-12-18  Paul Eggert  <eggert@twinsun.com>
60901
60902         See the big note in ../ChangeLog.
60903         * lib/human.c (suffixes): Prefer K to k for 1024.
60904         (generate_suffix_backwards): New function.
60905         (human_readable_inexact): Use it.
60906         * lib/xstrtol.c (__xstrtol): If there is no number but there
60907         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
60908         Accept 'K' as well as 'k'.
60909
60910 2001-12-15  Jim Meyering  <meyering@lucent.com>
60911
60912         * lib/regex.h (__restrict_arr): Update from libc.
60913
60914         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
60915         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
60916         (STREQ): Define.
60917
60918 2001-12-14  Jim Meyering  <meyering@lucent.com>
60919
60920         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
60921         Suggestion from Bruno Haible.
60922
60923 2001-12-10  Jim Meyering  <meyering@lucent.com>
60924
60925         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
60926         xrealloc, Instead, include "xalloc.h".
60927         (initbuffer): Don't cast xmalloc return value to char*.
60928         (readline): Reword comment.
60929         Don't cast xrealloc return value to char*
60930         Return NULL, not 0.
60931
60932 2001-12-09  Jim Meyering  <meyering@lucent.com>
60933
60934         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
60935         about `signed and unsigned type in conditional expression'.
60936         * lib/posixtm.c (posix_time_parse): Likewise.
60937
60938         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
60939
60940         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
60941         to avoid a pedantic warning.
60942
60943         * lib/getstr.c: Don't include assert.h.
60944         (getstr): Remove warning-evoking assertions.
60945         Return -1 if offset parameter is out of bounds.
60946         Change the type of a local from int to size_t.
60947
60948         * lib/strftime.c (my_strftime_localtime_r): Include this function
60949         definition in the `#if ! HAVE_TM_GMTOFF' block.
60950
60951         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
60952         Include xalloc.h instead.
60953
60954 2001-12-02  Jim Meyering  <meyering@lucent.com>
60955
60956         * lib/tempname.c: Don't declare getenv, thus reverting the change of
60957         2001-11-18.  It's no longer necessary, now that stdlib.h is always
60958         included.
60959
60960         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
60961         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
60962
60963 2001-11-30  Akim Demaille  <akim@epita.fr>
60964
60965         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
60966         before being defined.
60967
60968 2001-11-27  Paul Eggert  <eggert@twinsun.com>
60969
60970         * lib/quotearg.h (quotearg_n, quotearg_n_style):
60971         First arg is int, not unsigned.
60972         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
60973         (SIZE_MAX, UINT_MAX): New macros.
60974         (quotearg_n_options): Abort if N is negative.
60975         Avoid overflow check on hosts where size_t is 64 bits and int
60976         is 32 bits, as overflow is impossible there.
60977         Fix off-by-one typo that caused unnecessary reallocation.
60978
60979 2001-11-27  Jim Meyering  <meyering@lucent.com>
60980
60981         * lib/tempname.c: Merge with version from libc.
60982         * lib/regex.c: Likewise.
60983
60984         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
60985         systems for which STDC_HEADERS is 0, it was not included, resulting in
60986         a warning about an integer-to-pointer conversion problem with getenv.
60987         Reported by Volker Borchert.
60988
60989 2001-11-26  Jim Meyering  <meyering@lucent.com>
60990
60991         * lib/gtod.h: Remove file.
60992         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
60993         * lib/gettimeofday.c: Don't include gtod.h.
60994         (GTOD_init): Remove function.
60995         (rpl_gettimeofday): Do its job here instead, rather than aborting.
60996         Suggestion from Volker Borchert.
60997
60998 2001-11-23  Jim Meyering  <meyering@lucent.com>
60999
61000         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
61001         it.
61002         * lib/hash.c (struct hash_table): Define it here instead.
61003
61004 2001-11-22  Jim Meyering  <meyering@lucent.com>
61005
61006         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
61007
61008 2001-11-20  Jim Meyering  <meyering@lucent.com>
61009
61010         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
61011         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
61012
61013 2001-11-19  Jim Meyering  <meyering@lucent.com>
61014
61015         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
61016         directory.  Use "conftestXXXXXX" as the template.
61017         Suggestion from Paul Eggert.
61018
61019         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
61020         immediately, so the test doesn't mistakenly hit the max-open-files
61021         limit.
61022
61023 2001-11-18  Paul Eggert  <eggert@twinsun.com>
61024
61025         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
61026         (TEMPORARIES): New macro.
61027         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
61028         removes an artificial limitation (e.g. HP-UX 10.20, where
61029         TMP_MAX is 17576).
61030
61031 2001-11-18  Jim Meyering  <meyering@lucent.com>
61032
61033         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
61034
61035 2001-11-18  Jim Meyering  <meyering@lucent.com>
61036
61037         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
61038         on SunOS 4.
61039
61040         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
61041         files will be created before anything else.
61042
61043 2001-11-17  Paul Eggert  <eggert@twinsun.com>
61044
61045         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
61046         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
61047
61048 2001-11-17  Jim Meyering  <meyering@lucent.com>
61049
61050         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
61051         Prompted by a report from Bob Proulx.
61052
61053         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
61054         Instead, require UTILS_FUNC_MKSTEMP.
61055
61056 2001-11-17  Jim Meyering  <meyering@lucent.com>
61057
61058         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
61059         Now, that's done as part of AC_FUNC_STRTOD.
61060
61061 2001-11-17  Jim Meyering  <meyering@lucent.com>
61062
61063         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
61064         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
61065         rather than group writable.  Patch by Juan F. Codagnone.
61066
61067         * lib/readtokens.c: Remove explicit declarations of xmalloc and
61068         xrealloc, Instead, include "xalloc.h".
61069
61070         * lib/mountlist.c: Include unlocked-io.h after all system headers.
61071         Remove explicit declarations of xmalloc, xrealloc,
61072         and xstrdup.  Instead, include "xalloc.h".
61073
61074         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
61075         unlocked-io.h.
61076         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
61077         Likewise.
61078         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
61079
61080         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
61081         Reported by Padraig Brady.
61082
61083         * lib/mkstemp.c: #undef mkstemp.
61084         Include config.h.
61085         (rpl_mkstemp): Rename from mkstemp.
61086         Protoize.
61087
61088 2001-11-16  Jim Meyering  <meyering@lucent.com>
61089
61090         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
61091         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
61092         determine the amount of total physical memory, use pstat_getstatic.
61093         HPUX-11 doesn't define _SC_PHYS_PAGES.
61094         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
61095         If sysconf couldn't be used to determine the amount of available
61096         physical memory, use both pstat_getstatic and pstat_getdynamic.
61097         Based on a patch from Bob Proulx.
61098
61099 2001-11-10  Jim Meyering  <meyering@lucent.com>
61100
61101         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
61102         (jm_PREREQ): Use it.
61103
61104 2001-11-09  Jim Meyering  <meyering@lucent.com>
61105
61106         * m4/jm-macros.m4: Require autoconf-2.52f.
61107         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
61108         Use these AC_-prefixed names, not the AM_-prefixed ones.
61109
61110         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
61111
61112 2001-11-05  Jim Meyering  <meyering@lucent.com>
61113
61114         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
61115
61116 2001-11-04  Jim Meyering  <meyering@lucent.com>
61117
61118         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
61119         $DEFS.
61120
61121 2001-11-03  Jim Meyering  <meyering@lucent.com>
61122
61123         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
61124         of AC_DEFUN.
61125
61126         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
61127         know the name of the variable in the macro definition.
61128
61129 2001-11-03  Jim Meyering  <meyering@lucent.com>
61130
61131         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
61132         in argmatch_to_argument call.
61133
61134         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
61135         argument.
61136
61137         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
61138         e.g., a fault due to an attempt to free a NULL pointer.
61139
61140 2001-11-01  Jim Meyering  <meyering@lucent.com>
61141
61142         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
61143         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
61144
61145 2001-11-01  Jim Meyering  <meyering@lucent.com>
61146
61147         * lib/dirfd.c, lib/dirfd.h: New files.
61148         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
61149
61150         * lib/hash.c (hash_print) [TESTING]: Clean up.
61151
61152 2001-10-22  Paul Eggert  <eggert@twinsun.com>
61153
61154         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
61155         to avoid a warning if -Wall.
61156
61157 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
61158
61159         * README: New file
61160         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
61161         (per RMS's instructions, this is now the canonical source)
61162         * lgpl/, gpl/: New directories.
61163
61164 2001-10-21  Paul Eggert  <eggert@twinsun.com>
61165
61166         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
61167
61168 2001-10-21  Jim Meyering  <meyering@lucent.com>
61169
61170         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
61171         this code would end up calling gettext even in packages built
61172         with --disable-nls.
61173         * lib/getopt.c (_): Likewise.
61174         * lib/regex.c (_): Likewise.
61175
61176 2001-10-20  Paul Eggert  <eggert@twinsun.com>
61177
61178         * m4/error.m4 (jm_PREREQ_ERROR):
61179         Do not invoke AC_CHECK_FUNCS with strerror_r, as
61180         AC_FUNC_STRERROR_R does that.
61181         Check for strerror declaration.
61182
61183         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
61184         are supposed to have them these days.
61185         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
61186         Merge changes from latest Autoconf CVS.
61187         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
61188         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
61189         POSIX decided to standardize on the int flavor of strerror_r.
61190
61191 2001-10-20  Paul Eggert  <eggert@twinsun.com>
61192
61193         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
61194         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
61195         Use strerror_r that is only a macro, even if it is not a function.
61196         (strerror): Check for HAVE_DECL_STRERROR before declaring.
61197         (private_strerror): Use prototypes, not old-style function definition.
61198         (print_errno_message): New function.
61199         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
61200         char*-flavored one.
61201         (error_tail, error, error_at_line): Use it.
61202
61203 2001-10-11  Jim Meyering  <meyering@lucent.com>
61204
61205         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
61206         and quote_n (1, ... to avoid clobbering a buffer.
61207
61208 2001-10-05  Jim Meyering  <meyering@lucent.com>
61209
61210         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
61211         hash-pjw.h.
61212         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
61213         * lib/hash-pjw.h: New file.
61214
61215 2001-09-30  Jim Meyering  <meyering@lucent.com>
61216
61217         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
61218         `struct fsstat' has the `f_fstypename' member.
61219         Use that to define FS_TYPE, which is now used to make
61220         the getfsstat link test tighter.
61221
61222 2001-09-30  Jim Meyering  <meyering@lucent.com>
61223
61224         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
61225         Include <sys/ucred.h>, for Apple Darwin.
61226         Include sys/mount.h and sys/fs_types.h only if available.
61227         (FS_TYPE): Define.
61228         (read_filesystem_list): Use FS_TYPE.
61229
61230 2001-09-29  Paul Eggert  <eggert@twinsun.com>
61231
61232         * lib/exclude.c (excluded_filename): 0 -> false, since it's
61233         a boolean context.
61234
61235 2001-09-29  Jim Meyering  <meyering@lucent.com>
61236
61237         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
61238         [one-argument getmntent function]): Include stdio.h before mntent.h.
61239         SunOS 4.1.x needs it for the declaration of `FILE'.
61240         Patch by Volker Borchert.
61241
61242         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
61243         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
61244         sys/fs_types.h, and make the link-test for getfsstat guard #include
61245         directives with appropriate #if HAVE_*_H tests so that we can
61246         detect getfsstat on Apple Darwin1.3.7 systems.
61247         Reported by Nelson Beebe.
61248         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
61249
61250 2001-09-28  Paul Eggert  <eggert@twinsun.com>
61251
61252         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
61253         #defines strtoimax.  Also treat the other strto* functions
61254         like strtoimax.
61255
61256         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
61257         Check for strtoul and strtoumax,
61258         as those declarations are made even in the signed case.
61259         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
61260         Likewise, for strtol and strtoimax.
61261
61262 2001-09-28  Paul Eggert  <eggert@twinsun.com>
61263
61264         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
61265         #defines strtoimax.  Also treat the other strto* functions
61266         like strtoimax.
61267
61268         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
61269         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
61270         (strtoimax, strtoumax): Do not declare if already defined as a macro.
61271
61272 2001-09-26  Jim Meyering  <meyering@lucent.com>
61273
61274         Most macros in unlocked-io.h had the wrong number of arguments.
61275         * lib/gen-uio: New script.
61276         (USE_UNLOCKED_IO): Define to 1 if not already defined.
61277         * lib/unlocked-io.hin: Remove file.
61278         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
61279         rather than trying to embed it here.
61280         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
61281         Reported by Padraig Brady.
61282
61283 2001-09-25  Volker Borchert  <bt@teknon.de>
61284
61285         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
61286         `result'.
61287
61288 2001-09-24  Jim Meyering  <meyering@lucent.com>
61289
61290         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
61291
61292 2001-09-23  Jim Meyering  <meyering@lucent.com>
61293
61294         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
61295         instead of the mere test for existence of mntent.h.  The latter
61296         would get a false-positive on AIX 3.4 systems.
61297         In the outer getmntent if-block, don't die if neither of the getmntent
61298         tests succeeds.  Instead, just fall through and continue with the
61299         remaining tests.
61300
61301 2001-09-23  Jim Meyering  <meyering@lucent.com>
61302
61303         * lib/mountlist.c: Remove useless parentheses in #if directives.
61304         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
61305         the deprecated MOUNTED symbol is no longer defined in mntent.h.
61306
61307 2001-09-22  Jim Meyering  <meyering@lucent.com>
61308
61309         * m4/gettext.m4: New file.  From gettext.
61310         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
61311         * m4/progtest.m4: Likewise
61312         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
61313         * m4/glibc21.m4: Likewise.
61314
61315         * m4/libintl.m4: Remove.  No longer used.
61316
61317 2001-09-22  Jim Meyering  <meyering@lucent.com>
61318
61319         * lib/localcharset.c: Update from latest gettext.
61320         * lib/config.charset: Likewise.
61321
61322 2001-09-20  Jim Meyering  <meyering@lucent.com>
61323
61324         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
61325         strtoimax.
61326         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
61327         strtoumax.
61328
61329 2001-09-20  Jim Meyering  <meyering@lucent.com>
61330
61331         * lib/xstrtol.c (strtoimax): Guard declaration with
61332         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
61333         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
61334         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
61335         (strtoumax): Likewise, for completeness (it wasn't necessary).
61336
61337 2001-09-17  Paul Eggert  <eggert@twinsun.com>
61338
61339         * lib/strtoimax.c (HAVE_LONG_LONG):
61340         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
61341         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
61342         to work around bug in IBM C compiler.
61343
61344 2001-09-17  Jim Meyering  <meyering@lucent.com>
61345
61346         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
61347         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
61348         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
61349         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
61350         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
61351         whenever the right hand side need not be expanded by the shell.
61352
61353 2001-09-16  Paul Eggert  <eggert@twinsun.com>
61354
61355         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
61356         library.  It's not correct, as some older glibcs are buggy.
61357         fnmatch wasn't fixed until glibc 2.2.
61358
61359         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
61360         special shell magic here.
61361
61362 2001-09-16  Jim Meyering  <meyering@lucent.com>
61363
61364         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
61365         * m4/jm-macros.m4: Require it.
61366
61367 2001-09-16  Jim Meyering  <meyering@lucent.com>
61368
61369         * lib/mkdir.c: New file.
61370
61371 2001-09-15  Jim Meyering  <meyering@lucent.com>
61372
61373         * m4/jm-macros.m4: Check for help2man.
61374
61375 2001-09-11  Jim Meyering  <meyering@lucent.com>
61376
61377         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
61378         The body, by Paul Eggert, was moved here from configure.in.
61379         * m4/jm-macros.m4: Require UTILS_HOST_OS.
61380
61381 2001-09-04  Paul Eggert  <eggert@twinsun.com>
61382
61383         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
61384         (jm_PREREQ): Use it.
61385
61386 2001-09-04  Paul Eggert  <eggert@twinsun.com>
61387
61388         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
61389         Use ssize_t, not int, to store result of readlink.
61390         Check for ssize_t overflow as well as size_t overflow,
61391         as POSIX says the result of readlink is implementation-defined
61392         when ssize_t overflows.
61393         Remove unnecessary cast to char*.
61394         Use free+malloc instead of realloc, as the storage doesn't need
61395         to be preserved and it's clearer and can be more efficient that way.
61396         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
61397         * lib/xreadlink.h (xreadlink): Update prototype.
61398
61399 2001-09-04  Paul Eggert  <eggert@twinsun.com>
61400
61401         * lib/xgetcwd.c: Revert some of the previous change; intead,
61402         fix the HAVE_GETCWD_NULL code to behave more like the
61403         !HAVE_GETCWD_NULL code used to.
61404
61405         Include "xalloc.h".
61406         (xgetcwd): Do not return NULL when memory is exhausted; instead,
61407         invoke xalloc_die.
61408
61409 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61410
61411         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
61412         sys/param.h, as pathmax.h includes them.
61413
61414 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61415
61416         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
61417         (jm_PREREQ_XGETCWD): New macro.
61418
61419         * m4/getcwd.m4: New file.
61420
61421 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61422
61423         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
61424         like the HAVE_GETCWD_NULL code.
61425         Include pathmax.h if not HAVE_GETCWD.
61426         Do not include xalloc.h.
61427         (INITIAL_BUFFER_SIZE): New symbol.
61428         Do not use xmalloc / xrealloc, since the caller is responsible for
61429         handling errors.  Preserve errno around `free' during failure.
61430         Do not overrun buffer when using getwd.
61431
61432 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61433
61434         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
61435         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
61436         getcwd (NULL, 0).
61437
61438 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61439
61440         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
61441         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
61442         spotted by Jim Meyering.
61443
61444 2001-09-03  Jim Meyering  <meyering@lucent.com>
61445
61446         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
61447         failure.
61448
61449 2001-09-02  Jim Meyering  <meyering@lucent.com>
61450
61451         * lib/error.c: Update from GNU libc.
61452
61453 2001-09-01  Jim Meyering  <meyering@lucent.com>
61454
61455         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
61456         Used by df.
61457
61458 2001-09-01  Jim Meyering  <meyering@lucent.com>
61459
61460         * lib/xreadlink.c: New file.
61461         * lib/xreadlink.h: New file.
61462         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
61463         xreadlink.h.
61464
61465         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
61466         doesn't conflict with sparc Solaris 7's definition in
61467         /usr/include/sys/int_types.h.
61468
61469         * lib/exclude.c: Use `""', not `<>' to #include non-system header
61470         files.
61471         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
61472         and strncasecmp as r-values.  Unixware didn't have declarations.
61473
61474 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61475
61476         * lib/xstrtol.h: Add copyright notice.
61477         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
61478         LONGINT_INVALID_SUFFIX_CHAR.
61479
61480 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61481
61482         * lib/xstrtol.c (strtoimax): New decl.
61483
61484 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61485
61486         * lib/xgetcwd.c: Don't include pathmax.h.
61487         Include stdlib.h and unistd.h if available.
61488         Include xalloc.h.
61489         (xmalloc, xstrdup, free): Remove decls.
61490         (xgetcwd): Don't assume sizes fit in unsigned.
61491         Check for overflow when computing sizes.
61492         Simplify reallocation code.
61493
61494 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61495
61496         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
61497         a directory's st_size can have an arbitrary value, so the old
61498         usage could waste an arbitrary amount of memory.  All uses
61499         changed.
61500         * lib/savedir.h: Update prototype.
61501
61502 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61503
61504         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
61505
61506         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
61507         old strtoimax.c.
61508
61509         Also, make the following further changes to make this file's
61510         configuration more similar to that of strtol.c:
61511         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
61512         (strtoumax, uintmax_t, strtoull, strtol): Remove.
61513         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
61514         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
61515         changed to signed values.
61516
61517         And make the following changes as well:
61518         Fix copyright notice, as 1999 was missing.
61519         (verify): New macro.
61520         (strtoimax): Check sizes at compile-time, not run-time.
61521         Prefer strtol to strtoll if both work.
61522         (main): Remove; it was not that useful and was a pain to maintain.
61523
61524         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
61525
61526 2001-08-31  Jim Meyering  <meyering@lucent.com>
61527
61528         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
61529         Use an initial, malloc'd, buffer of length 128 rather than
61530         a statically allocated one of length 1024.
61531
61532 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61533
61534         Simplify code, partly by assuming autoconf 2.52 semantics.
61535
61536         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
61537
61538         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
61539         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
61540         All uses removed.
61541         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
61542         Move AC_REQUIRE to next-to-top level, to avoid confusion.
61543         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
61544         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
61545         jm_AC_HEADER_INTTYPES_H.
61546         * m4/jm-macros.m4 (jm_MACROS): Likewise.
61547
61548         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
61549
61550         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
61551         Quote first arg of AC_DEFUN.
61552         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
61553         since they are needed to parse the include file even if we need
61554         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
61555         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
61556         but with opposite signedness.
61557
61558 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61559
61560         Merge 'exclude' changes from tar 1.13.22.
61561         This fixes one or two unlikely storage allocation overflow bugs,
61562         but doesn't change user-visible behavior otherwise.
61563
61564 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61565
61566         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
61567         (jm_PREREQ_EXCLUDE): New macro.
61568
61569 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61570
61571         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
61572         tm to be declared.
61573
61574 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61575
61576         * lib/hash.c: Remove '2001' from copyright notice.
61577
61578 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61579
61580         * lib/full-write.h: New file.
61581         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
61582         * lib/full-write.c: Correct credits, as cccp.c no longer
61583         exists and anyway it was so heavily changed from the old cccp
61584         code as to be unrecognizable.  Include full-write.h.
61585         (full_write) Return size_t, with short writes meaning failure.
61586         All callers changed.  This fixes a bug with large buffers
61587         on 64-bit hosts.
61588         * lib/utime.c: Include full-write.h.
61589
61590 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61591
61592         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
61593         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
61594         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
61595         Include if available.
61596         (<xalloc.h>): Include
61597         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
61598         (verify): New macro.  Use it to verify that EXCLUDE macros do not
61599         collide with FNM macros.
61600         (struct patopts): New struct.
61601         (struct exclude): Use it, as exclude patterns now come with options.
61602         (new_exclude): Support above changes.
61603         (new_exclude, add_exclude_file):
61604         Initial size must now be a power of two to simplify overflow checking.
61605         (free_exclude, fnmatch_no_wildcards): New function.
61606         (excluded_filename): No longer requires options arg, as the options
61607         are determined by add_exclude.  Now returns bool, not int.
61608         (excluded_filename, add_exclude):
61609         Add support for the fancy new exclusion options.
61610         (add_exclude, add_exclude_file): Now takes int options arg.
61611         Check for arithmetic overflow when computing sizes.
61612         (add_exclude_file): xrealloc might modify errno, so don't
61613         realloc until after errno might be used.
61614
61615         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
61616         New macros.
61617         (free_exclude): New decl.
61618         (add_exclude, add_exclude_file): Now takes int options arg.
61619         (excluded_filename): No longer requires options arg, as the options
61620         are determined by add_exclude.  Now returns bool, not int.
61621
61622 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61623
61624         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
61625
61626 2001-08-27  Jim Meyering  <meyering@lucent.com>
61627
61628         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
61629
61630         * lib/version-etc.c (N_): Remove definition.
61631         Revert most of last change.
61632         Instead, simply don't mark the `Copyright...' string for translation.
61633         Based on advice from Paul Eggert.
61634
61635         * lib/strtoxmax.c: Tweak comment.
61636
61637 2001-08-26  Jim Meyering  <meyering@lucent.com>
61638
61639         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
61640
61641         * m4/xstrtoimax.m4: New file.
61642         * m4/xstrtoumax.m4: Add comments explaining why we
61643         AC_REPLACE_FUNCS(strtol).
61644
61645 2001-08-26  Jim Meyering  <meyering@lucent.com>
61646
61647         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
61648         of copyright with `%s' so translators don't get an untranslated
61649         message in 2002.
61650         (COPYRIGHT_YEAR): Define.
61651         (version_etc): Use fprintf rather than fputs.
61652         Suggestion from Ulrich Drepper.
61653
61654         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
61655
61656         * lib/strtoll.c: New file, from GNU libc.
61657         * lib/xstrtoimax.c: New file.
61658
61659         * lib/xstrtol.h: Add xstrtoimax.
61660         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
61661         * lib/strtoimax.c: New file.  Likewise, but first define
61662         STRTOUXMAX_SIGNED.
61663
61664         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
61665         ...
61666         * lib/strtoxmax.c: ... then renamed to this.
61667
61668 2001-08-18  Paul Eggert  <eggert@twinsun.com>
61669
61670         * m4/inttypes.m4: Add AC_PREREQ(2.13).
61671         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
61672         (jm_AC_TYPE_INTMAX_T): New macro.
61673         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
61674
61675         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
61676
61677         * m4/longlong.m4: Renamed from ulonglong.m4.
61678         * m4/inttypes.m4: Renamed from inttypes_h.m4.
61679         * m4/uintmax_t.m4: Removed.
61680
61681 2001-08-13  Paul Eggert  <eggert@twinsun.com>
61682
61683         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
61684         Port to Solaris 8, where 'sed' requires a space after the 'r'
61685         command, and where sh dislikes "$/".  Clean up the spacing a bit.
61686         Redirect output to $tmp just once.
61687
61688 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
61689
61690         * lib/addext.c (<errno.h>): Include.
61691         (errno): Declare if not defined.
61692         (addext): Work correctly when pathconf returns -1 and leaves
61693         errno alone because there is no limit.  Also, work even if
61694         pathconf returns a value greater than SIZE_MAX.
61695
61696 2001-08-12  Jim Meyering  <meyering@lucent.com>
61697
61698         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
61699         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
61700         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
61701         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
61702         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
61703         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
61704         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
61705         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
61706         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
61707         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
61708         utime.m4, utimes.m4, xstrtoumax.m4:
61709         Quote the first argument in each use of AC_DEFUN.
61710
61711 2001-08-12  Jim Meyering  <meyering@lucent.com>
61712
61713         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
61714         Simply `return getcwd (NULL, 0);'.
61715         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
61716         Use 1300 as initial value for length, not PATH_MAX.
61717
61718         * lib/pathmax.h: Clean up cpp syntax.
61719
61720 2001-08-12  Jim Meyering  <meyering@lucent.com>
61721
61722         * lib/gettimeofday.c: New file.
61723         * lib/gtod.h: New file.
61724         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
61725
61726 2001-08-05  Jim Meyering  <meyering@lucent.com>
61727
61728         * m4/jm-macros.m4: Require autoconf-2.52.
61729
61730 2001-08-04  Jim Meyering  <meyering@lucent.com>
61731
61732         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
61733         stmt, to get in sync with glibc.
61734
61735 2001-08-03  Paul Eggert  <eggert@twinsun.com>
61736
61737         The following changes are from gettext 0.10.39 as maintained by
61738         Bruno Haible.
61739
61740         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
61741         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
61742         with inverted sense.  All uses changed.
61743
61744         * lib/mbswidth.c: Don't include <limits.h>.
61745         Include <stdlib.h> and <string.h> unconditionally.
61746         (iswcntrl, mbsinit, ISCNTRL): New macros.
61747         (mbsnwidth): Use K&R style function declarations.
61748         Don't bother checking for MB_LEN_MAX == 1, since the compiler
61749         can optimize it when MB_CUR_MAX == 1.
61750         The width of control characters is zero, not 1.
61751
61752 2001-08-03  Paul Eggert  <eggert@twinsun.com>
61753
61754         The following changes are from gettext 0.10.39 as maintained by
61755         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
61756
61757         * m4/codeset.m4: Upgrade to serial AM1.
61758         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
61759         all uses changed.  Quote first arg of AC_DEFUN.
61760         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
61761
61762         * m4/iconv.m4: Upgrade to serial AM2.
61763         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
61764         Add --with-libconv-prefix.
61765         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
61766         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
61767         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
61768         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
61769         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
61770
61771         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
61772         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
61773         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
61774         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
61775         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
61776         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
61777         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
61778         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
61779         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
61780
61781         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
61782         string.h any more.
61783
61784         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
61785         not the default value.
61786
61787         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
61788         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
61789         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
61790         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
61791         Also check for iswcntrl, used for wcwidth fallback.
61792         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
61793         to Autoconf 2.13.
61794
61795 2001-08-03  Jim Meyering  <meyering@lucent.com>
61796
61797         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
61798         as it was in the original.  Reported by Paul Eggert.
61799
61800 2001-07-16  Jim Meyering  <meyering@lucent.com>
61801
61802         * m4/gettimeofday.m4: New file.
61803         Prompted by a report from Bernhard Baehr.
61804
61805 2001-07-15  Jim Meyering  <meyering@lucent.com>
61806
61807         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
61808         stuff. Now it's in ../Makefile.cfg.
61809
61810 2001-07-15  Jim Meyering  <meyering@lucent.com>
61811
61812         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
61813         (BUILT_SOURCES): Add unlocked-io.h.
61814         (io_functions): Define.
61815         (unlocked-io.h): New rule.
61816         (DISTCLEANFILES): Add unlocked-io.h.
61817         (all-local): Depend on unlocked-io.h, to ensure it is created.
61818
61819         * lib/unlocked-io.hin: New file
61820
61821         * lib/regex.c: Update from glibc.
61822
61823 2001-07-05  Jim Meyering  <meyering@lucent.com>
61824
61825         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
61826         recommendation.
61827         (libfetish_a_SOURCES): Put all .h files here instead.
61828         Remove a thus-exposed (better checks in automake) duplicate and
61829         two unnecessary .h files.
61830
61831 2001-07-04  Jim Meyering  <meyering@lucent.com>
61832
61833         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
61834         that generates jm-glibc-io.m4 so that it doesn't trigger any make
61835         distcheck failure.
61836
61837 2001-07-02  Jim Meyering  <meyering@lucent.com>
61838
61839         The following changes were prompted by suggestions from Bruno Haible.
61840
61841         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
61842         is now generated.
61843         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
61844         definition of EXTRA_DIST.
61845         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
61846         ensure that the generated file is created/updated whenever the list
61847         of $(unlocked_functions) is changed.
61848         (jm-glibc-io.m4): New rule.
61849         (unlocked-io.h): New rule -- currently unused.
61850
61851 2001-06-24  Jim Meyering  <meyering@lucent.com>
61852
61853         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
61854         unmatched right bracket, rather than kludging it with an extra,
61855         falsely-matching quote in a comment.  Patch by Akim Demaille.
61856
61857 2001-06-11  Jim Meyering  <meyering@lucent.com>
61858
61859         * lib/regex.c: Update from GNU libc.
61860
61861 2001-05-27  Jim Meyering  <meyering@lucent.com>
61862
61863         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
61864         Check for ut_type in struct utmp.
61865
61866 2001-05-27  Jim Meyering  <meyering@lucent.com>
61867
61868         * lib/readutmp.h (UT_TYPE): Define.
61869
61870 2001-05-24  Jim Meyering  <meyering@lucent.com>
61871
61872         * lib/argmatch.c: Include "quote.h".
61873         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
61874         quote function.  Reported by Göran Uddeborg.
61875
61876 2001-05-22  Jim Meyering  <meyering@lucent.com>
61877
61878         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
61879         now that we use the package-supplied version unconditionally.
61880         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
61881
61882 2001-05-21  Jim Meyering  <meyering@lucent.com>
61883
61884         * m4/regex.m4: Change a couple backticks to single quotes to avoid
61885         shell syntax errors.
61886
61887 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
61888
61889         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
61890
61891 2001-05-20  Paul Eggert  <eggert@twinsun.com>
61892
61893         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
61894         Don't bother to check library strftime, since
61895         we'll be using our own my_strftime function anyway.
61896         Define my_strftime instead of strftime.
61897
61898 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
61899
61900         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
61901         which is not yet declared.
61902
61903 2001-05-15  Jim Meyering  <meyering@lucent.com>
61904
61905         * m4/regex.m4: Use proper quoting so brackets appear in the test
61906         program.
61907         Reported by, and with help from, Bruno Haible.
61908
61909 2001-05-13  Jim Meyering  <meyering@lucent.com>
61910
61911         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
61912         undefined.
61913
61914 2001-05-11  Paul Eggert  <eggert@twinsun.com>
61915
61916         dirname code cleanup.  base_name now behaves more compatibly
61917         with POSIX basename when given file names that have trailing
61918         slashes, and similarly for dir_name.  Add new primitives
61919         base_len and dir_len.  Put the directory-name-related decls
61920         into dirname.h.
61921
61922         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
61923         * lib/backupfile.c (base_name): Likewise.
61924         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
61925         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
61926         * lib/makepath.c (strip_trailing_slashes): Likewise.
61927         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
61928         ISSLASH): Likewise.
61929         * lib/rename.c (strip_trailing_slashes): Likewise.
61930         * lib/same.c (base_name): Likewise.
61931         * lib/stripslash.c (ISSLASH): Likewise.
61932
61933         * lib/addext.c: Include <dirname.h> after size_t is defined.
61934         * lib/backupfile.c: Likewise.
61935
61936         * lib/addext.c (addext): Use base_len to trim redundant
61937         trailing slashes instead of doing it ourselves.
61938         But do not trim the last slash if it is not redundant.
61939
61940         * lib/backupfile.c (find_backup_file_name,
61941         max_backup_version): Use base_len instead of rolling it ourselves.
61942         Handle the case of "" and (on DOS) "C:" correctly.
61943
61944         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
61945         needed. Include <string.h>, <dirname.h>.
61946         (base_name): Allow file names ending in slashes, other than names
61947         that are all slashes.  In this case, return the basename followed
61948         by the slashes.  This is more general, and can be used in places
61949         where the original base_name purposely had an assertion failure.
61950         (base_len): New function.
61951
61952         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
61953         Do not include <assert.h>; no longer needed.
61954         Include xalloc.h.
61955         (memrchr): Remove decl.
61956         (dir_name_r): Remove.
61957         (dir_len): Renamed from dirlen.  All callers changed.
61958         Rewrite in terms of base_name, for simplicity and consistency.
61959         (dir_name): Never return NULL.  All callers changed.
61960         Do not include <stdlib.h> in test program; no longer needed.
61961         return 0; is fine for test program.
61962
61963         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
61964         New macros.
61965         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
61966
61967         * lib/path-concat.c (path_concat): Use base_len to compute
61968         base length, not strlen; this means we cannot rely on memcpy
61969         to null-terminate.
61970
61971         * lib/same.c (STREQ): Remove.
61972         (same_name): Handle the case where the basename ends in trailing '/'.
61973
61974         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
61975         a slash was stripped.  Do not strip the last slash after a
61976         file system prefix.
61977
61978 2001-05-11  Paul Eggert  <eggert@twinsun.com>
61979
61980         * lib/Makefile.am (libfetish_a_SOURCES):
61981         Add strftime.c, since we now compile it on all hosts.
61982
61983         * lib/strftime.c (my_strftime):
61984         Define to nstrftime if emacs, but only if my_strftime is not defined.
61985         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
61986         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
61987         Add one more extra argument: a nanoseconds value.
61988         All uses changed.
61989         (ns): New macro.
61990         (my_strftime function): Add %N format.
61991         (emacs_strftimeu): Renamed from emacs_strftime,
61992         with extra ut argument.
61993
61994 2001-05-09  Paul Eggert  <eggert@twinsun.com>
61995
61996         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
61997
61998 2001-04-21  Jim Meyering  <meyering@lucent.com>
61999
62000         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
62001         doesn't interfere.
62002
62003 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
62004
62005         * m4/ftruncate.m4: Check for chsize.
62006         Link with ftruncate.o unconditionally if ftruncate is missing.
62007         This was required when cross-compiling to i586-mingw32msvc.
62008
62009 2001-04-08  Jim Meyering  <meyering@lucent.com>
62010
62011         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
62012         recomputed; that's necessary when the offset spans a DST transition.
62013         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
62014
62015 2001-04-02  Jim Meyering  <meyering@lucent.com>
62016
62017         * lib/regex.h, regex.c: Update from GNU libc.
62018
62019 2001-03-24  Jim Meyering  <meyering@lucent.com>
62020
62021         * m4/jm-macros.m4: Require autoconf-2.49d.
62022
62023 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
62024
62025         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
62026
62027 2001-03-19  Paul Eggert  <eggert@twinsun.com>
62028
62029         * lib/version-etc.c (version_etc_copyright): Update to 2001.
62030
62031 2001-03-17  Jim Meyering  <meyering@lucent.com>
62032
62033         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
62034         now that the version in autoconf is equivalent.
62035         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
62036
62037         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
62038         Suggestion from Akim Demaille.
62039
62040         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
62041         (jm_PREREQ_TEMPNAME): New function.
62042
62043 2001-03-16  Paul Eggert  <eggert@twinsun.com>
62044
62045         * lib/tempname.c (uint64_t): Define to uintmax_t if
62046         not defined, and if UINT64_MAX is not defined.
62047         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
62048         Reported by John David Anglin.
62049
62050 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
62051
62052         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
62053         resolve alias if codeset is empty.
62054         * lib/config.charset (BeOS): Use wildcard syntax.
62055
62056 2001-03-13  Jim Meyering  <meyering@lucent.com>
62057
62058         * lib/path-concat.c (path_concat)
62059         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
62060         concatenating e.g., `C:' and `foo'.
62061         From Bruno Haible.
62062
62063 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
62064
62065         * lib/localcharset.c (locale_charset): Don't use
62066         setlocale(LC_CTYPE,NULL). Don't return NULL.
62067         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
62068
62069 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
62070
62071         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
62072         support for DOS/DJGPP.
62073
62074 2001-03-01  Paul Eggert  <eggert@twinsun.com>
62075
62076         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
62077         lacks mkstemp.  Compile our own tempname.c if we compile our own
62078         mkstemp.c, as mkstemp relies on tempname.
62079
62080 2001-03-01  Jim Meyering  <meyering@lucent.com>
62081
62082         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
62083         AH_VERBATIM really does output its argument verbatim.
62084
62085 2001-02-28  Paul Eggert  <eggert@twinsun.com>
62086
62087         * lib/Makefile.am (libfetish_a_SOURCES):
62088         Add dup-safer.c, fopen-safer.c.
62089         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
62090
62091         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
62092         * lib/unistd-safer.h: New files.
62093
62094 2001-02-25  Paul Eggert  <eggert@twinsun.com>
62095
62096         The mkstemp replacement is taken from glibc 2.2.2, with some
62097         portability fixes for use outside glibc, as follows:
62098
62099         * lib/tempname.c (struct_stat64): New macro.
62100         (direxists, __gen_tempname): Use it.
62101         This avoids a portability problem with Solaris 8.
62102
62103         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
62104         (<stddef.h>, <stdint.h>, <string.h>):
62105         Include only if STDC_HEADERS || _LIBC.
62106         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
62107         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
62108         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
62109         (__set_errno): Define this macro if <errno.h> doesn't.
62110         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
62111         Define these macros if <stdio.h> doesn't.
62112         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
62113         Define these macros if <sys/stat.h>
62114         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
62115         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
62116         __xstat64): Define if not _LIBC.
62117         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
62118         (__gen_tempname): Invoke gettimeofday only if
62119         HAVE_GETTIMEOFDAY || _LIBC;
62120         otherwise, fall back on plain "time".
62121         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
62122
62123         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
62124
62125         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
62126
62127 2001-02-18  Paul Eggert  <eggert@twinsun.com>
62128
62129         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
62130
62131 2001-02-17  Paul Eggert  <eggert@twinsun.com>
62132
62133         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
62134         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
62135         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
62136         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
62137
62138 2001-02-17  Paul Eggert  <eggert@twinsun.com>
62139
62140         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
62141         Remove workaround macros for hosts that have mbrtowc but not
62142         mbstate_t, as we now insist on proper declarations for both
62143         before using mbrtowc.
62144
62145 2001-02-17  Jim Meyering  <meyering@lucent.com>
62146
62147         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
62148         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
62149         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
62150         UnixWare 7.1.1.
62151
62152         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
62153         rather than AC_CACHE_VAL.
62154
62155 2001-02-17  Jim Meyering  <meyering@lucent.com>
62156
62157         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
62158         around included file name.
62159
62160         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
62161
62162         * lib/strftime.c: Update from GNU libc (the only changes were to
62163         comments).
62164
62165 2001-02-17  Jim Meyering  <meyering@lucent.com>
62166
62167         * lib/regex.c: Update from libc.
62168
62169 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
62170
62171         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
62172         clash.
62173
62174 2001-02-16  Paul Eggert  <eggert@twinsun.com>
62175
62176         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
62177         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
62178         Reported by Mark Hounschell via Paul Eggert.
62179
62180 2001-02-07  Jim Meyering  <meyering@lucent.com>
62181
62182         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
62183
62184 2001-02-05  Jim Meyering  <meyering@lucent.com>
62185
62186         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
62187         it includes the patch required for `large file' support with at least
62188         HP-UX's 10.20 /bin/cc.
62189
62190 2001-02-03  Jim Meyering  <meyering@lucent.com>
62191
62192         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
62193         AS_IF, now that it works once again (mysteriously).
62194         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
62195
62196 2001-01-30  Jim Meyering  <meyering@lucent.com>
62197
62198         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
62199         * m4/chown.m4: Rename conftestchown to conftest.chown.
62200         * m4/rename.m4: s/conftestdir/conftest.d1/ and
62201         s/conftestdir2/conftest.d2/.
62202         * m4/utimes.m4: s/conftestdata/conftest.data/
62203         Inspired by Pavel Roskin's change in autoconf.
62204
62205 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
62206
62207         * lib/config.charset: Update for FreeBSD 4.2.
62208
62209 2001-01-27  Jim Meyering  <meyering@lucent.com>
62210
62211         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
62212         a use of AS_IF.
62213         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
62214
62215 2001-01-26  Jim Meyering  <meyering@lucent.com>
62216
62217         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
62218         quotearg.c includes it.
62219
62220 2001-01-26  Jim Meyering  <meyering@lucent.com>
62221
62222         * lib/quotearg.c: Include stddef.h.
62223         * lib/quote.c: Include stddef.h.
62224         Reported by Axel Kittenberger.
62225
62226         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
62227         line in double quotes so that it evokes a better diagnostic.
62228         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
62229         Reported by Axel Kittenberger.
62230
62231 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
62232
62233         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
62234         as if it was a `charset'.
62235
62236 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
62237
62238         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
62239         has const.
62240
62241 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
62242
62243         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
62244         to avoid a warning.  Add back 'const' to inptr.
62245
62246 2001-01-20  Jim Meyering  <meyering@lucent.com>
62247
62248         Be sure that headers are checked before used in code compiled
62249         for the type checks.
62250         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
62251         In place of that, invoke jm_CHECK_ALL_TYPES.
62252         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
62253         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
62254         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
62255         The check for ssize_t was mistakenly run before the test for unistd.h.
62256
62257         The configure-time check for stdbool.h was missing.
62258         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
62259         (jm_PREREQ_HASH): New function.
62260
62261 2001-01-17  Jim Meyering  <meyering@lucent.com>
62262
62263         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
62264         for autoconf-2.49c.
62265         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
62266
62267 2001-01-16  Jim Meyering  <meyering@lucent.com>
62268
62269         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
62270         From Bruno Haible.
62271
62272 2001-01-14  Jim Meyering  <meyering@lucent.com>
62273
62274         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
62275         foo and bar.  Create conftestdir/ in the script, not in the C code.
62276         Remove directories in the script, not in the C code.
62277         Remove conftestdir{,2} before trying to create the directory.
62278         Make the entire configure script fail if the mkdir fails.
62279
62280 2001-01-14  Jim Meyering  <meyering@lucent.com>
62281
62282         * lib/rename.c: New file.  From Volker Borchert.
62283         Include stdlib.h, string.h or strings.h, and xalloc.h.
62284         Use strip_trailing_slashes rather than open-coding it.
62285
62286 2001-01-03  Paul Eggert  <eggert@twinsun.com>
62287
62288         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
62289
62290 2001-01-03  Jim Meyering  <meyering@lucent.com>
62291
62292         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
62293         of local `inptr' to avoid warning with some system declarations of
62294         iconv.
62295
62296 2001-01-02  Volker Borchert  <bt@teknon.de>
62297
62298         * m4/rename.m4: New file.
62299         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
62300
62301 2001-01-01  Jim Meyering  <meyering@lucent.com>
62302
62303         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
62304         even on systems with utmpx.h.  It's necessary for the declaration of
62305         utmp's ut_user member.  Reported by Andreas Jaeger.
62306
62307         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
62308         available. They are required for the declarations of getgrgid and
62309         getpwuid resp.
62310         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
62311         Reported by Andreas Jaeger.
62312
62313 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
62314
62315         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
62316         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
62317         so `make install' also works in VPATH builds.
62318
62319 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
62320
62321         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
62322         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
62323         can be used in subdirectories.
62324
62325 2000-12-29  Paul Eggert  <eggert@twinsun.com>
62326
62327         * lib/modechange.c: Do not assume that mode_t uses the
62328         traditional octal encoding.  E.g. "chmod 1 FOO" should set
62329         the other-execute bit of FOO even if S_IXOTH != 1.
62330
62331         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
62332         WOTH, XOTH, ALLM): New macros.
62333         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
62334          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
62335         Use them.
62336         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
62337         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
62338         (mode_compile):
62339         No need to use uintmax_t; unsigned long is long enough.
62340         Don't bother to get suffix since we don't use it.
62341
62342 2000-12-26  Jim Meyering  <meyering@lucent.com>
62343
62344         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
62345         better with autoheader.
62346
62347 2000-12-24  Jim Meyering  <meyering@lucent.com>
62348
62349         * lib/hash.c (is_prime): Return explicit boolean values.
62350         (hash_get_first): Return NULL to appease Irix5.6's 89.
62351         Reported by Nelson Beebe.
62352
62353 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
62354
62355         * lib/localcharset.c (locale_charset): Add support for Win32.
62356
62357 2000-12-18  Paul Eggert  <eggert@twinsun.com>
62358
62359         * lib/physmem.h, lib/physmem.c: New files.
62360
62361         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
62362         (noinst_HEADERS): Add physmem.h.
62363
62364         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
62365         't' for compatibility with Solaris 8 sort.
62366
62367 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
62368
62369         * lib/config.charset: Add support for BeOS.
62370
62371 2000-12-17  Jim Meyering  <meyering@lucent.com>
62372
62373         * m4/dos.m4 (jm_AC_DOS): New file and macro.
62374         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
62375
62376 2000-12-16  Jim Meyering  <meyering@lucent.com>
62377
62378         This bug had a serious impact on chown: `chown N:M FILE' (for integer
62379         N and M) would have treated it like `chown N:N FILE'.
62380
62381         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
62382
62383 2000-12-16  Jim Meyering  <meyering@lucent.com>
62384
62385         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
62386         SHELLS_FILE to a file name that's useful on djgpp systems.
62387         Include stdlib.h.
62388         (ADDITIONAL_DEFAULT_SHELLS): Define.
62389         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
62390         Based mostly on a patch from Prashant TR.
62391
62392 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
62393
62394         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
62395         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
62396         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
62397
62398 2000-12-08  Andreas Schwab  <schwab@suse.de>
62399
62400         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
62401         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
62402
62403 2000-12-07  Jim Meyering  <meyering@lucent.com>
62404
62405         * lib/stripslash.c (ISSLASH): Define.
62406         (strip_trailing_slashes): Use ISSLASH rather than comparing against
62407         `/'.
62408         From Prashant TR.
62409
62410         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
62411         (dir_name_r): Declare this function as static.
62412         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
62413         manifest itself on a name containing a mix of slashes and
62414         backslashes.
62415         Make this function work with names starting with a DOS-style
62416         drive letter and colon prefix.
62417         (dir_name): Append `.' if necessary.
62418         Based mostly on patches from Prashant TR and Eli Zaretskii.
62419
62420         * lib/dirname.h (dir_name_r): Remove prototype.
62421
62422 2000-12-06  Paul Eggert  <eggert@twinsun.com>
62423
62424         * m4/off_t-format.m4: Remove this file.
62425         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
62426
62427 2000-12-06  Jim Meyering  <meyering@lucent.com>
62428
62429         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
62430         replacement strtoull, we may well need the replacement strtoul, too.
62431         Check for declarations of strtoul and strtoull.
62432         Check for strtol.  Mainly as a cue to cause automake to include
62433         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
62434         Check for limits.h -- strtol.c needs it.
62435
62436 2000-12-05  Jim Meyering  <meyering@lucent.com>
62437
62438         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
62439
62440 2000-12-04  Jim Meyering  <meyering@lucent.com>
62441
62442         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
62443         Also include memory.h, stdlib.h, unistd.h if appropriate.
62444         Reported by Andreas Jaeger (conflicting declaration of malloc).
62445
62446 2000-12-02  Jim Meyering  <meyering@lucent.com>
62447
62448         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
62449         * m4/jm-macros.m4 (jm_MACROS): require it.
62450
62451 2000-12-02  Jim Meyering  <meyering@lucent.com>
62452
62453         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
62454
62455 2000-12-01  Paul Eggert  <eggert@twinsun.com>
62456
62457         * lib/memrchr.c: Include <config.h> before any system include file.
62458
62459 2000-11-30  Jim Meyering  <meyering@lucent.com>
62460
62461         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
62462
62463 2000-11-30  Jim Meyering  <meyering@lucent.com>
62464
62465         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
62466
62467 2000-11-29  Paul Eggert  <eggert@twinsun.com>
62468
62469         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
62470
62471 2000-11-26  Jim Meyering  <meyering@lucent.com>
62472
62473         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
62474
62475 2000-11-22  Paul Eggert  <eggert@twinsun.com>
62476
62477         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
62478         size of (size_t) -1; it's not portable.
62479
62480 2000-11-17  Jim Meyering  <meyering@lucent.com>
62481
62482         * lib/strstr.c: Update from GNU libc.
62483
62484 2000-11-17  Akim Demaille  <akim@epita.fr>
62485
62486         * lib/obstack.h: Formatting changes.
62487         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
62488         prevent type checking.
62489         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
62490         cast the value to (void *): assigning a `foo *' to a `void *'
62491         variable is valid.
62492         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
62493
62494 2000-11-16  Jim Meyering  <meyering@lucent.com>
62495
62496         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
62497
62498 2000-11-11  Jim Meyering  <meyering@lucent.com>
62499
62500         * lib/error.c: Add a couple #includes, merging from GNU libc version.
62501
62502 2000-11-10  Jim Meyering  <meyering@lucent.com>
62503
62504         * lib/obstack.h: Update from GNU libc.
62505         * lib/obstack.c: Likewise.
62506
62507 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
62508
62509         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
62510
62511 2000-11-06  Paul Eggert  <eggert@twinsun.com>
62512
62513         * lib/getusershell.c (setusershell): Use rewind rather than
62514         fseek/fseeko, to avoid configuration hassles with fseeko.
62515         Don't bother opening SHELLS_FILE if shellstream is NULL;
62516         it's not necessary.
62517
62518 2000-11-05  Jim Meyering  <meyering@lucent.com>
62519
62520         * lib/makepath.h (make_dir): Declare.
62521         * lib/makepath.c (make_dir): Remove `static' attribute.
62522         Tweak a comment.
62523
62524 2000-11-04  Jim Meyering  <meyering@lucent.com>
62525
62526         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
62527
62528 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
62529
62530         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
62531         last one in a bucket, advance to the next bucket.
62532
62533 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
62534
62535         * lib/fnmatch.c: Do not comment out all the code if we are using
62536         the GNU C library, because in some cases we are replacing buggy
62537         code in the GNU C library itself.
62538
62539 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
62540
62541         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
62542         (regex_compile): Catch bogus \(\1\).
62543
62544 2000-10-30  Paul Eggert  <eggert@twinsun.com>
62545
62546         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
62547         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
62548         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
62549
62550 2000-10-30  Paul Eggert  <eggert@twinsun.com>
62551
62552         * lib/error.h, getline.h, modechange.h:
62553         Remove "2000" from Copyright line, as the file hasn't been
62554         changed this year other than in the copyright notice.
62555
62556         * lib/xalloc.h: Add "2000" to Copyright line, as this file
62557         was changed this year.
62558
62559 2000-10-29  Jim Meyering  <meyering@lucent.com>
62560
62561         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
62562         renaming.
62563         * m4/ls-mntd-fs.m4: Likewise
62564
62565 2000-10-29  Jim Meyering  <meyering@lucent.com>
62566
62567         * lib/xstat.in: Fix grammar in comment.
62568
62569 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
62570
62571         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
62572         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
62573         doesn't define __restrict_arr.
62574
62575 2000-10-28  Jim Meyering  <meyering@lucent.com>
62576
62577         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
62578         (jm_PREREQ_MEMCHR): New function.
62579
62580 2000-10-28  Jim Meyering  <meyering@lucent.com>
62581
62582         * lib/memchr.c: Update from libc.
62583         Adjust for portability:
62584         [HAVE_STDLIB_H]: Include stdlib.h.
62585         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
62586         Undef __memchr, too.
62587         [!weak_alias]: Define __memchr to memchr.
62588
62589         * lib/regex.c: Update from libc.
62590         * lib/regex.h: Likewise.
62591         * lib/getopt1.c: Likewise.
62592         * lib/memcmp.c: Likewise.
62593
62594         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
62595         Avoid using fseek, when possible -- it's broken by design.
62596         Patch by Ulrich Drepper.
62597
62598 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
62599
62600         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
62601         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
62602         Giving in to popular pressure to shut up the compiler with casts.
62603
62604 2000-10-26  Jim Meyering  <meyering@lucent.com>
62605
62606         * lib/strftime.c: Update from libc.
62607
62608 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
62609
62610         * regex.c: More `unsigned char' -> `re_char' changes.
62611         Also change several `int' into `re_wchar_t'.
62612         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
62613         (PUSH_FAILURE_POINTER): Don't cast any more.
62614         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
62615         We want GCC to complain, since this piece of code makes
62616         re_match non-reentrant, which *should* be fixed.
62617         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
62618         (EXTEND_BUFFER): Use RETALLOC.
62619         (SET_LIST_BIT): Don't cast.
62620         (re_wchar_t): New type.
62621         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
62622         that those two functions will always properly return.
62623         (IMMEDIATE_QUIT_CHECK): Cast to void.
62624         (analyse_first): Use recursion rather than an explicit stack.
62625         (re_compile_fastmap): Can't fail anymore.
62626         (re_search_2): Don't check re_compile_fastmap for failure.
62627         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
62628         Now also sets the new value (passed in a new argument).
62629         (re_match_2_internal): Use it.
62630         Also, use a new var `reg' of type size_t when looping through regs
62631         rather than reuse the inappropriate `mcnt'.
62632
62633 2000-10-25  Jim Meyering  <meyering@lucent.com>
62634
62635         * lib/obstack.c: Update from libc.
62636
62637 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
62638
62639         * regex.c (regex_compile): Change the way of handling a range from
62640         a char less than 256 to a char not less than 256.
62641
62642 2000-10-24  Andrew Innes  <andrewi@gnu.org>
62643
62644         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
62645         NT-Emacs only.
62646         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
62647         so that re_search functions only quit when callers expect them to.
62648
62649 2000-10-23  Jim Meyering  <meyering@lucent.com>
62650
62651         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
62652         wrong.  That set_locale call must not have any side effects.
62653         From Paul Eggert.
62654
62655 2000-10-22  Jim Meyering  <meyering@lucent.com>
62656
62657         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
62658         [CYCLIC]: Remove now-unused definition.
62659
62660         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
62661         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
62662         Suggestion from Ulrich Drepper.
62663
62664 2000-10-21  Jim Meyering  <meyering@lucent.com>
62665
62666         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
62667         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
62668         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
62669
62670 2000-10-21  Jim Meyering  <meyering@lucent.com>
62671
62672         * lib/dirname.c (memrchr): Declare if necessary.
62673         (dir_name): Remove the restriction that there be no
62674         trailing slashes.  Now, this code skips past them, effectively
62675         ignoring them.
62676         [TEST_DIRNAME] (main): New unit tests.
62677
62678         * lib/memrchr.c: New file from GNU libc.
62679         Undef __memrchr, too.
62680         [!weak_alias]: Define __memrchr to memrchr.
62681         Guard weak_alias use with `#ifdef weak_alias'.
62682
62683 2000-10-21  Jim Meyering  <meyering@lucent.com>
62684
62685         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
62686         (dir_name): Use dir_name_r.
62687         * lib/dirname.h (dir_name_r): Declare it.
62688
62689 2000-10-17  Jim Meyering  <meyering@lucent.com>
62690
62691         * lib/quote.h (PARAMS): Define and use.
62692         Reported by Akim Demaille.
62693
62694         * lib/getopt.c: Update from libc.
62695
62696 2000-10-16  Jim Meyering  <meyering@lucent.com>
62697
62698         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
62699         setlocale.
62700         From Jan Fedak.
62701
62702 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
62703
62704         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
62705
62706 2000-09-25  Jim Meyering  <meyering@lucent.com>
62707
62708         * lib/md5.h (rol): Define (from GnuPG).
62709
62710         * lib/sha.c: Give credit (GnuPG) where due.
62711         (M): Use rol rather than open-coding it.
62712         Add a FIXME comment.
62713
62714 2000-09-21  Jim Meyering  <meyering@lucent.com>
62715
62716         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
62717         Reported by Michael Stone.
62718
62719 2000-09-20  Jim Meyering  <meyering@lucent.com>
62720
62721         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
62722         (noinst_HEADERS): Add sha.h.
62723         Based on code from Scott G. Miller and from GnuPG.
62724
62725 2000-09-18  Jim Meyering  <meyering@lucent.com>
62726
62727         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
62728         LIBS. Otherwise, everyone ends up linking with -lelf for some
62729         configurations.
62730         Reported by Mike Stone.
62731
62732 2000-09-15  Jim Meyering  <meyering@lucent.com>
62733
62734         * lib/regex.c: Update from libc.
62735
62736 2000-09-10  Jim Meyering  <meyering@lucent.com>
62737
62738         * lib/getopt.c (_getopt_internal): Update from glibc.
62739
62740 2000-09-09  Jim Meyering  <meyering@lucent.com>
62741
62742         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
62743         think it should be used as a general replacement for isascii.
62744         * lib/fnmatch.c: Likewise.
62745         * lib/mbswidth.c: Likewise
62746         * lib/regex.c: Likewise.
62747
62748         Don't use atoi.
62749         * lib/userspec.c: Include sys/param.h and limits.h.
62750         Include xstrtol.h.
62751         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
62752         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
62753         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
62754         UID, GID.  Check range.
62755
62756 2000-09-06  Jim Meyering  <meyering@lucent.com>
62757
62758         * lib/getopt.c (_getopt_internal): Update from glibc.
62759
62760 2000-08-30  Jim Meyering  <meyering@lucent.com>
62761
62762         * lib/strftime.c: Merge in changes from GNU libc.
62763
62764 2000-08-26  Jim Meyering  <meyering@lucent.com>
62765
62766         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
62767         * m4/fpending.m4: New file.
62768
62769 2000-08-26  Jim Meyering  <meyering@lucent.com>
62770
62771         * lib/closeout.c: Include "__fpending.h".
62772         (close_stdout_status): Return right away if there's nothing to flush.
62773
62774         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
62775         * lib/__fpending.c: New file.
62776         * lib/__fpending.h: New file.
62777
62778 2000-08-20  Jim Meyering  <meyering@lucent.com>
62779
62780         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
62781         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
62782         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
62783
62784 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
62785
62786         Improve fileutils installation on systems where running
62787         programs (like install) can't be unlinked.
62788         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
62789         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
62790
62791 2000-08-07  Paul Eggert  <eggert@twinsun.com>
62792
62793         Standardize on "memory exhausted" instead of "Memory exhausted"
62794         or "virtual memory exhausted".
62795         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
62796         "virtual memory exhausted".
62797         * lib/same.c (same_name): Invoke xalloc_die instead of printing
62798         our own message.
62799         * lib/userspec.c (parse_user_spec): Likewise.
62800         * lib/bumpalloc.h: comment fix
62801         * lib/same.c, userspec.c: Include xalloc.h.
62802
62803         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
62804         not char *const and pointing to a constant array.
62805         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
62806         (xrealloc): Comment fix.
62807
62808         * lib/userspec.c (parse_user_spec):
62809         Don't translate a message until just before returning,
62810         to avoid unnecessary translation.
62811
62812 2000-08-07  Jim Meyering  <meyering@lucent.com>
62813
62814         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
62815         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
62816         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
62817         getgroups.c, gethostname.c, getopt.h, group-member.c,
62818         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
62819         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
62820         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
62821         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
62822         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
62823         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
62824         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
62825         yesno.c: Back out Copyright date changes for each file with no change
62826         this year.  This eases coordination with other programs using the same
62827         source code modules.  From Paul Eggert.
62828
62829 2000-08-06  Paul Eggert  <eggert@twinsun.com>
62830
62831         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
62832         not char, for compatibility with glibc 2.1.3 strftime.c.
62833
62834 2000-08-03  Greg McGary  <greg@mcgary.org>
62835
62836         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
62837         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
62838         (EXTEND_BUFFER): Use them.
62839
62840 2000-08-01  Jim Meyering  <meyering@lucent.com>
62841
62842         * lib/dirname.c (ISSLASH): Define.
62843         (BACKSLASH_IS_PATH_SEPARATOR): Define.
62844         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
62845         both `\' and `/' may be use as path separators.
62846         Based on a patch from Prashant TR.
62847
62848 2000-07-31  Paul Eggert  <eggert@twinsun.com>
62849
62850         * lib/quotearg.c (quotearg_n_options): Don't make the initial
62851         slot vector a constant, since it might get modified.
62852
62853 2000-07-31  Jim Meyering  <meyering@lucent.com>
62854
62855         * lib/xmalloc.c: Use `virtual memory exhausted', not
62856         `Memory exhausted'.
62857         * lib/obstack.c (print_and_abort): Likewise.
62858
62859 2000-07-30  Paul Eggert  <eggert@twinsun.com>
62860
62861         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
62862         buffer, so that the caller can always quote one small
62863         component of a "memory exhausted" message in slot 0.
62864         From a suggestion by Jim Meyering.
62865
62866 2000-07-30  Jim Meyering  <meyering@lucent.com>
62867
62868         * lib/makepath.c (make_path): Quote the other instance, too.
62869
62870         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
62871         (STATIC_BUF_SIZE): Define.
62872         (quotearg_n_options): Use only statically allocated storage when
62873         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
62874         than STATIC_BUF_SIZE.
62875
62876 2000-07-29  Jim Meyering  <meyering@lucent.com>
62877
62878         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
62879         * lib/dirname.c (dir_name): Likewise.
62880
62881         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
62882         `/'.
62883
62884         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
62885         (dir_name): Assert that there are no trailing slashes.
62886
62887 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
62888
62889         * lib/mbswidth.h (mbswidth): Add a flags argument.
62890         (mbswidth): New declaration.
62891         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
62892         * lib/mbswidth.c (mbswidth): Add a flags argument.
62893         (mbsnwidth): New function.
62894
62895 2000-07-24  Jim Meyering  <meyering@lucent.com>
62896
62897         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
62898
62899 2000-07-23  Paul Eggert  <eggert@twinsun.com>
62900
62901         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
62902
62903 2000-07-23  Paul Eggert  <eggert@twinsun.com>
62904
62905         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
62906         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
62907         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
62908         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
62909         invoke multibyte primitives.
62910
62911 2000-07-23  Paul Eggert  <eggert@twinsun.com>
62912
62913         * lib/quotearg.c:
62914         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
62915         so that mbstate_t is always defined.
62916
62917         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
62918         be 1 in at least one GCC installation, and this configuration
62919         error is likely to be common.  Ignoring MB_LEN_MAX hurts
62920         performance on hosts that have mbrtowc but have only unibyte
62921         locales, but I assume these hosts are rare.
62922
62923 2000-07-23  Paul Eggert  <eggert@twinsun.com>
62924
62925         * lib/mbswidth.c (_XOPEN_SOURCE):
62926         Don't define; this causes problems on Solaris 7.
62927         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
62928
62929 2000-07-23  Jim Meyering  <meyering@lucent.com>
62930
62931         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
62932         too: getgrgid, getpwuid, getuid.
62933
62934 2000-07-23  Jim Meyering  <meyering@lucent.com>
62935
62936         * lib/basename.c (base_name): Add an assertion.
62937
62938 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
62939
62940         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
62941         shadow its mbsinit function.
62942
62943 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
62944
62945         * lib/mbswidth.h: New file.
62946         * lib/mbswidth.c: New file.
62947         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
62948         (noinst_HEADERS): Add mbswidth.h.
62949
62950 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
62951
62952         * lib/config.charset: Add support for FreeBSD. Improve support for
62953         HP-UX and IRIX 6.
62954
62955 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
62956
62957         * m4/mbswidth.m4: New file.
62958         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
62959
62960 2000-07-15  Jim Meyering  <meyering@lucent.com>
62961
62962         * lib/makepath.c: Include quote.h.
62963         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
62964         corresponding argument in a `quote (...)' call.
62965         Give better diagnostics.
62966
62967         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
62968         (noinst_HEADERS): Add quote.h.
62969
62970         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
62971         from tar's src/misc.c.
62972         * lib/quote.h: New file.  Prototypes for same.
62973
62974 2000-07-14  Paul Eggert  <eggert@twinsun.com>
62975
62976         From a suggestion by Bruno Haible.
62977         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
62978         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
62979         to decide whether to define the BeOS workaround macro;
62980         this adjusts to the change to AC_MBSTATE_T.
62981
62982 2000-07-14  Jim Meyering  <meyering@lucent.com>
62983
62984         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
62985         jm_AC_TYPE_UINTMAX_T.
62986
62987 2000-07-13  Paul Eggert  <eggert@twinsun.com>
62988
62989         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
62990
62991         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
62992         quotearg_buffer_restyled): Add support for
62993         clocale_quoting_style.  Undo previous change to
62994         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
62995         and "{RIGHT QUOTATION MARK}" msgids.
62996
62997 2000-07-10  Paul Eggert  <eggert@twinsun.com>
62998
62999         From a suggestion by Bruno Haible.
63000         * m4/mbstate_t.m4 (AC_MBSTATE_T):
63001         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
63002         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
63003         and mbstate_t, to a single-part test that simply defines mbstate_t.
63004         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
63005         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
63006
63007 2000-07-10  Jim Meyering  <meyering@lucent.com>
63008
63009         * m4/strerror_r.m4: Mirror the correction made in autoconf.
63010
63011         * m4/gnu-source.m4: Output to confdefs.h directly.
63012         Suggestion from Akim Demaille.
63013
63014 2000-07-09  Paul Eggert  <eggert@twinsun.com>
63015
63016         The old behavior of quoting `like this' doesn't look good with
63017         newer, ISO-style fonts.  See:
63018         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
63019
63020         Instead, quote "like this" by default.  Let the translator
63021         tailor the locale-specific quoting behavior by providing
63022         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
63023
63024         * lib/quotearg.c (N_): New macro.
63025         (gettext_default): New function.
63026         (quotearg_buffer_restyled): Use
63027         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
63028         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
63029
63030 2000-07-09  Jim Meyering  <meyering@lucent.com>
63031
63032         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
63033         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
63034
63035         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
63036         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
63037
63038 2000-07-09  Jim Meyering  <meyering@lucent.com>
63039
63040         * lib/Most files: Update copyright dates to include 2000.
63041
63042 2000-07-08  Jim Meyering  <meyering@lucent.com>
63043
63044         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
63045         if not defined.
63046         (xgethostname): Remove now-unnecessary #ifdef.
63047         Move declaration of `err' into loop where it's used.
63048
63049 2000-07-05  Paul Eggert  <eggert@twinsun.com>
63050         and Bruno Haible  <haible@clisp.cons.org>
63051
63052         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
63053         only if the test for an object-type mbstate_t fails.  This
63054         prevents us from mistakenly reporting that mbstate_t is a
63055         system object type after we "#define mbstate_t int" to work
63056         around its lack.
63057
63058 2000-07-05  Paul Eggert  <eggert@twinsun.com>
63059         and Bruno Haible  <haible@clisp.cons.org>
63060
63061         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
63062
63063 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63064
63065         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
63066         to strerror_r.
63067         Include <ctype.h> for use of isalpha.
63068
63069 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63070
63071         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
63072         by allocating a larger buffer. Test the gethostname return value for
63073         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
63074         returns an error and ENAMETOOLONG isn't defined.
63075
63076 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63077
63078         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
63079         dimension.
63080
63081 2000-07-04  Jim Meyering  <meyering@lucent.com>
63082
63083         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
63084         of the deprecated AC_CHECKING.
63085
63086 2000-07-04  Jim Meyering  <meyering@lucent.com>
63087
63088         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
63089         Reported by Bruno Haible.
63090
63091 2000-07-04  Jim Meyering  <meyering@lucent.com>
63092
63093         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
63094         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
63095         lacks mbrtowc.
63096
63097 2000-07-03  Paul Eggert  <eggert@twinsun.com>
63098
63099         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
63100         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
63101
63102 2000-07-03  Paul Eggert  <eggert@twinsun.com>
63103         and Bruno Haible  <haible@clisp.cons.org>
63104
63105         * lib/quotearg.c (mbrtowc):
63106         Assign to *pwc, and return 1 only if result is nonzero.
63107         (iswprint): Use ISPRINT when substituting our own mbrtowc.
63108
63109 2000-07-03  Jim Meyering  <meyering@lucent.com>
63110
63111         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
63112
63113 2000-07-03  Jim Meyering  <meyering@lucent.com>
63114
63115         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
63116         This is necessary to get a definition of e.g., UTMP_FILE on
63117         HP-UX 10.20.
63118         From Bob Proulx.
63119
63120 2000-07-02  Jim Meyering  <meyering@lucent.com>
63121
63122         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
63123
63124         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
63125         AC_LIBOBJ(function_name).
63126         * m4/chown.m4: Likewise.
63127         * m4/fnmatch.m4: Likewise.
63128         * m4/ftruncate.m4: Likewise.
63129         * m4/getgroups.m4: Likewise.
63130         * m4/getline.m4: Likewise.
63131         * m4/group-member.m4: Likewise.
63132         * m4/jm-macros.m4: Likewise.
63133         * m4/lstat.m4: Likewise.
63134         * m4/malloc.m4: Likewise.
63135         * m4/memcmp.m4: Likewise.
63136         * m4/nanosleep.m4: Likewise.
63137         * m4/putenv.m4: Likewise.
63138         * m4/realloc.m4: Likewise.
63139         * m4/regex.m4: Likewise.
63140         * m4/stat.m4: Likewise.
63141         * m4/strftime.m4: Likewise.
63142
63143 2000-07-02  Jim Meyering  <meyering@lucent.com>
63144
63145         * lib/quotearg.c (mbstate_t): Don't define here.
63146
63147 2000-07-02  Jim Meyering  <meyering@lucent.com>
63148
63149         * lib/nanosleep.c (SIGCONT): Define if not already defined.
63150
63151 2000-07-01  Jim Meyering  <meyering@lucent.com>
63152
63153         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
63154
63155 2000-07-01  Jim Meyering  <meyering@lucent.com>
63156
63157         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
63158         problem.
63159
63160 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
63161
63162         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
63163         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
63164
63165 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
63166
63167         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
63168         per change in ../m4/ls-mntd-fs.m4.
63169         (read_filesystem_list): Ignore symbolic links.
63170
63171 2000-06-29  Jim Meyering  <meyering@lucent.com>
63172
63173         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
63174         for declaration of strcmp.
63175
63176         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
63177
63178         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
63179         Avoid warning by casting result to `char *' to remove `const'.
63180
63181 2000-06-28  Jim Meyering  <meyering@lucent.com>
63182
63183         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
63184         included by quotearg.c, for which we perform this test.  From
63185         Bruno Haible.
63186
63187 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
63188
63189         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
63190         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
63191         <utmpx.h> exists, put readutmp.o into LIBOBJS.
63192
63193 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
63194
63195         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
63196
63197 2000-06-26  Paul Eggert  <eggert@twinsun.com>
63198
63199         savedir now sets errno on failure and invokes xmalloc to get memory.
63200         Fix a couple of other minor bugs while we're at it.
63201
63202         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
63203         (NAMLEN): Remove macro.
63204         (malloc, realloc): Remove decls.
63205         (stpcpy): Likewise.
63206         ("xalloc.h"): Include.
63207         (NAME_SIZE_DEFAULT): New macro.
63208         (savedir): Use xmalloc / xrealloc to allocate memory.
63209         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
63210         Skip "" directory entries.
63211         Use strlen to calculate directory entry length, since the old method
63212         is rarely used these days and isn't worth supporting.
63213         Don't use a pointer after freeing it.
63214         Check for integer overflow when calculating allocation size.
63215         Use memcpy to copy entries, instead of stpcpy.
63216         Set errno properly when returning NULL.
63217         Check for readdir error.
63218
63219 2000-06-26  Jim Meyering  <meyering@lucent.com>
63220
63221         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
63222
63223 2000-06-25  Jim Meyering  <meyering@lucent.com>
63224
63225         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
63226         Linux header bug when _XOPEN_SOURCE is defined to 500.
63227
63228 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
63229
63230         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
63231         deficiency.
63232
63233 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
63234
63235         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
63236         Include xalloc.h.
63237         Don't include <stdlib.h>.  Don't declare malloc, realloc.
63238
63239 2000-06-24  Jim Meyering  <meyering@lucent.com>
63240
63241         * m4/strerror_r.m4: Revive this file -- to try out an experimental
63242         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
63243         for which strerror does return char*, but which lacks a conveniently
63244         accessible declaration of the function.  If the compile-test says
63245         strerror_r doesn't work, then resort to a `run'-test that works on
63246         BeOS and segfaults on DEC Unix.
63247
63248 2000-06-24  Jim Meyering  <meyering@lucent.com>
63249
63250         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
63251
63252 2000-06-23  Paul Eggert  <eggert@twinsun.com>
63253
63254         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
63255         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
63256
63257 2000-06-23  Paul Eggert  <eggert@twinsun.com>
63258
63259         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
63260         (mbrtowc, mbstate_t): Define substitutes if
63261         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
63262         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
63263         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
63264
63265 2000-06-23  Jim Meyering  <meyering@lucent.com>
63266
63267         * m4/afs.m4: Add missing AC_MSG_RESULT.
63268         Reported by Bruno Haible.
63269
63270         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
63271         Suggestion from Bruno Haible.
63272
63273 2000-06-23  Jim Meyering  <meyering@lucent.com>
63274
63275         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
63276
63277 2000-06-21  Jim Meyering  <meyering@lucent.com>
63278
63279         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
63280
63281 2000-06-21  Jim Meyering  <meyering@lucent.com>
63282
63283         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
63284         (noinst_HEADERS): Add getstr.h.
63285
63286         * lib/getline.c (getstr): Move into a separate file.
63287         * lib/getstr.c (getstr): New file, extracted from getline.c, with
63288         the following changes: new parameter, delim2; both delim[12]
63289         parameters have type `int', not `char'.  The latter would lose
63290         with 8-bit delimiters.
63291         * lib/getstr.h: New file.
63292
63293 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
63294
63295         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
63296         than 1024, return a memory chunk of least possible size, instead
63297         of size PATH_MAX + 2. In the loop, increment the size proportionally.
63298         Use free/xmalloc instead of xrealloc to avoid copying for very long
63299         paths.
63300
63301 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
63302
63303         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
63304         the empty string.
63305
63306 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
63307
63308         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
63309         address, not strdup.  Include <stdlib.h> and don't declare free().
63310
63311 2000-06-19  Jim Meyering  <meyering@lucent.com>
63312
63313         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
63314
63315 2000-06-18  Jim Meyering  <meyering@lucent.com>
63316
63317         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
63318
63319         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
63320         `checking whether...' message to be consistent with that of the
63321         lstat test.
63322
63323 2000-06-18  Jim Meyering  <meyering@lucent.com>
63324
63325         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
63326         Besides, these days every porting target provides a mkdir function.
63327
63328         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
63329         needed. (this snippet comes from src/system.h).
63330
63331 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
63332
63333         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
63334
63335 2000-06-15  Paul Eggert  <eggert@twinsun.com>
63336
63337         * lib/human.c (adjust_value): New function.
63338         (human_readable_inexact): Apply rounding style even when
63339         printing approximate values.
63340
63341 2000-06-14  Paul Eggert  <eggert@twinsun.com>
63342
63343         * lib/human.c (human_readable_inexact): Allow an input block
63344         size that is not a multiple of the output block size, and vice versa.
63345         Reported by Piergiorgio Sartor.
63346
63347 2000-06-14  Paul Eggert  <eggert@twinsun.com>
63348
63349         * lib/getdate.y (get_date): Apply relative times after time
63350         zone indicator, not before.  Reported by Todd A. Jacobs.
63351
63352 2000-06-13  Jim Meyering  <meyering@lucent.com>
63353
63354         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
63355
63356         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
63357
63358 2000-06-12  Paul Eggert  <eggert@twinsun.com>
63359
63360         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
63361
63362 2000-06-12  Jim Meyering  <meyering@lucent.com>
63363
63364         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
63365         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
63366         optional argument.
63367         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
63368         the optional argument, `lib'.
63369
63370 2000-06-08  Jim Meyering  <meyering@lucent.com>
63371
63372         * m4/largefile.m4: Remove file (now that it's part of autoconf).
63373
63374 2000-06-04  Paul Eggert  <eggert@twinsun.com>
63375
63376         Rewrite largefile configuration so that we don't need to run
63377         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
63378         AC_CANONICAL_HOST in configure.in -- jmm]
63379
63380         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
63381         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
63382         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
63383         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
63384         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
63385         All uses changed.
63386         Instead of inspecting the output of getconf, try to compile the
63387         test program without and with the macro definition.
63388         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
63389         for getconf.  Instead, check for the needed flags by compiling
63390         test programs.
63391
63392 2000-06-04  Paul Eggert  <eggert@twinsun.com>
63393
63394         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
63395
63396 2000-06-04  Jim Meyering  <meyering@lucent.com>
63397
63398         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
63399         SunOS 4.1.4 for which gid_t is an unsigned type.
63400
63401 2000-06-03  Jim Meyering  <meyering@lucent.com>
63402
63403         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
63404         now that autoconf requires that.
63405
63406         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
63407         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
63408         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
63409
63410 2000-06-03  Jim Meyering  <meyering@lucent.com>
63411
63412         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
63413
63414 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
63415
63416         * m4/glibc21.m4: New file.
63417         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
63418
63419 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
63420
63421         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
63422         newer, don't install charset.alias.
63423         * lib/config.charset: Change the Linux/glibc rules so they become empty
63424         on glibc-2.1 or newer.
63425
63426 2000-06-02  Jim Meyering  <meyering@lucent.com>
63427
63428         * lib/mountlist.c: Back out last change.  Instead, do this...
63429         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
63430         me_dummy member using the same `ignore'-testing code.
63431         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
63432         fs_type strings.
63433         From Mark D. Roth.
63434
63435 2000-05-29  Jim Meyering  <meyering@lucent.com>
63436
63437         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
63438         mounts with the `ignore' attribute.  Based on a patch from
63439         Mark D. Roth.
63440
63441 2000-05-28  Jim Meyering  <meyering@lucent.com>
63442
63443         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
63444         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
63445         * m4/stat.m4: Likewise.
63446         * m4/lstat.m4: Likewise.
63447         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
63448
63449         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
63450         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
63451
63452 2000-05-26  Jim Meyering  <meyering@lucent.com>
63453
63454         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
63455
63456 2000-05-24  Jim Meyering  <meyering@lucent.com>
63457
63458         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
63459         autoconf requires that.
63460         * m4/lib-check.m4: Likewise.
63461         * m4/jm-macros.m4: Likewise.
63462         * m4/strftime.m4: Likewise.
63463
63464         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
63465         AC_CHECK_DECLS, now that autoconf requires that.
63466
63467 2000-05-22  Jim Meyering  <meyering@lucent.com>
63468
63469         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
63470         * m4/lstat.m4: Likewise.
63471
63472 2000-05-22  Jim Meyering  <meyering@lucent.com>
63473
63474         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
63475
63476 2000-05-20  Jim Meyering  <meyering@lucent.com>
63477
63478         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
63479         (jm_PREREQ): Use it.
63480
63481 2000-05-18  Jim Meyering  <meyering@lucent.com>
63482
63483         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
63484         back, too, since it may have been modified by allocate_entry.
63485         (hash_delete): Rewrite to use neither the assignment operator
63486         nor the comma operator in an if-expression.
63487
63488 2000-05-15  Paul Eggert  <eggert@twinsun.com>
63489
63490         * lib/closeout.c:
63491         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
63492         Remove; no longer needed.
63493         "quotearg.h": Add include.
63494         (file_name): Do not bother to explicitly initialize to NULL; it's less
63495         efficient on some hosts.
63496         (close_stdout_status): Remove test as to whether stdout was already
63497         closed; it breaks for the case "echo x | sort >&-".
63498         Quote file name colons.
63499         Do not assume that _("write error") lacks format strings.
63500
63501 2000-05-15  Jim Meyering  <meyering@lucent.com>
63502
63503         * lib/version-etc.c (version_etc_copyright): Update the copyright
63504         string used in all --version output.
63505
63506 2000-05-14  Jim Meyering  <meyering@lucent.com>
63507
63508         * lib/closeout.c (close_stdout_set_file_name): New function.
63509         (close_stdout_status): Use new file-scoped global.
63510         Return right away if fstat says the stdout file descriptor is invalid.
63511         * lib/closeout.h (close_stdout_set_file_name): Declare.
63512
63513 2000-05-10  Jim Meyering  <meyering@lucent.com>
63514
63515         * lib/closeout.c [default_exit_status]: New file-scoped variable.
63516         (close_stdout_set_status): New function.
63517         * lib/closeout.h (close_stdout_set_status): Declare.
63518
63519 2000-05-09  Jim Meyering  <meyering@lucent.com>
63520
63521         * m4/gettext.m4: Rename this...
63522         * m4/libintl.m4: ...to this.
63523
63524 2000-05-08  Jim Meyering  <meyering@lucent.com>
63525
63526         * lib/long-options.c: Don't include closeout.h.
63527         (parse_long_options): Don't call close_stdout for --version.
63528
63529 2000-05-06  Paul Eggert  <eggert@twinsun.com>
63530
63531         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
63532         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
63533         2.1.3 bug.  This avoids a clash when files like regex.c define
63534         _GNU_SOURCE.
63535
63536 2000-05-06  Jim Meyering  <meyering@lucent.com>
63537
63538         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
63539         (AC_REPLACE_FUNCS): Add strnlen.
63540
63541         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
63542         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
63543
63544         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
63545         AC_SEARCH_LIBS call for nanosleep.
63546         (LIB_NANOSLEEP): Set and AC_SUBST.
63547
63548 2000-05-06  Jim Meyering  <meyering@lucent.com>
63549
63550         * lib/strnlen.c: Undefine __strnlen and strnlen.
63551         [!weak_alias]: Define __strnlen to strnlen.
63552
63553         * lib/atexit.c: New file, from libiberty.
63554
63555 2000-05-06  Jim Meyering  <meyering@lucent.com>
63556
63557         * lib/closeout.c (close_stdout_status): Also check for errors on the
63558         stderr stream.
63559
63560 2000-05-05  Jim Meyering  <meyering@lucent.com>
63561
63562         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
63563         AC_SEARCH_LIBS call for clock_gettime.
63564         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
63565
63566         * m4/search-libs.m4: Update from autoconf.
63567
63568         su doesn't work on Solaris 2.6.
63569         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
63570         <shadow.h>.  Reported by Dragos Harabor.
63571
63572 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
63573
63574         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
63575         memcpy instead of xmalloc, xrealloc, path_concat.
63576         (locale_charset): Treat empty environment variables as absent.
63577         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
63578
63579 2000-05-04  Jim Meyering  <meyering@lucent.com>
63580
63581         * lib/getopt.c: Update from glibc.
63582         * lib/obstack.c: Likewise.
63583         * lib/obstack.h: Likewise.
63584         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
63585         file
63586
63587         * lib/regex.h: Likewise.
63588         * lib/strndup.c: Likewise.
63589         * lib/strnlen.c: New file, from glibc.
63590
63591 2000-05-03  Jim Meyering  <meyering@lucent.com>
63592
63593         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
63594
63595 2000-05-02  Paul Eggert  <eggert@twinsun.com>
63596
63597         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
63598         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
63599         compile-time test, rather than inspecting host and OS, to
63600         decide whether to define _LARGEFILE_SOURCE.
63601
63602 2000-05-01  Jim Meyering  <meyering@lucent.com>
63603
63604         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
63605
63606         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
63607         Based on a patch from Bruno Haible.
63608
63609 2000-05-01  Jim Meyering  <meyering@lucent.com>
63610
63611         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
63612
63613 2000-04-29  Jim Meyering  <meyering@lucent.com>
63614
63615         * lib/path-concat.c: Declare strdup only if it's not defined.
63616         * lib/canon-host.c: Likewise.
63617
63618 2000-04-28  Jim Meyering  <meyering@lucent.com>
63619
63620         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
63621         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
63622         is included first, then limits.h is included by locale.h by libintl.h.
63623         From John David Anglin.
63624
63625 2000-04-25  Jim Meyering  <meyering@lucent.com>
63626
63627         * lib/makepath.c (S_IRWXUGO): Define.
63628         (make_path): Always perform explicit chmod if MODE specifies any
63629         of the `special' permission bits.  Prompted by a bug report against
63630         install from Mate Wierdl and Joost van Baal.
63631
63632 2000-04-18  Jim Meyering  <meyering@lucent.com>
63633
63634         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
63635         (jm_PREREQ): Use it.
63636
63637 2000-04-18  Jim Meyering  <meyering@lucent.com>
63638
63639         * lib/README: New file.
63640
63641         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
63642         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
63643
63644 2000-04-17  Jim Meyering  <meyering@lucent.com>
63645
63646         Get it right :-)
63647         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
63648         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
63649         Suggestion from Akim Demaille.
63650
63651 2000-04-17  Jim Meyering  <meyering@lucent.com>
63652
63653         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
63654         the definition of it to rpl_strftime also defined-away the system's
63655         declaration.
63656
63657 2000-04-15  Jim Meyering  <meyering@lucent.com>
63658
63659         Use `C' to denote so-called `contiguous' files, the same way
63660         that tar does.
63661         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
63662         (ftypelet): Use S_ISCTG.
63663         From Michael Deutschmann.
63664
63665 2000-04-14  Jim Meyering  <meyering@lucent.com>
63666
63667         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
63668         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
63669         clobbered.
63670
63671 2000-04-14  Jim Meyering  <meyering@lucent.com>
63672
63673         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
63674
63675 2000-04-13  Jim Meyering  <meyering@lucent.com>
63676
63677         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
63678         AH_VERBATIM to insert required #ifndef into config.h.in.
63679         Suggestion from Akim Demaille.
63680
63681 2000-04-12  Jim Meyering  <meyering@lucent.com>
63682
63683         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
63684         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
63685         Christian Krackowizer.
63686
63687         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
63688         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
63689         (AC_SYS_LARGEFILE): Require.
63690         (AM_C_PROTOTYPES): Require.
63691
63692 2000-04-08  Jim Meyering  <meyering@lucent.com>
63693
63694         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
63695         names don't conflict.  Reported by Eli Zaretskii.
63696
63697 2000-04-07  Jim Meyering  <meyering@lucent.com>
63698
63699         * lib/putenv.c: Move inclusion of errno.h so it follows that of
63700         sys/types.h, to work around system header problems on AIX 3.2.5.
63701         From Bruno Haible.
63702
63703 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
63704
63705         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
63706         bug.  Deal with the different error behavior of Irix iconv.
63707
63708 2000-04-05  Paul Eggert  <eggert@twinsun.com>
63709
63710         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
63711         IRIX if the installer said otherwise.
63712
63713 2000-04-05  Jim Meyering  <meyering@lucent.com>
63714
63715         Portability tweaks required for ultrix4.3.
63716         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
63717         (jm_CHECK_DECLS): Add getutent to the list of functions.
63718         (_jm_DECL_HEADERS): Add utmpx.h.
63719         From John David Anglin.
63720
63721         * m4/strftime.m4: Back out the 2000-04-02 change.
63722         Instead of that change, simply undefine putenv in the test program.
63723
63724 2000-04-05  Jim Meyering  <meyering@lucent.com>
63725
63726         Portability tweaks required for ultrix4.3.
63727         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
63728         getutent.
63729         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
63730         * lib/canon-host.c: Declare strdup.
63731         * lib/path-concat.c: Likewise.
63732         From John David Anglin.
63733
63734 2000-04-04  Jim Meyering  <meyering@lucent.com>
63735
63736         Be more DOS 8.3-friendly.
63737         * lib/ref-add.sin: Renamed from ref-add.sed.in.
63738         * lib/ref-del.sin: Renamed from ref-del.sed.in.
63739         * lib/Makefile.am: Reflect renaming.
63740         Reported by Eli Zaretskii.
63741
63742         Use a temporary file name that won't clash with `charset.alias'
63743         in the DOS 8.3 name space.
63744         * lib/Makefile.am (charset_tmp): Define.
63745         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
63746         (uninstall-local): Likewise.
63747         Reported by Eli Zaretskii.
63748
63749 2000-04-03  Jim Meyering  <meyering@lucent.com>
63750
63751         * m4/gettext.m4: Fix typo in comment.
63752
63753         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
63754         textutils/configure.in).  Suggestion from Paul Eggert.
63755         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
63756
63757 2000-04-02  Paul Eggert  <eggert@twinsun.com>
63758
63759         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
63760         variable in the shell rather than using putenv, which isn't
63761         portable.  This avoids the configure-time inter-test dependency
63762         on the potentially-renamed putenv function.
63763
63764 2000-03-30  Paul Eggert  <eggert@twinsun.com>
63765
63766         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
63767         before checking struct stat.st_blksize, so that
63768         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
63769
63770 2000-03-29  Paul Eggert  <eggert@twinsun.com>
63771
63772         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
63773         since strftime.c uses HAVE_STRFTIME to decide whether to use
63774         the underlying strftime.
63775
63776 2000-03-29  Paul Eggert  <eggert@twinsun.com>
63777
63778         * lib/time/strftime.c (my_strftime): Make sure we call the system
63779         strftime, not ourselves, when invoking the underlying strftime.
63780
63781 2000-03-24  Jim Meyering  <meyering@lucent.com>
63782
63783         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
63784         (charset_alias): Define.
63785         (install-exec-local): Factor out common code.
63786         (uninstall-local): Split lines longer than 80.
63787         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
63788         (SUFFIXES): Define.
63789         (.sed.in.sed): New rule.  Don't redirect directly to $@.
63790         (CLEANFILES): Add ref-add.sed and ref-del.sed.
63791
63792 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
63793
63794         * lib/config.charset: Output a line containing "Packages using this
63795         file".
63796         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
63797         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
63798         ref-del.sed): New rules.
63799
63800 2000-03-17  Jim Meyering  <meyering@lucent.com>
63801
63802         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
63803         Otherwise, include <strings.h>
63804
63805 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
63806
63807         * lib/unicodeio.c (utf8_wctomb): New function.
63808         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
63809         format instead of in UCS-4 with platform dependent endianness.
63810
63811 2000-03-10  Jim Meyering  <meyering@lucent.com>
63812
63813         * m4/lib-check.m4: Look for getspnam in -lgen, too.
63814         From Marco Franzen.
63815
63816 2000-03-07  Paul Eggert  <eggert@twinsun.com>
63817
63818         * lib/savedir.c (savedir): Work even if directory size is
63819         negative; this can happen with some screwy NFS configurations.
63820
63821 2000-03-06  Jim Meyering  <meyering@lucent.com>
63822
63823         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
63824         if it's NULL (because we ran out of memory).  From Bruno Haible.
63825
63826 2000-03-05  Jim Meyering  <meyering@lucent.com>
63827
63828         * lib/localcharset.c ("path-concat.h"): Include.
63829         (get_charset_aliases): Use path_concat instead of ANSI string
63830         concatenation.
63831
63832         * lib/unicodeio.h (PARAMS): Define.
63833         Use it to guard prototype.
63834
63835 2000-03-04  Jim Meyering  <meyering@lucent.com>
63836
63837         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
63838         for lib/localcharset.c.
63839
63840 2000-03-04  Jim Meyering  <meyering@lucent.com>
63841
63842         * lib/Makefile.am (install-exec-local): Create $(libdir) before
63843         installing into it.
63844         (uninstall-local): Uncomment this rule so `make distcheck' works
63845         once again.
63846
63847         * lib/unicodeio.c (<errno.h>): Include it.
63848         (errno): Declare if not defined.
63849
63850         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
63851
63852         * lib/config.charset: New version, incorporating remarks from a linux
63853         i18n mailing list.  From Bruno Haible.
63854
63855 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
63856
63857         * m4/codeset.m4: New file.
63858         * m4/iconv.m4: New file.
63859         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
63860
63861 2000-03-03  Jim Meyering  <meyering@lucent.com>
63862
63863         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
63864
63865 2000-03-02  Jim Meyering  <meyering@lucent.com>
63866
63867         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
63868         the messages come out on separate lines.
63869
63870         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
63871         rather than jm_CHECK_DECLARATIONS.
63872         * m4/decl.m4: Remove now-unused file.
63873
63874         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
63875         geteuid.
63876
63877 2000-03-02  Jim Meyering  <meyering@lucent.com>
63878
63879         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
63880
63881 2000-03-01  Jim Meyering  <meyering@lucent.com>
63882
63883         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
63884         * lib/unicodeio.c: Likewise.
63885
63886 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
63887
63888         * lib/config.charset: New file.
63889         * lib/localcharset.c: New file.
63890         * lib/unicodeio.h, lib/unicodeio.c: New files.
63891         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
63892         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
63893         (noinst_HEADERS): Add unicodeio.h.
63894         (all-local, install-exec-local, charset.alias): New targets.
63895
63896 2000-02-28  Paul Eggert  <eggert@twinsun.com>
63897
63898         * lib/quotearg.c (ALERT_CHAR): New macro.
63899         (quotearg_buffer_restyled): Use it.
63900
63901 2000-02-27  Jim Meyering  <meyering@lucent.com>
63902
63903         * m4/check-decl.m4: Add getenv to the list.
63904
63905 2000-02-27  Jim Meyering  <meyering@lucent.com>
63906
63907         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
63908         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
63909
63910         * lib/backupfile.c: Guard inclusion of stdlib.h with
63911         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
63912         Declare malloc if needed.
63913
63914         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
63915         `#ifndef HAVE_DECL..'
63916         now that autoconf always defines the HAVE_DECL_ symbols.
63917         * lib/human.c: Likewise.
63918         * lib/same.c: Likewise.
63919         * lib/strtoumax.c: Likewise.
63920
63921         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
63922         declaration check was not run.
63923         * lib/hash.c: Likewise.
63924         * lib/human.c: Likewise.
63925         * lib/same.c: Likewise.
63926         * lib/strtoumax.c: Likewise.
63927
63928         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
63929         `.', then first look up the entire `.'-containing string as a login
63930         name.
63931
63932 2000-02-23  Jim Meyering  <meyering@lucent.com>
63933
63934         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
63935         in place of my hack.
63936
63937 2000-02-18  Paul Eggert  <eggert@twinsun.com>
63938
63939         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
63940         (textint): New typedef.
63941         (parser_control): Member year changed from int to textint.
63942         All uses changed.
63943         (YYSTYPE): Removed; replaced by %union with int and textint members.
63944         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
63945         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
63946         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
63947         (tSNUMBER, tUNUMBER): Now of type <textintval>.
63948         (date, number, to_year): Use width of number in digits, not its value,
63949         to determine whether it's a 2-digit year, or a 2-digit time.
63950         (yylex): Store number of digits of numeric tokens.
63951         Reported by John Kendall.
63952
63953         (parser_control): Changed from struct parser_control to typedef (for
63954         consistency).  All uses changed.
63955
63956         (tID): Removed; not used.
63957         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
63958
63959 2000-02-14  Paul Eggert  <eggert@twinsun.com>
63960
63961         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
63962         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
63963
63964 2000-02-12  Jim Meyering  <meyering@lucent.com>
63965
63966         * lib/userspec.c (ISDIGIT): Define it.
63967         (isdigit): Remove definition.
63968         (is_number): Use ISDIGIT, not isdigit.
63969         <libintl.h>: Include.
63970         (_ and N_): Define.
63971         (parse_user_spec): Mark translatable strings.
63972
63973 2000-02-10  Jim Meyering  <meyering@lucent.com>
63974
63975         With these changes, nanosleep.[ch] are finally enough like the other
63976         lib/* replacement files to compile on a few more losing systems.
63977
63978         * lib/nanosleep.h: Don't include config.h.
63979         Remove prototype from declaration of nanosleep.
63980         (PARAMS): Remove now-unneeded definition.
63981         * lib/nanosleep.c: #undef nanosleep.
63982         (rpl_nanosleep): Rename from nanosleep.
63983
63984 2000-02-10  Jim Meyering  <meyering@lucent.com>
63985
63986         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
63987         gnu_nanosleep to rpl_nanosleep.
63988
63989 2000-02-09  Jim Meyering  <meyering@lucent.com>
63990
63991         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
63992         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
63993
63994 2000-02-08  Akim Demaille  <akim@epita.fr>
63995
63996         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
63997         `[' and `]' and remove uses of `changequote'.
63998         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
63999         (AC_SYS_LARGEFILE): Likewise.
64000         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
64001         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
64002         of changequote.
64003         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
64004         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
64005         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
64006         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
64007
64008 2000-02-05  Jim Meyering  <meyering@lucent.com>
64009
64010         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
64011         Remove explicit use of AC_HEADER_TIME.  It is required by
64012         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
64013         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
64014         in autoconf whereby the expansion of the latter ended up preceding
64015         the expansion of its prerequisite, AC_HEADER_TIME.
64016         Reported by Volker Borchert.
64017
64018 2000-02-03  Jim Meyering  <meyering@lucent.com>
64019
64020         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
64021
64022 2000-02-03  Jim Meyering  <meyering@lucent.com>
64023
64024         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
64025         rather than with `#if HAVE_UTMPNAME'.
64026
64027 2000-02-02  Jim Meyering  <meyering@lucent.com>
64028
64029         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
64030         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
64031         Reported by Eli Zaretskii.
64032
64033 2000-02-01  Jim Meyering  <meyering@lucent.com>
64034
64035         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
64036
64037 2000-01-31  Jim Meyering  <meyering@lucent.com>
64038
64039         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
64040         functions.  Add the time.h and sys/time.h headers along with the
64041         AC_REQUIRE'ment of AC_HEADER_TIME.
64042
64043 2000-01-31  Jim Meyering  <meyering@lucent.com>
64044
64045         * lib/nanosleep.h (nanosleep): Guard declaration with
64046         `#if ! HAVE_DECL_NANOSLEEP'.
64047         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
64048         the declaration in that vendor's sys/timers.h.
64049         Reported by Christian Krackowizer.
64050
64051         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
64052         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
64053         (ISPRINT): Likewise.
64054         Reported by Tom Tromey.
64055
64056 2000-01-30  Jim Meyering  <meyering@lucent.com>
64057
64058         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
64059
64060         * m4/prereq.m4 (utmp_includes): Define.
64061         Check for ut_user and ut_name members in both struct utmpx
64062         and struct utmp.
64063
64064 2000-01-30  Jim Meyering  <meyering@lucent.com>
64065
64066         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
64067         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
64068         header files where only utmpx.ut_user is declared.
64069
64070         * lib/readutmp.h (UT_USER): Define.
64071
64072 2000-01-29  Jim Meyering  <meyering@lucent.com>
64073
64074         * m4/lib-check.m4: New file containing library-related checks from
64075         fileutils and sh-utils (textutils had none).
64076
64077 2000-01-28  Jim Meyering  <meyering@lucent.com>
64078
64079         * m4/perl.m4: Change format of warning message to look more like that
64080         from the missing script.  Suggestion from François Pinard.
64081
64082 2000-01-25  Jim Meyering  <meyering@lucent.com>
64083
64084         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
64085         well as time.h in the compile check.
64086         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
64087         Fix typo in cross-compiling case: s/yes/no/.
64088
64089 2000-01-23  Jim Meyering  <meyering@lucent.com>
64090
64091         * m4/jm-macros.m4: Move df-related tests here from
64092         fileutils/configure.in
64093
64094         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
64095         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
64096
64097         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
64098         s/space/ac_fsusage_space/.
64099         (jm_FILE_SYSTEM_USAGE): Take two parameters.
64100
64101         * m4/ftruncate.m4: New file (derived from part of
64102         fileutils/configure.in).
64103         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
64104         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
64105
64106         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
64107         AC_SUBST these here, rather than just in sh-util/configure.in, so
64108         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
64109         all the same.
64110         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
64111         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
64112         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
64113         (AC_SUBST(POW_LIBM)): Likewise.
64114         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
64115
64116 2000-01-23  Jim Meyering  <meyering@lucent.com>
64117
64118         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
64119         obstack.c.
64120
64121 2000-01-22  Jim Meyering  <meyering@lucent.com>
64122
64123         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
64124
64125         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
64126
64127         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
64128         configure.in
64129         (AC_CHECK_HEADERS): Likewise for sh-utils.
64130         (AC_CHECK_HEADERS): Likewise for textutils.
64131         Merge the three lists of headers.
64132
64133         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
64134         from fileutils' configure.in.
64135
64136         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
64137         code. Moved tests into their own function (_jm_DECL_HEADERS) in
64138         check-decl.m4.
64139
64140         * m4/check-decl.m4: Use #if rather than #ifdef.
64141         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
64142         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
64143         (_jm_DECL_HEADERS): Define new function.
64144         (jm_CHECK_DECLARATIONS): Require it.
64145
64146 2000-01-22  Jim Meyering  <meyering@lucent.com>
64147
64148         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
64149         [! HAVE_DECL_STRTOULL]: Declare strtoull.
64150         Required for some AIX systems.  Reported by Christian Krackowizer.
64151         [TESTING] (main): New function.
64152
64153         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
64154         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
64155         letters.
64156
64157         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
64158         iswprint.
64159
64160         * lib/strverscmp.c (ISDIGIT): Define.
64161         (strverscmp): Use ISDIGIT, not isdigit.
64162
64163 2000-01-19  Jim Meyering  <meyering@lucent.com>
64164
64165         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
64166         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
64167         defines `struct timespec' in <sys/time.h>
64168
64169         * m4/c-bs-a.m4: Remove uses of changequote altogether.
64170         Thanks to Akim for explaining.
64171
64172 2000-01-17  Paul Eggert  <eggert@twinsun.com>
64173
64174         * lib/nanosleep.c (nanosleep):
64175         Don't use SA_INTERRUPT to decide whether to call sigaction, as
64176         POSIX.1 doesn't require SA_INTERRUPT and some systems
64177         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
64178         it's been part of POSIX.1 since day 1 (in 1988).
64179
64180 2000-01-17  Jim Meyering  <meyering@lucent.com>
64181
64182         * lib/interlock: Remove unused file.  Reported by François Pinard.
64183
64184 2000-01-16  Paul Eggert  <eggert@twinsun.com>
64185
64186         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
64187         alert, backslash, formfeed, and vertical tab unnecessarily in
64188         shell quoting style.
64189
64190 2000-01-16  Jim Meyering  <meyering@lucent.com>
64191
64192         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
64193         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
64194         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
64195         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
64196
64197 2000-01-16  Jim Meyering  <meyering@lucent.com>
64198
64199         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
64200         because the latter didn't work.
64201
64202 2000-01-15  Jim Meyering  <meyering@lucent.com>
64203
64204         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
64205         (AC_REPLACE_FUNCS): Add memcpy and memset.
64206         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
64207         Add strpbrk.
64208         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
64209
64210 2000-01-12  Jim Meyering  <meyering@lucent.com>
64211
64212         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
64213         (jm_PREREQ): Use it.
64214         (jm_PREREQ_READUTMP): New macro.
64215         (jm_PREREQ): Use it.
64216
64217 2000-01-11  Paul Eggert  <eggert@twinsun.com>
64218
64219         Quote multibyte characters correctly.
64220         * m4/c-bs-a.m4: New file.
64221         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
64222         (jm_PREREQ): Use it.
64223
64224 2000-01-11  Paul Eggert  <eggert@twinsun.com>
64225
64226         * m4/uintmax_t.m4: Port to autoconf 2.13.
64227
64228 2000-01-08  Jim Meyering  <meyering@ascend.com>
64229
64230         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
64231         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
64232
64233 2000-01-04  Jim Meyering  <meyering@ascend.com>
64234
64235         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
64236         jm_STRUCT_DIRENT_D_TYPE.
64237         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
64238         jm_STRUCT_DIRENT_D_INO.
64239         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
64240         jm_STRUCT_UTIMBUF.
64241         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
64242         renamings.
64243         * m4/utime.m4: Likewise.
64244
64245         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
64246         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
64247
64248 2000-01-03  Paul Eggert  <eggert@twinsun.com>
64249
64250         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
64251         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
64252
64253 2000-01-02  Jim Meyering  <meyering@ascend.com>
64254
64255         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
64256         remember if this is necessary.
64257
64258 1999-12-26  Jim Meyering  <meyering@ascend.com>
64259
64260         * m4/jm-macros.m4: Use it here.
64261         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
64262
64263 1999-12-23  Jim Meyering  <meyering@ascend.com>
64264
64265         * m4/jm-macros.m4: Check for clock_gettime (moved from
64266         fileutils/configure.in)
64267         Check for gettimeofday.
64268
64269 1999-12-20  Jim Meyering  <meyering@ascend.com>
64270
64271         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
64272         autoconf-2.14a-1999-12-20.
64273
64274 1999-12-19  Jim Meyering  <meyering@ascend.com>
64275
64276         * m4/lstat-slash.m4: New file.
64277         * m4/jm-macros.m4: Use the new macro:
64278         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
64279
64280 1999-12-07  Jim Meyering  <meyering@ascend.com>
64281
64282         * m4/perl.m4: Require that File::Compare be available, too.
64283         Too many systems seem to lack it.
64284
64285         * m4/strftime.m4: Add checks for most of the cpp macros tested in
64286         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
64287
64288 1999-11-18  Paul Eggert  <eggert@twinsun.com>
64289
64290         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
64291         problem with the QNX 4.25 shell, which doesn't propagate exit
64292         status of failed commands inside shell assignments.
64293
64294 1999-11-17  Jim Meyering  <meyering@ascend.com>
64295
64296         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
64297
64298 1999-11-07  Jim Meyering  <meyering@ascend.com>
64299
64300         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
64301
64302 1999-11-06  Jim Meyering  <meyering@ascend.com>
64303
64304         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
64305         * m4/jm-macros.m4 (jm_MACROS): Use it here.
64306
64307 1999-11-05  Jim Meyering  <meyering@ascend.com>
64308
64309         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
64310         configure.in of textutils, fileutils, and sh-utils into this one
64311         (shared between those packages) file.
64312         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
64313         AC_STRUCT_ST_BLKSIZE.
64314
64315 1999-11-03  Jim Meyering  <meyering@ascend.com>
64316
64317         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
64318         of AC_CHECK_TYPE checks includes unistd.h.
64319         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
64320         Suggestion from Akim Demaille.
64321
64322 1999-10-30  Jim Meyering  <meyering@ascend.com>
64323
64324         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
64325         m4-quoted string.
64326         * m4/ls-mntd-fs.m4: Likewise.
64327         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
64328         * m4/jm-winsz1.m4: Likewise.
64329
64330         * m4/const.m4: Remove file, since the fix made it into the experimental
64331         version of autoconf.
64332         * m4/mktime.m4: Likewise.
64333
64334         * m4/check-type.m4: Remove file, now that the latest version of
64335         AC_CHECK_TYPE takes a third arg to specify additional #includes.
64336
64337         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
64338         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
64339         AC_CHECK_TYPE.
64340
64341 1999-10-04  Jim Meyering  <meyering@ascend.com>
64342
64343         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
64344
64345 1999-09-22  Paul Eggert  <eggert@twinsun.com>
64346
64347         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
64348         2.95.1 bug with HP-UX 10.20.
64349
64350 1999-09-17  Jim Meyering  <meyering@ascend.com>
64351
64352         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
64353         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
64354         due to missing strdup (against sh-utils-2.0).
64355
64356 1999-08-29  Jim Meyering  <meyering@ascend.com>
64357
64358         * m4/jm-macros.m4: Require jm_BISON.
64359         * m4/bison.m4: New file.
64360
64361 1999-08-17  Paul Eggert  <eggert@twinsun.com>
64362
64363         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
64364         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
64365
64366 1999-08-05  Jim Meyering  <meyering@ascend.com>
64367
64368         * m4/getline.m4: Rename test file from conftestdata to conftest.data
64369         to avoid conflicts with `conftest' on 8+3 filesystems.
64370         Suggestion from Eli Zaretskii.
64371
64372 1999-08-04  Jim Meyering  <meyering@ascend.com>
64373
64374         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
64375         fileutils and sh-utils (textutils's getline test was inadequate).
64376         (AM_FUNC_GETLINE): Run this test.
64377         (AC_CHECK_FUNCS): Check for getdelim.
64378         Reported by Bob Proulx.
64379
64380 1999-08-02  Jim Meyering  <meyering@ascend.com>
64381
64382         * m4/jm-macros.m4: Add a comment.
64383
64384 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64385
64386         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
64387         <inttypes.h> defines strtoumax as a macro (and not as a
64388         function).
64389
64390 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64391
64392         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
64393         that we can shift, multiply and divide unsigned long long
64394         values; Ultrix cc can't do it.
64395
64396 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64397
64398         * m4/mktime.m4: New file, which is a preview of what should appear
64399         in the next public autoconf release.
64400
64401 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64402
64403         * m4/lfs.m4: Remove this file.
64404         * m4/largefile.m4: New file.  It contains the old contents of
64405         lfs.m4, except that all names with prefix AC_LFS have been
64406         changed to use the prefix AC_SYS_LARGEFILE instead, to be
64407         compatible with future autoconf versions.  Also, some minor m4
64408         quoting problems have been fixed.
64409
64410 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64411
64412         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
64413         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
64414         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
64415         and simplify the shell code.
64416
64417 1999-08-01  Jim Meyering  <meyering@ascend.com>
64418
64419         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
64420         m4.
64421
64422 1999-07-20  Jim Meyering  <meyering@ascend.com>
64423
64424         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
64425
64426 1999-07-15  Jim Meyering  <meyering@ascend.com>
64427
64428         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
64429
64430 1999-05-22  Jim Meyering  <meyering@ascend.com>
64431
64432         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
64433
64434 1999-05-20  Jim Meyering  <meyering@ascend.com>
64435
64436         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
64437         Add a colon after each `then' in case $4 is empty.
64438
64439 1999-05-16  Jim Meyering  <meyering@ascend.com>
64440
64441         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
64442
64443 1999-05-10  Jim Meyering  <meyering@ascend.com>
64444
64445         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
64446
64447         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
64448         AC_FUNC_MKTIME.
64449
64450 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
64451
64452         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
64453
64454 1999-05-04  Paul Eggert  <eggert@twinsun.com>
64455
64456         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
64457         not CPPFLAGS, so that linking works correctly in IRIX.
64458
64459 1999-04-30  Paul Eggert  <eggert@twinsun.com>
64460
64461         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
64462
64463 1999-04-20  Paul Eggert  <eggert@twinsun.com>
64464
64465         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
64466         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
64467         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
64468         jm_AC_TYPE_UNSIGNED_LONG_LONG.
64469         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
64470
64471         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
64472
64473 1999-04-20  Jim Meyering  <meyering@ascend.com>
64474
64475         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
64476         AC_REPLACE xstroull if necessary.  From Paul Eggert.
64477         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
64478
64479 1999-04-18  Jim Meyering  <meyering@ascend.com>
64480
64481         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
64482         * m4/jm-macros.m4: Use it.
64483
64484 1999-04-06  Jim Meyering  <meyering@ascend.com>
64485
64486         * m4/strftime.m4: Remove test for %f.
64487
64488 1999-03-29  Jim Meyering  <meyering@ascend.com>
64489
64490         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
64491         superset of the AC_TYPE_* checks in the textutils, fileutils,
64492         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
64493         AC_TYPE_PID_T.
64494
64495 1999-03-28  Jim Meyering  <meyering@ascend.com>
64496
64497         * m4/jm-macros.m4: Define GNU_PACKAGE here.
64498         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
64499         replaced e.g., in the *.sh files of the sh-utils.
64500
64501 1999-03-20  Jim Meyering  <meyering@ascend.com>
64502
64503         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
64504         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
64505         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
64506
64507 1999-03-19  Jim Meyering  <meyering@ascend.com>
64508
64509         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
64510
64511 1999-03-12  Jim Meyering  <meyering@ascend.com>
64512
64513         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
64514
64515 1999-03-07  Jim Meyering  <meyering@ascend.com>
64516
64517         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
64518         declared.
64519
64520 1999-02-17  Jim Meyering  <meyering@ascend.com>
64521
64522         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
64523         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
64524
64525 1999-02-07  Jim Meyering  <meyering@ascend.com>
64526
64527         * m4/group-member.m4: New file -- extracted from sh-utils'
64528         configure.in.
64529
64530         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
64531         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
64532
64533 1999-02-06  Jim Meyering  <meyering@ascend.com>
64534
64535         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
64536         * m4/fnmatch.m4: Likewise.
64537         * m4/getgroups.m4: Likewise.
64538         * m4/lstat.m4: Likewise.
64539         * m4/malloc.m4: Likewise.
64540         * m4/putenv.m4: Likewise.
64541         * m4/realloc.m4: Likewise.
64542         * m4/regex.m4: Likewise.
64543         * m4/stat.m4: Likewise.
64544         * m4/strftime.m4: Likewise.
64545         Suggestion from Alain Magloire.
64546
64547         * m4/chown.m4: Use `.$ac_objext', not `.o'.
64548         * m4/fnmatch.m4: Likewise.
64549         * m4/getgroups.m4: Likewise.
64550         * m4/getline.m4: Likewise.
64551         * m4/lstat.m4: Likewise.
64552         * m4/malloc.m4: Likewise.
64553         * m4/memcmp.m4: Likewise.
64554         * m4/putenv.m4: Likewise.
64555         * m4/realloc.m4: Likewise.
64556         * m4/regex.m4: Likewise.
64557         * m4/stat.m4: Likewise.
64558         * m4/strftime.m4: Likewise.
64559         Suggestion from Alain Magloire.
64560
64561         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
64562         an argument.
64563
64564         * m4/regex.m4: Add a run-time Test for proper operation of
64565         re_compile_pattern.
64566
64567 1999-01-31  Jim Meyering  <meyering@ascend.com>
64568
64569         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
64570
64571 1999-01-30  Jim Meyering  <meyering@ascend.com>
64572
64573         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
64574
64575         * m4/jm-mktime.m4: Make this a wrapper around the official
64576         AM_FUNC_MKTIME rather than my private copy, now that the official one
64577         is up to date.
64578         * m4/mktime.m4: Remove file.
64579
64580         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
64581         * m4/uptime.m4: Likewise.
64582         * m4/uintmax_t.m4: Likewise.
64583
64584 1999-01-28  Jim Meyering  <meyering@ascend.com>
64585
64586         * m4/jm-macros.m4: Use jm_AFS.
64587         * m4/afs.m4: New file (from fileutils' configure.in).
64588
64589         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
64590         * m4/chown.m4: Likewise.
64591         * m4/d-ino.m4: Likewise.
64592         * m4/d-type.m4: Likewise.
64593         * m4/fnmatch.m4: Likewise.
64594         * m4/getgroups.m4: Likewise.
64595         * m4/gettext.m4: Likewise.
64596         * m4/jm-mktime.m4: Likewise.
64597         * m4/jm-winsz2.m4: Likewise.
64598         * m4/lcmessage.m4: Likewise.
64599         * m4/ls-mntd-fs.m4: Likewise.
64600         * m4/malloc.m4: Likewise.
64601         * m4/memcmp.m4: Likewise.
64602         * m4/putenv.m4: Likewise.
64603         * m4/realloc.m4: Likewise.
64604         * m4/st_mtim.m4: Likewise.
64605         * m4/strftime.m4: Likewise.
64606
64607 1999-01-16  Jim Meyering  <meyering@ascend.com>
64608
64609         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
64610         (ARGMATCH_DIE_DECL): Define.
64611
64612 1999-01-12  Jim Meyering  <meyering@ascend.com>
64613
64614         * m4/Makefile.am.in: Rewrite to avoid using fmt.
64615         Reported by Lars Hecking.
64616
64617 1999-01-10  Jim Meyering  <meyering@ascend.com>
64618
64619         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
64620         gross kludge.
64621         * m4/inttypes_h.m4: Likewise.
64622         * m4/lstat.m4: Likewise.
64623         * m4/malloc.m4: Likewise.
64624         * m4/readdir.m4: Likewise.
64625         * m4/realloc.m4: Likewise.
64626         * m4/st_dm_mode.m4: Likewise.
64627         * m4/stat.m4: Likewise.
64628         * m4/utimbuf.m4: Likewise.
64629         * m4/utimes.m4: Likewise.
64630
64631         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
64632         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
64633         comments in config.h.in are meaningful.
64634
64635         * m4/jm-macros.m4: Require autoconf-2.13 here.
64636
64637         * m4/regex.m4: By default, don't use the included regex.c on systems
64638         with glibc 2.  Suggestion from Uli Drepper.
64639
64640 1999-01-02  Jim Meyering  <meyering@ascend.com>
64641
64642         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
64643
64644 1998-12-18  Jim Meyering  <meyering@ascend.com>
64645
64646         * m4/Makefile.am.in (Makefile.am): Simplify rule.
64647         Based on a suggestion from Lars Hecking.
64648
64649 1998-11-16  Paul Eggert  <eggert@twinsun.com>
64650
64651         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
64652
64653 1998-11-16  Jim Meyering  <meyering@ascend.com>
64654
64655         * m4/lfs.m4: Double-quote the `uname...` expression.
64656
64657 1998-11-14  Jim Meyering  <meyering@ascend.com>
64658
64659         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
64660         * m4/stat.m4: Likewise.
64661
64662 1998-11-03  Jim Meyering  <meyering@ascend.com>
64663
64664         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
64665         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
64666
64667 1998-10-18  Jim Meyering  <meyering@ascend.com>
64668
64669         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
64670
64671 1998-10-17  Jim Meyering  <meyering@ascend.com>
64672
64673         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
64674         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
64675         calls for those previously hard-coded headers.  Instead, take a new
64676         parameter.
64677         (jm_CHECK_DECLARATIONS): Reflect interface change.
64678         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
64679         (jm_CHECK_DECL_LOCALTIME_R): New macro.
64680
64681         * m4/mktime.m4: Test for spring-forward gap before long-running test.
64682
64683 1998-10-14  Jim Meyering  <meyering@ascend.com>
64684
64685         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
64686         instead of "TZ=America/Vancouver".  From Paul Eggert.
64687
64688 1998-10-11  Jim Meyering  <meyering@ascend.com>
64689
64690         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
64691         This adds a test for a recently added compatibility fix for mktime.c.
64692         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
64693
64694 1998-09-27  Jim Meyering  <meyering@ascend.com>
64695
64696         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
64697
64698         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
64699         ../configure.in, including a change from Gordon Matzigkeit to allow
64700         cross-compiling for the Hurd.
64701
64702         * m4/glibc.m4: New file/macro to test for the GNU C Library
64703         versions 1 and 2.  From Gordon Matzigkeit.
64704         Indent.
64705
64706 1998-09-21  Jim Meyering  <meyering@ascend.com>
64707
64708         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
64709
64710 1998-08-18  Paul Eggert  <eggert@twinsun.com>
64711
64712         Port nanosecond-resolution times to UnixWare 2.1.2 and
64713         pedantic Solaris 2.6.
64714
64715         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
64716         AC_STRUCT_ST_MTIM.
64717         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
64718         Generate name of ns member, instead of just 1 or undef.
64719         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
64720
64721 1998-08-15  Jim Meyering  <meyering@ascend.com>
64722
64723         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
64724         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
64725         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
64726         instead of jm_TYPE_SSIZE_T.
64727
64728 1998-08-12  Jim Meyering  <meyering@ascend.com>
64729
64730         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
64731
64732 1998-08-02  Jim Meyering  <meyering@ascend.com>
64733
64734         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
64735         in acconfig.h manually.
64736
64737 1998-07-31  Paul Eggert  <eggert@twinsun.com>
64738
64739         * m4/st_mtim.m4: New file.
64740
64741 1998-07-28  Jim Meyering  <meyering@ascend.com>
64742
64743         * m4/utimes.m4: Undef stat.
64744
64745 1998-07-25  Jim Meyering  <meyering@ascend.com>
64746
64747         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
64748         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
64749
64750 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
64751
64752         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
64753         uid and gid actually remain unchanged.
64754
64755 1998-07-07  Jim Meyering  <meyering@ascend.com>
64756
64757         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
64758
64759 1998-07-04  Jim Meyering  <meyering@ascend.com>
64760
64761         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
64762         to prove that this macro can be used in packages without regex.c.
64763
64764 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
64765
64766         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
64767         is to be used.
64768
64769 1998-07-03  Jim Meyering  <meyering@ascend.com>
64770
64771         * m4/gettext.m4: Add -lintl if it's found to be necessary.
64772
64773         * m4/gettext.m4: New file -- from gettext-0.10.35.
64774         * m4/lcmessage.m4: Likewise.
64775         * m4/progtest.m4: Likewise.
64776
64777         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
64778         * m4/jm-macros.m4: Require the new macro.
64779
64780 1998-06-29  Jim Meyering  <meyering@ascend.com>
64781
64782         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
64783         for the definition of NGROUPS (used in a system header included
64784         by sys/mount.h).
64785
64786 1998-06-28  Jim Meyering  <meyering@ascend.com>
64787
64788         * m4/ls-mntd-fs.m4: New file.
64789         * m4/fstypename.m4: New file.
64790
64791         * m4/jm-macros.m4: Require the new macro.
64792         * m4/jm-glibc-io.m4: New file.
64793
64794 1998-05-19  Jim Meyering  <meyering@ascend.com>
64795
64796         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
64797         * m4/lchown.m4: New file.
64798
64799         * m4/Makefile.am.in: New file.
64800         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
64801
64802 1998-05-14  Jim Meyering  <meyering@ascend.com>
64803
64804         * m4/Makefile.am (EXTRA_DIST): Add them.
64805         * m4/jm-macros.m4: New file.
64806         * m4/utimbuf.m4: New file.
64807
64808 1998-05-12  Jim Meyering  <meyering@ascend.com>
64809
64810         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
64811
64812 1998-05-11  Jim Meyering  <meyering@ascend.com>
64813
64814         * m4/isc-posix.m4: New file.
64815
64816 1998-05-10  Jim Meyering  <meyering@ascend.com>
64817
64818         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
64819
64820 1998-05-09  Jim Meyering  <meyering@ascend.com>
64821
64822         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
64823         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
64824         with automake.
64825
64826         * m4/ssize_t.m4: New file.
64827         * m4/mktime.m4: Remove file -- the new automake has this now.
64828
64829 1998-04-26  Jim Meyering  <meyering@ascend.com>
64830
64831         * m4/assert.m4: New file.
64832         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
64833
64834 1998-04-05  Jim Meyering  <meyering@ascend.com>
64835
64836         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
64837         (jm_PREREQ): Use it here.
64838
64839 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
64840
64841         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
64842         in acconfig.h.
64843
64844 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
64845
64846         * m4/prereq.m4: New file.
64847         * m4/error.m4: New file.
64848         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
64849
64850 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
64851
64852         * m4/getline.m4: Don't set am_cv_func_working_getline before the
64853         cache-check for the same variable -- that defeated the purpose of
64854         the test; the test program was never run.  This was a problem only
64855         on systems with losing getline functions -- HP-UX 10.20 is one.
64856         Reported by Bjorn Helgaas.
64857
64858 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
64859
64860         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
64861
64862 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
64863
64864         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
64865
64866         * m4/const.m4: New file.  Use an initializer in this declaration
64867         typedef int charset[2]; const charset x;
64868         Reported by Bob Glickstein.
64869
64870 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
64871
64872         * m4/chown.m4: Fix reversed types on -1 args to chown.
64873         From Kaveh Ghazi.
64874
64875 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
64876
64877         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
64878         Add lseek and memchr.
64879
64880         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
64881         T.E.Dickey <dickey@clark.net> said that some older preprocessors
64882         have a 20-character limit on names.
64883
64884 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
64885
64886         * m4/inttypes_h.m4: New file.
64887         * m4/uintmax_t.m4: New file.
64888         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
64889
64890
64891         -----
64892
64893         Local Variables:
64894         coding: utf-8
64895         End:
64896
64897         Copyright (C) 1997-2010 Free Software Foundation, Inc.
64898
64899         Copying and distribution of this file, with or without
64900         modification, are permitted provided the copyright notice
64901         and this notice are preserved.