maint.mk: s/_header_without_use/_sc_header_without_use/
[pspp] / ChangeLog
1 2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
2
3         maint.mk: s/_header_without_use/_sc_header_without_use/
4         * top/maint.mk (_sc_header_without_use): Rename from _header_without_use.
5         (sc_prohibit_assert_without_use): Use the new name.
6         (sc_prohibit_close_stream_without_use): Likewise.
7         (sc_prohibit_getopt_without_use): Likewise.
8         (sc_prohibit_quotearg_without_use): Likewise.
9         (sc_prohibit_quote_without_use): Likewise.
10         (sc_prohibit_long_options_without_use): Likewise.
11         (sc_prohibit_inttostr_without_use): Likewise.
12         (sc_prohibit_ignore_value_without_use): Likewise.
13         (sc_prohibit_error_without_use): Likewise.
14         (sc_prohibit_xalloc_without_use): Likewise.
15         (sc_prohibit_hash_without_use): Likewise.
16         (sc_prohibit_hash_pjw_without_use): Likewise.
17         (sc_prohibit_safe_read_without_use): Likewise.
18         (sc_prohibit_argmatch_without_use): Likewise.
19         (sc_prohibit_canonicalize_without_use): Likewise.
20         (sc_prohibit_root_dev_ino_without_use): Likewise.
21         (sc_prohibit_openat_without_use): Likewise.
22         (sc_prohibit_c_ctype_without_use): Likewise.
23         (sc_prohibit_signal_without_use): Likewise.
24         (sc_prohibit_intprops_without_use): Likewise.
25
26 2010-03-30  Eric Blake  <eblake@redhat.com>
27
28         maint: improve module indicators
29         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE)
30         (gl_MODULE_INDICATOR, gl_MODULE_INDICATOR_FOR_TESTS): Fit in 80
31         columns, and avoid extra macro expansion.
32
33         fdopendir: work around FreeBSD bug
34         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
35         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Set it.
36         * modules/dirent (Makefile.am): Substitute it.
37         * lib/dirent.in.h (fdopendir): Supply missing FreeBSD
38         declaration.
39         * doc/posix-functions/fdopendir.texi (fdopendir): Document the
40         fix.
41         Reported by Christian Weisgerber <naddy@mips.inka.de>.
42
43 2010-03-29  Bruno Haible  <bruno@clisp.org>
44
45         Emit #pragma system_header after the inclusion guard, not before.
46         * lib/arpa_inet.in.h: Emit #pragma system_header after the inclusion
47         guard that spans the entire file, not before. This enables an
48         optimization in GCC's preprocessor.
49         * lib/ctype.in.h: Likewise.
50         * lib/dirent.in.h: Likewise.
51         * lib/errno.in.h: Likewise.
52         * lib/float.in.h: Likewise.
53         * lib/getopt.in.h: Likewise.
54         * lib/iconv.in.h: Likewise.
55         * lib/langinfo.in.h: Likewise.
56         * lib/locale.in.h: Likewise.
57         * lib/math.in.h: Likewise.
58         * lib/netdb.in.h: Likewise.
59         * lib/netinet_in.in.h: Likewise.
60         * lib/pty.in.h: Likewise.
61         * lib/sched.in.h: Likewise.
62         * lib/se-selinux.in.h: Likewise.
63         * lib/search.in.h: Likewise.
64         * lib/spawn.in.h: Likewise.
65         * lib/stdarg.in.h: Likewise.
66         * lib/stdint.in.h: Likewise.
67         * lib/string.in.h: Likewise.
68         * lib/strings.in.h: Likewise.
69         * lib/sys_file.in.h: Likewise.
70         * lib/sys_ioctl.in.h: Likewise.
71         * lib/sys_time.in.h: Likewise.
72         * lib/sys_times.in.h: Likewise.
73         * lib/sys_utsname.in.h: Likewise.
74         * lib/sys_wait.in.h: Likewise.
75         * lib/sysexits.in.h: Likewise.
76         * lib/wctype.in.h: Likewise.
77
78 2010-03-28  James Youngman  <jay@gnu.org>
79
80         save-cwd: don't leak a file descriptor when the caller execs.
81         * lib/save-cwd.c (save_cwd): set the close-on-exec flag for the
82         saved file descriptor.
83         * modules/save-cwd (Depends-on): Depend on cloexec.
84
85 2010-03-29  Bruno Haible  <bruno@clisp.org>
86
87         Remove vestiges of fts-lgpl module.
88         * lib/fts_.h: Assume GNULIB_FTS is 1.
89         * lib/fts.c: Likewise.
90         * modules/fts (configure.ac): Remove gl_MODULE_INDICATOR invocation.
91
92 2010-03-28  Bruno Haible  <bruno@clisp.org>
93
94         Fix definition of tests witness macro.
95         * gnulib-tool (func_import): Fix definition of witness macro.
96
97 2010-03-28  Bruno Haible  <bruno@clisp.org>
98
99         Fix ioctl's protoype on glibc systems.
100         * lib/sys_ioctl.in.h (ioctl): If REPLACE_IOCTL is 1, use a wrapper. Use
101         _GL_CXXALIAS_SYS, not _GL_CXXALIAS_SYS_CAST.
102         * lib/ioctl.c (rpl_ioctl) [HAVE_IOCTL]: New wrapper.
103         * modules/ioctl (configure.ac): Test whether ioctl has the POSIX
104         signature. If not, arrange to replace the ioctl function.
105         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
106         REPLACE_IOCTL.
107         * modules/sys_ioctl (Makefile.am): Substitute REPLACE_IOCTL.
108         * doc/posix-functions/ioctl.texi: Mention the glibc problem.
109         Reported by Ludovic Courtès <ludo@gnu.org>.
110
111 2010-03-28  Javier Villavicencio  <the_paya@gentoo.org>
112
113         exclude: fix the case of globs vs. EXCLUDE_INCLUDE
114         * lib/exclude.c (excluded_file_pattern_p): Fix logic error that
115         made it so grep -r --include=GLOB* ... did not work.
116
117 2010-03-26  Jim Meyering  <meyering@redhat.com>
118             Eric Blake  <eblake@redhat.com>
119
120         maint.mk: prohibit use of test's -o and -a operators
121         * top/maint.mk (sc_prohibit_test_minus_ao): New rule.
122
123 2010-03-28  Bruno Haible  <bruno@clisp.org>
124
125         Remove unused GNULIB_XYZ macro definitions.
126         * modules/crypto/gc-camellia (configure.ac): Remove gl_MODULE_INDICATOR
127         invocation.
128
129 2010-03-28  Bruno Haible  <bruno@clisp.org>
130
131         Mark privileged tests modules.
132         * modules/idpriv-drop-tests (Status): New section.
133         * modules/idpriv-droptemp-tests (Status): New section.
134
135 2010-03-28  Bruno Haible  <bruno@clisp.org>
136
137         Split C++ tests into separate tests modules.
138         * modules/dirent-c++-tests: New file, extracted from
139         modules/dirent-tests.
140         * modules/dirent-tests: Depend on it.
141         * modules/fcntl-h-c++-tests: New file, extracted from
142         modules/fcntl-h-tests.
143         * modules/fcntl-h-tests: Depend on it.
144         * modules/glob-c++-tests: New file, extracted from modules/glob-tests.
145         * modules/glob-tests: Depend on it.
146         * modules/iconv-h-c++-tests: New file, extracted from
147         modules/iconv-h-tests.
148         * modules/iconv-h-tests: Depend on it.
149         * modules/langinfo-c++-tests: New file, extracted from
150         modules/langinfo-tests.
151         * modules/langinfo-tests: Depend on it.
152         * modules/locale-c++-tests: New file, extracted from
153         modules/locale-tests.
154         * modules/locale-tests: Depend on it.
155         * modules/math-c++-tests: New file, extracted from modules/math-tests.
156         * modules/math-tests: Depend on it.
157         * modules/pty-c++-tests: New file, extracted from modules/pty-tests.
158         * modules/pty-tests: Depend on it.
159         * modules/search-c++-tests: New file, extracted from
160         modules/search-tests.
161         * modules/search-tests: Depend on it.
162         * modules/signal-c++-tests: New file, extracted from
163         modules/signal-tests.
164         * modules/signal-tests: Depend on it.
165         * modules/spawn-c++-tests: New file, extracted from
166         modules/spawn-tests.
167         * modules/spawn-tests: Depend on it.
168         * modules/stdio-c++-tests: New file, extracted from
169         modules/stdio-tests.
170         * modules/stdio-tests: Depend on it.
171         * modules/stdlib-c++-tests: New file, extracted from
172         modules/stdlib-tests.
173         * modules/stdlib-tests: Depend on it.
174         * modules/string-c++-tests: New file, extracted from
175         modules/string-tests.
176         * modules/string-tests: Depend on it.
177         * modules/sys_ioctl-c++-tests: New file, extracted from
178         modules/sys_ioctl-tests.
179         * modules/sys_ioctl-tests: Depend on it.
180         * modules/sys_select-c++-tests: New file, extracted from
181         modules/sys_select-tests.
182         * modules/sys_select-tests: Depend on it.
183         * modules/sys_socket-c++-tests: New file, extracted from
184         modules/sys_socket-tests.
185         * modules/sys_socket-tests: Depend on it.
186         * modules/sys_stat-c++-tests: New file, extracted from
187         modules/sys_stat-tests.
188         * modules/sys_stat-tests: Depend on it.
189         * modules/sys_time-c++-tests: New file, extracted from
190         modules/sys_time-tests.
191         * modules/sys_time-tests: Depend on it.
192         * modules/time-c++-tests: New file, extracted from modules/time-tests.
193         * modules/time-tests: Depend on it.
194         * modules/unistd-c++-tests: New file, extracted from
195         modules/unistd-tests.
196         * modules/unistd-tests: Depend on it.
197         * modules/wchar-c++-tests: New file, extracted from
198         modules/wchar-tests.
199         * modules/wchar-tests: Depend on it.
200         * modules/wctype-c++-tests: New file, extracted from
201         modules/wctype-tests.
202         * modules/wctype-tests: Depend on it.
203         Reported by Simon Josefsson.
204
205 2010-03-28  Bruno Haible  <bruno@clisp.org>
206
207         gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
208         * gnulib-tool (func_exists_module): New function, extracted from
209         func_verify_module.
210         (func_verify_module): Use it.
211         (func_get_dependencies): Synthetize a dependency from 'foo-tests' to
212         'foo' only if 'foo' exists.
213         * doc/gnulib.texi (Extra tests modules): Explain how to split a tests
214         module.
215
216 2010-03-28  Bruno Haible  <bruno@clisp.org>
217
218         gnulib-tool: Add support for special categories of tests.
219         * gnulib-tool: New options --with-c++-tests, --with-longrunning-tests,
220         --with-privileged-tests, --with-unportable-tests, --with-all-tests.
221         (func_usage): Document them.
222         (inc_cxx_tests, inc_longrunning_tests, inc_privileged_tests,
223         inc_unportable_tests, inc_all_tests): New variables.
224         (func_acceptable): Consider these variables.
225         (func_modules_transitive_closure): Make it work when the 'Status' field
226         consists of multiple words.
227         (func_import): Store and restore the values of inc_cxx_tests,
228         inc_longrunning_tests, inc_privileged_tests, inc_unportable_tests,
229         inc_all_tests in gnulib-comp.m4.
230         (func_create_testdir): Set inc_all_tests to true.
231         * doc/gnulib.texi (Extra tests modules): New section.
232         Suggested by Jim Meyering.
233
234 2010-03-28  Bruno Haible  <bruno@clisp.org>
235
236         ansi-c++-opt: Allow turning off the C++ build by default.
237         * m4/ansi-c++.m4 (gl_CXX_CHOICE): Let CXX_CHOICE default to 'no' if
238         gl_CXX_CHOICE_DEFAULT_NO is defined.
239         Requested by Eric Blake.
240
241 2010-03-28  Bruno Haible  <bruno@clisp.org>
242
243         unistd: Avoid #define replacements in C++ mode.
244         * lib/unistd.in.h (socket, connect, accept, bind, getpeername,
245         getsockname, getsockopt, listen, recv, send, recvfrom, sendto,
246         setsockopt, shutdown, select): In C++, attach a warning to the function
247         if possible, rather than #defining the symbol to a dysfunctional alias.
248         Reported by John W. Eaton <jwe@gnu.org>.
249
250 2010-03-28  Bruno Haible  <bruno@clisp.org>
251
252         Fix link errors on mingw.
253         * lib/sys_ioctl.in.h (ioctl): Fix declaration idiom.
254         * modules/sys_ioctl-tests (Makefile.am): Link test-sys_ioctl-c++ with
255         $(LIBSOCKET).
256         * modules/sys_select-tests (Makefile.am): Link test-sys_select-c++ with
257         $(LIBSOCKET).
258
259 2010-03-28  Bruno Haible  <bruno@clisp.org>
260             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
261
262         lib-ignore: Determine different options for different compilers.
263         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Set a variable which
264         depends on the current language (C/C++/Fortran). Don't set LDFLAGS.
265         Add comments.
266         (_gl_IGNORE_UNUSED_LIBRARIES_OPTIONS): New macro.
267         * NEWS: Mention the change.
268
269 2010-03-27  Bruno Haible  <bruno@clisp.org>
270
271         Remove unused GNULIB_XYZ macro definitions.
272         * modules/dup3 (configure.ac): Remove gl_MODULE_INDICATOR invocation.
273         * modules/fseek (configure.ac): Likewise.
274         * modules/ioctl (configure.ac): Likewise.
275         * modules/open (configure.ac): Likewise.
276         * modules/stdlib-safer (configure.ac): Likewise.
277
278 2010-03-27  Bruno Haible  <bruno@clisp.org>
279
280         Add a remark about certain modules.
281         * modules/malloc (Comment): New section.
282         * modules/realloc (Comment): Likewise.
283         * modules/sigpipe (Comment): Likewise.
284
285 2010-03-27  Bruno Haible  <bruno@clisp.org>
286
287         Resolve conflict between the two kinds of module indicators.
288         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Define
289         GNULIB_TEST_XYZ instead of GNULIB_XYZ.
290         * modules/canonicalize (configure.ac): Invoke
291         gl_MODULE_INDICATOR_FOR_TESTS.
292         * tests/test-canonicalize-lgpl.c: Test GNULIB_TEST_XYZ instead of
293         GNULIB_XYZ.
294         * tests/test-dirent-c++.cc: Likewise.
295         * tests/test-dirent-safer.c: Likewise.
296         * tests/test-dup2.c: Likewise.
297         * tests/test-fchdir.c: Likewise.
298         * tests/test-fcntl-h-c++.cc: Likewise.
299         * tests/test-getopt.c: Likewise.
300         * tests/test-getopt.h: Likewise.
301         * tests/test-langinfo-c++.cc: Likewise.
302         * tests/test-locale-c++.cc: Likewise.
303         * tests/test-math-c++.cc: Likewise.
304         * tests/test-pty-c++.cc: Likewise.
305         * tests/test-search-c++.cc: Likewise.
306         * tests/test-signal-c++.cc: Likewise.
307         * tests/test-spawn-c++.cc: Likewise.
308         * tests/test-stdio-c++.cc: Likewise.
309         * tests/test-stdlib-c++.cc: Likewise.
310         * tests/test-string-c++.cc: Likewise.
311         * tests/test-sys_ioctl-c++.cc: Likewise.
312         * tests/test-sys_select-c++.cc: Likewise.
313         * tests/test-sys_socket-c++.cc: Likewise.
314         * tests/test-sys_stat-c++.cc: Likewise.
315         * tests/test-sys_time-c++.cc: Likewise.
316         * tests/test-time-c++.cc: Likewise.
317         * tests/test-unistd-c++.cc: Likewise.
318         * tests/test-wchar-c++.cc: Likewise.
319         * tests/uninorm/test-u8-nfc.c: Likewise.
320         * tests/uninorm/test-u8-nfd.c: Likewise.
321         * tests/uninorm/test-u8-nfkc.c: Likewise.
322         * tests/uninorm/test-u8-nfkd.c: Likewise.
323         * tests/uninorm/test-u16-nfc.c: Likewise.
324         * tests/uninorm/test-u16-nfd.c: Likewise.
325         * tests/uninorm/test-u16-nfkc.c: Likewise.
326         * tests/uninorm/test-u16-nfkd.c: Likewise.
327         * tests/uninorm/test-u32-nfc.c: Likewise.
328         * tests/uninorm/test-u32-nfc-big.c: Likewise.
329         * tests/uninorm/test-u32-nfd.c: Likewise.
330         * tests/uninorm/test-u32-nfd-big.c: Likewise.
331         * tests/uninorm/test-u32-nfkc.c: Likewise.
332         * tests/uninorm/test-u32-nfkc-big.c: Likewise.
333         * tests/uninorm/test-u32-nfkd.c: Likewise.
334         * tests/uninorm/test-u32-nfkd-big.c: Likewise.
335         * tests/uninorm/test-u32-normalize-big.c: Likewise.
336
337 2010-03-27  Bruno Haible  <bruno@clisp.org>
338
339         Distinguish two kinds of module indicators.
340         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Renamed from
341         gl_MODULE_INDICATOR.
342         (gl_MODULE_INDICATOR): New macro.
343         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
344         gl_MODULE_INDICATOR_FOR_TESTS instead of gl_MODULE_INDICATOR.
345         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
346         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
347         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
348         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
349         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
350         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
351         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
352         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
353         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
354         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
355         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
356         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
357         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
358         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
359         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
360         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
361         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
362         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
363         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
364         * modules/cloexec (configure.ac): Likewise.
365         * modules/getopt-gnu (configure.ac): Likewise.
366         * modules/uninorm/u8-normalize (configure.ac): Likewise.
367         * modules/uninorm/u16-normalize (configure.ac): Likewise.
368         * modules/uninorm/u32-normalize (configure.ac): Likewise.
369         * modules/fdopendir (configure.ac): Invoke gl_MODULE_INDICATOR.
370
371 2010-03-27  Bruno Haible  <bruno@clisp.org>
372
373         New module description field 'Comment'.
374         * gnulib-tool: New option --extract-comment.
375         (func_usage): Document it.
376         (sed_extract_prog, sed_extract_field_header): Support 'Comment' field.
377         (func_get_comment): New function.
378         * modules/TEMPLATE-EXTENDED: Add a blank Comment field.
379
380 2010-03-27  Bruno Haible  <bruno@clisp.org>
381
382         Addendum to 2010-02-07 commit.
383         * gnulib-tool (func_usage): Document --extract-applicability option.
384
385 2010-03-27  Bruno Haible  <bruno@clisp.org>
386
387         Use GNULIB_POSIXCHECK instead of GNULIB_PORTCHECK.
388         * lib/time.in.h (asctime, asctime_r, ctime, ctime_r): Test
389         GNULIB_POSIXCHECK, not GNULIB_PORTCHECK. Provide compile-time warnings
390         rather than link errors.
391
392 2010-03-27  Bruno Haible  <bruno@clisp.org>
393
394         Avoid side effects from tests-related modules on the compilation of lib.
395         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_CONDITION): New macro.
396         (gl_MODULE_INDICATOR_SET_VARIABLE): Use its expansion as a value.
397         * gnulib-tool (func_emit_tests_Makefile_am): Accept a witness_macro
398         parameter. Emit into AM_CPPFLAGS a definition of the designated C
399         macro.
400         (func_import): Define a witness macro. Assign it a value that depends
401         on the current package. Override gl_MODULE_INDICATOR_CONDITION for the
402         tests-related modules.
403         (func_create_testdir): Update func_emit_tests_Makefile_am invocation.
404         Reported by Jim Meyering.
405
406 2010-03-27  Bruno Haible  <bruno@clisp.org>
407
408         Factorize common .m4 code.
409         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE): New macro.
410         * m4/arpa_inet_h.m4 (gl_ARPA_INET_MODULE_INDICATOR): Use it.
411         * m4/ctype.m4 (gl_CTYPE_MODULE_INDICATOR): Likewise.
412         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Likewise.
413         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
414         * m4/iconv_h.m4 (gl_ICONV_MODULE_INDICATOR): Likewise.
415         * m4/inttypes.m4 (gl_INTTYPES_MODULE_INDICATOR): Likewise.
416         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
417         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
418         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
419         * m4/netdb_h.m4 (gl_NETDB_MODULE_INDICATOR): Likewise.
420         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
421         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
422         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
423         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
424         * m4/stddef_h.m4 (gl_STDDEF_MODULE_INDICATOR): Likewise.
425         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
426         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
427         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
428         * m4/strings_h.m4 (gl_STRINGS_MODULE_INDICATOR): Likewise.
429         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_MODULE_INDICATOR): Likewise.
430         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
431         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
432         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
433         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
434         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
435         * m4/sys_times_h.m4 (gl_SYS_TIMES_MODULE_INDICATOR): Likewise.
436         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_MODULE_INDICATOR): Likewise.
437         * m4/sys_wait_h.m4 (gl_SYS_WAIT_MODULE_INDICATOR): Likewise.
438         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
439         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
440         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
441
442 2010-03-27  Bruno Haible  <bruno@clisp.org>
443
444         Fix a compilation error on Cygwin with g++ >= 4.3.
445         * lib/sys_stat.in.h (lchmod): Don't warn about the use of this function
446         if it is undefined or if we alias it to chmod.
447         (lstat): Don't warn about the use of this function if it is undefined
448         or if we alias it to stat.
449         Reported by Simon Josefsson.
450
451 2010-03-27  Bruno Haible  <bruno@clisp.org>
452
453         * m4/getlogin.m4 (gl_FUNC_GETLOGIN): Renamed from gl_GETLOGIN.
454         * modules/getlogin (configure.ac): Update.
455
456         * m4/getlogin_r.m4 (gl_FUNC_GETLOGIN_R): Renamed from gl_GETLOGIN_R.
457         * modules/getlogin_r (configure.ac): Update.
458
459         * m4/inet_ntop.m4 (gl_FUNC_INET_NTOP): Renamed from gl_INET_NTOP.
460         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Update.
461         * modules/inet_ntop (configure.ac): Update.
462
463         * m4/inet_pton.m4 (gl_FUNC_INET_PTON): Renamed from gl_INET_PTON.
464         * modules/inet_pton (configure.ac): Update.
465
466         * m4/mbslen.m4 (gl_FUNC_MBSLEN): Renamed from gl_MBSLEN.
467         * modules/mbslen (configure.ac): Update.
468
469         * m4/pty.m4 (gl_FUNC_FORKPTY): Renamed from gl_FORKPTY.
470         (gl_FUNC_OPENPTY): Renamed from gl_OPENPTY.
471         * modules/forkpty (configure.ac): Update.
472         * modules/openpty (configure.ac): Update.
473
474 2010-03-26  Simon Josefsson  <simon@josefsson.org>
475
476         * top/maint.mk (sc_texinfo_acronym): Don't infloop if there is
477         no *.texi files.  Reported by Eric Blake <eblake@redhat.com>.
478
479 2010-03-25  Eric Blake  <eblake@redhat.com>
480
481         maint: use pragma consistently across replacement headers
482         * lib/ctype.in.h (system_header): Hoist for consistent placement.
483         * lib/dirent.in.h (system_header): Likewise.
484         * lib/errno.in.h (system_header): Likewise.
485         * lib/float.in.h (system_header): Likewise.
486         * lib/getopt.in.h (system_header): Likewise.
487         * lib/iconv.in.h (system_header): Likewise.
488         * lib/inttypes.in.h (system_header): Likewise.
489         * lib/langinfo.in.h (system_header): Likewise.
490         * lib/locale.in.h (system_header): Likewise.
491         * lib/math.in.h (system_header): Likewise.
492         * lib/netdb.in.h (system_header): Likewise.
493         * lib/netinet_in.in.h (system_header): Likewise.
494         * lib/pty.in.h (system_header): Likewise.
495         * lib/sched.in.h (system_header): Likewise.
496         * lib/se-selinux.in.h (system_header): Likewise.
497         * lib/search.in.h (system_header): Likewise.
498         * lib/spawn.in.h (system_header): Likewise.
499         * lib/stdarg.in.h (system_header): Likewise.
500         * lib/stdint.in.h (system_header): Likewise.
501         * lib/string.in.h (system_header): Likewise.
502         * lib/strings.in.h (system_header): Likewise.
503         * lib/sys_file.in.h (system_header): Likewise.
504         * lib/sys_ioctl.in.h (system_header): Likewise.
505         * lib/sys_socket.in.h (system_header): Likewise.
506         * lib/sys_times.in.h (system_header): Likewise.
507         * lib/sys_utsname.in.h (system_header): Likewise.
508         * lib/sys_wait.in.h (system_header): Likewise.
509         * lib/sysexits.in.h (system_header): Likewise.
510         * lib/unistd.in.h (system_header): Likewise.
511         * lib/wctype.in.h (system_header): Likewise.
512
513         arpa/inet: fix mingw compilation warning
514         * lib/arpa_inet.in.h (system_header): Hoist to be unconditional.
515         Reported by Matthew Bolte.
516
517 2010-03-25  Bruno Haible  <bruno@clisp.org>
518
519         Avoid collision between gnulib wrapper and libintl wrapper.
520         * lib/printf.c (printf): Don't define if a printf wrapper is already
521         defined in intl/printf.c.
522         Reported by Michel Boaventura <michel@michelboaventura.com>.
523
524 2010-03-25  Bruno Haible  <bruno@clisp.org>
525
526         Use ANSI C.
527         * lib/readutmp.h (getutent): Provide ANSI C prototype.
528
529 2010-03-25  Bruno Haible  <bruno@clisp.org>
530
531         Minor formatting changes.
532         * lib/acosl.c: Insert space before function argument list.
533         * lib/argz.c: Likewise.
534         * lib/asinl.c: Likewise.
535         * lib/expl.c: Likewise.
536         * lib/gen-uni-tables.c: Likewise.
537         * lib/gettext.h: Likewise.
538         * lib/glthread/lock.h: Likewise.
539         * lib/tanl.c: Likewise.
540         * lib/uniname/uniname.c: Likewise.
541         * tests/test-idpriv-drop.c: Likewise.
542         * tests/test-idpriv-droptemp.c: Likewise.
543         * tests/test-lock.c: Likewise.
544         * tests/test-tls.c: Likewise.
545         * lib/argp-help.c: Insert space before function-like macro argument
546         list.
547         * lib/memcmp.c: Likewise.
548         * tests/test-base64.c: Likewise.
549         * lib/localename.c: Insert space before sizeof's argument list.
550         * lib/safe-alloc.h: Likewise.
551         * lib/file-set.h: Insert space before macro argument list.
552         * tests/test-argp.c: Likewise.
553         * lib/argp-namefrob.h: Insert space before function parameter list.
554         * lib/getaddrinfo.c: Likewise.
555         * lib/netdb.in.h: Likewise.
556         * lib/parse-duration.h: Likewise.
557         * lib/parse-duration.c: Likewise.
558         * lib/poll.c: Likewise.
559         * lib/select.c: Likewise.
560         * lib/trim.h: Likewise.
561         * tests/test-usleep.c: Likewise.
562         * lib/ldexpl.c: Insert space before function parameter list and before
563         function argument list.
564         * lib/logl.c: Likewise.
565         * lib/sqrtl.c: Likewise.
566         * lib/trim.c: Likewise.
567         * lib/cosl.c: Use GNU style indentation. Insert space before function
568         argument list.
569         * lib/sinl.c: Likewise.
570         * lib/tsearch.c: Insert space after 'for'.
571         Reported by Jim Meyering.
572
573 2010-03-23  Pádraig Brady  <P@draigBrady.com>  (tiny change)
574
575         * maint.mk (sc_Wundef_boolean): Check for the presence of the
576         config header before grepping, as it's not present before
577         autoreconf/configure are run.  Reported by Simon Josefsson.
578
579 2010-03-23  Bruno Haible  <bruno@clisp.org>
580
581         pt_chown: Make it work with automake < 1.11.
582         * modules/pt_chown (Makefile.am): Define pkglibexecdir.
583         Reported by Simon Josefsson.
584
585 2010-03-23  Bruno Haible  <bruno@clisp.org>
586
587         pt_chown: Don't depend on GPLed modules.
588         * lib/pt_chown.c: Don't include idpriv.h.
589         (main): Don't drop privileges.
590         * modules/pt_chown (Depends-on): Remove idpriv-drop.
591         Reported by Simon Josefsson.
592
593 2010-03-24  Simon Josefsson  <simon@josefsson.org>
594
595         * top/maint.mk (sc_texinfo_acronym): Add rule, based on
596         suggestions from karl@freefriends.org (Karl Berry).
597
598 2010-03-22  Eric Blake  <eblake@redhat.com>
599
600         gethostname: further tweaks
601         * lib/unistd.in.h (includes): Only worry about <winsock2.h> if we
602         are overriding gethostname.
603         Suggested by Bruno Haible.
604
605 2010-03-21  Bruno Haible  <bruno@clisp.org>
606
607         Fix comments.
608         * lib/forkpty.c (rpl_forkpty): Fix comment.
609         * lib/openpty.c (rpl_openpty): Likewise.
610         Reported by Eric Blake.
611
612 2010-03-22  Eric Blake  <eblake@redhat.com>
613
614         gethostname: fix build on mingw
615         * lib/unistd.in.h (includes): Work around fact that mingw
616         <winsock2.h> re-includes <unistd.h>, by avoiding any
617         redeclarations if we are being included by <winsock2.h>.
618         Reported by Matthias Bolte.
619
620 2010-03-21  Bruno Haible  <bruno@clisp.org>
621
622         forkpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
623         * lib/forkpty.c (forkpty): New replacement function, from glibc with
624         modifications.
625         * lib/pty.in.h (forkpty): Update declaration. Add comments.
626         * m4/pty.m4 (gl_FORKPTY): If forkpty is not declared, arrange to
627         provide the replacement.
628         * modules/forkpty (Depends-on): Add openpty, login_tty.
629         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_FORKPTY.
630         * modules/pty (Makefile.am): Substitute HAVE_FORKPTY.
631         * doc/glibc-functions/forkpty.texi: More supported platforms.
632         * config/srclist.txt: Add forkpty.c (commented).
633
634 2010-03-21  Bruno Haible  <bruno@clisp.org>
635
636         * modules/forkpty-tests: Use the common TEMPLATE-TESTS.
637         (Makefile.am): Verify that PTY_LIB is defined.
638
639         * modules/openpty-tests: Use the common TEMPLATE-TESTS.
640
641 2010-03-21  Bruno Haible  <bruno@clisp.org>
642
643         Tests for module 'login_tty'.
644         * modules/login_tty-tests: New file.
645         * tests/test-login_tty.c: New file.
646
647         New module 'login_tty'.
648         * lib/login_tty.c: New file.
649         * m4/pty.m4 (gl_FUNC_LOGIN_TTY): New macro.
650         * modules/login_tty: New file.
651         * doc/glibc-functions/login_tty.texi: Mention the new module.
652
653 2010-03-21  Bruno Haible  <bruno@clisp.org>
654
655         login_tty: Documentation.
656         * doc/glibc-functions/login_tty.texi: New file.
657         * doc/gnulib.texi (Glibc <utmp.h>): Include it.
658
659 2010-03-21  Bruno Haible  <bruno@clisp.org>
660
661         pty: Consistent macro naming.
662         * m4/pty_h.m4 (gl_PTY_H): Renamed from gl_PTY.
663         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): Update.
664         * modules/pty (configure.ac): Update.
665
666 2010-03-21  Bruno Haible  <bruno@clisp.org>
667
668         Tests for openpty: Make stricter.
669         * tests/test-openpty.c (main): Add test of canonical processing and
670         erase.
671         * modules/openpty-tests (Makefile.am): Verify that PTY_LIB is defined.
672
673         openpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
674         * lib/openpty.c (openpty): New replacement function.
675         * lib/pty.in.h: Include <termios.h>.
676         (openpty): Update declaration. Add comments.
677         * m4/pty.m4 (gl_OPENPTY): Require AC_USE_SYSTEM_EXTENSIONS. If openpty
678         is not declared, arrange to provide the replacement. Check for _getpty
679         and posix_openpt.
680         * modules/openpty (Depends-on): Add extensions, fcntl-h, ioctl.
681         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_OPENPTY.
682         * modules/pty (Makefile.am): Substitute HAVE_OPENPTY.
683         * modules/pty-tests (test_pty_c___LDADD): New variable.
684         * doc/glibc-functions/openpty.texi: More supported platforms.
685
686 2010-03-21  Bruno Haible  <bruno@clisp.org>
687
688         setenv: Tweaks.
689         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Include necessary headers in
690         the test program.
691         * doc/posix-functions/setenv.texi: Update platforms list.
692
693 2010-03-21  Bruno Haible  <bruno@clisp.org>
694
695         New module 'unlockpt'.
696         * lib/unlockpt.c: New file, from glibc with modifications.
697         * m4/unlockpt.m4: New file.
698         * modules/unlockpt: New file.
699         * lib/stdlib.in.h (unlockpt): New declaration.
700         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether unlockpt is declared.
701         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_UNLOCKPT, HAVE_UNLOCKPT.
702         * modules/stdlib (Makefile.am): Substitute GNULIB_UNLOCKPT,
703         HAVE_UNLOCKPT.
704         * doc/posix-functions/unlockpt.texi: Mention the new module.
705         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::unlockpt.
706         * config/srclist.txt: Add unlockpt.c (commented).
707
708 2010-03-21  Jim Meyering  <meyering@redhat.com>
709
710         maint.mk: prohibit inclusion of "intprops.h" without use
711         * top/maint.mk (sc_prohibit_intprops_without_use): New rule.
712
713 2010-03-21  Bruno Haible  <bruno@clisp.org>
714
715         New module 'grantpt'.
716         * lib/grantpt.c: New file, from glibc with modifications.
717         * m4/grantpt.m4: New file.
718         * modules/grantpt: New file.
719         * lib/stdlib.in.h (grantpt): New declaration.
720         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether grantpt is declared.
721         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GRANTPT, HAVE_GRANTPT.
722         * modules/stdlib (Makefile.am): Substitute GNULIB_GRANTPT,
723         HAVE_GRANTPT.
724         * doc/posix-functions/grantpt.texi: Mention the new module.
725         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::grantpt.
726         * config/srclist.txt: Add grantpt.c (commented).
727
728 2010-03-21  Bruno Haible  <bruno@clisp.org>
729
730         New module 'pt_chown'.
731         * lib/pt_chown.c: New file, from glibc with modifications.
732         * lib/pty-private.h: New file, from glibc with modifications.
733         * modules/pt_chown: New file.
734         * config/srclist.txt: Add pt_chown.c, pty-private.h (commented).
735
736 2010-03-21  Bruno Haible  <bruno@clisp.org>
737
738         Tests for module 'ptsname'.
739         * modules/ptsname-tests: New file.
740         * tests/test-ptsname.c: New file.
741
742         New module 'ptsname'.
743         * lib/ptsname.c: New file, from glibc with modifications.
744         * m4/ptsname.m4: New file.
745         * modules/ptsname: New file.
746         * lib/stdlib.in.h (ptsname): New declaration.
747         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether ptsname is declared.
748         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PTSNAME, HAVE_PTSNAME.
749         * modules/stdlib (Makefile.am): Substitute GNULIB_PTSNAME,
750         HAVE_PTSNAME.
751         * doc/posix-functions/ptsname.texi: Mention the new module.
752         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::ptsname.
753         * config/srclist.txt: Add ptsname.c (commented).
754
755 2010-03-21  Bruno Haible  <bruno@clisp.org>
756
757         Tests for module 'ttyname_r'.
758         * modules/ttyname_r-tests: New file.
759         * tests/test-ttyname_r.c: New file.
760
761         New module 'ttyname_r'.
762         * lib/ttyname_r.c: New file.
763         * m4/ttyname_r.m4: New file.
764         * modules/ttyname_r: New file.
765         * lib/unistd.in.h (ttyname_r): New declaration.
766         * m4/unistd_h.m4 (gl_UNISTD_H): Check whether ttyname_r is declared.
767         (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_TTYNAME_R, HAVE_TTYNAME_R.
768         * modules/unistd (Makefile.am): Substitute GNULIB_TTYNAME_R,
769         HAVE_TTYNAME_R.
770         * tests/test-unistd-c++.cc: Check GNULIB_NAMESPACE::ttyname_r.
771         * doc/posix-functions/ttyname_r.texi: Mention the new module.
772
773 2010-03-20  Bruno Haible  <bruno@clisp.org>
774
775         signal: Undefine macro definitions in C++ mode.
776         * lib/signal.in.h (sigismember, sigemptyset, sigaddset, sigdelset,
777         sigfillset): Undefine macro definitions from the system header in C++
778         mode.
779         Reported by John W. Eaton <jwe@gnu.org>.
780
781 2010-03-20  Bruno Haible  <bruno@clisp.org>
782
783         Ensure no #include statements inside extern "C" { ... }.
784         * lib/obstack.h: Shrink extern "C" { ... } region so that it does not
785         contain #include statements.
786         * lib/time.in.h: Likewise.
787
788 2010-03-20  Bruno Haible  <bruno@clisp.org>
789
790         Make _GL_WARN_ON_USE usable in C++ and C mode in the same compilation.
791         * build-aux/warn-on-use.h (_GL_WARN_EXTERN_C): New macro.
792         (_GL_WARN_ON_USE, _GL_WARN_ON_USE_CXX): Likewise.
793         Reported by John W. Eaton <jwe@gnu.org>.
794
795 2010-03-20  Bruno Haible  <bruno@clisp.org>
796
797         * m4/unlink.m4 (gl_FUNC_UNLINK): Fix last commit.
798         Reported by Jim Meyering.
799
800 2010-03-20  Bruno Haible  <bruno@clisp.org>
801
802         pipe: Set errno upon failure.
803         * lib/pipe.h: Specify that when -1 is returned, errno is set.
804         * lib/pipe.c (create_pipe): Set errno when returning -1. Use the right
805         errno value in error message.
806
807 2010-03-20  Bruno Haible  <bruno@clisp.org>
808             Jim Meyering  <meyering@redhat.com>
809
810         lchown: Avoid "unused variable" warning.
811         * lib/lchown.c (rpl_lchown): Move variable 'st' into #if block.
812
813 2010-03-20  Bruno Haible  <bruno@clisp.org>
814
815         Work around unlink() bug on MacOS X 10.5.6.
816         * lib/unlink.c (rpl_unlink): If UNLINK_PARENT_BUG is defined, fail when
817         attempting to unlink a parent directory.
818         * m4/unlink.m4 (gl_FUNC_UNLINK): Require AC_CANONICAL_HOST. Test for
819         MacOS X 10.5 bug. If the bug is present, define UNLINK_PARENT_BUG and
820         activate for the replacement function.
821         * doc/posix-functions/unlink.texi: Mention the MacOS X 10.5 bug.
822
823 2010-03-20  Bruno Haible  <bruno@clisp.org>
824
825         Fix link errors on Solaris 8.
826         * modules/dirent-tests (test_dirent_c___LDADD): Add LIB_NANOSLEEP.
827         * modules/wctype-tests (test_wctype_c___LDADD): Likewise.
828
829 2010-03-19  Jim Meyering  <meyering@redhat.com>
830
831         regcomp.c: make non-_LIBC implementation of build_range_exp consistent
832         The _LIBC implementation of build_range_exp correctly honors the
833         RE_NO_EMPTY_RANGES flag when checking for reversed range endpoints.
834         However, the non-_LIBC implementation would ignore that syntax-bit
835         flag and return REG_ERANGE unconditionally.
836         This change makes it honor that flag.
837         * lib/regcomp.c (build_range_exp) [!_LIBC]: Add a parameter: "syntax".
838         Make two pointer parameters "const".
839         Use "syntax" bits in order to honor RE_NO_EMPTY_RANGES.
840         (parse_bracket_exp): Update caller.
841
842         regex.m4: correct the reversed range endpoint ([b-a]) test
843         * m4/regex.m4: When requiring that [b-a] evoke failure,
844         use RE_NO_EMPTY_RANGES.  This makes this entire configure-time
845         test pass once again for x86-based systems.
846
847 2010-03-19  Bruno Haible  <bruno@clisp.org>
848
849         scandir: Fix link error on Solaris 8.
850         * lib/scandir.c (_D_EXACT_NAMLEN, _D_ALLOC_NAMLEN): New fallback
851         macros.
852
853 2010-03-19  Bruno Haible  <bruno@clisp.org>
854
855         getusershell: Fix documentation.
856         * doc/glibc-functions/endusershell.texi: Refer to the getusershell
857         module.
858         * doc/glibc-functions/setusershell.texi: Likewise.
859
860         getusershell: Provide declaration, missing on Solaris 9.
861         * lib/unistd.in.h (getusershell, setusershell, endusershell): Declare
862         also if HAVE_GETUSERSHELL && !HAVE_DECL_GETUSERSHELL.
863         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): When the function exists,
864         check whether it is declared. Set HAVE_DECL_GETUSERSHELL.
865         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
866         HAVE_DECL_GETUSERSHELL, not HAVE_GETUSERSHELL.
867         * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETUSERSHELL, not
868         HAVE_GETUSERSHELL.
869         * doc/glibc-functions/getusershell.texi: Mention the Solaris problem.
870
871 2010-03-19  Bruno Haible  <bruno@clisp.org>
872
873         wctype: Provide iswblank function.
874         * lib/wctype.in.h (iswblank): Provide a replacement also when iswcntrl
875         exists and is fine.
876         * m4/wctype_h.m4 (gl_WCTYPE_H): Also check whether iswcntrl exists.
877         * modules/wctype (Makefile.am): Substitute HAVE_ISWBLANK.
878         * tests/test-wctype.c (main): Re-enable the iswblank tests.
879         * doc/posix-functions/iswblank.texi: Update.
880
881 2010-03-19  Bruno Haible  <bruno@clisp.org>
882
883         Tests of module 'pty' in C++ mode.
884         * modules/pty-tests: New file.
885         * tests/test-pty-c++.cc: New file.
886         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
887
888 2010-03-19  Eric Blake  <eblake@redhat.com>
889
890         logb: fix documentation
891         * doc/posix-functions/logb.texi (logb): Gnulib fixes the cygwin
892         1.5 declaration bug.
893
894         forkpty, openpty: prefer glibc's const-safe prototype
895         * lib/forkpty.c (rpl_forkpty): New file.
896         * lib/openpty.c (rpl_openpty): Likewise.
897         * modules/forkpty (Files): Distribute it.
898         * modules/openpty (Files): Likewise.
899         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.  Move decl
900         check...
901         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): ...here.  Request
902         replacement for for non-const BSD signature.
903         * modules/pty (Makefile.am): Substitute witnesses.
904         * lib/pty.in.h (forkpty, openpty): Declare replacements.
905         * tests/test-forkpty.c: Update signature check.
906         * tests/test-openpty.c: Likewise.
907         * doc/glibc-functions/forkpty.texi (forkpty): Document the fix.
908         * doc/glibc-functions/openpty.texi (openpty): Likewise.
909
910         forkpty, openpty: split functions into new modules
911         * modules/pty (Makefile.am): Substitute new witnesses.
912         (Libraries): Move library detection...
913         * modules/forkpty: ...into new module.
914         * modules/openpty: Another new module.
915         * modules/pty-tests: Rename and split...
916         * modules/forkpty-tests: ...to this...
917         * modules/openpty-tests: ...and this.
918         * tests/test-pty.c: Rename and split...
919         * tests/test-forkpty.c: ...to this...
920         * tests/test-openpty.c: ...and this.
921         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.
922         (gl_PTY): Split library searching...
923         * m4/pty.m4 (gl_PTY_LIB): ...into new file.
924         (gl_FORKPTY, gl_OPENPTY): New macros.
925         * lib/pty.in.h (forkpty, openpty): Honor new witnesses.
926         * NEWS: Mention the split.
927         * MODULES.html.sh (Misc): Document the modules.
928         * doc/glibc-functions/forkpty.texi (forkpty): Likewise.
929         * doc/glibc-functions/openpty.texi (openpty): Likewise.
930
931         pty: improve replacement header
932         * lib/pty.in.h: New file.
933         * modules/pty (Files): Ship it.
934         (Makefile.am): Always build replacement.
935         * m4/pty.m4: Rename...
936         * m4/pty_h.m4: ...to this.
937         (gl_PTY): Modernize setting of witness macros; update check of
938         forkpty to take proper advantage of cache.
939         (gl_PTY_MODULE_INDICATOR, gl_PTY_H_DEFAULTS): New macros.
940
941         getopt: avoid compiler warning
942         * lib/getopt.c (attribute_hidden): Remove unused macro.
943
944 2010-03-18  Bruno Haible  <bruno@clisp.org>
945
946         Fix link errors on Solaris 8.
947         * modules/iconv-h-tests (test_iconv_h_c___LDADD): Add LIB_NANOSLEEP.
948         * modules/search-tests (test_search_c___LDADD): Likewise.
949         * modules/signal-tests (test_signal_c___LDADD): Likewise.
950         * modules/spawn-tests (test_spawn_c___LDADD): Likewise.
951         * modules/stdio-tests (test_stdio_c___LDADD): Likewise.
952         * modules/sys_select-tests (test_sys_select_c___LDADD): Likewise.
953         * modules/sys_socket-tests (test_sys_socket_c___LDADD): Likewise.
954         * modules/sys_time-tests (test_sys_time_c___LDADD): Likewise.
955         * modules/wchar-tests (test_wchar_c___LDADD): Likewise.
956
957 2010-03-18  Bruno Haible  <bruno@clisp.org>
958
959         Fix bug introduced on 2010-03-14.
960         * m4/spawn_h.m4 (gl_HAVE_POSIX_SPAWN): New macro.
961         (gl_SPAWN_H): Require it.
962         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Likewise.
963         Reported by Simon Josefsson.
964
965 2010-03-18  Bruno Haible  <bruno@clisp.org>
966
967         Fix typo introduced on 2009-12-31.
968         * m4/spawn_h.m4 (gl_SPAWN_H): Check for the declaration of
969         posix_spawn_file_actions_adddup2.
970
971 2010-03-17  Bert Wesarg  <bert.wesarg@googlemail.com>  (tiny change)
972         and Eric Blake  <eblake@redhat.com>
973
974         test-vc-list-files-git: make more robust
975         * tests/test-vc-list-files-git.sh: Unset problematic environment
976         variables.  Chain commands together.
977
978 2010-03-17  Ludovic Courtès <ludo@gnu.org>  (tiny change)
979
980         * m4/pty.m4: Unset $ac_cv_have_decl_forkpty before the second
981         `AC_CHECK_DECL' invocation.
982
983 2010-03-15  Sergey Poznyakoff  <gray@gnu.org.ua>
984
985         * lib/inttostr.c (inttostr): Make sure the invocation of verify
986         appears before executable statements. Suggested by Petr Sumbera
987         <Petr.Sumbera@Sun.COM>.
988
989 2010-03-14  Bruno Haible  <bruno@clisp.org>
990
991         * tests/test-flock.c (test_exclusive): Comment out a test that causes
992         portability problems. Instead use a simpler test.
993         (main): Check that invalid arguments are rejected only on Linux.
994
995 2010-03-14  Bruno Haible  <bruno@clisp.org>
996
997         Fix bug introduced on 2009-12-31.
998         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
999         gl_PREREQ_SYS_H_WINSOCK2 always.
1000         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise. Remove
1001         SYS_SOCKET_H variable.
1002         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Remove test for flock.
1003         Update comments.
1004         * m4/ctype.m4 (gl_CTYPE_H): Update comments.
1005         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
1006         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
1007         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
1008         * m4/sys_wait_h.m4 (gl_SYS_WAIT_H): Likewise.
1009
1010 2010-03-14  Bruno Haible  <bruno@clisp.org>
1011
1012         Fix values returned by sinl, cosl.
1013         * lib/trigl.h: Add specification comments.
1014         * lib/sincosl.c (kernel_sinl, kernel_cosl): Fix comments and formula
1015         that combines the values from the precomputed table with the values of
1016         the Chebyshev polynomials.
1017
1018 2010-03-14  Bruno Haible  <bruno@clisp.org>
1019
1020         Fix compilation error when modules 'posix_spawn[p]' are not used.
1021         * m4/spawn_h.m4 (gl_SPAWN_H): Set HAVE_POSIX_SPAWN here.
1022         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): ... not here.
1023
1024 2010-03-14  Bruno Haible  <bruno@clisp.org>
1025
1026         Fix compilation error on mingw when module 'time_r' is not used.
1027         * lib/time.in.h (localtime_r, gmtime_r): Declare only if GNULIB_TIME_R
1028         is 1.
1029         * tests/test-time-c++.cc (localtime_r, gmtime_r): Likewise.
1030         * modules/time_r (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
1031         * modules/time (Makefile.am): Substitute GNULIB_TIME_R.
1032         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize GNULIB_TIME_R.
1033
1034 2010-03-14  Bruno Haible  <bruno@clisp.org>
1035
1036         Fix compilation error with Sun C.
1037         * lib/strtol.c: Use LLONG_MIN instead of GCC specific LONG_LONG_MIN.
1038         Use LLONG_MAX instead of GCC specific LONG_LONG_MAX. Use ULLONG_MAX
1039         instead of GCC specific ULONG_LONG_MAX.
1040         * lib/xstrtoll.c: Likewise.
1041         * lib/xstrtoull.c: Likewise.
1042
1043 2010-03-13  Bruno Haible  <bruno@clisp.org>
1044
1045         Allow the user to disable C++ code and tests.
1046         * m4/ansi-c++.m4 (gl_CXX_CHOICE): New macro.
1047         (gl_PROG_ANSI_CXX): Require it.
1048
1049 2010-03-13  Bruno Haible  <bruno@clisp.org>
1050
1051         * DEPENDENCIES (libtool): Mention libtool 2.2.x requirement in special
1052         cases.
1053
1054 2010-03-13  Bruno Haible  <bruno@clisp.org>
1055
1056         Test that gnulib does not break the standard C++ headers.
1057         * tests/test-locale-c++2.cc: New file.
1058         * modules/locale-tests (Files): Add it.
1059         (Makefile.am): Compile it for test-locale-c++.
1060         * tests/test-math-c++2.cc: New file.
1061         * modules/math-tests (Files): Add it.
1062         (Makefile.am): Compile it for test-math-c++.
1063         * tests/test-signal-c++2.cc: New file.
1064         * modules/signal-tests (Files): Add it.
1065         (Makefile.am): Compile it for test-signal-c++.
1066         * tests/test-stdio-c++2.cc: New file.
1067         * modules/stdio-tests (Files): Add it.
1068         (Makefile.am): Compile it for test-stdio-c++.
1069         * tests/test-stdlib-c++2.cc: New file.
1070         * modules/stdlib-tests (Files): Add it.
1071         (Makefile.am): Compile it for test-stdlib-c++.
1072         * tests/test-string-c++2.cc: New file.
1073         * modules/string-tests (Files): Add it.
1074         (Makefile.am): Compile it for test-string-c++.
1075         * tests/test-time-c++2.cc: New file.
1076         * modules/time-tests (Files): Add it.
1077         (Makefile.am): Compile it for test-time-c++.
1078         Reported by John W. Eaton <jwe@gnu.org>.
1079
1080 2010-03-13  Bruno Haible  <bruno@clisp.org>
1081
1082         * gnulib-tool (func_usage): Clarify which options are available for
1083         --create-testdir and --create-megatestdir.
1084
1085 2010-03-13  Bruno Haible  <bruno@clisp.org>
1086
1087         Fix compilation error with glibc >= 2.10 and g++ >= 4.4.
1088         * build-aux/warn-on-use.h (_GL_WARN_ON_USE_CXX): New macro.
1089         * build-aux/c++defs.h (_GL_CXXALIASWARN1): New macro.
1090         * lib/string.in.h (memchr, memrchr, rawmemchr, strchrnul, strpbrk,
1091         strstr, strcasestr): Use _GL_CXXALIASWARN1 instead of _GL_CXXALIASWARN
1092         when appropriate.
1093         Reported by Jim Meyering.
1094
1095 2010-03-12  Simon Josefsson  <simon@josefsson.org>
1096
1097         * gnulib-tool (func_import): Explain origin of code.
1098
1099 2010-03-12  Bruno Haible  <bruno@clisp.org>
1100
1101         Fix problem with automake's definition of CXXLINK.
1102         * gnulib-tool (func_create_testdir): After LT_INIT, also use LT_LANG.
1103         Reported by Simon Josefsson and Ludovic Courtès.
1104
1105 2010-03-12  Bruno Haible  <bruno@clisp.org>
1106
1107         * doc/gnulib-intro.texi (Steady Development): Mention Ian Beckwith's
1108         stable releases.
1109
1110 2010-03-11  Bruno Haible  <bruno@clisp.org>
1111
1112         Fix problems with overloaded C++ definitions of memchr, strpbrk, etc.
1113         * build-aux/c++defs.h (_GL_CXXALIAS_SYS_CAST2): Make it work regardless
1114         whether the system provides one variant or multiple variants of the
1115         function.
1116         * lib/string.in.h (memchr, strpbrk): Use _GL_CXXALIAS_SYS_CAST2 for all
1117         C++ compilers.
1118         (memrchr, rawmemchr, strchrnul, strstr, strcasestr): Use
1119         _GL_CXXALIAS_SYS_CAST2 instead of _GL_CXXALIAS_SYS.
1120         Reported by Jim Meyering.
1121
1122 2010-03-09  Simon Josefsson  <simon@josefsson.org>
1123
1124         * gnulib-tool (LIBTOOLPATH): Fix cut'n'paste bug.
1125
1126 2010-03-08  Bruno Haible  <bruno@clisp.org>
1127
1128         gnulib-tool: Add support for --libtool in --create-testdir.
1129         * gnulib-tool (LIBTOOLPATH, LIBTOOLIZE): New variables.
1130         (func_create_testdir): Emit LT_INIT invocations. Invoke LIBTOOLIZE.
1131
1132 2010-03-08  Eric Blake  <eblake@redhat.com>
1133
1134         gnulib-tool.texi: mention possibility of git submodule
1135         * doc/gnulib-tool.texi (VCS Issues): Add details about using git
1136         submodules.
1137         * doc/.gitignore: Ignore another generated file.
1138
1139 2010-03-08  Karl Berry  <karl@gnu.org>
1140
1141         * doc/gnulib-tool.texi (VCS Issues): Mention third option
1142         of committing gnulib files while skipping others.
1143
1144 2010-03-07  Bruno Haible  <bruno@clisp.org>
1145
1146         Tests of module 'wctype' in C++ mode.
1147         * tests/test-wctype-c++.cc: New file.
1148         * modules/wctype-tests (Files): Add it and tests/signature.h.
1149         (Depends-on): Add ansi-c++-opt.
1150         (Makefile.am): Arrange to compile and run test-wctype-c++.
1151
1152         Tests of module 'wchar' in C++ mode.
1153         * tests/test-wchar-c++.cc: New file.
1154         * modules/wchar-tests (Files): Add it and tests/signature.h.
1155         (Depends-on): Add ansi-c++-opt.
1156         (Makefile.am): Arrange to compile and run test-wchar-c++.
1157         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Invoke
1158         gl_MODULE_INDICATOR.
1159
1160         Tests of module 'unistd' in C++ mode.
1161         * tests/test-unistd-c++.cc: New file.
1162         * modules/unistd-tests (Files): Add it and tests/signature.h.
1163         (Depends-on): Add ansi-c++-opt.
1164         (Makefile.am): Arrange to compile and run test-unistd-c++.
1165         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Invoke
1166         gl_MODULE_INDICATOR.
1167
1168         Tests of module 'time' in C++ mode.
1169         * tests/test-time-c++.cc: New file.
1170         * modules/time-tests (Files): Add it and tests/signature.h.
1171         (Depends-on): Add ansi-c++-opt.
1172         (Makefile.am): Arrange to compile and run test-time-c++.
1173         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
1174
1175         Tests of module 'sys_time' in C++ mode.
1176         * tests/test-sys_time-c++.cc: New file.
1177         * modules/sys_time-tests (Files): Add it and tests/signature.h.
1178         (Depends-on): Add ansi-c++-opt.
1179         (Makefile.am): Arrange to compile and run test-sys_time-c++.
1180         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Invoke
1181         gl_MODULE_INDICATOR.
1182
1183         Tests of module 'sys_stat' in C++ mode.
1184         * tests/test-sys_stat-c++.cc: New file.
1185         * modules/sys_stat-tests (Files): Add it and tests/signature.h.
1186         (Depends-on): Add ansi-c++-opt.
1187         (Makefile.am): Arrange to compile and run test-sys_stat-c++.
1188         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Invoke
1189         gl_MODULE_INDICATOR.
1190
1191         Tests of module 'sys_socket' in C++ mode.
1192         * tests/test-sys_socket-c++.cc: New file.
1193         * modules/sys_socket-tests (Files): Add it and tests/signature.h.
1194         (Depends-on): Add ansi-c++-opt.
1195         (Makefile.am): Arrange to compile and run test-sys_socket-c++.
1196         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Invoke
1197         gl_MODULE_INDICATOR.
1198
1199         Tests of module 'sys_select' in C++ mode.
1200         * tests/test-sys_select-c++.cc: New file.
1201         * modules/sys_select-tests (Files): Add it and tests/signature.h.
1202         (Depends-on): Add ansi-c++-opt.
1203         (Makefile.am): Arrange to compile and run test-sys_select-c++.
1204         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Invoke
1205         gl_MODULE_INDICATOR.
1206
1207         Tests of module 'sys_ioctl' in C++ mode.
1208         * tests/test-sys_ioctl-c++.cc: New file.
1209         * modules/sys_ioctl-tests (Files): Add it and tests/signature.h.
1210         (Depends-on): Add ansi-c++-opt.
1211         (Makefile.am): Arrange to compile and run test-sys_ioctl-c++.
1212         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Invoke
1213         gl_MODULE_INDICATOR.
1214
1215         Tests of module 'string' in C++ mode.
1216         * tests/test-string-c++.cc: New file.
1217         * modules/string-tests (Files): Add it and tests/signature.h.
1218         (Depends-on): Add ansi-c++-opt.
1219         (Makefile.am): Arrange to compile and run test-string-c++.
1220         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Invoke
1221         gl_MODULE_INDICATOR.
1222
1223         Tests of module 'stdlib' in C++ mode.
1224         * tests/test-stdlib-c++.cc: New file.
1225         * modules/stdlib-tests (Files): Add it and tests/signature.h.
1226         (Depends-on): Add ansi-c++-opt.
1227         (Makefile.am): Arrange to compile and run test-stdlib-c++.
1228         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Invoke
1229         gl_MODULE_INDICATOR.
1230
1231         Tests of module 'stdio' in C++ mode.
1232         * tests/test-stdio-c++.cc: New file.
1233         * modules/stdio-tests (Files): Add it and tests/signature.h.
1234         (Depends-on): Add ansi-c++-opt.
1235         (Makefile.am): Arrange to compile and run test-stdio-c++.
1236         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Invoke
1237         gl_MODULE_INDICATOR.
1238
1239         Tests of module 'spawn' in C++ mode.
1240         * tests/test-spawn-c++.cc: New file.
1241         * modules/spawn-tests (Files): Add it and tests/signature.h.
1242         (Depends-on): Add ansi-c++-opt.
1243         (Makefile.am): Arrange to compile and run test-spawn-c++.
1244         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Invoke
1245         gl_MODULE_INDICATOR.
1246
1247         Tests of module 'signal' in C++ mode.
1248         * tests/test-signal-c++.cc: New file.
1249         * modules/signal-tests (Files): Add it and tests/signature.h.
1250         (Depends-on): Add ansi-c++-opt.
1251         (Makefile.am): Arrange to compile and run test-signal-c++.
1252         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Invoke
1253         gl_MODULE_INDICATOR.
1254
1255         Tests of module 'search' in C++ mode.
1256         * tests/test-search-c++.cc: New file.
1257         * modules/search-tests (Files): Add it and tests/signature.h.
1258         (Depends-on): Add ansi-c++-opt.
1259         (Makefile.am): Arrange to compile and run test-search-c++.
1260         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Invoke
1261         gl_MODULE_INDICATOR.
1262
1263         Tests of module 'math' in C++ mode.
1264         * tests/test-math-c++.cc: New file.
1265         * modules/math-tests (Files): Add it and tests/signature.h.
1266         (Depends-on): Add ansi-c++-opt.
1267         (Makefile.am): Arrange to compile and run test-math-c++.
1268         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
1269
1270         Tests of module 'locale' in C++ mode.
1271         * tests/test-locale-c++.cc: New file.
1272         * modules/locale-tests (Files): Add it and tests/signature.h.
1273         (Depends-on): Add ansi-c++-opt.
1274         (Makefile.am): Arrange to compile and run test-locale-c++.
1275         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Invoke
1276         gl_MODULE_INDICATOR.
1277
1278         Tests of module 'langinfo' in C++ mode.
1279         * tests/test-langinfo-c++.cc: New file.
1280         * modules/langinfo-tests (Files): Add it and tests/signature.h.
1281         (Depends-on): Add ansi-c++-opt.
1282         (Makefile.am): Arrange to compile and run test-langinfo-c++.
1283         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Invoke
1284         gl_MODULE_INDICATOR.
1285
1286         Tests of module 'iconv-h' in C++ mode.
1287         * tests/test-iconv-h-c++.cc: New file.
1288         * modules/iconv-h-tests (Files): Add it and tests/signature.h.
1289         (Depends-on): Add ansi-c++-opt.
1290         (Makefile.am): Arrange to compile and run test-iconv-h-c++.
1291
1292         Tests of module 'glob' in C++ mode.
1293         * tests/test-glob-c++.cc: New file.
1294         * modules/glob-tests (Files): Add it.
1295         (Depends-on): Add ansi-c++-opt.
1296         (Makefile.am): Arrange to compile and run test-glob-c++.
1297
1298         Tests of module 'fcntl-h' in C++ mode.
1299         * tests/test-fcntl-h-c++.cc: New file.
1300         * modules/fcntl-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-fcntl-h-c++.
1303         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Invoke
1304         gl_MODULE_INDICATOR.
1305
1306         Tests of module 'dirent' in C++ mode.
1307         * tests/test-dirent-c++.cc: New file.
1308         * modules/dirent-tests (Files): Add it and tests/signature.h.
1309         (Depends-on): Add ansi-c++-opt.
1310         (Makefile.am): Arrange to compile and run test-dirent-c++.
1311         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
1312         gl_MODULE_INDICATOR.
1313
1314         New module 'ansi-c++-opt'.
1315         * modules/ansi-c++-opt: New file.
1316         * m4/ansi-c++.m4: New file, from GNU gettext with modifications.
1317
1318         Document C++ namespace mode.
1319         * doc/gnulib.texi (A C++ namespace for gnulib): New section.
1320
1321         wctype: Avoid #define replacements in C++ mode.
1322         * lib/wctype.in.h: Include c++defs.h, warn-on-use.h.
1323         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower,
1324         iswprint, iswpunct, iswspace, iswupper, iswxdigit, towlower, towupper):
1325         In C++, define a namespaced alias symbol.
1326         * m4/wctype_h.m4 (gl_WCTYPE_H): Don't set WCTYPE_H.
1327         * modules/wctype (Depends-on): Add c++defs, warn-on-use.
1328         (Makefile.am): Provide a wctype.h replacement always. Update wctype.h
1329         rule.
1330
1331         wchar: Avoid #define replacements in C++ mode.
1332         * lib/wchar.in.h: Include c++defs.h.
1333         (btowc, wctob, mbsinit, mbrtowc, mbrlen, mbsrtowcs, mbsnrtowcs,
1334         wcrtomb, wcsrtombs, wcsnrtombs): In C++, define a namespaced alias
1335         symbol.
1336         (wcwidth): Likewise. Fix prototype to be POSIX compliant.
1337         * modules/wchar (Depends-on): Add c++defs.
1338         (Makefile.am): Update wchar.h rule.
1339
1340         unistd: Avoid #define replacements in C++ mode.
1341         * lib/unistd.in.h: Include c++defs.h.
1342         (chown, close, dup, dup2, dup3, euidaccess, faccessat, fchdir,
1343         fchownat, fsync, ftruncate, getcwd, getdomainname, getdtablesize,
1344         getgroups, gethostname, getlogin, getlogin_r, getpagesize,
1345         getusershell, setusershell, endusershell, lchown, link, linkat, lseek,
1346         pipe2, pread, readlink, readlinkat, rmdir, sleep, symlink, symlinkat,
1347         unlink, unlinkat, usleep, write): In C++, define a namespaced alias
1348         symbol.
1349         (environ): Update.
1350         * modules/unistd (Depends-on): Add c++defs.
1351         (Makefile.am): Update unistd.h rule.
1352
1353         time: Avoid #define replacements in C++ mode.
1354         * lib/time.in.h: Include c++defs.h, warn-on-use.h.
1355         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): In C++,
1356         define a namespaced alias symbol.
1357         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): New macro.
1358         (gl_HEADER_TIME_H_DEFAULTS): Initialize also GNULIB_MKTIME,
1359         GNULIB_NANOSLEEP, GNULIB_STRPTIME, GNULIB_TIMEGM.
1360         * modules/time (Depends-on): Add c++defs, warn-on-use.
1361         (Makefile.am): Update time.h rule.
1362         * modules/mktime (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
1363         * modules/nanosleep (configure.ac): Likewise.
1364         * modules/strptime (configure.ac): Likewise.
1365         * modules/timegm (configure.ac): Likewise.
1366
1367         sys_time: Avoid #define replacements in C++ mode.
1368         * lib/sys_time.in.h: Include c++defs.h.
1369         (gettimeofday): In C++, define a namespaced alias symbol.
1370         * modules/sys_time (Depends-on): Add c++defs.
1371         (Makefile.am): Update sys/time.h rule.
1372
1373         sys_stat: Avoid #define replacements in C++ mode.
1374         * lib/sys_stat.in.h: Include c++defs.h.
1375         (fchmodat, fstat, fstatat, futimens, lchmod, lstat, mkdir, mkdirat,
1376         mkfifo, mkfifoat, mknod, mknodat, utimensat): In C++, define a
1377         namespaced alias symbol.
1378         In C++, define a namespaced alias symbol.
1379         * modules/sys_stat (Depends-on): Add c++defs.
1380         (Makefile.am): Update sys/stat.h rule.
1381
1382         sys_socket: Avoid #define replacements in C++ mode.
1383         * lib/sys_socket.in.h: Handle the case of recursive include on Cygwin.
1384         Include c++defs.h. Include warn-on-use.h earlier. Enable the function
1385         definitions also when the system has a <sys/socket.h>.
1386         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
1387         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, accept4):
1388         In C++, define a namespaced alias symbol.
1389         * modules/sys_socket (Depends-on): Add c++defs.
1390         (Makefile.am): Update sys/socket.h rule.
1391
1392         sys_select: Avoid #define replacements in C++ mode.
1393         * lib/sys_select.in.h: Include c++defs.h. Enable the function
1394         definitions also when the system has a <sys/select.h>.
1395         (select): In C++, define a namespaced alias symbol.
1396         * modules/sys_select (Depends-on): Add c++defs.
1397         (Makefile.am): Update sys/select.h rule.
1398
1399         sys_ioctl: Avoid #define replacements in C++ mode.
1400         * lib/sys_ioctl.in.h: Include c++defs.h.
1401         (ioctl): In C++, define a namespaced alias symbol.
1402         * modules/sys_ioctl (Depends-on): Add c++defs.
1403         (Makefile.am): Update sys/ioctl.h rule.
1404
1405         string: Avoid #define replacements in C++ mode.
1406         * lib/string.in.h: Include c++defs.h.
1407         (stpncpy): Define to rpl_stpncpy, not gnu_stpncpy.
1408         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
1409         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
1410         strcasestr, strtok_r, mbslen, mbschr, mbsrchr, mbspbrk, strerror,
1411         strsignal, strverscmp): In C++, define a namespaced alias symbol.
1412         * modules/string (Depends-on): Add c++defs.
1413         (Makefile.am): Update string.h rule.
1414
1415         stdlib: Avoid #define replacements in C++ mode.
1416         * lib/stdlib.in.h: Include c++defs.h.
1417         (atoll, calloc, canonicalize_file_name, getloadavg, getsubopt, malloc,
1418         mkdtemp, mkostemp, mkostemps, mkstemp, mkstemps, putenv, random_r,
1419         srandom_r, initstate_r, setstate_r, realloc, realpath, rpmatch, setenv,
1420         strtod, strtoll, strtoull, unsetenv): In C++, define a namespaced alias
1421         symbol.
1422         * modules/stdlib (Depends-on): Add c++defs.
1423         (Makefile.am): Update stdlib.h rule.
1424
1425         stdio: Avoid #define replacements in C++ mode.
1426         * lib/stdio.in.h: Include c++defs.h.
1427         (dprintf, fclose, fflush, fopen, fprintf, fpurge, fputc, fputs,
1428         freopen, fseek, fseeko, ftell, ftello, fwrite, getdelim, getline,
1429         obstack_printf, obstack_vprintf, perror, popen, printf, fputc, putchar,
1430         puts, remove, rename, renameat, snprintf, sprintf, asprintf, vasprintf,
1431         vdprintf, vfprintf, vprintf, vsnprintf, vsprintf): In C++, define a
1432         namespaced alias symbol.
1433         * modules/stdio (Depends-on): Add c++defs.
1434         (Makefile.am): Update stdio.h rule.
1435
1436         spawn: Avoid #define replacements in C++ mode.
1437         * lib/spawn.in.h: Include c++defs.h.
1438         (posix_spawn, posix_spawnp, posix_spawnattr_init,
1439         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
1440         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
1441         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
1442         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
1443         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
1444         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
1445         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
1446         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
1447         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
1448         In C++, define a namespaced alias symbol.
1449         * modules/spawn (Depends-on): Add c++defs.
1450         (Makefile.am): Update spawn.h rule.
1451
1452         signal: Avoid #define replacements in C++ mode.
1453         * lib/signal.in.h: Include c++defs.h.
1454         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
1455         sigpending, sigprocmask, signal, raise, sigaction): In C++, define a
1456         namespaced alias symbol.
1457         * modules/signal (Depends-on): Add c++defs.
1458         (Makefile.am): Update signal.h rule.
1459
1460         search: Avoid #define replacements in C++ mode.
1461         * lib/search.in.h: Include c++defs.h.
1462         (_gl_search_compar_fn, _gl_search_action_fn): New types.
1463         (tsearch, tfind, tdelete, twalk): In C++, define a namespaced alias
1464         symbol.
1465         * modules/search (Depends-on): Add c++defs.
1466         (Makefile.am): Update search.h rule.
1467
1468         math: Avoid #define replacements in C++ mode.
1469         * lib/math.in.h: Include c++defs.h.
1470         (frexp, acosl, asinl, atanl, ceilf, ceill, cosl, expl, floorf, floorl,
1471         frexpl, ldexpl, logl, roundf, round, roundl, sinl, sqrtl, tanl, truncf,
1472         trunc, truncl): In C++, define a namespaced alias symbol.
1473         * modules/math (Depends-on): Add c++defs.
1474         (Makefile.am): Update math.h rule.
1475
1476         locale: Avoid #define replacements in C++ mode.
1477         * lib/locale.in.h: Include c++defs.h.
1478         (duplocale): In C++, define a namespaced alias symbol.
1479         * m4/locale_h.m4 (gl_LOCALE_H_DEFAULTS): Initialize HAVE_DUPLOCALE.
1480         * m4/duplocale.m4 (gl_FUNC_DUPLOCALE): Set HAVE_DUPLOCALE.
1481         * modules/locale (Depends-on): Add c++defs.
1482         (Makefile.am): Update locale.h rule. Substitute HAVE_DUPLOCALE.
1483
1484         langinfo: Avoid #define replacements in C++ mode.
1485         * lib/langinfo.in.h: Include c++defs.h.
1486         (nl_langinfo): In C++, define a namespaced alias symbol.
1487         * modules/langinfo (Depends-on): Add c++defs.
1488         (Makefile.am): Update langinfo.h rule.
1489
1490         iconv-h: Avoid #define replacements in C++ mode.
1491         * lib/iconv.in.h: Include c++defs.h, warn-on-use.h.
1492         (iconv_open, iconv, iconv_close): In C++, define a namespaced alias
1493         symbol.
1494         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
1495         whenever iconv is present.
1496         * modules/iconv-h (Depends-on): Add c++defs, warn-on-use.
1497         (Makefile.am): Update iconv.h rule.
1498
1499         glob: Avoid #define replacements in C++ mode.
1500         * lib/glob.in.h: Include c++defs.h, warn-on-use.h.
1501         (_gl_glob_errfunc_fn): New type.
1502         (glob, globfree, glob_pattern_p): In C++, define a namespaced alias
1503         symbol.
1504         * modules/glob (Depends-on): Add c++defs, warn-on-use.
1505         (Makefile.am): Update glob.h rule.
1506
1507         fcntl-h: Avoid #define replacements in C++ mode.
1508         * lib/fcntl.in.h: Include c++defs.h.
1509         (fcntl, open, openat): In C++, define a namespaced alias symbol.
1510         * modules/fcntl-h (Depends-on): Add c++defs.
1511         (Makefile.am): Update fcntl.h rule.
1512
1513         dirent: Avoid #define replacements in C++ mode.
1514         * lib/dirent.in.h: Include c++defs.h.
1515         (closedir, fdopendir, opendir, scandir, alphasort): In C++, define a
1516         namespaced alias symbol.
1517         (dirfd): Update declaration.
1518         * modules/dirent (Depends-on): Add c++defs.
1519         (Makefile.am): Update dirent.h rule.
1520
1521         ctype: Make it usable in C++ code.
1522         * lib/ctype.in.h: Include c++defs.h.
1523         (isblank): Declare as extern "C".
1524         * modules/ctype (Depends-on): Add c++defs.
1525         (Makefile.am): Update ctype.h rule.
1526
1527         New module 'c++defs'.
1528         * modules/c++defs: New file.
1529         * build-aux/c++defs.h: New file.
1530         Reported by John W. Eaton <jwe@gnu.org>.
1531
1532 2010-03-07  Bruno Haible  <bruno@clisp.org>
1533
1534         logb: Provide missing declaration for Cygwin.
1535         * lib/math.in.h (logb): New declaration.
1536         * m4/logb.m4: New file.
1537         * modules/logb (Files): Add m4/logb.m4.
1538         (Depends-on): Add math.
1539         (configure.ac): Invoke gl_FUNC_LOGB, gl_MATH_MODULE_INDICATOR.
1540         * m4/math_h.m4 (gl_MATH_H): Check also for logb declaration.
1541         (gl_MATH_H_DEFAULTS): Initialize GNULIB_LOGB, HAVE_DECL_LOGB.
1542         * modules/math (Makefile.am): Substitute GNULIB_LOGB, HAVE_DECL_LOGB.
1543         * doc/posix-functions/logb.texi: Mention the Cygwin bug.
1544
1545 2010-03-07  Bruno Haible  <bruno@clisp.org>
1546
1547         Fix test-cond link error.
1548         * tests/test-cond.c: Include <stdio.h>.
1549
1550 2010-03-07  Bruno Haible  <bruno@clisp.org>
1551
1552         Fix test-dirent-safer link error.
1553         * modules/dirent-safer-tests (Makefile.am): Define
1554         test_dirent_safer_LDADD.
1555
1556 2010-03-07  Bruno Haible  <bruno@clisp.org>
1557
1558         * gnulib-tool (func_create_testdir): Don't use 'lib-ignore' module
1559         among default module list.
1560
1561 2010-03-07  Bruno Haible  <bruno@clisp.org>
1562
1563         Fix link error on platforms with GNU libiconv.
1564         * modules/unistr/u8-strcoll-tests (Makefile): Define
1565         test_u8_strcoll_LDADD.
1566         * modules/unistr/u16-strcoll-tests (Makefile): Define
1567         test_u16_strcoll_LDADD.
1568         * modules/unistr/u32-strcoll-tests (Makefile): Define
1569         test_u32_strcoll_LDADD.
1570
1571 2010-03-07  Bruno Haible  <bruno@clisp.org>
1572
1573         Use POSIX declarations for socket functions.
1574         * lib/sys_socket.in.h (rpl_connect, rpl_accept, rpl_bind,
1575         rpl_getpeername, rpl_getsockname, rpl_recv, rpl_send, rpl_recvfrom,
1576         rpl_sendto): Change declaration to match POSIX.
1577         * lib/connect.c (rpl_connect): Likewise.
1578         * lib/accept.c (rpl_accept): Likewise.
1579         * lib/bind.c (rpl_bind): Likewise.
1580         * lib/getpeername.c (rpl_getpeername): Likewise.
1581         * lib/getsockname.c (rpl_getsockname): Likewise.
1582         * lib/recv.c (rpl_recv): Likewise.
1583         * lib/send.c (rpl_send): Likewise.
1584         * lib/recvfrom.c (rpl_recvfrom): Likewise.
1585         * lib/sendto.c (rpl_sendto): Likewise.
1586
1587 2010-03-06  Bruno Haible  <bruno@clisp.org>
1588
1589         Clarify access, euidaccess, faccessat.
1590         * doc/posix-functions/faccessat.texi: Mention security problem under
1591         "Other problems", not "Portability problems".
1592         * doc/posix-functions/access.texi: Likewise. Mention a related security
1593         problem.
1594         * doc/glibc-functions/euidaccess.texi: Mention security problems.
1595         * lib/euidaccess.c: Add comments about platforms.
1596         * lib/unistd.in.h (access, euidaccess): Add warnings.
1597
1598 2010-03-07  Bruno Haible  <bruno@clisp.org>
1599
1600         Ensure posix_spawnattr_{get,set}sched{policy,param} are defined.
1601         * lib/spawn.in.h (POSIX_SPAWN_SETSCHEDPARAM): Define fallback.
1602         (POSIX_SPAWN_SETSCHEDULER): Likewise.
1603         (POSIX_SPAWN_USEVFORK): Define in a way that works when
1604         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
1605         (posix_spawnattr_getschedpolicy, posix_spawnattr_setschedpolicy): Also
1606         declare when POSIX_SPAWN_SETSCHEDULER is zero.
1607         (posix_spawnattr_getschedparam, posix_spawnattr_setschedparam): Also
1608         declare when POSIX_SPAWN_SETSCHEDPARAM is zero.
1609         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Test whether
1610         POSIX_SPAWN_SETSCHEDULER or POSIX_SPAWN_SETSCHEDPARAM are zero.
1611         * modules/posix_spawnattr_getschedparam (configure.ac): Enable the
1612         replacement also when POSIX_SPAWN_SETSCHEDPARAM is zero.
1613         * modules/posix_spawnattr_setschedparam (configure.ac): Likewise.
1614         * modules/posix_spawnattr_getschedpolicy (configure.ac): Enable the
1615         replacement also when POSIX_SPAWN_SETSCHEDULER is zero.
1616         * modules/posix_spawnattr_setschedpolicy (configure.ac): Likewise.
1617         * lib/spawnattr_getschedparam.c (posix_spawnattr_getschedparam): Do
1618         nothing if POSIX_SPAWN_SETSCHEDPARAM is zero.
1619         * lib/spawnattr_setschedparam.c (posix_spawnattr_setschedparam):
1620         Likewise.
1621         * lib/spawnattr_getschedpolicy.c (posix_spawnattr_getschedpolicy): Do
1622         nothing if POSIX_SPAWN_SETSCHEDULER is zero.
1623         * lib/spawnattr_setschedpolicy.c (posix_spawnattr_setschedpolicy):
1624         Likewise.
1625         * tests/test-spawn.c (main): Make it work when
1626         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
1627
1628 2010-03-07  Bruno Haible  <bruno@clisp.org>
1629
1630         Fix incorrect Makefile.am generation in German locale.
1631         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
1632         Execute sed command with character range in C locale.
1633
1634 2010-03-06  Bruno Haible  <bruno@clisp.org>
1635
1636         Tests for module 'iconv-h'.
1637         * modules/iconv-h-tests: New file.
1638         * tests/test-iconv-h.c: New file.
1639
1640         New module 'iconv-h'.
1641         * modules/iconv-h: New file.
1642         * modules/iconv_open (Files): Remove lib/iconv.in.h, m4/iconv_h.m4.
1643         (Depends-on): Add iconv-h. Remove include_next, arg-nonnull.
1644         (configure.ac): Remove gl_ICONV_H.
1645         (Makefile.am): Remove rule for iconv.h.
1646
1647 2010-03-06  Bruno Haible  <bruno@clisp.org>
1648
1649         More consistent naming of *.m4 files.
1650         * m4/wctype_h.m4: Renamed from m4/wctype.m4.
1651         * modules/wctype (Files): Update.
1652
1653         More consistent naming of *.m4 files.
1654         * m4/wchar_h.m4: Renamed from m4/wchar.m4.
1655         * modules/wchar (Files): Update.
1656
1657 2010-03-06  Jim Meyering  <meyering@redhat.com>
1658
1659         euidaccess: relax license to LGPLv2+
1660         * modules/euidaccess (License): Relax to LGPLv2+.
1661
1662 2010-03-06  Bruno Haible  <bruno@clisp.org>
1663
1664         Prefer lib_SOURCES over unconditional AC_LIBOBJ.
1665         * modules/exitfail (configure.ac): Remove AC_LIBOBJ invocation.
1666         (Makefile.am): Augment lib_SOURCES instead.
1667
1668 2010-03-04  Jim Meyering  <meyering@redhat.com>
1669
1670         utime: remove obsolete module
1671         This module, like autoconf's AC_FUNC_UTIME_NULL macro, has been
1672         unnecessary for years, and has been marked as obsolete for 10 months.
1673         * modules/utime: Remove file.
1674         * lib/utime.c: Remove file.
1675         * m4/utime.m4: Remove file.
1676         * m4/utimes-null.m4: Remove file.
1677         * doc/posix-functions/utime.texi (utime): Remove reference to
1678         the module.  Move the sole "fixed by gnulib" item into the
1679         "problems not fixed by Gnulib" list.
1680         * MODULES.html.sh (func_all_modules): Remove reference to "utime".
1681
1682 2010-03-05  Simon Josefsson  <simon@josefsson.org>
1683
1684         * modules/exit (License): Relax license to LGPLv2+.
1685         (Status): Mark as obsolete.
1686         * NEWS: Mention deprecated 'exit' module.
1687         * doc/posix-functions/exit.texi: Recommend 'stdlib' module instead
1688         of now obsolete 'exit'.
1689
1690 2010-03-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1691
1692         fts-lgpl: remove unused module
1693         * modules/fts-lgpl: Remove.
1694         * MODULES.html.sh (func_all_modules): Adjust.
1695         * check-module (find_included_lib_files): Adjust.
1696         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove.
1697
1698 2010-03-02  Ben Walton  <bwalton@artsci.utoronto.ca>  (tiny change)
1699
1700         copy-acl: enhance Solaris ACL error handling
1701         * lib/copy-acl.c (qcopy_acl): Also ignore EOPNOTSUPP.
1702         * lib/set-mode-acl.c (qset_acl): Likewise.
1703
1704 2010-03-02  Bruno Haible  <bruno@clisp.org>
1705
1706         spawn: Don't override the system defined values on FreeBSD 8.
1707         * lib/spawn.in.h (POSIX_SPAWN_RESETIDS, POSIX_SPAWN_SETPGROUP,
1708         POSIX_SPAWN_SETSIGDEF, POSIX_SPAWN_SETSIGMASK,
1709         POSIX_SPAWN_SETSCHEDPARAM, POSIX_SPAWN_SETSCHEDULER): Don't redefine
1710         if HAVE_POSIX_SPAWN is 1.
1711         Reported by Johan van Selst <johans@stack.nl> via Eric Blake.
1712
1713 2010-03-01  Bruno Haible  <bruno@clisp.org>
1714
1715         * doc/gnulib-tool.texi (Initial import): Clarify the requirements
1716         regarding Automake.
1717
1718 2010-02-25  Bruno Haible  <bruno@clisp.org>
1719
1720         Fix breakage of gnulib-tool with ksh, introduced on 2010-02-21.
1721         * gnulib-tool: Define 'echo' as a function only before the ksh alias
1722         setting, not afterwards.
1723         Reported by Ben Walton <bwalton@artsci.utoronto.ca>.
1724
1725 2010-02-24  Eric Blake  <eblake@redhat.com>
1726
1727         bootstrap, git-version-gen: use timestamp
1728         * build-aux/git-version-gen (scriptversion): Force UTC.
1729         * build-aux/bootstrap (scriptversion): New variable.
1730
1731         bootstrap: allow older git
1732         * build-aux/bootstrap (GNULIB_SRCDIR): Add fallback if git is
1733         older than 1.6.4.  Requested by the libvirt project.
1734
1735 2010-02-23  Eric Blake  <eblake@redhat.com>
1736
1737         warn-on-use: work with old autoconf
1738         * m4/warn-on-use.m4 (gl_WARN_ON_USE_PREPARE): Accomodate older
1739         AS_VAR semantics of autoconf 2.60.
1740         Reported by Bruno Haible.
1741
1742         bootstrap: improve some comments
1743         * build-aux/bootstrap: Drop unneeded emacs hint.  Add some
1744         clarification comments.
1745
1746         gettimeofday: provide correct function
1747         * lib/gettimeofday.c (gettimeofday): Provide rpl_gettimeofday only
1748         when replacement is declared, otherwise provide gettimeofday.
1749         Reported by Michael Goffioul.
1750
1751 2010-02-23  Jim Meyering  <meyering@redhat.com>
1752
1753         lib-ignore: relax license to "unlimited", not LGPLv2+
1754         * modules/lib-ignore (License): Relax to "unlimited".
1755
1756 2010-02-23  Jim Meyering  <meyering@redhat.com>
1757
1758         lib-ignore: relax license to LGPLv2+
1759         * modules/lib-ignore (License): Relax to LGPLv2+.
1760
1761 2010-02-22  Eric Blake  <eblake@redhat.com>
1762
1763         lseek: avoid bash 3.2 broken pipe bug
1764         * m4/lseek.m4 (gl_FUNC_LSEEK): Drain pipe, to avoid spurious
1765         warning from bash 3.2.
1766         Reported by Ben Pfaff, with analysis from Bruno Haible.
1767
1768         bootstrap: support non-FSF copyright holder
1769         * build-aux/bootstrap (COPYRIGHT_HOLDER, with_gettext): Allow
1770         bootstrap.conf override of COPYRIGHT_HOLDER.
1771         (MSGID_BUGS_ADDRESS): Allow URL rather than email.
1772
1773         bootstrap: interoperate with gettext 0.14.1
1774         * build-aux/bootstrap (slurp): Fix typo when using older gettext.
1775
1776         bootstrap: allow for alternate submodule location
1777         * build-aux/bootstrap (gnulib_path): New variable; use instead of
1778         hardcoding submodule location.
1779         (gnulib_mk): Allow direct use of Makefile.am.
1780
1781         bootstrap: use GNULIB_SRCDIR to reduce disk usage
1782         * build-aux/bootstrap (GNULIB_SRCDIR): If set, use as a reference,
1783         rather than reconfiguring where the submodule points.
1784
1785         gettimeofday: restore support for platforms that lack function
1786         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Also compile
1787         replacement if function is missing.
1788         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_DEFAULTS): New witness.
1789         * modules/sys_time (Makefile.am): Substitute it.
1790         * lib/sys_time.in.h (gettimeofday): Check it.
1791         Reported by Michael Goffioul.
1792
1793 2010-02-21  Bruno Haible  <bruno@clisp.org>
1794
1795         * lib/stdio.in.h (obstack_printf): Fix typo.
1796
1797 2010-02-21  Jose E. Marchesi  <jemarch@gnu.org>
1798
1799         vc-list-files: use bzr ls's -R option
1800         * build-aux/vc-list-files: Invoke bazaar to generate a recursive
1801         list of versioned files based on 'dir' (usage of -R in 'bzr ls').
1802
1803 2010-02-21  Jim Meyering  <meyering@redhat.com>
1804
1805         init.sh: fix EXEEXT shims to work also for names like test-prog
1806         * tests/init.sh: Re-exec a better shell, when needed.
1807         If the current shell lacks support for posix $(...), an init.sh-using
1808         test will now try to find a shell that supports that.  If EXEEXT is
1809         nonempty, we also require support for hyphen-in-alias-name and shell
1810         substitutions like ${var#glob}.  Failure to find such a shell results
1811         in a skipped test.
1812
1813 2010-02-21  Bruno Haible  <bruno@clisp.org>
1814
1815         Really work around around "broken pipe" error message from bash 3.2.
1816         * gnulib-tool (func_reset_sigpipe): Remove function.
1817         (echo): In bash 3.2, define to a function that uses printf.
1818         Analyzed by Ralf Wildenhues, Chet Ramey, Ben Pfaff.
1819
1820 2010-02-20  Bruno Haible  <bruno@clisp.org>
1821
1822         Restore support for automake 1.9.6 with autoconf 2.61.
1823         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Ensure MKDIR_P is AC_SUBSTed.
1824         Reported by James Youngman <jay@gnu.org>.
1825
1826 2010-02-20  Bruno Haible  <bruno@clisp.org>
1827
1828         Improve *printf warning condition.
1829         * lib/stdio.in.h (fprintf, printf, vfprintf, vprintf): Emit warning
1830         also if GNULIB_POSIXCHECK is defined, the *-posix module is not used,
1831         and the function is overridden due to SIGPIPE emulation.
1832
1833 2010-02-20  Bruno Haible  <bruno@clisp.org>
1834
1835         * lib/stdio.in.h: Tweak comments.
1836
1837 2010-02-19  Bruno Haible  <bruno@clisp.org>
1838
1839         Make it easier to find modules. New gnulib-tool option '--find'.
1840         * gnulib-tool: New option --find.
1841         (func_usage): Document it.
1842         (func_sanitize_modulelist): New function, extracted from
1843         func_all_modules.
1844         (func_all_modules): Invoke it.
1845         * doc/gnulib-tool.texi (Which modules?): New node.
1846
1847 2010-02-18  Markus Duft <mduft@gentoo.org>  (tiny change)
1848
1849         * lib/sys_select.in.h: Provide select replacement even if
1850         sys/select.h exists on a system, for Interix.
1851
1852 2010-02-18  Jim Meyering  <meyering@redhat.com>
1853
1854         init.sh: don't use $(...) just yet
1855         * tests/init.sh (create_exe_shim_functions_): Use `...`, not $(...),
1856         to accommodate e.g., Solaris' /bin/sh.
1857
1858 2010-02-17  Bruno Haible  <bruno@clisp.org>
1859
1860         * doc/posix-headers/netdb.texi: Mention NetBSD 5.0 problem.
1861         Reported by Ludovic Courtès <ludo@gnu.org>.
1862
1863 2010-02-16  Simon Josefsson  <simon@josefsson.org>
1864
1865         * modules/userspec-tests (test_userspec_LDADD): Add variable, for
1866         linking with -lintl.
1867
1868 2010-02-17  Simon Josefsson  <simon@josefsson.org>
1869
1870         * lib/netdb.in.h (AI_V4MAPPED, AI_ALL, AI_ADDRCONFIG): Define to 0
1871         if not provided by the system's netdb.h.  Reported by
1872         ludo@gnu.org (Ludovic Courtès).
1873
1874 2010-02-15  Jim Meyering  <meyering@redhat.com>
1875
1876         init.sh: improve portability and efficiency
1877         * tests/init.sh (find_exe_basenames_): Remove unnecessary use of
1878         "dummy" in a for loop.
1879         Use '!', not '^' to select the complement of a character set used
1880         in a "case" statement.
1881         Use shell variable manipulation, a la ${...%.exe}, rather than sed.
1882         Suggestions from Eric Blake.
1883
1884         init.sh: automatically accommodate programs with the .exe suffix
1885         Automatically arrange for an invocation of "prog" to execute the
1886         program named "prog$EXEEXT" (usually prog.exe).  Thus, all invocations
1887         may use the simpler "prog", yet still work when built on a system
1888         that requires specifying the added suffix.
1889         Do this by constructing a function named "prog" that invokes
1890         "prog.exe" for each .exe file in selected directories.
1891         * tests/init.sh (find_exe_basenames_): New function.
1892         (create_exe_shim_functions_): New function.
1893         (path_prepend_): Use it.
1894
1895         maint.mk: mark syntax-check sc_*.m rules as .PHONY
1896         * top/maint.mk ($(syntax-check-rules)): Add .PHONY, so that
1897         "make -t syntax-check" doesn't create a ton of sc_*.m files.
1898
1899 2010-02-14  Jim Meyering  <meyering@redhat.com>
1900
1901         maint.mk: prohibit inclusion of "hash-pjw.h" without_use
1902         * top/maint.mk (sc_prohibit_hash_without_use): Re-add "@".
1903         (sc_prohibit_hash_pjw_without_use): New rule.
1904
1905         maint.mk: allow the default upload destination dir to be overridden
1906         * top/maint.mk (upload_dest_dir_): Define with a default that
1907         preserves the status quo.
1908         (emit_upload_commands): Use it, rather than hard-coding $(PACKAGE).
1909         Reported by Peter Simons.
1910
1911         maint.mk: prohibit inclusion of "hash.h" without_use
1912         * top/maint.mk (sc_prohibit_hash_without_use): New rule.
1913
1914 2010-02-10  Jim Meyering  <meyering@redhat.com>
1915
1916         maint.mk: prohibit inclusion of "ignore-value.h" without_use
1917         * top/maint.mk (sc_prohibit_ignore_value_without_use): New rule.
1918
1919 2010-02-09  Eric Blake  <ebb9@byu.net>
1920         and Bruno Haible  <bruno@clisp.org>
1921
1922         obstack-printf-posix: ensure declaration
1923         * m4/obstack-printf.m4 (gl_DECL_OBSTACK_PRINTF): New macro,
1924         extracted from gl_FUNC_OBSTACK_PRINTF.
1925         (gl_FUNC_OBSTACK_PRINTF): Invoke it.
1926         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
1927         Likewise.
1928         * lib/stdio.in.h (obstack_printf, obstack_vprintf): Declare also
1929         if GNULIB_OBSTACK_PRINTF_POSIX is 1 and GNULIB_OBSTACK_PRINTF is
1930         0.
1931
1932 2010-02-08  Bruno Haible  <bruno@clisp.org>
1933
1934         gnulib-tool: Fix typo in 2010-02-07 commit.
1935         * gnulib-tool (func_get_dependencies): Fix typo in last commit.
1936         Reported by Eric Blake.
1937
1938 2010-02-07  Bruno Haible  <bruno@clisp.org>
1939
1940         gnulib-tool: Fix up caching patches.
1941         * gnulib-tool: New options --cache-modules, --no-cache-modules. Remove
1942         option --no-cache. Use associative arrays when supported by the shell.
1943         (sed_comments): New variable.
1944         (modcache): Renamed from do_cache.
1945         (sed_extract_field_header): Renamed from sed_extract_cache_prog. Don't
1946         abbreviate unnecessarily.
1947         (have_associative): New variable.
1948         (func_cache_var): Define correctly for bash 1.x. Define in an optimized
1949         way also for ksh and zsh.
1950         (func_init_sed_convert_to_cache_statements): New function, extracted
1951         from func_cache_lookup_module. Add support for associative arrays.
1952         Don't set the c_MODULE_cached variable here. Ignore all lines before
1953         the first field header. Remove only the final newline, not all trailing
1954         newlines. Support empty fields correctly. Limit the use of 'eval' to
1955         assignments.
1956         (func_get_description, func_get_status, func_get_notice,
1957         func_get_applicability, func_get_filelist, func_get_dependencies,
1958         func_get_autoconf_early_snippet, func_get_autoconf_snippet,
1959         func_get_automake_snippet, func_get_include_directive,
1960         func_get_link_directive, func_get_license, func_get_maintainer):
1961         Update documentation. List the unoptimized code first. Add support for
1962         associative arrays. Limit the use of 'eval' to assignments.
1963         (func_get_applicability): Undo stylistic pessimisations.
1964         (func_get_automake_snippet, func_get_include_directive): Reduce code
1965         duplication.
1966         (func_modules_transitive_closure, func_modules_add_dummy,
1967         func_modules_notice, func_modules_to_filelist, func_add_file,
1968         func_update_file, func_emit_lib_Makefile_am, func_emit_po_Makevars,
1969         func_emit_po_POTFILES_in, func_emit_tests_Makefile_am, func_import,
1970         func_create_testdir, func_create_megatestdir): Update documentation.
1971
1972 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1973
1974         * gnulib-tool (func_cache_lookup_module): Store the module name
1975         belonging to the cache variable; error out if two different
1976         module names map to the same cache variable name.
1977
1978 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1979
1980         gnulib-tool: Make caching optional.
1981         * gnulib-tool: Accept option --no-cache, turning off $do_cache.
1982         Update matching short versions of --no-changelog.
1983         (func_usage): Update.
1984         (sed_extract_cache_prog): Renamed from ...
1985         (sed_extract_prog): ... this; revert to old extraction script.
1986         (func_get_description, func_get_status)
1987         (func_get_notice, func_get_applicability, func_get_filelist)
1988         (func_get_dependencies, func_get_autoconf_early_snippet)
1989         (func_get_autoconf_snippet, func_get_automake_snippet)
1990         (func_get_include_directive, func_get_link_directive)
1991         (func_get_license, func_get_maintainer): If $do_cache is false,
1992         use old, non-caching extraction scripts.
1993         Suggestion by Bruno Haible.
1994
1995 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1996
1997         gnulib-tool: cache module metainformation.
1998         * gnulib-tool (sed_extract_prog): Match newline before each
1999         header, and rewrite header to a shell variable suffix.
2000         (func_cache_var, func_cache_lookup_module): New functions,
2001         to turn a module name into a cache variable prefix, and to
2002         look up and cache module metainformation.
2003         (func_get_description, func_get_status)
2004         (func_get_notice, func_get_applicability, func_get_filelist)
2005         (func_get_dependencies, func_get_autoconf_early_snippet)
2006         (func_get_autoconf_snippet, func_get_automake_snippet)
2007         (func_get_include_directive, func_get_link_directive)
2008         (func_get_license, func_get_maintainer): Use
2009         func_cache_lookup_module.
2010
2011 2010-02-07  Bruno Haible  <bruno@clisp.org>
2012
2013         fnctl: Fix missing dependency.
2014         * modules/fcntl (Depends-on): Add getdtablesize.
2015         Reported by John W. Eaton <jwe@gnu.org>.
2016
2017 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
2018
2019         Argp: fix recognition of short alias options.
2020
2021         * lib/argp-parse.c (convert_options): Fix improper use of
2022         `|' between character values.
2023         * tests/test-argp.c (group1_option): New alias option
2024         --read (-r).
2025         (group1_parser): Special handling for 'r'.
2026         (test15): New test case.
2027         (test_fun): Add test15.
2028         * tests/test-argp-2.sh: Update expected --help and --usage
2029         outputs.
2030
2031 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
2032
2033         * tests/test-argp.c: Fix indentation.
2034
2035 2010-02-04  Eric Blake  <ebb9@byu.net>
2036
2037         gettimeofday: expose type of second argument
2038         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Do better detection
2039         of glibc extension signature, and define GETTIMEOFDAY_TIMEZONE.
2040         * tests/test-gettimeofday.c: Use it to silence warning.
2041         * doc/posix-functions/gettimeofday.texi (gettimeofday): Document
2042         the issue.
2043
2044 2010-02-03  Jim Meyering  <meyering@redhat.com>
2045
2046         regcomp.c: avoid the sole warning from gcc's -Wtype-limits
2047         * lib/regcomp.c (TYPE_SIGNED): Define.
2048         (parse_dup_op): Use it to avoid the sole warning from -Wtype-limits.
2049
2050         regcomp.c: avoid a new -Wshadow warning
2051         * lib/regcomp.c (create_initial_state): Do not shadow local "err".
2052
2053 2010-02-01  Jim Meyering  <meyering@redhat.com>
2054
2055         removing useless parentheses in cpp #define directives
2056         For motivation, see commit c0221df4, "define STREQ(a,b)
2057         consistently, removing useless parentheses"
2058         * lib/memcmp.c (CMP_LT_OR_GT): Remove useless parentheses.
2059         * lib/mountlist.c (MNT_IGNORE): Likewise.
2060         * lib/trim.h (trim, trim_trailing, trim_leading): Likewise.
2061
2062 2010-02-01  Eric Blake  <ebb9@byu.net>
2063
2064         sys_time: use link-warning
2065         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Split defaults...
2066         (gl_HEADER_SYS_TIME_H_DEFAULTS): ...into new macro.
2067         (gl_SYS_TIME_MODULE_INDICATOR): New macro.
2068         * modules/sys_time (Depends-on): Add warn-on-use.
2069         (Makefile.am): Always build replacement.
2070         (configure.ac): Update substitutions.
2071         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY)
2072         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Include defaults, and no longer
2073         bother with SYS_TIME_H.
2074         * modules/gettimeofday (configure.ac): Declare indicator.
2075         * lib/sys_time.in.h (gettimeofday): Warn if gnulib module is not
2076         in use.
2077
2078         closein-tests: silence compiler warning
2079         * tests/test-closein.c (main): Ignore fread result.
2080         * modules/closein-tests (Depends-on): Add ignore-value.
2081
2082         tests: silence warning about system return
2083         * tests/test-areadlink-with-size.c (main): Ignore system result.
2084         * tests/test-areadlink.c (main): Likewise.
2085         * tests/test-areadlinkat-with-size.c (main): Likewise.
2086         * tests/test-areadlinkat.c (main): Likewise.
2087         * tests/test-canonicalize-lgpl.c (main): Likewise.
2088         * tests/test-canonicalize.c (main): Likewise.
2089         * tests/test-chown.c (main): Likewise.
2090         * tests/test-fchownat.c (main): Likewise.
2091         * tests/test-fdutimensat.c (main): Likewise.
2092         * tests/test-fstatat.c (main): Likewise.
2093         * tests/test-futimens.c (main): Likewise.
2094         * tests/test-lchown.c (main): Likewise.
2095         * tests/test-link.c (main): Likewise.
2096         * tests/test-linkat.c (main): Likewise.
2097         * tests/test-lstat.c (main): Likewise.
2098         * tests/test-mkdir.c (main): Likewise.
2099         * tests/test-mkdirat.c (main): Likewise.
2100         * tests/test-mkfifo.c (main): Likewise.
2101         * tests/test-mkfifoat.c (main): Likewise.
2102         * tests/test-mknod.c (main): Likewise.
2103         * tests/test-readlink.c (main): Likewise.
2104         * tests/test-remove.c (main): Likewise.
2105         * tests/test-rename.c (main): Likewise.
2106         * tests/test-renameat.c (main): Likewise.
2107         * tests/test-rmdir.c (main): Likewise.
2108         * tests/test-symlink.c (main): Likewise.
2109         * tests/test-symlinkat.c (main): Likewise.
2110         * tests/test-unlink.c (main): Likewise.
2111         * tests/test-unlinkat.c (main): Likewise.
2112         * tests/test-utimens.c (main): Likewise.
2113         * tests/test-utimensat.c (main): Likewise.
2114         * modules/areadlink-tests (Depends-on): Add ignore-value.
2115         * modules/areadlink-with-size-tests (Depends-on): Likewise.
2116         * modules/areadlinkat-tests (Depends-on): Likewise.
2117         * modules/areadlinkat-with-size-tests (Depends-on): Likewise.
2118         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
2119         * modules/canonicalize-tests (Depends-on): Likewise.
2120         * modules/chown-tests (Depends-on): Likewise.
2121         * modules/fdutimensat-tests (Depends-on): Likewise.
2122         * modules/futimens-tests (Depends-on): Likewise.
2123         * modules/lchown-tests (Depends-on): Likewise.
2124         * modules/link-tests (Depends-on): Likewise.
2125         * modules/linkat-tests (Depends-on): Likewise.
2126         * modules/lstat-tests (Depends-on): Likewise.
2127         * modules/mkdir-tests (Depends-on): Likewise.
2128         * modules/mkfifo-tests (Depends-on): Likewise.
2129         * modules/mkfifoat-tests (Depends-on): Likewise.
2130         * modules/mknod-tests (Depends-on): Likewise.
2131         * modules/openat-tests (Depends-on): Likewise.
2132         * modules/readlink-tests (Depends-on): Likewise.
2133         * modules/remove-tests (Depends-on): Likewise.
2134         * modules/rename-tests (Depends-on): Likewise.
2135         * modules/renameat-tests (Depends-on): Likewise.
2136         * modules/rmdir-tests (Depends-on): Likewise.
2137         * modules/symlink-tests (Depends-on): Likewise.
2138         * modules/symlinkat-tests (Depends-on): Likewise.
2139         * modules/unlink-tests (Depends-on): Likewise.
2140         * modules/utimens-tests (Depends-on): Likewise.
2141         * modules/utimensat-tests (Depends-on): Likewise.
2142
2143 2010-01-31  Bruno Haible  <bruno@clisp.org>
2144
2145         Perform the same test for many <math.h> functions.
2146         * m4/mathfunc.m4 (gl_COMMON_DOUBLE_MATHFUNC,
2147         gl_COMMON_DOUBLE_MATHFUNC_TEST): New macros.
2148         * m4/sqrt.m4 (gl_FUNC_SQRT): Invoke gl_COMMON_DOUBLE_MATHFUNC instead
2149         of gl_MATHFUNC.
2150         * modules/acos (configure.ac): Likewise.
2151         * modules/asin (configure.ac): Likewise.
2152         * modules/atan (configure.ac): Likewise.
2153         * modules/atan2 (configure.ac): Likewise.
2154         * modules/cbrt (configure.ac): Likewise.
2155         * modules/copysign (configure.ac): Likewise.
2156         * modules/cos (configure.ac): Likewise.
2157         * modules/cosh (configure.ac): Likewise.
2158         * modules/erf (configure.ac): Likewise.
2159         * modules/erfc (configure.ac): Likewise.
2160         * modules/exp (configure.ac): Likewise.
2161         * modules/fmod (configure.ac): Likewise.
2162         * modules/hypot (configure.ac): Likewise.
2163         * modules/j0 (configure.ac): Likewise.
2164         * modules/j1 (configure.ac): Likewise.
2165         * modules/jn (configure.ac): Likewise.
2166         * modules/lgamma (configure.ac): Likewise.
2167         * modules/log (configure.ac): Likewise.
2168         * modules/log10 (configure.ac): Likewise.
2169         * modules/log1p (configure.ac): Likewise.
2170         * modules/pow (configure.ac): Likewise.
2171         * modules/remainder (configure.ac): Likewise.
2172         * modules/sin (configure.ac): Likewise.
2173         * modules/sinh (configure.ac): Likewise.
2174         * modules/tan (configure.ac): Likewise.
2175         * modules/tanh (configure.ac): Likewise.
2176         * modules/y0 (configure.ac): Likewise.
2177         * modules/y1 (configure.ac): Likewise.
2178         * modules/yn (configure.ac): Likewise.
2179         Suggested by Paolo Bonzini.
2180
2181 2010-01-31  Bruno Haible  <bruno@clisp.org>
2182
2183         * m4/getline.m4 (gl_FUNC_GETLINE): Add comment about REPLACE_GETLINE.
2184
2185 2010-01-31  Bruno Haible  <bruno@clisp.org>
2186
2187         Work around getdelim() bug on FreeBSD 8.0.
2188         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Test whether getdelim supports an
2189         initially NULL line. Set REPLACE_GETDELIM if getdelim exists but does
2190         not work.
2191         * lib/stdio.in.h (getdelim): Define as an alias if REPLACE_GETDELIM
2192         is 1.
2193         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize REPLACE_GETDELIM.
2194         * modules/stdio (Makefile.am): Also substitute REPLACE_GETDELIM.
2195         * tests/test-getdelim.c (main): Also test result for a NULL buffer and
2196         a non-zero size.
2197         * doc/posix-functions/getdelim.texi: Mention the FreeBSD bug.
2198
2199 2010-01-31  Bruno Haible  <bruno@clisp.org>
2200
2201         Work around getline() bug on FreeBSD 8.0.
2202         * m4/getline.m4 (gl_FUNC_GETLINE): Also test result for a NULL buffer
2203         and a non-zero size.
2204         * tests/test-getline.c (main): Likewise.
2205         * doc/posix-functions/getline.texi: Mention the FreeBSD bug.
2206         Reported by Dennis <noordsij@cs.helsinki.fi> via Eric Blake.
2207
2208 2010-01-28  Eric Blake  <ebb9@byu.net>
2209
2210         regex: fix build failure
2211         * lib/regex_internal.h (__GNUC_PREREQ): Define for non-glibc
2212         platforms.
2213
2214 2010-01-28  Jim Meyering  <meyering@redhat.com>
2215
2216         regex: do not ignore memory allocation failure
2217         * lib/regex_internal.c (create_cd_newstate): Detect
2218         re_node_set_init_copy failure.   Extracted from glibc commit
2219         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2220
2221         regex: sync more white-space changes from libc
2222         * lib/regex_internal.c: White-space only changes.
2223         * lib/regexec.c: Likewise.
2224
2225         regex: add many uses of __attribute_warn_unused_result__
2226         * lib/regex_internal.c: Use __attribute_warn_unused_result__.
2227         * lib/regexec.c: Likewise.
2228         Extracted from a messy glibc commit.
2229
2230         regcomp.c: spelling and merge-artifact from glibc
2231         * lib/regcomp.c: Merge remainder of glibc's
2232         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2233
2234         regcomp.c: sync white-space changes from glibc
2235         * lib/regcomp.c: Merge to accommodate white space
2236         changes from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2237
2238         regcomp.c: do not ignore internal return values
2239         * lib/regcomp.c: Do not ignore internal return values.
2240         This is from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c,
2241         but without its white-space changes and spelling fixes.
2242
2243         regex_internal.h: define __attribute_warn_unused_result__
2244         * lib/regex_internal.h (__attribute_warn_unused_result__): Define.
2245
2246         maint: add a syntax-check rule to check for vulnerable Makefile.in
2247         * top/maint.mk (sc_vulnerable_makefile_CVE-2009-4029): New rule.
2248
2249 2010-01-27  Jim Meyering  <meyering@redhat.com>
2250
2251         ncftpput-ftp: clean up spaces
2252         * build-aux/ncftpput-ftp: Make Copyright line consistent.
2253         Remove trailing blanks.
2254
2255 2010-01-27  Simon Josefsson  <simon@josefsson.org>
2256
2257         * build-aux/git-version-gen: Fix copyright statement.
2258         * build-aux/gnupload: Likewise.
2259         * tests/test-arcfour.c: Likewise.
2260         * tests/test-arctwo.c: Likewise.
2261         * tests/test-count-one-bits.c: Likewise.
2262         * tests/test-crc.c: Likewise.
2263         * tests/test-des.c: Likewise.
2264         * tests/test-gc-arcfour.c: Likewise.
2265         * tests/test-gc-arctwo.c: Likewise.
2266         * tests/test-gc-des.c: Likewise.
2267         * tests/test-gc-hmac-md5.c: Likewise.
2268         * tests/test-gc-hmac-sha1.c: Likewise.
2269         * tests/test-gc-md2.c: Likewise.
2270         * tests/test-gc-md4.c: Likewise.
2271         * tests/test-gc-md5.c: Likewise.
2272         * tests/test-gc-pbkdf2-sha1.c: Likewise.
2273         * tests/test-gc-rijndael.c: Likewise.
2274         * tests/test-gc-sha1.c: Likewise.
2275         * tests/test-gc.c: Likewise.
2276         * tests/test-gethostname.c: Likewise.
2277         * tests/test-gettimeofday.c: Likewise.
2278         * tests/test-hash.c: Likewise.
2279         * tests/test-hmac-md5.c: Likewise.
2280         * tests/test-hmac-sha1.c: Likewise.
2281         * tests/test-md2.c: Likewise.
2282         * tests/test-md4.c: Likewise.
2283         * tests/test-md5.c: Likewise.
2284         * tests/test-memchr.c: Likewise.
2285         * tests/test-memchr2.c: Likewise.
2286         * tests/test-memcmp.c: Likewise.
2287         * tests/test-memmem.c: Likewise.
2288         * tests/test-memrchr.c: Likewise.
2289         * tests/test-rawmemchr.c: Likewise.
2290         * tests/test-read-file.c: Likewise.
2291         * tests/test-rijndael.c: Likewise.
2292         * tests/test-sockets.c: Likewise.
2293         * tests/test-strchrnul.c: Likewise.
2294         * tests/test-strstr.c: Likewise.
2295         * tests/test-strtod.c: Likewise.
2296         * build-aux/ncftpput-ftp: Likewise.
2297
2298 2010-01-26  Eric Blake  <ebb9@byu.net>
2299
2300         ignore-value: update recommended header name
2301         * modules/ignore-value (Include): Only use <> for headers that
2302         exist in glibc.
2303
2304 2010-01-26  Jim Meyering  <meyering@redhat.com>
2305
2306         test-userspec.c: avoid compiler warnings
2307         * tests/test-userspec.c (main): Avoid shadowing ("uid"),
2308         and "initialization discards qualifiers..." warnings.
2309         Put the first "uid" in its own scope, and make char* members "const".
2310
2311 2010-01-25  Bruno Haible  <bruno@clisp.org>
2312
2313         gnulib-tool: Make warning diagnostics consistent.
2314         * gnulib-tool (func_warning): New function.
2315         Use it everywhere where gnulib-tool produces output to stderr and it is
2316         not a fatal error.
2317
2318 2010-01-25  Bruno Haible  <bruno@clisp.org>
2319
2320         Fix test dependencies.
2321         * modules/xstrtol-tests (Depends-on): Add inttypes.
2322         * modules/xstrtoll-tests (Depends-on): Likewise. Remove xstrtoll.
2323
2324 2010-01-25 Pádraig Brady <P@draigBrady.com>
2325
2326         syntax-check: detect incorrect boolean macro values in config.h
2327         * modules/maintainer-makefile (configure.ac): Parameterize the location
2328         of config.h which will be available to makefiles as $(CONFIG_INCLUDE).
2329         The logic is from Eric Blake and the location indicated by Jim Meyering.
2330         Note the more natural CONFIG_HEADER name is prohibited by automake
2331         for backwards compatibility reasons.
2332         * top/maint.mk (sc_Wundef_boolean): New rule.
2333
2334 2010-01-25  Jim Meyering  <meyering@redhat.com>
2335
2336         bootstrap: detect MacOS 10.6's shasum, too
2337         * build-aux/bootstrap: Also recognize MacOS 10.6's shasum.
2338         Suggested by Thomas Treichl <Thomas.Treichl@gmx.net>.
2339
2340 2010-01-23  Jim Meyering  <meyering@redhat.com>
2341
2342         xstrtoll: new module
2343         * modules/xstrtoll: New file.
2344         * MODULES.html.sh (Numeric conversion functions): Add xstrtoll.
2345         * lib/xstrtol.h [HAVE_LONG_LONG_INT]: Declare xstrtoll and xstrtoull.
2346         * lib/xstrtoll.c, lib/xstrtoull.c: New files.
2347         ./configure fails if you use this module and lack "long long".
2348         * modules/xstrtoll-tests: New module.
2349         * tests/test-xstrtoll.c, tests/test-xstrtoull.c: New files.
2350         * tests/test-xstrtoll.sh: Like test-xstrtol.c, but use the
2351         new init.sh-based test framework.
2352
2353 2010-01-24  Bruno Haible  <bruno@clisp.org>
2354
2355         Tests for module 'yn'.
2356         * modules/yn-tests: New file.
2357         * tests/test-yn.c: New file.
2358
2359         Tests for module 'y1'.
2360         * modules/y1-tests: New file.
2361         * tests/test-y1.c: New file.
2362
2363         Tests for module 'y0'.
2364         * modules/y0-tests: New file.
2365         * tests/test-y0.c: New file.
2366
2367         Tests for module 'tanh'.
2368         * modules/tanh-tests: New file.
2369         * tests/test-tanh.c: New file.
2370
2371         Tests for module 'tan'.
2372         * modules/tan-tests: New file.
2373         * tests/test-tan.c: New file.
2374
2375         Tests for module 'sqrt'.
2376         * modules/sqrt-tests: New file.
2377         * tests/test-sqrt.c: New file.
2378
2379         Tests for module 'sinh'.
2380         * modules/sinh-tests: New file.
2381         * tests/test-sinh.c: New file.
2382
2383         Tests for module 'sin'.
2384         * modules/sin-tests: New file.
2385         * tests/test-sin.c: New file.
2386
2387         Tests for module 'rint'.
2388         * modules/rint-tests: New file.
2389         * tests/test-rint.c: New file.
2390
2391         Tests for module 'remainder'.
2392         * modules/remainder-tests: New file.
2393         * tests/test-remainder.c: New file.
2394
2395         Tests for module 'pow'.
2396         * modules/pow-tests: New file.
2397         * tests/test-pow.c: New file.
2398
2399         Tests for module 'nextafter'.
2400         * modules/nextafter-tests: New file.
2401         * tests/test-nextafter.c: New file.
2402
2403         Tests for module 'modf'.
2404         * modules/modf-tests: New file.
2405         * tests/test-modf.c: New file.
2406
2407         Tests for module 'logb'.
2408         * modules/logb-tests: New file.
2409         * tests/test-logb.c: New file.
2410
2411         Tests for module 'log1p'.
2412         * modules/log1p-tests: New file.
2413         * tests/test-log1p.c: New file.
2414
2415         Tests for module 'log10'.
2416         * modules/log10-tests: New file.
2417         * tests/test-log10.c: New file.
2418
2419         Tests for module 'log'.
2420         * modules/log-tests: New file.
2421         * tests/test-log.c: New file.
2422
2423         Tests for module 'lgamma'.
2424         * modules/lgamma-tests: New file.
2425         * tests/test-lgamma.c: New file.
2426
2427         Tests for module 'ldexp'.
2428         * modules/ldexp-tests: New file.
2429         * tests/test-ldexp.c: New file.
2430
2431         Tests for module 'jn'.
2432         * modules/jn-tests: New file.
2433         * tests/test-jn.c: New file.
2434
2435         Tests for module 'j1'.
2436         * modules/j1-tests: New file.
2437         * tests/test-j1.c: New file.
2438
2439         Tests for module 'j0'.
2440         * modules/j0-tests: New file.
2441         * tests/test-j0.c: New file.
2442
2443         Tests for module 'hypot'.
2444         * modules/hypot-tests: New file.
2445         * tests/test-hypot.c: New file.
2446
2447         Tests for module 'fmod'.
2448         * modules/fmod-tests: New file.
2449         * tests/test-fmod.c: New file.
2450
2451         Tests for module 'fabs'.
2452         * modules/fabs-tests: New file.
2453         * tests/test-fabs.c: New file.
2454
2455         Tests for module 'exp'.
2456         * modules/exp-tests: New file.
2457         * tests/test-exp.c: New file.
2458
2459         Tests for module 'erfc'.
2460         * modules/erfc-tests: New file.
2461         * tests/test-erfc.c: New file.
2462
2463         Tests for module 'erf'.
2464         * modules/erf-tests: New file.
2465         * tests/test-erf.c: New file.
2466
2467         Tests for module 'cosh'.
2468         * modules/cosh-tests: New file.
2469         * tests/test-cosh.c: New file.
2470
2471         Tests for module 'cos'.
2472         * modules/cos-tests: New file.
2473         * tests/test-cos.c: New file.
2474
2475         Tests for module 'copysign'.
2476         * modules/copysign-tests: New file.
2477         * tests/test-copysign.c: New file.
2478
2479         Tests for module 'cbrt'.
2480         * modules/cbrt-tests: New file.
2481         * tests/test-cbrt.c: New file.
2482
2483         Tests for module 'atan2'.
2484         * modules/atan2-tests: New file.
2485         * tests/test-atan2.c: New file.
2486
2487         Tests for module 'atan'.
2488         * modules/atan-tests: New file.
2489         * tests/test-atan.c: New file.
2490
2491         Tests for module 'asin'.
2492         * modules/asin-tests: New file.
2493         * tests/test-asin.c: New file.
2494
2495         Tests for module 'acos'.
2496         * modules/acos-tests: New file.
2497         * tests/test-acos.c: New file.
2498
2499 2010-01-24  Bruno Haible  <bruno@clisp.org>
2500
2501         Fix tests for common <math.h> functions.
2502         * m4/mathfunc.m4 (gl_MATHFUNC): Take two additional parameters. Use a
2503         code snippet that references the function pointer, rather than merely
2504         calling the function. Substitute the FUNC_LIBM variable.
2505         * m4/sqrt.m4 (gl_FUNC_SQRT): Update gl_MATHFUNC invocation.
2506         * modules/acos (configure.ac): Likewise.
2507         * modules/asin (configure.ac): Likewise.
2508         * modules/atan (configure.ac): Likewise.
2509         * modules/atan2 (configure.ac): Likewise.
2510         * modules/cbrt (configure.ac): Likewise.
2511         * modules/copysign (configure.ac): Likewise.
2512         * modules/cos (configure.ac): Likewise.
2513         * modules/cosh (configure.ac): Likewise.
2514         * modules/erf (configure.ac): Likewise.
2515         * modules/erfc (configure.ac): Likewise.
2516         * modules/exp (configure.ac): Likewise.
2517         * modules/fabs (configure.ac): Likewise.
2518         * modules/fmod (configure.ac): Likewise.
2519         * modules/hypot (configure.ac): Likewise.
2520         * modules/j0 (configure.ac): Likewise.
2521         * modules/j1 (configure.ac): Likewise.
2522         * modules/jn (configure.ac): Likewise.
2523         * modules/ldexp (configure.ac): Likewise.
2524         * modules/lgamma (configure.ac): Likewise.
2525         * modules/log (configure.ac): Likewise.
2526         * modules/log10 (configure.ac): Likewise.
2527         * modules/log1p (configure.ac): Likewise.
2528         * modules/logb (configure.ac): Likewise.
2529         * modules/modf (configure.ac): Likewise.
2530         * modules/nextafter (configure.ac): Likewise.
2531         * modules/pow (configure.ac): Likewise.
2532         * modules/remainder (configure.ac): Likewise.
2533         * modules/rint (configure.ac): Likewise.
2534         * modules/sin (configure.ac): Likewise.
2535         * modules/sinh (configure.ac): Likewise.
2536         * modules/tan (configure.ac): Likewise.
2537         * modules/tanh (configure.ac): Likewise.
2538         * modules/y0 (configure.ac): Likewise.
2539         * modules/y1 (configure.ac): Likewise.
2540         * modules/yn (configure.ac): Likewise.
2541
2542 2010-01-24  Bruno Haible  <bruno@clisp.org>
2543
2544         Tests: Defeat inlining of math functions by GCC >= 4.3.0.
2545         * tests/test-acosl.c (x): New variable.
2546         (main): Store argument in x and fetch it from x.
2547         * tests/test-asinl.c (x): New variable.
2548         (main): Store argument in x and fetch it from x.
2549         * tests/test-atanl.c (x): New variable.
2550         (main): Store argument in x and fetch it from x.
2551         * tests/test-cosl.c (x): New variable.
2552         (main): Store argument in x and fetch it from x.
2553         * tests/test-expl.c (x): New variable.
2554         (main): Store argument in x and fetch it from x.
2555         * tests/test-logl.c (x): New variable.
2556         (main): Store argument in x and fetch it from x.
2557         * tests/test-sinl.c (x): New variable.
2558         (main): Store argument in x and fetch it from x.
2559         * tests/test-sqrtl.c (x): New variable.
2560         (main): Store argument in x and fetch it from x.
2561         * tests/test-tanl.c (x): New variable.
2562         (main): Store argument in x and fetch it from x.
2563
2564 2010-01-24  Bruno Haible  <bruno@clisp.org>
2565
2566         Provide EXEEXT and srcdir in TESTS_ENVIRONMENT by default.
2567         * gnulib-tool (func_emit_tests_Makefile_am): Add EXEEXT and srcdir
2568         assignments to the initial TESTS_ENVIRONMENT.
2569         * doc/gnulib.texi (Unit test modules): Document it.
2570         * modules/acl-tests (Makefile.am): Drop EXEEXT assignment from
2571         TESTS_ENVIRONMENT.
2572         * modules/btowc-tests (Makefile.am): Likewise.
2573         * modules/c-stack-tests (Makefile.am): Likewise.
2574         * modules/c-strcase-tests (Makefile.am): Likewise.
2575         * modules/copy-file-tests (Makefile.am): Likewise.
2576         * modules/mbmemcasecmp-tests (Makefile.am): Likewise.
2577         * modules/mbmemcasecoll-tests (Makefile.am): Likewise.
2578         * modules/mbrtowc-tests (Makefile.am): Likewise.
2579         * modules/mbscasecmp-tests (Makefile.am): Likewise.
2580         * modules/mbscasestr-tests (Makefile.am): Likewise.
2581         * modules/mbschr-tests (Makefile.am): Likewise.
2582         * modules/mbscspn-tests (Makefile.am): Likewise.
2583         * modules/mbsinit-tests (Makefile.am): Likewise.
2584         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
2585         * modules/mbsnrtowcs-tests (Makefile.am): Likewise.
2586         * modules/mbspbrk-tests (Makefile.am): Likewise.
2587         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
2588         * modules/mbsrchr-tests (Makefile.am): Likewise.
2589         * modules/mbsrtowcs-tests (Makefile.am): Likewise.
2590         * modules/mbsspn-tests (Makefile.am): Likewise.
2591         * modules/mbsstr-tests (Makefile.am): Likewise.
2592         * modules/nl_langinfo-tests (Makefile.am): Likewise.
2593         * modules/unicase/locale-language-tests (Makefile.am): Likewise.
2594         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
2595         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
2596         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
2597         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
2598         * modules/uniwbrk/ulc-wordbreaks-tests (Makefile.am): Likewise.
2599         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
2600         * modules/wcrtomb-tests (Makefile.am): Likewise.
2601         * modules/wcsnrtombs-tests (Makefile.am): Likewise.
2602         * modules/wcsrtombs-tests (Makefile.am): Likewise.
2603         * modules/quotearg-tests (Makefile.am): Drop EXEEXT and srcdir
2604         assignments from TESTS_ENVIRONMENT.
2605         * modules/argp-tests (Makefile.am): Drop TESTS_ENVIRONMENT
2606         augmentation.
2607         * modules/argp-version-etc-tests (Makefile.am): Likewise.
2608         * modules/atexit-tests (Makefile.am): Likewise.
2609         * modules/binary-io-tests (Makefile.am): Likewise.
2610         * modules/closein-tests (Makefile.am): Likewise.
2611         * modules/dprintf-posix-tests (Makefile.am): Likewise.
2612         * modules/exclude-tests (Makefile.am): Likewise.
2613         * modules/fflush-tests (Makefile.am): Likewise.
2614         * modules/fpending-tests (Makefile.am): Likewise.
2615         * modules/fprintf-posix-tests (Makefile.am): Likewise.
2616         * modules/freadahead-tests (Makefile.am): Likewise.
2617         * modules/freadptr-tests (Makefile.am): Likewise.
2618         * modules/freadseek-tests (Makefile.am): Likewise.
2619         * modules/fseek-tests (Makefile.am): Likewise.
2620         * modules/fseeko-tests (Makefile.am): Likewise.
2621         * modules/ftell-tests (Makefile.am): Likewise.
2622         * modules/ftello-tests (Makefile.am): Likewise.
2623         * modules/idpriv-drop-tests (Makefile.am): Likewise.
2624         * modules/idpriv-droptemp-tests (Makefile.am): Likewise.
2625         * modules/lseek-tests (Makefile.am): Likewise.
2626         * modules/parse-duration-tests (Makefile.am): Likewise.
2627         * modules/perror-tests (Makefile.am): Likewise.
2628         * modules/pipe-filter-gi-tests (Makefile.am): Likewise.
2629         * modules/pipe-filter-ii-tests (Makefile.am): Likewise.
2630         * modules/pipe-tests (Makefile.am): Likewise.
2631         * modules/pread-tests (Makefile.am): Likewise.
2632         * modules/printf-posix-tests (Makefile.am): Likewise.
2633         * modules/select-tests (Makefile.am): Likewise.
2634         * modules/sigpipe-tests (Makefile.am): Likewise.
2635         * modules/tsearch-tests (Makefile.am): Likewise.
2636         * modules/unicase/ulc-casecmp-tests (Makefile.am): Likewise.
2637         * modules/unicase/ulc-casecoll-tests (Makefile.am): Likewise.
2638         * modules/uniname/uniname-tests (Makefile.am): Likewise.
2639         * modules/uniwidth/width-tests (Makefile.am): Likewise.
2640         * modules/vdprintf-posix-tests (Makefile.am): Likewise.
2641         * modules/version-etc-tests (Makefile.am): Likewise.
2642         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
2643         * modules/vprintf-posix-tests (Makefile.am): Likewise.
2644         * modules/xalloc-die-tests (Makefile.am): Likewise.
2645         * modules/xprintf-posix-tests (Makefile.am): Likewise.
2646         * modules/xstrtoimax-tests (Makefile.am): Likewise.
2647         * modules/xstrtol-tests (Makefile.am): Likewise.
2648         * modules/xstrtoumax-tests (Makefile.am): Likewise.
2649         * modules/yesno-tests (Makefile.am): Likewise.
2650         Suggested by Jim Meyering.
2651
2652 2010-01-24  Bruno Haible  <bruno@clisp.org>
2653
2654         More documentation.
2655         * doc/gnulib.texi (Writing modules): New chapter.
2656         (Miscellaneous Notes): Move sections "Comments" and "Header files" to
2657         the new chapter.
2658
2659 2010-01-24  Jim Meyering  <meyering@redhat.com>
2660
2661         maint.mk: do not prepend "./" after filtering
2662         * top/maint.mk (_prepend_srcdir_prefix): New variable
2663         (VC_LIST_EXCEPT): Use it to avoid prepending (post-filter)
2664         "./" when $(srcdir) is ".".
2665
2666         define STREQ(a,b) consistently, removing useless parentheses
2667         #define STREQ(a, b) (strcmp ((a), (b)) == 0) is over-parenthesized,
2668         since the only risk is that "a" or "b" contains an unparenthesized
2669         comma, but if either did that, STREQ would have 3 or more arguments.
2670         Hence, #define STREQ(a, b) (strcmp (a, b) == 0) is better.
2671         * lib/fts.c (STREQ): Remove unnecessary parentheses.
2672         * lib/hash-triple.c (STREQ): Likewise.
2673         * tests/test-argv-iter.c (STREQ): Use a and b, not s1 and s2.
2674         * lib/getugroups.c (STREQ): Likewise.
2675
2676 2010-01-23  Jim Meyering  <meyering@redhat.com>
2677
2678         maint.mk: fix syntax-check in a non-srcdir build directory
2679         * top/maint.mk (_dot_escaped_srcdir): Remove erroneous backslash,
2680         introduced in my 2010-01-21 commit, a6da6c45.  Reported by Eric Blake.
2681
2682 2010-01-22  Jim Meyering  <meyering@redhat.com>
2683
2684         userspec: add unit tests
2685         * tests/test-userspec.c: New file.
2686         * modules/userspec-tests: Likewise.
2687
2688 2010-01-21  Jim Meyering  <meyering@redhat.com>
2689
2690         maint.mk: handle source file names containing "." robustly
2691         * top/maint.mk (_dot_escaped_srcdir): Define.
2692         (VC_LIST): Use it in LHS of sed substitution.
2693
2694 2010-01-21  Jiri Denemark  <jdenemar@redhat.com>
2695
2696         maint.mk: fix VC_LIST_EXCEPT for srcdir != builddir
2697         * top/maint.mk (VC_LIST_EXCEPT): Preprocess the output of
2698         $(VC_LIST) to remove a prefix of '$(srcdir)/', so that it works
2699         from a non-srcdir build.
2700
2701 2010-01-20  Eric Blake  <ebb9@byu.net>
2702
2703         warn-on-use: use instead of link-warning
2704         * modules/stdio (Depends-on, Makefile.am): Drop link-warning.
2705         * modules/unistd (Depends-on, Makefile.am): Likewise.
2706         * modules/arpa_inet (Depends-on): Replace link-warning with
2707         warn-on-use.
2708         (Makefile.am): Update rules accordingly.
2709         * modules/ctype (Depends-on, Makefile.am): Likewise.
2710         * modules/dirent (Depends-on, Makefile.am): Likewise.
2711         * modules/fcntl-h (Depends-on, Makefile.am): Likewise.
2712         * modules/inttypes (Depends-on, Makefile.am): Likewise.
2713         * modules/langinfo (Depends-on, Makefile.am): Likewise.
2714         * modules/locale (Depends-on, Makefile.am): Likewise.
2715         * modules/math (Depends-on, Makefile.am): Likewise.
2716         * modules/search (Depends-on, Makefile.am): Likewise.
2717         * modules/signal (Depends-on, Makefile.am): Likewise.
2718         * modules/spawn (Depends-on, Makefile.am): Likewise.
2719         * modules/stdlib (Depends-on, Makefile.am): Likewise.
2720         * modules/string (Depends-on, Makefile.am): Likewise.
2721         * modules/strings (Depends-on, Makefile.am): Likewise.
2722         * modules/sys_file (Depends-on, Makefile.am): Likewise.
2723         * modules/sys_ioctl (Depends-on, Makefile.am): Likewise.
2724         * modules/sys_select (Depends-on, Makefile.am): Likewise.
2725         * modules/sys_socket (Depends-on, Makefile.am): Likewise.
2726         * modules/sys_stat (Depends-on, Makefile.am): Likewise.
2727         * modules/sys_times (Depends-on, Makefile.am): Likewise.
2728         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
2729         * modules/wchar (Depends-on, Makefile.am): Likewise.
2730         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Check which functions
2731         should be poisoned.
2732         * m4/ctype.m4 (gl_CTYPE_H): Likewise.
2733         * m4/dirent_h.m4 (gl_DIRENT_H): Likewise.
2734         * m4/fcntl_h.m4 (gl_FCNTL_H): Likewise.
2735         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
2736         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
2737         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
2738         * m4/math_h.m4 (gl_MATH_H): Likewise.
2739         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
2740         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
2741         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
2742         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
2743         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
2744         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
2745         * m4/strings_h.m4 (gl_HEADER_STRINGS_H_BODY): Likewise.
2746         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H_DEFAULTS): Likewise.
2747         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Likewise.
2748         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
2749         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
2750         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
2751         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
2752         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
2753         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
2754         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
2755         * lib/arpa_inet.in.h: Use _GL_WARN_ON_USE instead of
2756         GL_LINK_WARNING.
2757         * lib/ctype.in.h: Likewise.
2758         * lib/dirent.in.h: Likewise.
2759         * lib/fcntl.in.h: Likewise.
2760         * lib/inttypes.in.h: Likewise.
2761         * lib/langinfo.in.h: Likewise.
2762         * lib/locale.in.h: Likewise.
2763         * lib/math.in.h: Likewise.
2764         * lib/search.in.h: Likewise.
2765         * lib/signal.in.h: Likewise.
2766         * lib/spawn.in.h: Likewise.
2767         * lib/stdio.in.h: Likewise.
2768         * lib/stdlib.in.h: Likewise.
2769         * lib/string.in.h: Likewise.
2770         * lib/strings.in.h: Likewise.
2771         * lib/sys_file.in.h: Likewise.
2772         * lib/sys_ioctl.in.h: Likewise.
2773         * lib/sys_select.in.h: Likewise.
2774         * lib/sys_socket.in.h: Likewise.
2775         * lib/sys_stat.in.h: Likewise.
2776         * lib/sys_times.in.h: Likewise.
2777         * lib/sys_utsname.in.h: Likewise.
2778         * lib/unistd.in.h: Likewise.
2779         * lib/wchar.in.h: Likewise.
2780
2781 2010-01-20  Bruno Haible  <bruno@clisp.org>
2782
2783         Avoid duplicate -lm.
2784         * m4/isnan.m4 (gl_ISNAN): Avoid duplicate -lm in $ISNAN_LIBM.
2785         * m4/round.m4 (gl_FUNC_ROUND): Avoid duplicate -lm in $ROUND_LIBM.
2786         * m4/roundf.m4 (gl_FUNC_ROUNDF): Avoid duplicate -lm in $ROUNDF_LIBM.
2787         * m4/roundl.m4 (gl_FUNC_ROUNDL): Avoid duplicate -lm in $ROUNDL_LIBM.
2788         * m4/acosl.m4 (gl_FUNC_ACOSL): Avoid duplicate -lm in $ACOSL_LIBM.
2789         * m4/cosl.m4 (gl_FUNC_COSL): Avoid duplicate -lm in $COSL_LIBM.
2790         * m4/logl.m4 (gl_FUNC_LOGL): Avoid duplicate -lm in $LOGL_LIBM.
2791         * m4/sinl.m4 (gl_FUNC_SINL): Avoid duplicate -lm in $SINL_LIBM.
2792         * m4/sqrtl.m4 (gl_FUNC_SQRTL): Avoid duplicate -lm in $SQRTL_LIBM.
2793         * m4/tanl.m4 (gl_FUNC_TANL): Avoid duplicate -lm in $TANL_LIBM.
2794         * m4/asinl.m4 (gl_FUNC_ASINL): Same change, for consistency.
2795         * m4/atanl.m4 (gl_FUNC_ATANL): Likewise.
2796         Reported by Paolo Bonzini.
2797
2798 2010-01-19  Bruno Haible  <bruno@clisp.org>
2799
2800         langinfo, nl_langinfo: Relicense under LGPLv2+.
2801         * modules/langinfo (License): Change to LGPLv2+.
2802         * modules/nl_langinfo (License): Likewise.
2803         Patch by David Lutterkort <lutter@redhat.com>.
2804
2805 2010-01-19  Bruno Haible  <bruno@clisp.org>
2806
2807         Avoid compilation error with cc on OSF/1 5.1.
2808         * lib/fcntl.in.h: Include <unistd.h> after the #include_next <fcntl.h>
2809         statement, not before.
2810         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2811
2812 2010-01-18  Bruno Haible  <bruno@clisp.org>
2813
2814         Avoid a link error due to the __printf__ symbol.
2815         * lib/stdio.in.h (__attribute__): Define to empty also for gcc 2.5.x
2816         and 2.6.x.
2817         (__format__, __printf__): Remove definitions.
2818         * lib/argp-fmtstream.h: Likewise.
2819         * lib/argp.h: Likewise.
2820         * lib/error.h: Likewise.
2821         * lib/vasnprintf.h: Likewise.
2822         * lib/xprintf.h: Likewise.
2823         * lib/xvasprintf.h: Likewise.
2824         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2825
2826 2010-01-18  Bruno Haible  <bruno@clisp.org>
2827
2828         Tests for module 'tanl'.
2829         * modules/tanl-tests: New file.
2830         * tests/test-tanl.c: New file.
2831
2832         Tests for module 'sqrtl'.
2833         * modules/sqrtl-tests: New file.
2834         * tests/test-sqrtl.c: New file.
2835
2836         Tests for module 'sinl'.
2837         * modules/sinl-tests: New file.
2838         * tests/test-sinl.c: New file.
2839
2840         Tests for module 'logl'.
2841         * modules/logl-tests: New file.
2842         * tests/test-logl.c: New file.
2843
2844         Tests for module 'expl'.
2845         * modules/expl-tests: New file.
2846         * tests/test-expl.c: New file.
2847
2848         Tests for module 'cosl'.
2849         * modules/cosl-tests: New file.
2850         * tests/test-cosl.c: New file.
2851
2852         Tests for module 'atanl'.
2853         * modules/atanl-tests: New file.
2854         * tests/test-atanl.c: New file.
2855
2856         Tests for module 'asinl'.
2857         * modules/asinl-tests: New file.
2858         * tests/test-asinl.c: New file.
2859
2860         Tests for module 'acosl'.
2861         * modules/acosl-tests: New file.
2862         * tests/test-acosl.c: New file.
2863
2864         New modules acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
2865         * lib/math.in.h (acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl,
2866         tanl): Use the standard gnulib idiom.
2867         * lib/cosl.c: Don't include trigl.c and sincosl.c.
2868         * lib/sinl.c: Likewise.
2869         * lib/tanl.c: Don't include trigl.c.
2870         (kernel_tanl): Make static.
2871         * lib/sincosl.c: Include trigl.h first.
2872         * lib/trigl.c: Likewise.
2873         * m4/acosl.m4: New file.
2874         * m4/asinl.m4: New file.
2875         * m4/atanl.m4: New file.
2876         * m4/cosl.m4: New file.
2877         * m4/expl.m4: New file.
2878         * m4/logl.m4: New file.
2879         * m4/sinl.m4: New file.
2880         * m4/sqrtl.m4: New file.
2881         * m4/tanl.m4: New file.
2882         * m4/mathl.m4: Remove file.
2883         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_* and HAVE_*
2884         variables for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
2885         Don't initialize GNULIB_MATHL.
2886         * modules/acosl: New file.
2887         * modules/asinl: New file.
2888         * modules/atanl: New file.
2889         * modules/cosl: New file.
2890         * modules/expl: New file.
2891         * modules/logl: New file.
2892         * modules/sinl: New file.
2893         * modules/sqrtl: New file.
2894         * modules/tanl: New file.
2895         * modules/math (Makefile.am): Substitute GNULIB_* and HAVE_* variables
2896         for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl. Don't
2897         substitute GNULIB_MATHL.
2898         * modules/mathl: Rewritten.
2899         * doc/posix-functions/acosl.texi: Mention the 'acosl' module.
2900         * doc/posix-functions/asinl.texi: Mention the 'asinl' module.
2901         * doc/posix-functions/atanl.texi: Mention the 'atanl' module.
2902         * doc/posix-functions/cosl.texi: Mention the 'cosl' module.
2903         * doc/posix-functions/expl.texi: Mention the 'expl' module.
2904         * doc/posix-functions/logl.texi: Mention the 'logl' module.
2905         * doc/posix-functions/sinl.texi: Mention the 'sinl' module.
2906         * doc/posix-functions/sqrtl.texi: Mention the 'sqrtl' module.
2907         * doc/posix-functions/tanl.texi: Mention the 'tanl' module.
2908
2909 2010-01-18  Bruno Haible  <bruno@clisp.org>
2910
2911         sqrt: Make gl_FUNC_SQRT requirable.
2912         * m4/sqrt.m4: New file.
2913         * modules/sqrt (Files): Add it.
2914         (configure.ac): Invoke gl_FUNC_SQRT.
2915
2916 2010-01-18  Bruno Haible  <bruno@clisp.org>
2917
2918         New modules for common <math.h> functions.
2919         * m4/mathfunc.m4: New file.
2920         * modules/acos: New file.
2921         * modules/asin: New file.
2922         * modules/atan: New file.
2923         * modules/atan2: New file.
2924         * modules/cbrt: New file.
2925         * modules/copysign: New file.
2926         * modules/cos: New file.
2927         * modules/cosh: New file.
2928         * modules/erf: New file.
2929         * modules/erfc: New file.
2930         * modules/exp: New file.
2931         * modules/fabs: New file.
2932         * modules/fmod: New file.
2933         * modules/hypot: New file.
2934         * modules/j0: New file.
2935         * modules/j1: New file.
2936         * modules/jn: New file.
2937         * modules/ldexp: New file.
2938         * modules/lgamma: New file.
2939         * modules/log: New file.
2940         * modules/log10: New file.
2941         * modules/log1p: New file.
2942         * modules/logb: New file.
2943         * modules/modf: New file.
2944         * modules/nextafter: New file.
2945         * modules/pow: New file.
2946         * modules/remainder: New file.
2947         * modules/rint: New file.
2948         * modules/sin: New file.
2949         * modules/sinh: New file.
2950         * modules/sqrt: New file.
2951         * modules/tan: New file.
2952         * modules/tanh: New file.
2953         * modules/y0: New file.
2954         * modules/y1: New file.
2955         * modules/yn: New file.
2956         * doc/posix-functions/acos.texi: Mention the 'acos' module.
2957         * doc/posix-functions/asin.texi: Mention the 'asin' module.
2958         * doc/posix-functions/atan.texi: Mention the 'atan' module.
2959         * doc/posix-functions/atan2.texi: Mention the 'atan2' module.
2960         * doc/posix-functions/cbrt.texi: Mention the 'cbrt' module.
2961         * doc/posix-functions/copysign.texi: Mention the 'copysign' module.
2962         * doc/posix-functions/cos.texi: Mention the 'cos' module.
2963         * doc/posix-functions/cosh.texi: Mention the 'cosh' module.
2964         * doc/posix-functions/erf.texi: Mention the 'erf' module.
2965         * doc/posix-functions/erfc.texi: Mention the 'erfc' module.
2966         * doc/posix-functions/exp.texi: Mention the 'exp' module.
2967         * doc/posix-functions/fabs.texi: Mention the 'fabs' module.
2968         * doc/posix-functions/fmod.texi: Mention the 'fmod' module.
2969         * doc/posix-functions/hypot.texi: Mention the 'hypot' module.
2970         * doc/posix-functions/j0.texi: Mention the 'j0' module.
2971         * doc/posix-functions/j1.texi: Mention the 'j1' module.
2972         * doc/posix-functions/jn.texi: Mention the 'jn' module.
2973         * doc/posix-functions/ldexp.texi: Mention the 'ldexp' module.
2974         * doc/posix-functions/lgamma.texi: Mention the 'lgamma' module.
2975         * doc/posix-functions/log.texi: Mention the 'log' module.
2976         * doc/posix-functions/log10.texi: Mention the 'log10' module.
2977         * doc/posix-functions/log1p.texi: Mention the 'log1p' module.
2978         * doc/posix-functions/logb.texi: Mention the 'logb' module.
2979         * doc/posix-functions/modf.texi: Mention the 'modf' module.
2980         * doc/posix-functions/nextafter.texi: Mention the 'nextafter' module.
2981         * doc/posix-functions/pow.texi: Mention the 'pow' module.
2982         * doc/posix-functions/remainder.texi: Mention the 'remainder' module.
2983         * doc/posix-functions/rint.texi: Mention the 'rint' module.
2984         * doc/posix-functions/sin.texi: Mention the 'sin' module.
2985         * doc/posix-functions/sinh.texi: Mention the 'sinh' module.
2986         * doc/posix-functions/sqrt.texi: Mention the 'sqrt' module.
2987         * doc/posix-functions/tan.texi: Mention the 'tan' module.
2988         * doc/posix-functions/tanh.texi: Mention the 'tanh' module.
2989         * doc/posix-functions/y0.texi: Mention the 'y0' module.
2990         * doc/posix-functions/y1.texi: Mention the 'y1' module.
2991         * doc/posix-functions/yn.texi: Mention the 'yn' module.
2992
2993 2010-01-18  Jim Meyering  <meyering@redhat.com>
2994
2995         ignore-value: relax license to LGPLv2+
2996         * modules/ignore-value (License): Relax to LGPLv2+.
2997
2998         getdate: don't leak when TZ contains two or more '"'s
2999         * lib/getdate.y (get_date): Don't leak a copy of TZ for each
3000         double quote in TZ after the first one.
3001
3002         readtokens: do not leak internal token_lengths buffer
3003         * lib/readtokens.c (readtokens): Free the local, lengths,
3004         when the supplied "token_lengths" parameter is NULL.
3005
3006 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3007
3008         Fix a couple of missing LIBTHREAD link failures on AIX.
3009         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add
3010         $(LIBTHREAD).
3011         * modules/strsignal-tests (test_strsignal_LDADD): Likewise.
3012
3013         Link test-poll against INET_PTON_LIB.
3014         * modules/poll-tests (test_poll_LDADD): Add $(INET_PTON_LIB),
3015         for inet_pton on Solaris 10.
3016
3017 2010-01-17  Bruno Haible  <bruno@clisp.org>
3018
3019         unistdio/*-sprintf: Fix typo in module description.
3020         * modules/unistdio/u8-sprintf (Depends-on): Fix typo.
3021         * modules/unistdio/u8-u8-sprintf (Depends-on): Likewise.
3022         * modules/unistdio/u16-sprintf (Depends-on): Likewise.
3023         * modules/unistdio/u16-u16-sprintf (Depends-on): Likewise.
3024         * modules/unistdio/u32-sprintf (Depends-on): Likewise.
3025         * modules/unistdio/u32-u32-sprintf (Depends-on): Likewise.
3026         * modules/unistdio/ulc-sprintf (Depends-on): Likewise.
3027         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3028
3029 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3030
3031         gnulib-tool: fix filelist for AIX, HP-UX ksh.
3032         * gnulib-tool (func_filter_filelist): Do not quote possibly-empty
3033         variables in shell case patterns, for AIX and HP-UX ksh.
3034
3035         Split large sed scripts, for HP-UX sed.
3036         * modules/stdio: Split sed scripts around 50 sed commands,
3037         to avoid HP-UX limit of 99 commands, in the near future.
3038         * modules/string: Likewise.
3039         * modules/unistd: Likewise.
3040
3041         gnulib-tool: avoid writing in the current directory.
3042         * gnulib-tool (func_emit_lib_Makefile_am)
3043         (func_emit_tests_Makefile_am): Put temporary files in $tmp,
3044         not in the current directory, so concurrent gnulib-tool
3045         instances do not interfere.
3046
3047 2010-01-16  Jim Meyering  <meyering@redhat.com>
3048
3049         doc: update users.txt
3050         * users.txt: Add grep.
3051         (diffutils, gzip): Update URLs.
3052
3053 2010-01-12  Bruno Haible  <bruno@clisp.org>
3054
3055         posix_spawn: Avoid test failure on Cygwin.
3056         * tests/test-posix_spawn3.c (DATA_FILENAME) [CYGWIN]: Use less risky
3057         characters.
3058         Reported by Simon Josefsson.
3059
3060 2010-01-12  Bruno Haible  <bruno@clisp.org>
3061
3062         * tests/test-cond.c (main): When skipping the test, show the reason.
3063
3064 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3065
3066         * lib/striconv.c (str_cd_iconv): Avoid if before free.
3067
3068 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3069
3070         * top/maint.mk (VC_LIST_EXCEPT): Filter list through
3071         VC_LIST_ALWAYS_EXCLUDE_REGEX.
3072
3073 2010-01-12  Eric Blake  <ebb9@byu.net>
3074
3075         build: guarantee AS_VAR_IF
3076         * m4/warnings.m4 (gl_WARN_ADD): Use autoconf name.
3077         (gl_AS_VAR_IF): Move...
3078         * m4/gnulib-common.m4 (AS_VAR_IF): ...here.
3079         Reported by Simon Josefsson.
3080
3081 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3082
3083         * lib/stdio.in.h: Fix typo.
3084
3085 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3086
3087         * m4/gc.m4: Check if linking to libgcrypt also needs linking to
3088         libgpg-error.
3089
3090 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3091
3092         * tests/test-xalloc-die.sh: Use $EXEEXT.
3093
3094 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3095             Bruno Haible  <bruno@clisp.org>
3096
3097         getlogin, getlogin_r: Avoid test failure.
3098         * tests/test-getlogin.c: Include <stdio.h>.
3099         (main): Skip the test when the function fails because stdin is not a
3100         tty.
3101         * tests/test-getlogin_r.c: Include <stdio.h>.
3102         (main): Skip the test when the function fails because stdin is not a
3103         tty.
3104
3105 2010-01-11  Eric Blake  <ebb9@byu.net>
3106
3107         tests: avoid more large file warnings
3108         * tests/test-fflush.c: Avoid warning about ftell use.
3109         * tests/test-fseek.c: Avoid warning about fseek use.
3110
3111 2010-01-10  Bruno Haible  <bruno@clisp.org>
3112
3113         nproc: Work better on Linux when /proc and /sys are not mounted.
3114         * lib/nproc.c (num_processors): Use num_processors_via_affinity_mask ()
3115         as lower bound when, on glibc/Linux systems,
3116         sysconf (_SC_NPROCESSORS_CONF) returns 1.
3117         Suggested by Pádraig Brady <P@draigbrady.com>.
3118         Reported by Dmitry V. Levin <ldv@altlinux.org>.
3119
3120         nproc: Refactor.
3121         * lib/nproc.c (num_processors_via_affinity_mask): New function,
3122         extracted from num_processors.
3123         (num_processors): Call it.
3124
3125 2010-01-11  Jim Meyering  <meyering@redhat.com>
3126
3127         utimecmp: avoid new warning from upcoming gcc-4.5.0
3128         * lib/utimecmp.c (BILLION): Define using #define rather than an
3129         anonymous enum, to placate upcoming gcc-4.5.0's -Wenum-compare.
3130
3131 2010-01-11  Eric Blake  <ebb9@byu.net>
3132
3133         math: add portability warnings for classification macros
3134         * modules/math (Depends-on): Add warn-on-use.
3135         (Makefile.am): Provide new substitutions.
3136         * m4/math_h.m4 (gl_MATH_H): Require inline.
3137         * lib/math.in.h (_GL_WARN_REAL_FLOATING_DECL)
3138         (_GL_WARN_REAL_FLOATING_IMPL): New helper macros.
3139         (isfinite, isinf, isnan, signbit) [GNULIB_POSIXCHECK]: Use them to
3140         implement warnings.
3141
3142         unistd: warn on use of environ without module
3143         * modules/unistd (Depends-on): Add warn-on-use.
3144         (Makefile.am): Provide new substitutions.
3145         * m4/unistd_h.m4 (gl_UNISTD_H): Check for inline and environ.
3146         * lib/unistd.in.h (environ): Wrap with a warning helper function.
3147
3148         stdio: warn on suspicious uses
3149         * modules/stdio (Depends-on): Add warn-on-use.
3150         (Makefile.am): Provide new substitutions.
3151         * m4/stdio_h.m4 (gl_STDIO_H): Check for inline, ftello, and
3152         fseeko.
3153         * lib/stdio.in.h (gets): Always warn on use.
3154         (fseek, ftell): Adjust when warnings are issued, and honor
3155         _GL_NO_LARGE_FILES as a way to silence the warning.
3156         * tests/test-fpurge.c [!GNULIB_FSEEK]: Use new means to squelch
3157         any warning about large file offsets.
3158         * tests/test-freadable.c [!GNULIB_FSEEK]: Likewise.
3159         * tests/test-freading.c [!GNULIB_FSEEK]: Likewise.
3160         * tests/test-fseeko.c [!GNULIB_FSEEK]: Likewise.
3161         * tests/test-ftell.c [!GNULIB_FSEEK]: Likewise.
3162         * tests/test-ftello.c [!GNULIB_FSEEK]: Likewise.
3163         * tests/test-fwritable.c [!GNULIB_FSEEK]: Likewise.
3164         * tests/test-fwriting.c [!GNULIB_FSEEK]: Likewise.
3165         * tests/test-getopt.c [!GNULIB_FTELL]: Likewise.
3166
3167         warn-on-use: new module
3168         * modules/warn-on-use: New file.
3169         * build-aux/warn-on-use.h: Likewise.
3170         * m4/warn-on-use.m4: Likewise.
3171         * MODULES.html.sh (Support for building): Mention it.
3172
3173 2010-01-10  Bruno Haible  <bruno@clisp.org>
3174
3175         Tests for module 'unistr/u32-strdup'.
3176         * modules/unistr/u32-strdup-tests: New file.
3177         * tests/unistr/test-u32-strdup.c: New file.
3178
3179         Tests for module 'unistr/u16-strdup'.
3180         * modules/unistr/u16-strdup-tests: New file.
3181         * tests/unistr/test-u16-strdup.c: New file.
3182
3183         Tests for module 'unistr/u8-strdup'.
3184         * modules/unistr/u8-strdup-tests: New file.
3185         * tests/unistr/test-u8-strdup.c: New file.
3186         * tests/unistr/test-strdup.h: New file.
3187
3188         Tests for module 'unistr/u32-strncmp'.
3189         * modules/unistr/u32-strncmp-tests: New file.
3190         * tests/unistr/test-u32-strncmp.c: New file.
3191
3192         Tests for module 'unistr/u16-strncmp'.
3193         * modules/unistr/u16-strncmp-tests: New file.
3194         * tests/unistr/test-u16-strncmp.c: New file.
3195
3196         Tests for module 'unistr/u8-strncmp'.
3197         * modules/unistr/u8-strncmp-tests: New file.
3198         * tests/unistr/test-u8-strncmp.c: New file.
3199         * tests/unistr/test-strncmp.h: New file.
3200
3201         Tests for module 'unistr/u32-strcoll'.
3202         * modules/unistr/u32-strcoll-tests: New file.
3203         * tests/unistr/test-u32-strcoll.c: New file.
3204
3205         Tests for module 'unistr/u16-strcoll'.
3206         * modules/unistr/u16-strcoll-tests: New file.
3207         * tests/unistr/test-u16-strcoll.c: New file.
3208
3209         Tests for module 'unistr/u8-strcoll'.
3210         * modules/unistr/u8-strcoll-tests: New file.
3211         * tests/unistr/test-u8-strcoll.c: New file.
3212
3213         Tests for module 'unistr/u32-strcmp'.
3214         * modules/unistr/u32-strcmp-tests: New file.
3215         * tests/unistr/test-u32-strcmp.c: New file.
3216         * tests/unistr/test-u32-strcmp.h: New file.
3217
3218         Tests for module 'unistr/u16-strcmp'.
3219         * modules/unistr/u16-strcmp-tests: New file.
3220         * tests/unistr/test-u16-strcmp.c: New file.
3221         * tests/unistr/test-u16-strcmp.h: New file.
3222
3223         Tests for module 'unistr/u8-strcmp'.
3224         * modules/unistr/u8-strcmp-tests: New file.
3225         * tests/unistr/test-u8-strcmp.c: New file.
3226         * tests/unistr/test-u8-strcmp.h: New file.
3227         * tests/unistr/test-strcmp.h: New file.
3228
3229         Tests for module 'unistr/u32-strncat'.
3230         * modules/unistr/u32-strncat-tests: New file.
3231         * tests/unistr/test-u32-strncat.c: New file.
3232
3233         Tests for module 'unistr/u16-strncat'.
3234         * modules/unistr/u16-strncat-tests: New file.
3235         * tests/unistr/test-u16-strncat.c: New file.
3236
3237         Tests for module 'unistr/u8-strncat'.
3238         * modules/unistr/u8-strncat-tests: New file.
3239         * tests/unistr/test-u8-strncat.c: New file.
3240         * tests/unistr/test-strncat.h: New file.
3241
3242         Tests for module 'unistr/u32-strcat'.
3243         * modules/unistr/u32-strcat-tests: New file.
3244         * tests/unistr/test-u32-strcat.c: New file.
3245
3246         Tests for module 'unistr/u16-strcat'.
3247         * modules/unistr/u16-strcat-tests: New file.
3248         * tests/unistr/test-u16-strcat.c: New file.
3249
3250         Tests for module 'unistr/u8-strcat'.
3251         * modules/unistr/u8-strcat-tests: New file.
3252         * tests/unistr/test-u8-strcat.c: New file.
3253         * tests/unistr/test-strcat.h: New file.
3254
3255         Tests for module 'unistr/u32-stpncpy'.
3256         * modules/unistr/u32-stpncpy-tests: New file.
3257         * tests/unistr/test-u32-stpncpy.c: New file.
3258
3259         Tests for module 'unistr/u16-stpncpy'.
3260         * modules/unistr/u16-stpncpy-tests: New file.
3261         * tests/unistr/test-u16-stpncpy.c: New file.
3262
3263         Tests for module 'unistr/u8-stpncpy'.
3264         * modules/unistr/u8-stpncpy-tests: New file.
3265         * tests/unistr/test-u8-stpncpy.c: New file.
3266         * tests/unistr/test-stpncpy.h: New file.
3267
3268         Tests for module 'unistr/u32-strncpy'.
3269         * modules/unistr/u32-strncpy-tests: New file.
3270         * tests/unistr/test-u32-strncpy.c: New file.
3271
3272         Tests for module 'unistr/u16-strncpy'.
3273         * modules/unistr/u16-strncpy-tests: New file.
3274         * tests/unistr/test-u16-strncpy.c: New file.
3275
3276         Tests for module 'unistr/u8-strncpy'.
3277         * modules/unistr/u8-strncpy-tests: New file.
3278         * tests/unistr/test-u8-strncpy.c: New file.
3279         * tests/unistr/test-strncpy.h: New file.
3280
3281         Tests for module 'unistr/u32-stpcpy'.
3282         * modules/unistr/u32-stpcpy-tests: New file.
3283         * tests/unistr/test-u32-stpcpy.c: New file.
3284
3285         Tests for module 'unistr/u16-stpcpy'.
3286         * modules/unistr/u16-stpcpy-tests: New file.
3287         * tests/unistr/test-u16-stpcpy.c: New file.
3288
3289         Tests for module 'unistr/u8-stpcpy'.
3290         * modules/unistr/u8-stpcpy-tests: New file.
3291         * tests/unistr/test-u8-stpcpy.c: New file.
3292         * tests/unistr/test-stpcpy.h: New file.
3293
3294         Tests for module 'unistr/u32-strcpy'.
3295         * modules/unistr/u32-strcpy-tests: New file.
3296         * tests/unistr/test-u32-strcpy.c: New file.
3297
3298         Tests for module 'unistr/u16-strcpy'.
3299         * modules/unistr/u16-strcpy-tests: New file.
3300         * tests/unistr/test-u16-strcpy.c: New file.
3301
3302         Tests for module 'unistr/u8-strcpy'.
3303         * modules/unistr/u8-strcpy-tests: New file.
3304         * tests/unistr/test-u8-strcpy.c: New file.
3305         * tests/unistr/test-strcpy.h: New file.
3306
3307         Tests for module 'unistr/u32-strnlen'.
3308         * modules/unistr/u32-strnlen-tests: New file.
3309         * tests/unistr/test-u32-strnlen.c: New file.
3310
3311         Tests for module 'unistr/u16-strnlen'.
3312         * modules/unistr/u16-strnlen-tests: New file.
3313         * tests/unistr/test-u16-strnlen.c: New file.
3314
3315         Tests for module 'unistr/u8-strnlen'.
3316         * modules/unistr/u8-strnlen-tests: New file.
3317         * tests/unistr/test-u8-strnlen.c: New file.
3318         * tests/unistr/test-strnlen.h: New file.
3319
3320         Tests for module 'unistr/u32-strlen'.
3321         * modules/unistr/u32-strlen-tests: New file.
3322         * tests/unistr/test-u32-strlen.c: New file.
3323
3324         Tests for module 'unistr/u16-strlen'.
3325         * modules/unistr/u16-strlen-tests: New file.
3326         * tests/unistr/test-u16-strlen.c: New file.
3327
3328         Tests for module 'unistr/u8-strlen'.
3329         * modules/unistr/u8-strlen-tests: New file.
3330         * tests/unistr/test-u8-strlen.c: New file.
3331
3332         Tests for module 'unistr/u32-prev'.
3333         * modules/unistr/u32-prev-tests: New file.
3334         * tests/unistr/test-u32-prev.c: New file.
3335
3336         Tests for module 'unistr/u16-prev'.
3337         * modules/unistr/u16-prev-tests: New file.
3338         * tests/unistr/test-u16-prev.c: New file.
3339
3340         Tests for module 'unistr/u8-prev'.
3341         * modules/unistr/u8-prev-tests: New file.
3342         * tests/unistr/test-u8-prev.c: New file.
3343
3344         Tests for module 'unistr/u32-next'.
3345         * modules/unistr/u32-next-tests: New file.
3346         * tests/unistr/test-u32-next.c: New file.
3347
3348         Tests for module 'unistr/u16-next'.
3349         * modules/unistr/u16-next-tests: New file.
3350         * tests/unistr/test-u16-next.c: New file.
3351
3352         Tests for module 'unistr/u8-next'.
3353         * modules/unistr/u8-next-tests: New file.
3354         * tests/unistr/test-u8-next.c: New file.
3355
3356         Tests for module 'unistr/u32-strmbtouc'.
3357         * modules/unistr/u32-strmbtouc-tests: New file.
3358         * tests/unistr/test-u32-strmbtouc.c: New file.
3359
3360         Tests for module 'unistr/u16-strmbtouc'.
3361         * modules/unistr/u16-strmbtouc-tests: New file.
3362         * tests/unistr/test-u16-strmbtouc.c: New file.
3363
3364         Tests for module 'unistr/u8-strmbtouc'.
3365         * modules/unistr/u8-strmbtouc-tests: New file.
3366         * tests/unistr/test-u8-strmbtouc.c: New file.
3367
3368         Tests for module 'unistr/u32-strmblen'.
3369         * modules/unistr/u32-strmblen-tests: New file.
3370         * tests/unistr/test-u32-strmblen.c: New file.
3371
3372         Tests for module 'unistr/u16-strmblen'.
3373         * modules/unistr/u16-strmblen-tests: New file.
3374         * tests/unistr/test-u16-strmblen.c: New file.
3375
3376         Tests for module 'unistr/u8-strmblen'.
3377         * modules/unistr/u8-strmblen-tests: New file.
3378         * tests/unistr/test-u8-strmblen.c: New file.
3379
3380         Tests for module 'unistr/u32-cpy-alloc'.
3381         * modules/unistr/u32-cpy-alloc-tests: New file.
3382         * tests/unistr/test-u32-cpy-alloc.c: New file.
3383
3384         Tests for module 'unistr/u16-cpy-alloc'.
3385         * modules/unistr/u16-cpy-alloc-tests: New file.
3386         * tests/unistr/test-u16-cpy-alloc.c: New file.
3387
3388         Tests for module 'unistr/u8-cpy-alloc'.
3389         * modules/unistr/u8-cpy-alloc-tests: New file.
3390         * tests/unistr/test-u8-cpy-alloc.c: New file.
3391         * tests/unistr/test-cpy-alloc.h: New file.
3392
3393         Tests for module 'unistr/u32-mbsnlen'.
3394         * modules/unistr/u32-mbsnlen-tests: New file.
3395         * tests/unistr/test-u32-mbsnlen.c: New file.
3396
3397         Tests for module 'unistr/u16-mbsnlen'.
3398         * modules/unistr/u16-mbsnlen-tests: New file.
3399         * tests/unistr/test-u16-mbsnlen.c: New file.
3400
3401         Tests for module 'unistr/u8-mbsnlen'.
3402         * modules/unistr/u8-mbsnlen-tests: New file.
3403         * tests/unistr/test-u8-mbsnlen.c: New file.
3404
3405         Tests for module 'unistr/u32-chr'.
3406         * modules/unistr/u32-chr-tests: New file.
3407         * tests/unistr/test-u32-chr.c: New file.
3408
3409         Tests for module 'unistr/u16-chr'.
3410         * modules/unistr/u16-chr-tests: New file.
3411         * tests/unistr/test-u16-chr.c: New file.
3412
3413         Tests for module 'unistr/u8-chr'.
3414         * modules/unistr/u8-chr-tests: New file.
3415         * tests/unistr/test-u8-chr.c: New file.
3416         * tests/unistr/test-chr.h: New file, based on tests/test-memchr.c.
3417
3418         Tests for module 'unistr/u32-cmp2'.
3419         * modules/unistr/u32-cmp2-tests: New file.
3420         * tests/unistr/test-u32-cmp2.c: New file.
3421
3422         Tests for module 'unistr/u16-cmp2'.
3423         * modules/unistr/u16-cmp2-tests: New file.
3424         * tests/unistr/test-u16-cmp2.c: New file.
3425
3426         Tests for module 'unistr/u8-cmp2'.
3427         * modules/unistr/u8-cmp2-tests: New file.
3428         * tests/unistr/test-u8-cmp2.c: New file.
3429         * tests/unistr/test-cmp2.h: New file, based on tests/unistr/test-cmp.h.
3430
3431         Tests for module 'unistr/u32-cmp'.
3432         * modules/unistr/u32-cmp-tests: New file.
3433         * tests/unistr/test-u32-cmp.c: New file.
3434
3435         Tests for module 'unistr/u16-cmp'.
3436         * modules/unistr/u16-cmp-tests: New file.
3437         * tests/unistr/test-u16-cmp.c: New file.
3438
3439         Tests for module 'unistr/u8-cmp'.
3440         * modules/unistr/u8-cmp-tests: New file.
3441         * tests/unistr/test-u8-cmp.c: New file.
3442         * tests/unistr/test-cmp.h: New file, based on tests/test-memcmp.c.
3443
3444         Tests for module 'unistr/u32-set'.
3445         * modules/unistr/u32-set-tests: New file.
3446         * tests/unistr/test-u32-set.c: New file.
3447
3448         Tests for module 'unistr/u16-set'.
3449         * modules/unistr/u16-set-tests: New file.
3450         * tests/unistr/test-u16-set.c: New file.
3451
3452         Tests for module 'unistr/u8-set'.
3453         * modules/unistr/u8-set-tests: New file.
3454         * tests/unistr/test-u8-set.c: New file.
3455         * tests/unistr/test-set.h: New file.
3456
3457         Tests for module 'unistr/u32-move'.
3458         * modules/unistr/u32-move-tests: New file.
3459         * tests/unistr/test-u32-move.c: New file.
3460
3461         Tests for module 'unistr/u16-move'.
3462         * modules/unistr/u16-move-tests: New file.
3463         * tests/unistr/test-u16-move.c: New file.
3464
3465         Tests for module 'unistr/u8-move'.
3466         * modules/unistr/u8-move-tests: New file.
3467         * tests/unistr/test-u8-move.c: New file.
3468         * tests/unistr/test-move.h: New file.
3469
3470         Tests for module 'unistr/u32-cpy'.
3471         * modules/unistr/u32-cpy-tests: New file.
3472         * tests/unistr/test-u32-cpy.c: New file.
3473
3474         Tests for module 'unistr/u16-cpy'.
3475         * modules/unistr/u16-cpy-tests: New file.
3476         * tests/unistr/test-u16-cpy.c: New file.
3477
3478         Tests for module 'unistr/u8-cpy'.
3479         * modules/unistr/u8-cpy-tests: New file.
3480         * tests/unistr/test-u8-cpy.c: New file.
3481         * tests/unistr/test-cpy.h: New file.
3482
3483 2010-01-09  Bruno Haible  <bruno@clisp.org>
3484
3485         Tests for module 'unistr/u32-uctomb'.
3486         * modules/unistr/u32-uctomb-tests: New file.
3487         * tests/unistr/test-u32-uctomb.c: New file.
3488
3489         Tests for module 'unistr/u16-uctomb'.
3490         * modules/unistr/u16-uctomb-tests: New file.
3491         * tests/unistr/test-u16-uctomb.c: New file.
3492
3493         Tests for module 'unistr/u8-uctomb'.
3494         * modules/unistr/u8-uctomb-tests: New file.
3495         * tests/unistr/test-u8-uctomb.c: New file.
3496
3497         Tests for module 'unistr/u32-mbtoucr'.
3498         * modules/unistr/u32-mbtoucr-tests: New file.
3499         * tests/unistr/test-u32-mbtoucr.c: New file.
3500
3501         Tests for module 'unistr/u16-mbtoucr'.
3502         * modules/unistr/u16-mbtoucr-tests: New file.
3503         * tests/unistr/test-u16-mbtoucr.c: New file.
3504
3505         Tests for module 'unistr/u8-mbtoucr'.
3506         * modules/unistr/u8-mbtoucr-tests: New file.
3507         * tests/unistr/test-u8-mbtoucr.c: New file.
3508
3509         Tests for module 'unistr/u32-mbtouc'.
3510         * modules/unistr/u32-mbtouc-tests: New file.
3511         * tests/unistr/test-u32-mbtouc.c: New file.
3512
3513         Tests for module 'unistr/u16-mbtouc'.
3514         * modules/unistr/u16-mbtouc-tests: New file.
3515         * tests/unistr/test-u16-mbtouc.c: New file.
3516
3517         Tests for module 'unistr/u8-mbtouc'.
3518         * modules/unistr/u8-mbtouc-tests: New file.
3519         * tests/unistr/test-u8-mbtouc.c: New file.
3520
3521         Tests for module 'unistr/u32-mbtouc-unsafe'.
3522         * modules/unistr/u32-mbtouc-unsafe-tests: New file.
3523         * tests/unistr/test-u32-mbtouc-unsafe.c: New file.
3524         * tests/unistr/test-u32-mbtouc.h: New file.
3525
3526         Tests for module 'unistr/u16-mbtouc-unsafe'.
3527         * modules/unistr/u16-mbtouc-unsafe-tests: New file.
3528         * tests/unistr/test-u16-mbtouc-unsafe.c: New file.
3529         * tests/unistr/test-u16-mbtouc.h: New file.
3530
3531         Tests for module 'unistr/u8-mbtouc-unsafe'.
3532         * modules/unistr/u8-mbtouc-unsafe-tests: New file.
3533         * tests/unistr/test-u8-mbtouc-unsafe.c: New file.
3534         * tests/unistr/test-u8-mbtouc.h: New file.
3535
3536         Tests for module 'unistr/u32-mblen'.
3537         * modules/unistr/u32-mblen-tests: New file.
3538         * tests/unistr/test-u32-mblen.c: New file.
3539
3540         Tests for module 'unistr/u16-mblen'.
3541         * modules/unistr/u16-mblen-tests: New file.
3542         * tests/unistr/test-u16-mblen.c: New file.
3543
3544         Tests for module 'unistr/u8-mblen'.
3545         * modules/unistr/u8-mblen-tests: New file.
3546         * tests/unistr/test-u8-mblen.c: New file.
3547
3548         Tests for module 'unistr/u32-to-u16'.
3549         * modules/unistr/u32-to-u16-tests: New file.
3550         * tests/unistr/test-u32-to-u16.c: New file.
3551
3552         Tests for module 'unistr/u32-to-u8'.
3553         * modules/unistr/u32-to-u8-tests: New file.
3554         * tests/unistr/test-u32-to-u8.c: New file.
3555
3556         Tests for module 'unistr/u16-to-u32'.
3557         * modules/unistr/u16-to-u32-tests: New file.
3558         * tests/unistr/test-u16-to-u32.c: New file.
3559
3560         Tests for module 'unistr/u16-to-u8'.
3561         * modules/unistr/u16-to-u8-tests: New file.
3562         * tests/unistr/test-u16-to-u8.c: New file.
3563
3564         Tests for module 'unistr/u8-to-u32'.
3565         * modules/unistr/u8-to-u32-tests: New file.
3566         * tests/unistr/test-u8-to-u32.c: New file.
3567
3568         Tests for module 'unistr/u8-to-u16'.
3569         * modules/unistr/u8-to-u16-tests: New file.
3570         * tests/unistr/test-u8-to-u16.c: New file.
3571
3572         Tests for module 'unistr/u32-check'.
3573         * modules/unistr/u32-check-tests: New file.
3574         * tests/unistr/test-u32-check.c: New file.
3575
3576         Tests for module 'unistr/u16-check'.
3577         * modules/unistr/u16-check-tests: New file.
3578         * tests/unistr/test-u16-check.c: New file.
3579
3580         Tests for module 'unistr/u8-check'.
3581         * modules/unistr/u8-check-tests: New file.
3582         * tests/unistr/test-u8-check.c: New file.
3583
3584         * tests/unictype/test-categ_byname.c: Include <stdbool.h>.
3585         (category_equals): New function.
3586         (main): Add more tests.
3587         * modules/unictype/category-byname-tests (Depends-on): Add stdbool.
3588
3589         * tests/unictype/test-bidi_byname.c (main): Add more tests.
3590
3591 2010-01-10  Bruno Haible  <bruno@clisp.org>
3592
3593         unistr/u*-strcoll: Try harder to distinguish different strings.
3594         * lib/unistr/u-strcoll.h (FUNC): When sl1 and sl2 are the same,
3595         compare s1 and s2 to see if they are different.
3596
3597 2010-01-10  Bruno Haible  <bruno@clisp.org>
3598
3599         unistr/u*-stpncpy: Fix the return value.
3600         * lib/unistr.h (u8_stpncpy, u16_stpncpy, u32_stpncpy): Make the
3601         description of the return value consistent with stpncpy in glibc.
3602         * lib/unistr/u-stpncpy.h (FUNC): Return the pointer past the last
3603         written non-NUL unit.
3604
3605 2010-01-10  Bruno Haible  <bruno@clisp.org>
3606
3607         unistr/u*-next: Add missing dependencies.
3608         * modules/unistr/u8-next (Depends-on): Add unistr/u8-strmbtouc.
3609         * modules/unistr/u16-next (Depends-on): Add unistr/u16-strmbtouc.
3610         * modules/unistr/u32-next (Depends-on): Add unistr/u32-strmbtouc.
3611
3612 2010-01-10  Bruno Haible  <bruno@clisp.org>
3613
3614         unistr/u8-mbsnlen: Fix return value for incomplete character.
3615         * lib/unistr/u8-mbsnlen.c (u8_mbsnlen): Use u8_mbtoucr instead of
3616         u8_mblen.
3617         * modules/unistr/u8-mbsnlen (Depends-on): Add unistr/u8-mbtoucr.
3618         Remove unistr/u8-mblen.
3619         * lib/unistr/u16-mbsnlen.c (u16_mbsnlen): Use u16_mbtoucr instead of
3620         u16_mblen.
3621         * modules/unistr/u16-mbsnlen (Depends-on): Add unistr/u16-mbtoucr.
3622         Remove unistr/u16-mblen.
3623
3624 2010-01-10  Bruno Haible  <bruno@clisp.org>
3625
3626         wchar: Fix compilation error when <wchar.h> is used from coreutils.
3627         * lib/wchar.in.h: Treat __need_wint_t like __need_mbstate_t.
3628         Reported by Brian Gough <bjg@gnu.org> and
3629         Chris Clayton <chris2553@googlemail.com> via
3630         Mike Frysinger <vapier@gentoo.org> and Jim Meyering <jim@meyering.net>.
3631
3632 2010-01-09  Bruno Haible  <bruno@clisp.org>
3633
3634         unistr/u16-to-u32: Reject invalid input.
3635         * lib/unistr/u16-to-u32.c (u16_to_u32): Call u16_mbtoucr instead of
3636         u16_mbtouc.
3637         * modules/unistr/u16-to-u32 (Depends-on): Add unistr/u16-mbtoucr.
3638         Remove unistr/u16-mbtouc.
3639
3640         unistr/u16-to-u8: Reject invalid input.
3641         * lib/unistr/u16-to-u8.c (u16_to_u8): Call u16_mbtoucr instead of
3642         u16_mbtouc.
3643         * modules/unistr/u16-to-u8 (Depends-on): Add unistr/u16-mbtoucr.
3644         Remove unistr/u16-mbtouc.
3645
3646         unistr/u8-to-u32: Reject invalid input.
3647         * lib/unistr/u8-to-u32.c (u8_to_u32): Call u8_mbtoucr instead of
3648         u8_mbtouc.
3649         * modules/unistr/u8-to-u32 (Depends-on): Add unistr/u8-mbtoucr.
3650         Remove unistr/u8-mbtouc.
3651
3652         unistr/u8-to-u16: Reject invalid input.
3653         * lib/unistr/u8-to-u16.c (u8_to_u16): Call u8_mbtoucr instead of
3654         u8_mbtouc.
3655         * modules/unistr/u8-to-u16 (Depends-on): Add unistr/u8-mbtoucr.
3656         Remove unistr/u8-mbtouc.
3657
3658 2010-01-09  Bruno Haible  <bruno@clisp.org>
3659
3660         Tests for module 'getlogin'.
3661         * modules/getlogin-tests: New file.
3662         * tests/test-getlogin.c: New file.
3663
3664         New module 'getlogin'.
3665         * lib/unistd.in.h (getlogin): New declaration.
3666         * lib/getlogin.c: New file.
3667         * m4/getlogin.m4: New file.
3668         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETLOGIN,
3669         HAVE_GETLOGIN.
3670         * modules/unistd (Makefile.am): Substitute GNULIB_GETLOGIN,
3671         HAVE_GETLOGIN.
3672         * modules/getlogin: New file.
3673         * doc/posix-functions/getlogin.texi: Mention the new module.
3674         Reported by John W. Eaton <jwe@gnu.org>.
3675
3676 2010-01-09  Bruno Haible  <bruno@clisp.org>
3677
3678         getlogin_r: Support for native Windows.
3679         * lib/getlogin_r.c: Include <windows.h>
3680         (getlogin_r): Implement for native Windows.
3681         * tests/test-getlogin_r.c (main): Also test with a huge buffer.
3682         Reported by Tatsuro MATSUOKA <tmacchant5@yahoo.co.jp>
3683         via John W. Eaton <jwe@gnu.org>.
3684
3685 2010-01-09  Bruno Haible  <bruno@clisp.org>
3686
3687         getlogin_r: Small fixes.
3688         * lib/getlogin_r.c (getlogin_r): Don't set errno if the function
3689         succeeds.
3690         * m4/getlogin_r.m4 (gl_GETLOGIN_R): Require gl_USE_SYSTEM_EXTENSIONS
3691         before testing whether getlogin_r is declared. No need to set
3692         HAVE_DECL_GETLOGIN_R to 1.
3693         (gl_PREREQ_GETLOGIN_R): Don't check for the getlogin_r declaration.
3694
3695 2010-01-09  Bruno Haible  <bruno@clisp.org>
3696
3697         * lib/unistd.in.h (getlogin_r): Add comment.
3698
3699 2010-01-09  Bruno Haible  <bruno@clisp.org>
3700
3701         Tests for module 'getlogin_r'.
3702         * modules/getlogin_r-tests: New file.
3703         * tests/test-getlogin_r.c: New file.
3704
3705 2010-01-09  Jim Meyering  <meyering@redhat.com>
3706
3707         maint.mk: extend proper_name_utf8-vs-LIBICONV-checking rule
3708         * top/maint.mk (sc_proper_name_utf8_requires_ICONV): Adapt to work
3709         also when $(LIBICONV) is part of LDADD, rather than ${prog}_LDADD.
3710
3711 2010-01-08  Simon Josefsson  <simon@josefsson.org>
3712
3713         * lib/dup2.c (rpl_dup2): Improve comment.
3714
3715 2010-01-08  Eric Blake  <ebb9@byu.net>
3716
3717         maint.mk: allow packages to add makefile @@ exceptions
3718         * top/maint.mk (_makefile_at_at_check_exceptions): New hook.
3719         (sc_makefile_check): Rename...
3720         (sc_makefile_at_at_check): ...to this, and use hook.
3721
3722         dup2: work around mingw bug
3723         * lib/dup2.c (rpl_dup2): Sanitize return value on mingw.
3724         Reported by Simon Josefsson.
3725
3726 2010-01-07  John W. Eaton  <jwe@octave.org>  (tiny change)
3727
3728         glob: Fix C++ compilation.
3729         * lib/glob.in.h [__cplusplus]: Define __BEGIN_DECLS and __END_DECLS for
3730         C++.
3731
3732 2010-01-07  Bruno Haible  <bruno@clisp.org>
3733
3734         Fix indentation of wctype.in.h, broken since 2007-01-06.
3735         * lib/wctype.in.h: Fix indentation of preprocessor directives.
3736
3737 2010-01-07  Bruno Haible  <bruno@clisp.org>
3738
3739         mbslen: Avoid collision with system function.
3740         * lib/string.in.h [MirBSD]: Include <wchar.h>.
3741         (mbslen): Undefine first. Alias mbslen to rpl_mbslen.
3742         * m4/mbslen.m4: New file.
3743         * modules/mbslen (Files): Add it.
3744         (configure.ac): Invoke gl_MBSLEN.
3745         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize HAVE_MBSLEN.
3746         * modules/string (Makefile.am): Substitute HAVE_MBSLEN.
3747         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>
3748         via Ian Beckwith <ianb@erislabs.net>.
3749
3750 2010-01-07  Bruno Haible  <bruno@clisp.org>
3751
3752         dirent: Document the last fix.
3753         * doc/posix-headers/dirent.texi: Document the bug of missing 'ino_t'.
3754
3755 2010-01-07  Bruno Haible  <bruno@clisp.org>
3756
3757         stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
3758         * lib/stdio.in.h: Include <sys/types.h> unconditionally.
3759         * tests/test-stdio.c: Verify that fpos_t, off_t, size_t, ssize_t,
3760         va_list are defined.
3761         * doc/posix-headers/stdio.texi: Document the bug of missing types.
3762         Reported by Eric Blake.
3763
3764 2010-01-07  Bruno Haible  <bruno@clisp.org>
3765
3766         xlist, xoset: Fix missing dependency bug, introduced on 2009-12-13.
3767         * modules/xlist (Depends-on): Add 'list',
3768         * modules/xoset (Depends-on): Add 'oset'.
3769         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3770
3771 2010-01-07  Bruno Haible  <bruno@clisp.org>
3772
3773         * doc/posix-functions/strcasecmp.texi: Clarify the platforms.
3774         * doc/posix-functions/strncasecmp.texi: Likewise.
3775
3776 2010-01-07  Bruno Haible  <bruno@clisp.org>
3777
3778         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Simplify logic.
3779
3780 2010-01-07  John W. Eaton  <jwe@octave.org>
3781
3782         wctype: allow C++ use
3783         * lib/wctype.in.h: Add extern "C" block for C++.
3784
3785 2010-01-06  Eric Blake  <ebb9@byu.net>
3786
3787         maint.mk: detect incorrect GFDL usage
3788         * top/maint.mk (_GFDL_regexp, sc_GFDL_version): New rule.
3789
3790 2010-01-06  Jim Meyering  <meyering@redhat.com>
3791         and Eric Blake  <ebb9@byu.net>
3792
3793         maint.mk: ignore multi-line copyright in NEWS
3794         * top/maint.mk (NEWS_hash): Add immunity to multi-line copyright.
3795
3796 2010-01-06  Eric Blake  <ebb9@byu.net>
3797
3798         select: add missing dependency
3799         * modules/select-tests (Depends-on): Move sockets dependency...
3800         * modules/select (Depends-on): ...here.
3801         Reported by Ian Beckwith.
3802
3803         doc: regenerate INSTALL
3804         * doc/INSTALL: Reflect recent autoconf update.
3805         * doc/INSTALL.ISO: Likewise.
3806         * doc/INSTALL.UTF-8: Likewise.
3807
3808         pread: fix compilation on glibc
3809         * m4/pread.m4 (gl_FUNC_PREAD): Request all interfaces.
3810         Reported by Ralf Wildenhues.
3811
3812         dirent: fix test failure
3813         * lib/dirent.in.h (includes): Guarantee ino_t.
3814         Reported by Ralf Wildenhues.
3815
3816 2010-01-06  Petr Salinger  <Petr.Salinger@seznam.cz>  (tiny change)
3817
3818         linkat, renameat: avoid bad free
3819         * lib/at-func2.c (at_func2): Fix typo.
3820         Reported via Ian Beckwith, from http://bugs.debian.org/561117.
3821
3822 2010-01-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3823
3824         cleanup after gl_FUNC_READLINK, for gl_FUNC_SYMLINK test
3825         * m4/readlink.m4 (gl_FUNC_READLINK): Remove conftest.lnk2,
3826         to avoid failure of symlink test later.
3827
3828 2010-01-06  Eric Blake  <ebb9@byu.net>
3829
3830         stdio, unistd: guarantee ssize_t
3831         * lib/unistd.in.h (includes): Ensure that types required by POSIX
3832         2008 are exposed when needed.
3833         * lib/stdio.in.h (includes): Likewise.
3834         Reported by Ralf Wildenhues.
3835
3836 2010-01-06  Paolo Bonzini  <bonzini@gnu.org>
3837
3838         nl_langinfo: do not call AC_CHECK_FUNC_ONCE inside if.
3839         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Do not call
3840         AC_CHECK_FUNC_ONCE inside if, do not adjust ac_cv_func_nl_langinfo.
3841
3842 2010-01-06  Jim Meyering  <meyering@redhat.com>
3843
3844         readtokens: this module *does* require xalloc.h
3845         It uses only functions that were omitted by the old syntax-check rule.
3846         * lib/readtokens.c: Include "xalloc.h" once again.
3847         * modules/readtokens (Depends-on): Add xalloc.
3848         This reverts part of 0e0f8f12ec241c0f1c1f21f960bb5cf908a0fa3c.
3849
3850 2010-01-05  Eric Blake  <ebb9@byu.net>
3851
3852         maint: support 'make announcement' from a VPATH build
3853         * top/maint.mk (announcement): Look for correct NEWS file.
3854
3855 2010-01-05  Aurelien Jarno  <aurelien@aurel32.net>  (tiny change)
3856
3857         utimens (fdutimens): ignore a negative FD, per contract
3858         * lib/utimens.c (fdutimens) [HAVE_FUTIMENS]: Call futimens only
3859         when we have a valid file descriptor.  Otherwise, using a brand
3860         new glibc (with just-patched futimens that now fails with EBADF)
3861         would cause this function to fail with ENOSYS.
3862         Reported by Guillaume Ayoub in http://bugs.debian.org/563726.
3863         See also http://bugzilla.redhat.com/552320.
3864
3865 2010-01-05  Eric Blake  <ebb9@byu.net>
3866
3867         strcase: document what it provides
3868         * doc/posix-functions/strcasecmp.texi (strcasecmp): Mention the
3869         gnulib module.
3870         * doc/posix-functions/strncasecmp.texi (strncasecmp): Likewise.
3871         Reported by Dilyan Palauzov <Dilyan.Palauzov@aegee.org>.
3872
3873 2010-01-05  Jim Meyering  <meyering@redhat.com>
3874
3875         maint: remove useless inclusions of "xalloc.h"
3876         * lib/getloadavg.c: Remove useless inclusion of "xalloc.h".
3877         * lib/readtokens.c: Likewise.
3878         * lib/same.c: Likewise.
3879         * modules/getloadavg (Depends-on): Remove xalloc.
3880         * modules/readtokens: Likewise.
3881         * modules/same: Likewise.
3882
3883         maint.mk: include 4 more function names in alloca.h-checking regexp
3884         * top/maint.mk (sc_prohibit_xalloc_without_use): Use more complete
3885         regexp.  Before, we would give a false-positive (saying alloca.h
3886         is included unnecessarily) when the only uses involved omitted symbols.
3887
3888         xalloc.h: use consistent formatting
3889         * lib/xalloc.h: Move declarations to start in the first column.
3890
3891 2010-01-05  Eric Blake  <ebb9@byu.net>
3892
3893         mkdir: avoid xalloc
3894         * lib/mkdir.c (includes): Drop unused header.
3895         Reported by John W. Eaton.
3896
3897 2010-01-04  Jim Meyering  <meyering@redhat.com>
3898
3899         nl_langinfo: avoid configure-time syntax error
3900         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): When we've already tested
3901         for nl_langinfo.h, AC_CHECK_FUNCS_ONCE([nl_langinfo]) expands to
3902         the empty string.  Don't let that provoke a shell syntax error.
3903
3904         regcomp, regexec, fnmatch: avoid array bounds read error
3905         * lib/regcomp.c (build_equiv_class): From glibc:
3906         Use only the low 24 bits of a findidx return value as an index
3907         into the weights array.  Patch by Ulrich Drepper:
3908         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=b7d1c5fa30
3909         * lib/regexec.c (check_node_accept_bytes): Likewise.
3910         * lib/fnmatch_loop.c (FCT): Likewise.
3911
3912         regcomp: skip collseq lookup when there are no rules
3913         * lib/regcomp.c (lookup_collation_sequence_value): From glibc:
3914         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a532a41df58
3915
3916         regcomp: recognize ill-formed { } expressions
3917         * lib/regcomp.c (parse_dup_op): From glibc:
3918         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a87cd2894cb
3919
3920         regcomp: fix typo in comment
3921         * lib/regcomp.c (duplicate_node_closure): Sync from glibc.
3922         s/satisfy/satisfies/.
3923
3924         regcomp: sync from glibc: remove dead store
3925         * lib/regcomp.c (duplicate_node_closure): Remove useless
3926         search_duplicated_node call and dead store.
3927
3928         regcomp: sync from glibc; always use nl_langinfo
3929         * lib/regcomp.c (init_dfa) [!LIBC]: Always use nl_langinfo (CODESET),
3930         now that gnulib provides it.  Recognize UTF8 as well as UTF-8.
3931         * modules/regex (Depends-on): Add nl_langinfo.
3932
3933 2010-01-04  Eric Blake  <ebb9@byu.net>
3934
3935         fdopendir: fix configure test
3936         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for existing file.
3937
3938 2010-01-01  Bruno Haible  <bruno@clisp.org>
3939
3940         wchar: Remove unused configure check.
3941         * m4/wchar.m4 (gl_WCHAR_H): Don't test whether <wchar.h> is standalone.
3942
3943 2010-01-01  Eric Blake  <ebb9@byu.net>
3944
3945         headers: make check of system header explicit
3946         * m4/netdb_h.m4 (gl_HEADER_NETDB): Don't exploit knowledge of
3947         gl_CHECK_NEXT_HEADER internals, but call AC_CHECK_HEADERS_ONCE
3948         ourselves.
3949         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
3950         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
3951         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
3952         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise, for gt_INTTYPES_PRI
3953         internals.
3954         * m4/wchar.m4 (gl_WCHAR_H): Skip followup test if header is
3955         missing.
3956         Suggested by Bruno Haible.
3957
3958 2010-01-01  Jim Meyering  <meyering@redhat.com>
3959
3960         ChangeLog: tweak to eliminate unnecessary copyright line
3961         * ChangeLog: Remove a copyright line that was mistakenly updated
3962         by today's update-copyright run.  Reported by Eric Blake.
3963
3964         test-update-copyright: don't let envvar setting cause test failure
3965         * tests/test-update-copyright.sh: Set UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
3966
3967 2010-01-01  Bruno Haible  <bruno@clisp.org>
3968
3969         localename: Avoid gcc warning.
3970         * lib/localename.c (gl_locale_name_thread_unsafe): Don't define this
3971         function if it is not used.
3972
3973 2010-01-01  Jim Meyering  <meyering@redhat.com>
3974
3975         update nearly all FSF copyright year lists to include 2010
3976         Use the same procedure as for 2009, outlined in
3977         http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/20081
3978
3979         version-etc: set COPYRIGHT_YEAR to 2010
3980         * lib/version-etc.c (COPYRIGHT_YEAR): Manually update the enum.
3981
3982 2009-12-31  Eric Blake  <ebb9@byu.net>
3983
3984         doc: correct availability of cygwin 1.5.x getopt
3985         * doc/posix-functions/optarg.texi (optarg): Cygwin supplies getopt
3986         variables.
3987         * doc/posix-functions/opterr.texi (opterr): Likewise.
3988         * doc/posix-functions/optind.texi (optind): Likewise.
3989         * doc/posix-functions/optopt.texi (optopt): Likewise.
3990         * doc/posix-functions/tzname.texi (tzname): Likewise.
3991
3992         openat: update maintainer
3993         * modules/openat (Maintainer): Add myself.
3994
3995         utimens: avoid shadowing warning
3996         * lib/utimens.c (fdutimens, lutimens): Consolidate separate stat
3997         buffers into one, to avoid shadowing, as well as avoiding a
3998         redundant stat.
3999         Reported by Jim Meyering.
4000
4001         test-dup2: avoid compiler warning
4002         * tests/test-dup2.c (is_inheritable): Only define if used.
4003
4004 2010-01-01  Bruno Haible  <bruno@clisp.org>
4005
4006         vasnprintf: Avoid passing an 'rpl_mbstate_t *' to the system's wcrtomb.
4007         * lib/vasnprintf.c (VASNPRINTF): If GNULIB_defined_mbstate_t is
4008         defined, use wctomb instead of wcrtomb.
4009
4010 2010-01-01  Bruno Haible  <bruno@clisp.org>
4011
4012         iconv: Reject native Solaris iconv.
4013         * m4/iconv.m4 (AM_ICONV_LINK): Recognize native Solaris iconv() bug.
4014         * doc/posix-functions/iconv.texi: Document native Solaris iconv() bug.
4015
4016 2009-12-31  Bruno Haible  <bruno@clisp.org>
4017
4018         * tests/test-signal.c (main): Remove test of 'SIG'.
4019
4020 2009-12-31  Bruno Haible  <bruno@clisp.org>
4021
4022         spawn: Fix incomplete fix.
4023         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
4024         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
4025         warnings for GNULIB_POSIXCHECK again.
4026         Reported by Eric Blake.
4027
4028 2009-12-31  Bruno Haible  <bruno@clisp.org>
4029
4030         Avoid namespace pollution on glibc systems.
4031         * lib/spawn.in.h: Don't include <sched.h>, <signal.h> on glibc systems.
4032         * lib/sys_times.in.h: Don't include <time.h> on glibc systems.
4033         * lib/wchar.in.h: Don't include <stddef.h>, <stdio.h>, <time.h> on
4034         glibc systems.
4035
4036 2009-12-31  Bruno Haible  <bruno@clisp.org>
4037
4038         * m4/wchar.m4 (gl_WCHAR_H): Remove gl_STDDEF_H invocation.
4039         (gl_REPLACE_WCHAR_H): Turn into a no-op.
4040         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Likewise.
4041         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H): Likewise.
4042         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H): Likewise.
4043         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H): Likewise.
4044         * m4/sys_ioctl_h.m4 (gl_REPLACE_SYS_IOCTL_H): Likewise.
4045
4046 2009-12-31  Bruno Haible  <bruno@clisp.org>
4047
4048         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
4049         gl_CHECK_NEXT_HEADERS before testing ac_cv_header_sys_select_h, not
4050         afterwards.
4051
4052 2009-12-31  Bruno Haible  <bruno@clisp.org>
4053
4054         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H_DEFAULTS): Don't set
4055         SYS_UTSNAME_H.
4056
4057 2009-12-31  Bruno Haible  <bruno@clisp.org>
4058
4059         spawn: Fix misapplied patch.
4060         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
4061         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
4062         warnings for GNULIB_POSIXCHECK.
4063
4064 2009-12-31  Bruno Haible  <bruno@clisp.org>
4065
4066         times: Update after sys_times changed.
4067         * m4/times.m4: New file, extracted from modules/times. Set HAVE_TIMES.
4068         * modules/times (Files): Add it.
4069         (configure.ac): Invoke gl_FUNC_TIMES.
4070
4071 2009-12-31  Bruno Haible  <bruno@clisp.org>
4072
4073         Use AC_C_INLINE where necessary.
4074         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Require AC_C_INLINE.
4075         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
4076         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
4077         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
4078         * m4/mbfile.m4 (gl_MBFILE): Likewise.
4079         * m4/mbiter.m4 (gl_MBITER): Likewise.
4080         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
4081         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
4082         * m4/wait-process.m4 (gl_WAIT_PROCESS): Likewise.
4083         * modules/u64 (configure.ac): Likewise.
4084
4085 2009-12-31  Bruno Haible  <bruno@clisp.org>
4086
4087         Use AC_C_INLINE instead of module 'inline' where possible.
4088         * modules/inline (Description): Clarify purpose.
4089         * m4/count-one-bits.m4 (gl_COUNT_ONE_BITS): Require AC_C_INLINE.
4090         * modules/count-one-bits (Depends-on): Remove inline.
4091         * m4/openat.m4 (gl_PREREQ_OPENAT): Require AC_C_INLINE.
4092         * modules/openat (Depends-on): Remove inline.
4093         * modules/fdutimensat (Depends-on, configure.ac): Require AC_C_INLINE
4094         instead of depending on module 'inline'.
4095         * modules/filevercmp (Depends-on, configure.ac): Likewise.
4096         * modules/unicase/cased (Depends-on, configure.ac): Likewise.
4097         * modules/unicase/ignorable (Depends-on, configure.ac): Likewise.
4098         * modules/unictype/category-of (Depends-on, configure.ac): Likewise.
4099         * modules/unictype/category-test (Depends-on, configure.ac): Likewise.
4100         * modules/unictype/ctype-alnum (Depends-on, configure.ac): Likewise.
4101         * modules/unictype/ctype-alpha (Depends-on, configure.ac): Likewise.
4102         * modules/unictype/ctype-blank (Depends-on, configure.ac): Likewise.
4103         * modules/unictype/ctype-cntrl (Depends-on, configure.ac): Likewise.
4104         * modules/unictype/ctype-digit (Depends-on, configure.ac): Likewise.
4105         * modules/unictype/ctype-graph (Depends-on, configure.ac): Likewise.
4106         * modules/unictype/ctype-lower (Depends-on, configure.ac): Likewise.
4107         * modules/unictype/ctype-print (Depends-on, configure.ac): Likewise.
4108         * modules/unictype/ctype-punct (Depends-on, configure.ac): Likewise.
4109         * modules/unictype/ctype-space (Depends-on, configure.ac): Likewise.
4110         * modules/unictype/ctype-upper (Depends-on, configure.ac): Likewise.
4111         * modules/unictype/ctype-xdigit (Depends-on, configure.ac): Likewise.
4112         * modules/unictype/property-alphabetic (Depends-on, configure.ac):
4113         Likewise.
4114         * modules/unictype/property-ascii-hex-digit (Depends-on,
4115         configure.ac): Likewise.
4116         * modules/unictype/property-bidi-arabic-digit (Depends-on,
4117         configure.ac): Likewise.
4118         * modules/unictype/property-bidi-arabic-right-to-left (Depends-on,
4119         configure.ac): Likewise.
4120         * modules/unictype/property-bidi-block-separator (Depends-on,
4121         configure.ac): Likewise.
4122         * modules/unictype/property-bidi-boundary-neutral (Depends-on,
4123         configure.ac): Likewise.
4124         * modules/unictype/property-bidi-common-separator (Depends-on,
4125         configure.ac): Likewise.
4126         * modules/unictype/property-bidi-control (Depends-on, configure.ac):
4127         Likewise.
4128         * modules/unictype/property-bidi-embedding-or-override (Depends-on,
4129         configure.ac): Likewise.
4130         * modules/unictype/property-bidi-eur-num-separator (Depends-on,
4131         configure.ac): Likewise.
4132         * modules/unictype/property-bidi-eur-num-terminator (Depends-on,
4133         configure.ac): Likewise.
4134         * modules/unictype/property-bidi-european-digit (Depends-on,
4135         configure.ac): Likewise.
4136         * modules/unictype/property-bidi-hebrew-right-to-left (Depends-on,
4137         configure.ac): Likewise.
4138         * modules/unictype/property-bidi-left-to-right (Depends-on,
4139         configure.ac): Likewise.
4140         * modules/unictype/property-bidi-non-spacing-mark (Depends-on,
4141         configure.ac): Likewise.
4142         * modules/unictype/property-bidi-other-neutral (Depends-on,
4143         configure.ac): Likewise.
4144         * modules/unictype/property-bidi-pdf (Depends-on, configure.ac):
4145         Likewise.
4146         * modules/unictype/property-bidi-segment-separator (Depends-on,
4147         configure.ac): Likewise.
4148         * modules/unictype/property-bidi-whitespace (Depends-on,
4149         configure.ac): Likewise.
4150         * modules/unictype/property-combining (Depends-on, configure.ac):
4151         Likewise.
4152         * modules/unictype/property-composite (Depends-on, configure.ac):
4153         Likewise.
4154         * modules/unictype/property-currency-symbol (Depends-on,
4155         configure.ac): Likewise.
4156         * modules/unictype/property-dash (Depends-on, configure.ac): Likewise.
4157         * modules/unictype/property-decimal-digit (Depends-on, configure.ac):
4158         Likewise.
4159         * modules/unictype/property-default-ignorable-code-point (Depends-on,
4160         configure.ac): Likewise.
4161         * modules/unictype/property-deprecated (Depends-on, configure.ac):
4162         Likewise.
4163         * modules/unictype/property-diacritic (Depends-on, configure.ac):
4164         Likewise.
4165         * modules/unictype/property-extender (Depends-on, configure.ac):
4166         Likewise.
4167         * modules/unictype/property-format-control (Depends-on, configure.ac):
4168         Likewise.
4169         * modules/unictype/property-grapheme-base (Depends-on, configure.ac):
4170         Likewise.
4171         * modules/unictype/property-grapheme-extend (Depends-on, configure.ac):
4172         Likewise.
4173         * modules/unictype/property-grapheme-link (Depends-on, configure.ac):
4174         Likewise.
4175         * modules/unictype/property-hex-digit (Depends-on, configure.ac):
4176         Likewise.
4177         * modules/unictype/property-hyphen (Depends-on, configure.ac):
4178         Likewise.
4179         * modules/unictype/property-id-continue (Depends-on, configure.ac):
4180         Likewise.
4181         * modules/unictype/property-id-start (Depends-on, configure.ac):
4182         Likewise.
4183         * modules/unictype/property-ideographic (Depends-on, configure.ac):
4184         Likewise.
4185         * modules/unictype/property-ids-binary-operator (Depends-on,
4186         configure.ac): Likewise.
4187         * modules/unictype/property-ids-trinary-operator (Depends-on,
4188         configure.ac): Likewise.
4189         * modules/unictype/property-ignorable-control (Depends-on,
4190         configure.ac): Likewise.
4191         * modules/unictype/property-iso-control (Depends-on, configure.ac):
4192         Likewise.
4193         * modules/unictype/property-join-control (Depends-on, configure.ac):
4194         Likewise.
4195         * modules/unictype/property-left-of-pair (Depends-on, configure.ac):
4196         Likewise.
4197         * modules/unictype/property-line-separator (Depends-on, configure.ac):
4198         Likewise.
4199         * modules/unictype/property-logical-order-exception (Depends-on,
4200         configure.ac): Likewise.
4201         * modules/unictype/property-lowercase (Depends-on, configure.ac):
4202         Likewise.
4203         * modules/unictype/property-math (Depends-on, configure.ac): Likewise.
4204         * modules/unictype/property-non-break (Depends-on, configure.ac):
4205         Likewise.
4206         * modules/unictype/property-not-a-character (Depends-on, configure.ac):
4207         Likewise.
4208         * modules/unictype/property-numeric (Depends-on, configure.ac):
4209         Likewise.
4210         * modules/unictype/property-other-alphabetic (Depends-on,
4211         configure.ac): Likewise.
4212         * modules/unictype/property-other-default-ignorable-code-point
4213         (Depends-on, configure.ac): Likewise.
4214         * modules/unictype/property-other-grapheme-extend (Depends-on,
4215         configure.ac): Likewise.
4216         * modules/unictype/property-other-id-continue (Depends-on,
4217         configure.ac): Likewise.
4218         * modules/unictype/property-other-id-start (Depends-on, configure.ac):
4219         Likewise.
4220         * modules/unictype/property-other-lowercase (Depends-on, configure.ac):
4221         Likewise.
4222         * modules/unictype/property-other-math (Depends-on, configure.ac):
4223         Likewise.
4224         * modules/unictype/property-other-uppercase (Depends-on, configure.ac):
4225         Likewise.
4226         * modules/unictype/property-paired-punctuation (Depends-on,
4227         configure.ac): Likewise.
4228         * modules/unictype/property-paragraph-separator (Depends-on,
4229         configure.ac): Likewise.
4230         * modules/unictype/property-pattern-syntax (Depends-on, configure.ac):
4231         Likewise.
4232         * modules/unictype/property-pattern-white-space (Depends-on,
4233         configure.ac): Likewise.
4234         * modules/unictype/property-private-use (Depends-on, configure.ac):
4235         Likewise.
4236         * modules/unictype/property-punctuation (Depends-on, configure.ac):
4237         Likewise.
4238         * modules/unictype/property-quotation-mark (Depends-on, configure.ac):
4239         Likewise.
4240         * modules/unictype/property-radical (Depends-on, configure.ac):
4241         Likewise.
4242         * modules/unictype/property-sentence-terminal (Depends-on,
4243         configure.ac): Likewise.
4244         * modules/unictype/property-soft-dotted (Depends-on, configure.ac):
4245         Likewise.
4246         * modules/unictype/property-space (Depends-on, configure.ac): Likewise.
4247         * modules/unictype/property-terminal-punctuation (Depends-on,
4248         configure.ac): Likewise.
4249         * modules/unictype/property-titlecase (Depends-on, configure.ac):
4250         Likewise.
4251         * modules/unictype/property-unassigned-code-value (Depends-on,
4252         configure.ac): Likewise.
4253         * modules/unictype/property-unified-ideograph (Depends-on,
4254         configure.ac): Likewise.
4255         * modules/unictype/property-uppercase (Depends-on, configure.ac):
4256         Likewise.
4257         * modules/unictype/property-variation-selector (Depends-on,
4258         configure.ac): Likewise.
4259         * modules/unictype/property-white-space (Depends-on, configure.ac):
4260         Likewise.
4261         * modules/unictype/property-xid-continue (Depends-on, configure.ac):
4262         Likewise.
4263         * modules/unictype/property-xid-start (Depends-on, configure.ac):
4264         Likewise.
4265         * modules/unictype/property-zero-width (Depends-on, configure.ac):
4266         Likewise.
4267         * modules/unictype/syntax-c-ident (Depends-on, configure.ac): Likewise.
4268         * modules/unictype/syntax-java-ident (Depends-on, configure.ac):
4269         Likewise.
4270
4271 2009-12-31  Bruno Haible  <bruno@clisp.org>
4272
4273         Remove unnecessary AC_C_INLINE invocation.
4274         * m4/popen.m4 (gl_PREREQ_POPEN): Don't invoke AC_C_INLINE. Not needed
4275         since 2009-08-21.
4276
4277 2009-12-31  Jim Meyering  <meyering@redhat.com>
4278
4279         maint.mk: don't require explicit gpg_key_ID in cfg.mk
4280         * top/maint.mk (gpg_key_ID): Derive key ID from signed release tag.
4281         With this change, we can all remove the gpg_key_ID = ... definition
4282         from our respective cfg.mk files.
4283
4284         maint.mk: create announcement template in ~/, not in /tmp
4285         * top/maint.mk (emit_upload_commands): Adjust.
4286         (release-prep): Emit into ~/announce-..., not /tmp/announce-...
4287         Remove temporary file, .ci-msg.
4288
4289 2009-12-31  Eric Blake  <ebb9@byu.net>
4290
4291         link-warning: always build headers with link warnings
4292         * modules/arpa_inet (Makefile.am): Always build replacement
4293         header.
4294         * modules/ctype (Makefile.am): Likewise.
4295         * modules/dirent (Makefile.am): Likewise.
4296         * modules/inttypes (Makefile.am): Likewise.
4297         * modules/langinfo (Makefile.am): Likewise.
4298         * modules/locale (Makefile.am): Likewise.
4299         * modules/spawn (Makefile.am): Likewise.
4300         * modules/sys_file (Makefile.am): Likewise.
4301         * modules/sys_ioctl (Makefile.am): Likewise.
4302         * modules/sys_select (Makefile.am): Likewise.
4303         * modules/sys_socket (Makefile.am): Likewise.
4304         * modules/sys_times (Makefile.am): Likewise.
4305         * modules/sys_utsname (Makefile.am): Likewise.
4306         * modules/sys_wait (Makefile.am): Likewise.
4307         * modules/wchar (Makefile.am): Likewise.
4308         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET)
4309         (gl_ARPA_INET_H_DEFAULTS): Drop unneeded variable.
4310         * m4/ctype.m4 (gl_CTYPE_H_DEFAULTS): Likewise.
4311         * m4/isblank.m4 (gl_FUNC_ISBLANK): Likewise.
4312         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H, gl_DIRENT_H_DEFAULTS):
4313         Likewise.
4314         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
4315         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
4316         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_H_DEFAULTS):
4317         Likewise.
4318         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H, gl_SPAWN_H_DEFAULTS):
4319         Likewise.
4320         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Likewise.
4321         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H, gl_REPLACE_SYS_IOCTL_H)
4322         (gl_SYS_IOCTL_H_DEFAULTS): Likewise.
4323         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
4324         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
4325         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
4326         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
4327         * m4/wchar.m4 (gl_WCHAR_H, gl_REPLACE_WCHAR_H)
4328         (gl_WCHAR_H_DEFAULTS): Likewise.
4329
4330 2009-12-31  Eric Blake  <ebb9@byu.net>
4331
4332         signal, spawn: use link warnings
4333         * lib/signal.in.h (sigset_t): Make unconditional.
4334         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset)
4335         (sigpending, sigprocmask, sigaction): Add link warnings.
4336         * lib/spawn.in.h (posix_spawn, posix_spawnp, posix_spawnattr_init)
4337         (posix_spawnattr_destroy, posix_spawnattr_getsigdefault)
4338         (posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask)
4339         (posix_spawnattr_setsigmask, posix_spawnattr_getflags)
4340         (posix_spawnattr_setflags, posix_spawnattr_getpgroup)
4341         (posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy)
4342         (posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam)
4343         (posix_spawnattr_setschedparam, posix_spawn_file_actions_init)
4344         (posix_spawn_file_actions_destroy)
4345         (posix_spawn_file_actions_addopen)
4346         (posix_spawn_file_actions_addclose)
4347         (posix_spawn_file_actions_adddup2): Likewise.
4348         * m4/signal_h.m4 (gl_SIGNAL_H): Guarantee uid_t.
4349         * tests/test-signal.c (main): Enhance test.
4350
4351         spawn: improve wrapper support
4352         * m4/spawn_h.m4 (gl_SPAWN_H): Check for type existence.
4353         (gl_SPAWN_H_DEFAULTS): New defaults.
4354         * modules/spawn (Makefile.am): Substitute them.
4355         * lib/spawn.in.h: (posix_spawnattr_t, posix_spawn_file_actions_t):
4356         Only declare if missing or broken.
4357
4358         sys_times, sys_utsname: use include_next
4359         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Support wrapping an existing
4360         header.
4361         (gl_SYS_TIMES_H_DEFAULTS): Add another variable.
4362         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
4363         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
4364         * modules/sys_times (Depends-on): Add include_next.
4365         (Makefile.am): Substitute additional values.
4366         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
4367         * lib/sys_times.in.h (includes): Include native header, if
4368         available.
4369         * lib/sys_utsname.in.h (includes): Likewise.
4370         * tests/test-sys_times.c (main): Enhance test.
4371
4372         fdutimensat: revert prior patch
4373         * modules/fdutimensat (Depends-on): Re-add inline; it is needed by
4374         utimens.h.
4375         Reported by Bruno Haible.
4376
4377 2009-12-30  Eric Blake  <ebb9@byu.net>
4378
4379         sys_wait: drop link-warning dependency
4380         * modules/sys_wait (Depends-on, Makefile.am): Drop unneeded
4381         link-warning efforts.
4382         * lib/sys_wait.in.h: Likewise.
4383
4384         fdutimensat: remove bogus dependency
4385         * modules/fdutimensat (Depends-on): Drop inline.
4386
4387         unistd: fix typo
4388         * lib/unistd.in.h (linkat) [GNULIB_POSIXCHECK]: Fix typo.
4389
4390 2009-12-30  Bruno Haible  <bruno@clisp.org>
4391
4392         Fix compilation error with Solaris cc.
4393         * lib/unicase/u8-is-invariant.c: Include <stdbool.h>.
4394         * lib/unicase/u16-is-invariant.c: Likewise.
4395         * lib/unicase/u32-is-invariant.c: Likewise.
4396         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
4397
4398 2009-12-30  Bruno Haible  <bruno@clisp.org>
4399
4400         Fix test crash.
4401         * tests/test-localename.c (test_locale_name_thread): Skip unavailable
4402         locales.
4403         Reported by Simon Josefsson <simon@josefsson.org>.
4404
4405 2009-12-30  Bruno Haible  <bruno@clisp.org>
4406
4407         Fix compilation error on most platforms.
4408         * tests/test-localename.c (categories): Define only if HAVE_NEWLOCALE.
4409         Reported by Simon Josefsson <simon@josefsson.org>
4410         and Nelson H. F. Beebe <beebe@math.utah.edu>.
4411
4412 2009-12-30  Eric Blake  <ebb9@byu.net>
4413
4414         futimens, utimensat: work around ntfs-3g bug
4415         * lib/utimensat.c (rpl_utimensat): Drop attempts to cache whether
4416         a ctime bug is present, and expand workaround to cover ntfs-3g.
4417         * lib/utimens.c (fdutimens, lutimens): Likewise.
4418         (utimensat_ctime_really, detect_ctime_bug): Drop cache mechanism.
4419         (validate_timespec): Adjust return value.
4420         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Update comment.
4421         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
4422         Reported by ctrn3e8 <ctrn3e8@gmail.com>.
4423
4424 2009-12-29  Eric Blake  <ebb9@byu.net>
4425
4426         link-warning: make usage consistent
4427         * modules/ctype (Depends-on): Add link-warning.
4428         (Makefile.am): Update rules accordingly.
4429         * modules/langinfo (Depends-on, Makefile.am): Likewise.
4430         * modules/locale (Depends-on, Makefile.am): Likewise.
4431         * modules/sys_file (Makefile.am): Likewise.
4432         * modules/getopt-posix (Makefile.am): Delete unused link warning
4433         efforts.
4434         * lib/ctype.in.h (GL_LINK_WARNING): Ensure definition before use.
4435         * lib/langinfo.in.h (GL_LINK_WARNING): Likewise.
4436         * lib/locale.in.h (GL_LINK_WARNING): Likewise.
4437         * lib/sys_file.in.h (GL_LINK_WARNING): Likewise.
4438
4439         stdio: remove unused variables
4440         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Remove unused variables.
4441         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Likewise.
4442         * m4/ftello.m4 (gl_FUNC_FTELLO): Likewise.
4443
4444         tests: test more substitute headers
4445         * modules/ctype-tests: New file.
4446         * modules/dirent-tests: Likewise.
4447         * modules/spawn-tests: Likewise.
4448         * modules/sys_file-tests: Likewise.
4449         * modules/sys_ioctl-tests: Likewise.
4450         * modules/sys_wait-tests: Likewise.
4451         * tests/test-ctype.c: Likewise.
4452         * tests/test-dirent.c: Likewise.
4453         * tests/test-spawn.c: Likewise.
4454         * tests/test-sys_file.c: Likewise.
4455         * tests/test-sys_ioctl.c: Likewise.
4456         * tests/test-sys_wait.c: Likewise.
4457         * m4/spawn_h.m4 (gl_SPAWN_H): Replace header if it is missing.
4458         * lib/sys_file.in.h (LOCK_SH, LOCK_EX, LOCK_UN, LOCK_NB): Provide
4459         whether or not flock is in use.
4460
4461         tests: remove License section from module
4462         * modules/arpa_inet-tests: Remove unneeded section.
4463         * modules/byteswap-tests: Likewise.
4464         * modules/ceilf-tests: Likewise.
4465         * modules/ceill-tests: Likewise.
4466         * modules/crypto/des-tests: Likewise.
4467         * modules/crypto/gc-arcfour-tests: Likewise.
4468         * modules/crypto/gc-arctwo-tests: Likewise.
4469         * modules/crypto/gc-des-tests: Likewise.
4470         * modules/crypto/gc-hmac-md5-tests: Likewise.
4471         * modules/crypto/gc-hmac-sha1-tests: Likewise.
4472         * modules/crypto/gc-md2-tests: Likewise.
4473         * modules/crypto/gc-md4-tests: Likewise.
4474         * modules/crypto/gc-md5-tests: Likewise.
4475         * modules/crypto/gc-pbkdf2-sha1-tests: Likewise.
4476         * modules/crypto/gc-rijndael-tests: Likewise.
4477         * modules/crypto/gc-sha1-tests: Likewise.
4478         * modules/crypto/gc-tests: Likewise.
4479         * modules/crypto/md2-tests: Likewise.
4480         * modules/crypto/md4-tests: Likewise.
4481         * modules/fcntl-h-tests: Likewise.
4482         * modules/floorf-tests: Likewise.
4483         * modules/floorl-tests: Likewise.
4484         * modules/frexp-nolibm-tests: Likewise.
4485         * modules/frexp-tests: Likewise.
4486         * modules/frexpl-nolibm-tests: Likewise.
4487         * modules/frexpl-tests: Likewise.
4488         * modules/getaddrinfo-tests: Likewise.
4489         * modules/inttypes-tests: Likewise.
4490         * modules/isfinite-tests: Likewise.
4491         * modules/isinf-tests: Likewise.
4492         * modules/ldexpl-tests: Likewise.
4493         * modules/locale-tests: Likewise.
4494         * modules/math-tests: Likewise.
4495         * modules/netdb-tests: Likewise.
4496         * modules/netinet_in-tests: Likewise.
4497         * modules/printf-frexp-tests: Likewise.
4498         * modules/printf-frexpl-tests: Likewise.
4499         * modules/priv-set-tests: Likewise.
4500         * modules/random_r-tests: Likewise.
4501         * modules/round-tests: Likewise.
4502         * modules/roundf-tests: Likewise.
4503         * modules/roundl-tests: Likewise.
4504         * modules/search-tests: Likewise.
4505         * modules/select-tests: Likewise.
4506         * modules/signal-tests: Likewise.
4507         * modules/stdbool-tests: Likewise.
4508         * modules/stddef-tests: Likewise.
4509         * modules/stdint-tests: Likewise.
4510         * modules/stdio-tests: Likewise.
4511         * modules/stdlib-tests: Likewise.
4512         * modules/string-tests: Likewise.
4513         * modules/strings-tests: Likewise.
4514         * modules/sys_select-tests: Likewise.
4515         * modules/sys_socket-tests: Likewise.
4516         * modules/sys_stat-tests: Likewise.
4517         * modules/sys_time-tests: Likewise.
4518         * modules/sys_utsname-tests: Likewise.
4519         * modules/sysexits-tests: Likewise.
4520         * modules/time-tests: Likewise.
4521         * modules/trunc-tests: Likewise.
4522         * modules/truncf-tests: Likewise.
4523         * modules/truncl-tests: Likewise.
4524         * modules/tsearch-tests: Likewise.
4525         * modules/unistd-tests: Likewise.
4526         * modules/wchar-tests: Likewise.
4527         * modules/wctype-tests: Likewise.
4528
4529         tests: fix license on several tests
4530         * tests/test-des.c: Update to GPLv3+.
4531         * tests/test-flock.c: Likewise.
4532         * tests/test-fsync.c: Likewise.
4533         * tests/test-futimens.h: Likewise.
4534         * tests/test-gc-arcfour.c: Likewise.
4535         * tests/test-gc-arctwo.c: Likewise.
4536         * tests/test-gc-des.c: Likewise.
4537         * tests/test-gc-hmac-md5.c: Likewise.
4538         * tests/test-gc-hmac-sha1.c: Likewise.
4539         * tests/test-gc-md2.c: Likewise.
4540         * tests/test-gc-md4.c: Likewise.
4541         * tests/test-gc-md5.c: Likewise.
4542         * tests/test-gc-pbkdf2-sha1.c: Likewise.
4543         * tests/test-gc-rijndael.c: Likewise.
4544         * tests/test-gc-sha1.c: Likewise.
4545         * tests/test-gc.c: Likewise.
4546         * tests/test-getcwd.c: Likewise.
4547         * tests/test-link.c: Likewise.
4548         * tests/test-link.h: Likewise.
4549         * tests/test-lutimens.h: Likewise.
4550         * tests/test-md2.c: Likewise.
4551         * tests/test-md4.c: Likewise.
4552         * tests/test-mkdir.h: Likewise.
4553         * tests/test-rename.c: Likewise.
4554         * tests/test-rename.h: Likewise.
4555         * tests/test-safe-alloc.c: Likewise.
4556         * tests/test-utimens-common.h: Likewise.
4557         * tests/test-utimens.h: Likewise.
4558
4559         maint: sync license texts
4560         * config/srclist.txt: Add gpl-1.3.texi, lgpl-1.3.texi.
4561         * doc/gpl-3.0.texi: Revert copyright year update.
4562         * doc/lgpl-3.0.texi: Likewise.
4563
4564 2009-12-29  Jim Meyering  <meyering@redhat.com>
4565
4566         update nearly all FSF copyright year lists to include 2009
4567         The files named by the following are exempted:
4568             grep -v '^#' config/srclist.txt|grep -v '^$' | while read src dst; do
4569               test -f "$dst" && { echo "$dst"; continue; }
4570               test -d "$dst" || continue
4571               echo "$dst"/$(basename "$src")
4572             done > exempt
4573             git ls-files tests/unictype >> exempt
4574         In the remaining files, convert to all-interval notation if
4575         - there is already at least one year interval like 2000-2003
4576         - the file is maintained by me
4577         - the file is in lib/uni*/, where that style already prevails
4578         Otherwise, use update-copyright's default.
4579
4580 2009-12-29  Simon Josefsson  <simon@josefsson.org>
4581         and Eric Blake  <ebb9@byu.net>
4582
4583         tests: don't require debug system() to pass
4584         * tests/test-lstat.h (test_lstat_func): Move debug cleanup...
4585         * tests/test-rmdir.h (test_rmdir_func): Likewise.
4586         * tests/test-unlink.h (test_unlink_func): Likewise.
4587         * tests/test-fstatat.c (main): ...into callers.
4588         * tests/test-lstat.c (main): Likewise.
4589         * tests/test-rmdir.c (main): Likewise.
4590         * tests/test-unlink.c (main): Likewise.
4591         * tests/test-unlinkat.c (main): Likewise.
4592         * tests/test-areadlink-with-size.c (main): Don't require a
4593         debug-only system call to pass, aiding cross-testing to mingw.
4594         * tests/test-areadlink.c (main): Likewise.
4595         * tests/test-areadlinkat-with-size.c (main): Likewise.
4596         * tests/test-areadlinkat.c (main): Likewise.
4597         * tests/test-canonicalize-lgpl.c (main): Likewise.
4598         * tests/test-canonicalize.c (main): Likewise.
4599         * tests/test-chown.c (main): Likewise.
4600         * tests/test-fchownat.c (main): Likewise.
4601         * tests/test-lchown.c (main): Likewise.
4602         * tests/test-fdutimensat.c (main): Likewise.
4603         * tests/test-futimens.c (main): Likewise.
4604         * tests/test-link.c (main): Likewise.
4605         * tests/test-linkat.c (main): Likewise.
4606         * tests/test-mkdir.c (main): Likewise.
4607         * tests/test-mkdirat.c (main): Likewise.
4608         * tests/test-mkfifo.c (main): Likewise.
4609         * tests/test-mkfifoat.c (main): Likewise.
4610         * tests/test-mknod.c (main): Likewise.
4611         * tests/test-readlink.c (main): Likewise.
4612         * tests/test-remove.c (main): Likewise.
4613         * tests/test-rename.c (main): Likewise.
4614         * tests/test-renameat.c (main): Likewise.
4615         * tests/test-symlink.c (main): Likewise.
4616         * tests/test-symlinkat.c (main): Likewise.
4617         * tests/test-utimens.c (main): Likewise.
4618         * tests/test-utimensat.c (main): Likewise.
4619
4620 2009-12-29  Simon Josefsson  <simon@josefsson.org>
4621
4622         * modules/selinux-h (selinux/selinux.h, selinux/context.h): Depend
4623         on $(UNUSED_PARAMETER_H) to avoid build failure.
4624
4625 2009-12-28  Jim Meyering  <meyering@redhat.com>
4626
4627         update-copyright: you may specify a max. line length other than 72
4628         * build-aux/update-copyright: Honor $UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
4629
4630         maint: use consistent FSF copyright line syntax
4631         * lib/posixtm.c: Add missing comma in FSF copyright line.
4632         * lib/posixtm.h: Likewise.
4633         * lib/getugroups.c: Add missing ", Inc.".
4634
4635         pmccabe2html: emit consistent FSF copyright; remove trailing blanks
4636         * build-aux/pmccabe2html: Insert comma before "Inc." in emitted
4637         FSF copyright line.  Remove trailing blanks.
4638
4639 2009-12-28  Eric Blake  <ebb9@byu.net>
4640
4641         test-dup2: reduce dependencies
4642         * modules/cloexec (Configure.ac): Set witness.
4643         * modules/dup2-tests (Depends-on): Drop cloexec.
4644         * tests/test-dup2.c (main): Skip portion of test if cloexec module
4645         not present.
4646         Suggested by Bruno Haible.
4647
4648 2009-12-26  Bruno Haible  <bruno@clisp.org>
4649
4650         Remove an unneeded dependency.
4651         * modules/fseterr (Depends-on): Remove dup2.
4652
4653 2009-12-26  Eric Blake  <ebb9@byu.net>
4654
4655         tests: use macros.h in more places
4656         * tests/macros.h (ASSERT): Depend on ASSERT_STREAM.
4657         (ASSERT_STREAM): Provide default of stderr.
4658         * tests/test-dirent-safer.c: Include macros.h, using alternate
4659         stream for assertions.
4660         * tests/test-dup-safer.c: Likewise.
4661         * tests/test-freopen-safer.c: Likewise.
4662         * tests/test-getopt.c: Likewise.
4663         * tests/test-openat-safer.c: Likewise.
4664         * tests/test-pipe.c: Likewise.
4665         * tests/test-popen-safer.c: Likewise.
4666         * modules/dirent-safer-tests (Files): Include macros.h.
4667         * modules/unistd-safer-tests (Files): Likewise.
4668         * modules/freopen-safer-tests (Files): Likewise.
4669         * modules/getopt-posix-tests (Files): Likewise.
4670         * modules/openat-safer-tests (Files): Likewise.
4671         * modules/pipe-tests (Files): Likewise.
4672
4673 2009-12-26  Bruno Haible  <bruno@clisp.org>
4674
4675         javacomp: Portability fix.
4676         * m4/javacomp.m4 (gt_JAVACOMP): Fix creation of conftestver.class so
4677         that it also works on Solaris.
4678
4679 2009-12-26  Bruno Haible  <bruno@clisp.org>
4680
4681         localename: Fix storage allocation of gl_locale_name_thread's result.
4682         * lib/localename.c (SIZE_BITS, string_hash, struct hash_node,
4683         HASH_TABLE_SIZE, struniq_hash_table, struniq_lock, struniq): Define on
4684         all platforms that have 'uselocale'.
4685         (gl_locale_name_thread_unsafe): New function, extracted from
4686         gl_locale_name_thread.
4687         (gl_locale_name_thread): Call struniq on all platforms that have
4688         'uselocale'.
4689         * tests/test-localename.c (test_locale_name_thread): Check that the
4690         resulting strings are permanently allocated.
4691         * modules/localename-tests (Depends-on): Add strdup.
4692
4693 2009-12-26  Bruno Haible  <bruno@clisp.org>
4694
4695         * tests/test-localename.c (categories): Fill in the strings.
4696
4697 2009-12-26  Jim Meyering  <meyering@redhat.com>
4698
4699         isdir: complete the removal of m4/isdir.m4
4700         * modules/isdir (configure.ac): Remove reference to gl_ISDIR.
4701
4702         isdir: clean up, since at least grep still uses it
4703         * lib/isdir.c: Include "isdir.h".
4704         (S_ISDIR): Remove now-unneeded definition.
4705         * modules/isdir (Files): Add lib/isdir.h.
4706         * lib/isdir.h: New file, with declaration.
4707         * m4/isdir.m4: Remove file -- unneeded.
4708
4709 2009-12-25  Bruno Haible  <bruno@clisp.org>
4710
4711         selinux-h: Make generated .h files standalone.
4712         * lib/se-context.in.h: Arrange to include _GL_UNUSED_PARAMETER
4713         definition. Use _GL_UNUSED_PARAMETER instead of _GL_UNUSED.
4714         * lib/se-selinux.in.h: Likewise.
4715         * modules/selinux-h (Depends-on): Add unused-parameter.
4716         (Makefile.am): Insert definition of _GL_UNUSED_PARAMETER into
4717         selinux/selinux.h and selinux/context.h.
4718         Suggested by Eric Blake.
4719
4720 2009-12-25  Bruno Haible  <bruno@clisp.org>
4721
4722         Move gl_FCNTL_O_FLAGS to a separate .m4 file.
4723         * m4/fcntl-o.m4: New file, extracted from m4/fcntl_h.m4.
4724         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): Remove macro.
4725         * modules/fcntl-h (Files): Add m4/fcntl-o.m4.
4726         * modules/localcharset (Files): Likewise. Remove m4/fcntl_h.m4.
4727
4728 2009-12-24  Bruno Haible  <bruno@clisp.org>
4729
4730         openat: Fix warning.
4731         * lib/openat-proc.c: Include <unistd.h>.
4732
4733 2009-12-24  Bruno Haible  <bruno@clisp.org>
4734
4735         New module 'unused-parameter'.
4736         * build-aux/unused-parameter.h: New file, extracted from earlier
4737         gnulib-common.m4.
4738         * modules/unused-parameter: New file.
4739         * lib/unistr.h: Include unused-parameter.h.
4740         (u32_mbtouc_unsafe, u32_mbtouc): Use _GL_UNUSED_PARAMETER instead of
4741         _GL_UNUSED.
4742         * modules/unistr/base (Depends-on): Add unused-parameter.
4743
4744 2009-12-24  Bruno Haible  <bruno@clisp.org>
4745
4746         Add missing dependencies to 'extensions' module.
4747         * m4/extensions.m4: Add comment.
4748         * modules/accept4 (Depends-on): Add extensions.
4749         * modules/dup3 (Depends-on): Likewise.
4750         * modules/fcntl (Depends-on): Likewise.
4751         * modules/futimens (Depends-on): Likewise.
4752         * modules/mknod (Depends-on): Likewise.
4753         * modules/pipe2 (Depends-on): Likewise.
4754         * modules/stat-time (Depends-on): Likewise.
4755         * modules/strcasestr-simple (Depends-on): Likewise.
4756         * modules/strsignal (Depends-on): Likewise.
4757         * modules/utimensat (Depends-on): Likewise.
4758         * modules/localcharset (Depends-on): Likewise. Needed because of
4759         gl_FCNTL_O_FLAGS.
4760         * modules/wcrtomb (Depends-on): Likewise. Needed because of
4761         AC_TYPE_MBSTATE_T.
4762         * modules/wcsnrtombs (Depends-on): Likewise.
4763         * modules/wcsrtombs (Depends-on): Likewise.
4764
4765 2009-12-24  Bruno Haible  <bruno@clisp.org>
4766
4767         binary-io: Avoid gcc warning due to SET_BINARY.
4768         * lib/binary-io.h (SET_BINARY): Cast the result to void.
4769         Reported by Jim Meyering <jim@meyering.net>. Suggestion by Eric Blake.
4770
4771 2009-12-24  Bruno Haible  <bruno@clisp.org>
4772
4773         Avoid future namespace pollution on glibc systems.
4774         * lib/arpa_inet.in.h: Don't include <sys/socket.h> on glibc systems.
4775         * lib/sys_ioctl.in.h: Don't include <unistd.h> on glibc systems.
4776         * lib/sys_select.in.h: Don't include <sys/time.h> and <string.h> on
4777         glibc systems.
4778
4779 2009-12-24  Bruno Haible  <bruno@clisp.org>
4780
4781         Refactor common macros used in tests.
4782         * tests/macros.h: New file.
4783         * tests/test-areadlink.c: Include macros.h. Don't include <stdio.h>
4784         and/or <stdlib.h>, if appropriate.
4785         (ASSERT, SIZEOF): Remove macros.
4786         * tests/test-areadlink-with-size.c: Likewise.
4787         * tests/test-areadlinkat.c: Likewise.
4788         * tests/test-areadlinkat-with-size.c: Likewise.
4789         * tests/test-argmatch.c: Likewise.
4790         * tests/test-argv-iter.c: Likewise.
4791         * tests/test-array-mergesort.c: Likewise.
4792         * tests/test-array_list.c: Likewise.
4793         * tests/test-array_oset.c: Likewise.
4794         * tests/test-avltree_list.c: Likewise.
4795         * tests/test-avltree_oset.c: Likewise.
4796         * tests/test-avltreehash_list.c: Likewise.
4797         * tests/test-base64.c: Likewise.
4798         * tests/test-binary-io.c: Likewise.
4799         * tests/test-bitrotate.c: Likewise.
4800         * tests/test-btowc.c: Likewise.
4801         * tests/test-byteswap.c: Likewise.
4802         * tests/test-c-ctype.c: Likewise.
4803         * tests/test-c-stack.c: Likewise.
4804         * tests/test-c-strcasecmp.c: Likewise.
4805         * tests/test-c-strcasestr.c: Likewise.
4806         * tests/test-c-strncasecmp.c: Likewise.
4807         * tests/test-c-strstr.c: Likewise.
4808         * tests/test-canonicalize-lgpl.c: Likewise.
4809         * tests/test-canonicalize.c: Likewise.
4810         * tests/test-carray_list.c: Likewise.
4811         * tests/test-ceilf1.c: Likewise.
4812         * tests/test-ceilf2.c: Likewise.
4813         * tests/test-ceill.c: Likewise.
4814         * tests/test-chown.c: Likewise.
4815         * tests/test-cloexec.c: Likewise.
4816         * tests/test-copy-acl.c: Likewise.
4817         * tests/test-copy-file.c: Likewise.
4818         * tests/test-count-one-bits.c: Likewise.
4819         * tests/test-dprintf-posix.c: Likewise.
4820         * tests/test-dup2.c: Likewise.
4821         * tests/test-dup3.c: Likewise.
4822         * tests/test-duplocale.c: Likewise.
4823         * tests/test-fbufmode.c: Likewise.
4824         * tests/test-fchdir.c: Likewise.
4825         * tests/test-fchownat.c: Likewise.
4826         * tests/test-fcntl-safer.c: Likewise.
4827         * tests/test-fcntl.c: Likewise.
4828         * tests/test-fdopendir.c: Likewise.
4829         * tests/test-fdutimensat.c: Likewise.
4830         * tests/test-fflush2.c: Likewise.
4831         * tests/test-file-has-acl.c: Likewise.
4832         * tests/test-filevercmp.c: Likewise.
4833         * tests/test-flock.c: Likewise.
4834         * tests/test-floorf1.c: Likewise.
4835         * tests/test-floorf2.c: Likewise.
4836         * tests/test-floorl.c: Likewise.
4837         * tests/test-fnmatch.c: Likewise.
4838         * tests/test-fopen.h: Likewise.
4839         * tests/test-fpending.c: Likewise.
4840         * tests/test-fprintf-posix.c: Likewise.
4841         * tests/test-fpurge.c: Likewise.
4842         * tests/test-freadable.c: Likewise.
4843         * tests/test-freadahead.c: Likewise.
4844         * tests/test-freading.c: Likewise.
4845         * tests/test-freadptr.c: Likewise.
4846         * tests/test-freadptr2.c: Likewise.
4847         * tests/test-freadseek.c: Likewise.
4848         * tests/test-freopen.c: Likewise.
4849         * tests/test-frexp.c: Likewise.
4850         * tests/test-frexpl.c: Likewise.
4851         * tests/test-fseek.c: Likewise.
4852         * tests/test-fseeko.c: Likewise.
4853         * tests/test-fstatat.c: Likewise.
4854         * tests/test-fstrcmp.c: Likewise.
4855         * tests/test-fsync.c: Likewise.
4856         * tests/test-ftell.c: Likewise.
4857         * tests/test-ftello.c: Likewise.
4858         * tests/test-func.c: Likewise.
4859         * tests/test-futimens.c: Likewise.
4860         * tests/test-fwritable.c: Likewise.
4861         * tests/test-fwriting.c: Likewise.
4862         * tests/test-getcwd.c: Likewise.
4863         * tests/test-getdate.c: Likewise.
4864         * tests/test-getdelim.c: Likewise.
4865         * tests/test-getdtablesize.c: Likewise.
4866         * tests/test-getgroups.c: Likewise.
4867         * tests/test-getline.c: Likewise.
4868         * tests/test-getndelim2.c: Likewise.
4869         * tests/test-glob.c: Likewise.
4870         * tests/test-hash.c: Likewise.
4871         * tests/test-i-ring.c: Likewise.
4872         * tests/test-iconv-utf.c: Likewise.
4873         * tests/test-iconv.c: Likewise.
4874         * tests/test-idpriv-drop.c: Likewise.
4875         * tests/test-idpriv-droptemp.c: Likewise.
4876         * tests/test-inet_ntop.c: Likewise.
4877         * tests/test-inet_pton.c: Likewise.
4878         * tests/test-isblank.c: Likewise.
4879         * tests/test-isfinite.c: Likewise.
4880         * tests/test-isinf.c: Likewise.
4881         * tests/test-isnan.c: Likewise.
4882         * tests/test-isnand.h: Likewise.
4883         * tests/test-isnanf.h: Likewise.
4884         * tests/test-isnanl.h: Likewise.
4885         * tests/test-lchown.c: Likewise.
4886         * tests/test-ldexpl.c: Likewise.
4887         * tests/test-link.c: Likewise.
4888         * tests/test-linkat.c: Likewise.
4889         * tests/test-linked_list.c: Likewise.
4890         * tests/test-linkedhash_list.c: Likewise.
4891         * tests/test-localename.c: Likewise.
4892         * tests/test-lseek.c: Likewise.
4893         * tests/test-lstat.c: Likewise.
4894         * tests/test-mbmemcasecmp.c: Likewise.
4895         * tests/test-mbmemcasecoll.c: Likewise.
4896         * tests/test-mbrtowc.c: Likewise.
4897         * tests/test-mbscasecmp.c: Likewise.
4898         * tests/test-mbscasestr1.c: Likewise.
4899         * tests/test-mbscasestr2.c: Likewise.
4900         * tests/test-mbscasestr3.c: Likewise.
4901         * tests/test-mbscasestr4.c: Likewise.
4902         * tests/test-mbschr.c: Likewise.
4903         * tests/test-mbscspn.c: Likewise.
4904         * tests/test-mbsinit.c: Likewise.
4905         * tests/test-mbsncasecmp.c: Likewise.
4906         * tests/test-mbsnrtowcs.c: Likewise.
4907         * tests/test-mbspbrk.c: Likewise.
4908         * tests/test-mbspcasecmp.c: Likewise.
4909         * tests/test-mbsrchr.c: Likewise.
4910         * tests/test-mbsrtowcs.c: Likewise.
4911         * tests/test-mbsspn.c: Likewise.
4912         * tests/test-mbsstr1.c: Likewise.
4913         * tests/test-mbsstr2.c: Likewise.
4914         * tests/test-mbsstr3.c: Likewise.
4915         * tests/test-memchr.c: Likewise.
4916         * tests/test-memchr2.c: Likewise.
4917         * tests/test-memcmp.c: Likewise.
4918         * tests/test-memmem.c: Likewise.
4919         * tests/test-memrchr.c: Likewise.
4920         * tests/test-mkdir.c: Likewise.
4921         * tests/test-mkdirat.c: Likewise.
4922         * tests/test-mkfifo.c: Likewise.
4923         * tests/test-mkfifoat.c: Likewise.
4924         * tests/test-mknod.c: Likewise.
4925         * tests/test-nanosleep.c: Likewise.
4926         * tests/test-nl_langinfo.c: Likewise.
4927         * tests/test-obstack-printf.c: Likewise.
4928         * tests/test-open.c: Likewise.
4929         * tests/test-openat.c: Likewise.
4930         * tests/test-pipe-filter-gi1.c: Likewise.
4931         * tests/test-pipe-filter-gi2-main.c: Likewise.
4932         * tests/test-pipe-filter-ii1.c: Likewise.
4933         * tests/test-pipe-filter-ii2-main.c: Likewise.
4934         * tests/test-pipe2.c: Likewise.
4935         * tests/test-popen.h: Likewise.
4936         * tests/test-posixtm.c: Likewise.
4937         * tests/test-pread.c: Likewise.
4938         * tests/test-printf-frexp.c: Likewise.
4939         * tests/test-printf-frexpl.c: Likewise.
4940         * tests/test-printf-posix.c: Likewise.
4941         * tests/test-priv-set.c: Likewise.
4942         * tests/test-quotearg.c: Likewise.
4943         * tests/test-random_r.c: Likewise.
4944         * tests/test-rawmemchr.c: Likewise.
4945         * tests/test-rbtree_list.c: Likewise.
4946         * tests/test-rbtree_oset.c: Likewise.
4947         * tests/test-rbtreehash_list.c: Likewise.
4948         * tests/test-readlink.c: Likewise.
4949         * tests/test-remove.c: Likewise.
4950         * tests/test-rename.c: Likewise.
4951         * tests/test-renameat.c: Likewise.
4952         * tests/test-rmdir.c: Likewise.
4953         * tests/test-round1.c: Likewise.
4954         * tests/test-roundf1.c: Likewise.
4955         * tests/test-roundl.c: Likewise.
4956         * tests/test-safe-alloc.c: Likewise.
4957         * tests/test-sameacls.c: Likewise.
4958         * tests/test-set-mode-acl.c: Likewise.
4959         * tests/test-setenv.c: Likewise.
4960         * tests/test-sigaction.c: Likewise.
4961         * tests/test-signbit.c: Likewise.
4962         * tests/test-sleep.c: Likewise.
4963         * tests/test-snprintf-posix.c: Likewise.
4964         * tests/test-snprintf.c: Likewise.
4965         * tests/test-sprintf-posix.c: Likewise.
4966         * tests/test-stat-time.c: Likewise.
4967         * tests/test-stat.c: Likewise.
4968         * tests/test-strcasestr.c: Likewise.
4969         * tests/test-strchrnul.c: Likewise.
4970         * tests/test-strerror.c: Likewise.
4971         * tests/test-striconv.c: Likewise.
4972         * tests/test-striconveh.c: Likewise.
4973         * tests/test-striconveha.c: Likewise.
4974         * tests/test-strsignal.c: Likewise.
4975         * tests/test-strstr.c: Likewise.
4976         * tests/test-strtod.c: Likewise.
4977         * tests/test-strverscmp.c: Likewise.
4978         * tests/test-symlink.c: Likewise.
4979         * tests/test-symlinkat.c: Likewise.
4980         * tests/test-trunc1.c: Likewise.
4981         * tests/test-trunc2.c: Likewise.
4982         * tests/test-truncf1.c: Likewise.
4983         * tests/test-truncf2.c: Likewise.
4984         * tests/test-truncl.c: Likewise.
4985         * tests/test-uname.c: Likewise.
4986         * tests/test-unlink.c: Likewise.
4987         * tests/test-unlinkat.c: Likewise.
4988         * tests/test-unsetenv.c: Likewise.
4989         * tests/test-usleep.c: Likewise.
4990         * tests/test-utimens.c: Likewise.
4991         * tests/test-utimensat.c: Likewise.
4992         * tests/test-vasnprintf-posix.c: Likewise.
4993         * tests/test-vasnprintf-posix2.c: Likewise.
4994         * tests/test-vasnprintf.c: Likewise.
4995         * tests/test-vasprintf-posix.c: Likewise.
4996         * tests/test-vasprintf.c: Likewise.
4997         * tests/test-vdprintf-posix.c: Likewise.
4998         * tests/test-vfprintf-posix.c: Likewise.
4999         * tests/test-vprintf-posix.c: Likewise.
5000         * tests/test-vsnprintf-posix.c: Likewise.
5001         * tests/test-vsnprintf.c: Likewise.
5002         * tests/test-vsprintf-posix.c: Likewise.
5003         * tests/test-wcrtomb.c: Likewise.
5004         * tests/test-wcsnrtombs.c: Likewise.
5005         * tests/test-wcsrtombs.c: Likewise.
5006         * tests/test-wctype.c: Likewise.
5007         * tests/test-wcwidth.c: Likewise.
5008         * tests/test-xfprintf-posix.c: Likewise.
5009         * tests/test-xmemdup0.c: Likewise.
5010         * tests/test-xprintf-posix.c: Likewise.
5011         * tests/test-xvasprintf.c: Likewise.
5012         * tests/unicase/test-locale-language.c: Likewise.
5013         * tests/unicase/test-mapping-part1.h: Likewise.
5014         * tests/unicase/test-predicate-part1.h: Likewise.
5015         * tests/unicase/test-u8-casecmp.c: Likewise.
5016         * tests/unicase/test-u8-casecoll.c: Likewise.
5017         * tests/unicase/test-u8-casefold.c: Likewise.
5018         * tests/unicase/test-u8-is-cased.c: Likewise.
5019         * tests/unicase/test-u8-is-casefolded.c: Likewise.
5020         * tests/unicase/test-u8-is-lowercase.c: Likewise.
5021         * tests/unicase/test-u8-is-titlecase.c: Likewise.
5022         * tests/unicase/test-u8-is-uppercase.c: Likewise.
5023         * tests/unicase/test-u8-tolower.c: Likewise.
5024         * tests/unicase/test-u8-totitle.c: Likewise.
5025         * tests/unicase/test-u8-toupper.c: Likewise.
5026         * tests/unicase/test-u16-casecmp.c: Likewise.
5027         * tests/unicase/test-u16-casecoll.c: Likewise.
5028         * tests/unicase/test-u16-casefold.c: Likewise.
5029         * tests/unicase/test-u16-is-cased.c: Likewise.
5030         * tests/unicase/test-u16-is-casefolded.c: Likewise.
5031         * tests/unicase/test-u16-is-lowercase.c: Likewise.
5032         * tests/unicase/test-u16-is-titlecase.c: Likewise.
5033         * tests/unicase/test-u16-is-uppercase.c: Likewise.
5034         * tests/unicase/test-u16-tolower.c: Likewise.
5035         * tests/unicase/test-u16-totitle.c: Likewise.
5036         * tests/unicase/test-u16-toupper.c: Likewise.
5037         * tests/unicase/test-u32-casecmp.c: Likewise.
5038         * tests/unicase/test-u32-casecoll.c: Likewise.
5039         * tests/unicase/test-u32-casefold.c: Likewise.
5040         * tests/unicase/test-u32-is-cased.c: Likewise.
5041         * tests/unicase/test-u32-is-casefolded.c: Likewise.
5042         * tests/unicase/test-u32-is-lowercase.c: Likewise.
5043         * tests/unicase/test-u32-is-titlecase.c: Likewise.
5044         * tests/unicase/test-u32-is-uppercase.c: Likewise.
5045         * tests/unicase/test-u32-tolower.c: Likewise.
5046         * tests/unicase/test-u32-totitle.c: Likewise.
5047         * tests/unicase/test-u32-toupper.c: Likewise.
5048         * tests/unicase/test-ulc-casecmp.c: Likewise.
5049         * tests/unicase/test-ulc-casecoll.c: Likewise.
5050         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
5051         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
5052         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
5053         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
5054         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
5055         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
5056         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
5057         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
5058         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
5059         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
5060         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
5061         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
5062         * tests/unictype/test-bidi_byname.c: Likewise.
5063         * tests/unictype/test-bidi_name.c: Likewise.
5064         * tests/unictype/test-bidi_of.c: Likewise.
5065         * tests/unictype/test-bidi_test.c: Likewise.
5066         * tests/unictype/test-block_list.c: Likewise.
5067         * tests/unictype/test-block_of.c: Likewise.
5068         * tests/unictype/test-block_test.c: Likewise.
5069         * tests/unictype/test-categ_and.c: Likewise.
5070         * tests/unictype/test-categ_and_not.c: Likewise.
5071         * tests/unictype/test-categ_byname.c: Likewise.
5072         * tests/unictype/test-categ_name.c: Likewise.
5073         * tests/unictype/test-categ_none.c: Likewise.
5074         * tests/unictype/test-categ_of.c: Likewise.
5075         * tests/unictype/test-categ_or.c: Likewise.
5076         * tests/unictype/test-categ_test_withtable.c: Likewise.
5077         * tests/unictype/test-combining.c: Likewise.
5078         * tests/unictype/test-decdigit.c: Likewise.
5079         * tests/unictype/test-digit.c: Likewise.
5080         * tests/unictype/test-mirror.c: Likewise.
5081         * tests/unictype/test-numeric.c: Likewise.
5082         * tests/unictype/test-pr_byname.c: Likewise.
5083         * tests/unictype/test-pr_test.c: Likewise.
5084         * tests/unictype/test-predicate-part1.h: Likewise.
5085         * tests/unictype/test-scripts.c: Likewise.
5086         * tests/unictype/test-sy_c_ident.c: Likewise.
5087         * tests/unictype/test-sy_java_ident.c: Likewise.
5088         * tests/unilbrk/test-u8-possible-linebreaks.c: Likewise.
5089         * tests/unilbrk/test-u8-width-linebreaks.c: Likewise.
5090         * tests/unilbrk/test-u16-possible-linebreaks.c: Likewise.
5091         * tests/unilbrk/test-u16-width-linebreaks.c: Likewise.
5092         * tests/unilbrk/test-u32-possible-linebreaks.c: Likewise.
5093         * tests/unilbrk/test-u32-width-linebreaks.c: Likewise.
5094         * tests/unilbrk/test-ulc-possible-linebreaks.c: Likewise.
5095         * tests/unilbrk/test-ulc-width-linebreaks.c: Likewise.
5096         * tests/uninorm/test-canonical-decomposition.c: Likewise.
5097         * tests/uninorm/test-compat-decomposition.c: Likewise.
5098         * tests/uninorm/test-composition.c: Likewise.
5099         * tests/uninorm/test-decomposing-form.c: Likewise.
5100         * tests/uninorm/test-decomposition.c: Likewise.
5101         * tests/uninorm/test-u8-nfc.c: Likewise.
5102         * tests/uninorm/test-u8-nfd.c: Likewise.
5103         * tests/uninorm/test-u8-nfkc.c: Likewise.
5104         * tests/uninorm/test-u8-nfkd.c: Likewise.
5105         * tests/uninorm/test-u8-normcmp.c: Likewise.
5106         * tests/uninorm/test-u8-normcoll.c: Likewise.
5107         * tests/uninorm/test-u16-nfc.c: Likewise.
5108         * tests/uninorm/test-u16-nfd.c: Likewise.
5109         * tests/uninorm/test-u16-nfkc.c: Likewise.
5110         * tests/uninorm/test-u16-nfkd.c: Likewise.
5111         * tests/uninorm/test-u16-normcmp.c: Likewise.
5112         * tests/uninorm/test-u16-normcoll.c: Likewise.
5113         * tests/uninorm/test-u32-nfc.c: Likewise.
5114         * tests/uninorm/test-u32-nfd.c: Likewise.
5115         * tests/uninorm/test-u32-nfkc.c: Likewise.
5116         * tests/uninorm/test-u32-nfkd.c: Likewise.
5117         * tests/uninorm/test-u32-normalize-big.c: Likewise.
5118         * tests/uninorm/test-u32-normcmp.c: Likewise.
5119         * tests/uninorm/test-u32-normcoll.c: Likewise.
5120         * tests/uninorm/test-uninorm-filter-nfc.c: Likewise.
5121         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
5122         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
5123         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
5124         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
5125         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
5126         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
5127         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
5128         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
5129         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
5130         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
5131         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
5132         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
5133         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
5134         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
5135         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
5136         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
5137         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
5138         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
5139         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
5140         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
5141         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
5142         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
5143         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
5144         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
5145         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
5146         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
5147         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
5148         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
5149         * tests/uniwbrk/test-u8-wordbreaks.c: Likewise.
5150         * tests/uniwbrk/test-u16-wordbreaks.c: Likewise.
5151         * tests/uniwbrk/test-u32-wordbreaks.c: Likewise.
5152         * tests/uniwbrk/test-ulc-wordbreaks.c: Likewise.
5153         * tests/uniwidth/test-u8-strwidth.c: Likewise.
5154         * tests/uniwidth/test-u8-width.c: Likewise.
5155         * tests/uniwidth/test-u16-strwidth.c: Likewise.
5156         * tests/uniwidth/test-u16-width.c: Likewise.
5157         * tests/uniwidth/test-u32-strwidth.c: Likewise.
5158         * tests/uniwidth/test-u32-width.c: Likewise.
5159         * tests/uniwidth/test-uc_width.c: Likewise.
5160         * tests/uniwidth/test-uc_width2.c: Likewise.
5161         * modules/acl-tests (Files): Add tests/macros.h.
5162         * modules/areadlink-tests (Files): Likewise.
5163         * modules/areadlink-with-size-tests (Files): Likewise.
5164         * modules/areadlinkat-tests (Files): Likewise.
5165         * modules/areadlinkat-with-size-tests (Files): Likewise.
5166         * modules/argmatch-tests (Files): Likewise.
5167         * modules/argv-iter-tests (Files): Likewise.
5168         * modules/array-list-tests (Files): Likewise.
5169         * modules/array-mergesort-tests (Files): Likewise.
5170         * modules/array-oset-tests (Files): Likewise.
5171         * modules/avltree-list-tests (Files): Likewise.
5172         * modules/avltree-oset-tests (Files): Likewise.
5173         * modules/avltreehash-list-tests (Files): Likewise.
5174         * modules/base64-tests (Files): Likewise.
5175         * modules/binary-io-tests (Files): Likewise.
5176         * modules/bitrotate-tests (Files): Likewise.
5177         * modules/btowc-tests (Files): Likewise.
5178         * modules/byteswap-tests (Files): Likewise.
5179         * modules/c-ctype-tests (Files): Likewise.
5180         * modules/c-stack-tests (Files): Likewise.
5181         * modules/c-strcase-tests (Files): Likewise.
5182         * modules/c-strcasestr-tests (Files): Likewise.
5183         * modules/c-strstr-tests (Files): Likewise.
5184         * modules/canonicalize-lgpl-tests (Files): Likewise.
5185         * modules/canonicalize-tests (Files): Likewise.
5186         * modules/carray-list-tests (Files): Likewise.
5187         * modules/ceilf-tests (Files): Likewise.
5188         * modules/ceill-tests (Files): Likewise.
5189         * modules/chown-tests (Files): Likewise.
5190         * modules/cloexec-tests (Files): Likewise.
5191         * modules/copy-file-tests (Files): Likewise.
5192         * modules/count-one-bits-tests (Files): Likewise.
5193         * modules/dprintf-posix-tests (Files): Likewise.
5194         * modules/dup2-tests (Files): Likewise.
5195         * modules/dup3-tests (Files): Likewise.
5196         * modules/duplocale-tests (Files): Likewise.
5197         * modules/fbufmode-tests (Files): Likewise.
5198         * modules/fchdir-tests (Files): Likewise.
5199         * modules/fcntl-safer-tests (Files): Likewise.
5200         * modules/fcntl-tests (Files): Likewise.
5201         * modules/fdopendir-tests (Files): Likewise.
5202         * modules/fdutimensat-tests (Files): Likewise.
5203         * modules/fflush-tests (Files): Likewise.
5204         * modules/filevercmp-tests (Files): Likewise.
5205         * modules/flock-tests (Files): Likewise.
5206         * modules/floorf-tests (Files): Likewise.
5207         * modules/floorl-tests (Files): Likewise.
5208         * modules/fnmatch-tests (Files): Likewise.
5209         * modules/fopen-safer-tests (Files): Likewise.
5210         * modules/fopen-tests (Files): Likewise.
5211         * modules/fpending-tests (Files): Likewise.
5212         * modules/fprintf-posix-tests (Files): Likewise.
5213         * modules/fpurge-tests (Files): Likewise.
5214         * modules/freadable-tests (Files): Likewise.
5215         * modules/freadahead-tests (Files): Likewise.
5216         * modules/freading-tests (Files): Likewise.
5217         * modules/freadptr-tests (Files): Likewise.
5218         * modules/freadseek-tests (Files): Likewise.
5219         * modules/freopen-tests (Files): Likewise.
5220         * modules/frexp-nolibm-tests (Files): Likewise.
5221         * modules/frexp-tests (Files): Likewise.
5222         * modules/frexpl-nolibm-tests (Files): Likewise.
5223         * modules/frexpl-tests (Files): Likewise.
5224         * modules/fseek-tests (Files): Likewise.
5225         * modules/fseeko-tests (Files): Likewise.
5226         * modules/fstrcmp-tests (Files): Likewise.
5227         * modules/fsync-tests (Files): Likewise.
5228         * modules/ftell-tests (Files): Likewise.
5229         * modules/ftello-tests (Files): Likewise.
5230         * modules/func-tests (Files): Likewise.
5231         * modules/futimens-tests (Files): Likewise.
5232         * modules/fwritable-tests (Files): Likewise.
5233         * modules/fwriting-tests (Files): Likewise.
5234         * modules/getcwd-tests (Files): Likewise.
5235         * modules/getdate-tests (Files): Likewise.
5236         * modules/getdelim-tests (Files): Likewise.
5237         * modules/getdtablesize-tests (Files): Likewise.
5238         * modules/getgroups-tests (Files): Likewise.
5239         * modules/getline-tests (Files): Likewise.
5240         * modules/getndelim2-tests (Files): Likewise.
5241         * modules/glob-tests (Files): Likewise.
5242         * modules/hash-tests (Files): Likewise.
5243         * modules/i-ring-tests (Files): Likewise.
5244         * modules/iconv-tests (Files): Likewise.
5245         * modules/iconv_open-utf-tests (Files): Likewise.
5246         * modules/idpriv-drop-tests (Files): Likewise.
5247         * modules/idpriv-droptemp-tests (Files): Likewise.
5248         * modules/inet_ntop-tests (Files): Likewise.
5249         * modules/inet_pton-tests (Files): Likewise.
5250         * modules/isblank-tests (Files): Likewise.
5251         * modules/isfinite-tests (Files): Likewise.
5252         * modules/isinf-tests (Files): Likewise.
5253         * modules/isnan-tests (Files): Likewise.
5254         * modules/isnand-nolibm-tests (Files): Likewise.
5255         * modules/isnand-tests (Files): Likewise.
5256         * modules/isnanf-nolibm-tests (Files): Likewise.
5257         * modules/isnanf-tests (Files): Likewise.
5258         * modules/isnanl-nolibm-tests (Files): Likewise.
5259         * modules/isnanl-tests (Files): Likewise.
5260         * modules/lchown-tests (Files): Likewise.
5261         * modules/ldexpl-tests (Files): Likewise.
5262         * modules/link-tests (Files): Likewise.
5263         * modules/linkat-tests (Files): Likewise.
5264         * modules/linked-list-tests (Files): Likewise.
5265         * modules/linkedhash-list-tests (Files): Likewise.
5266         * modules/localename-tests (Files): Likewise.
5267         * modules/lseek-tests (Files): Likewise.
5268         * modules/lstat-tests (Files): Likewise.
5269         * modules/mbmemcasecmp-tests (Files): Likewise.
5270         * modules/mbmemcasecoll-tests (Files): Likewise.
5271         * modules/mbrtowc-tests (Files): Likewise.
5272         * modules/mbscasecmp-tests (Files): Likewise.
5273         * modules/mbscasestr-tests (Files): Likewise.
5274         * modules/mbschr-tests (Files): Likewise.
5275         * modules/mbscspn-tests (Files): Likewise.
5276         * modules/mbsinit-tests (Files): Likewise.
5277         * modules/mbsncasecmp-tests (Files): Likewise.
5278         * modules/mbsnrtowcs-tests (Files): Likewise.
5279         * modules/mbspbrk-tests (Files): Likewise.
5280         * modules/mbspcasecmp-tests (Files): Likewise.
5281         * modules/mbsrchr-tests (Files): Likewise.
5282         * modules/mbsrtowcs-tests (Files): Likewise.
5283         * modules/mbsspn-tests (Files): Likewise.
5284         * modules/mbsstr-tests (Files): Likewise.
5285         * modules/memchr-tests (Files): Likewise.
5286         * modules/memchr2-tests (Files): Likewise.
5287         * modules/memcmp-tests (Files): Likewise.
5288         * modules/memmem-tests (Files): Likewise.
5289         * modules/memrchr-tests (Files): Likewise.
5290         * modules/mkdir-tests (Files): Likewise.
5291         * modules/mkfifo-tests (Files): Likewise.
5292         * modules/mkfifoat-tests (Files): Likewise.
5293         * modules/mknod-tests (Files): Likewise.
5294         * modules/nanosleep-tests (Files): Likewise.
5295         * modules/nl_langinfo-tests (Files): Likewise.
5296         * modules/obstack-printf-tests (Files): Likewise.
5297         * modules/open-tests (Files): Likewise.
5298         * modules/openat-tests (Files): Likewise.
5299         * modules/pipe-filter-gi-tests (Files): Likewise.
5300         * modules/pipe-filter-ii-tests (Files): Likewise.
5301         * modules/pipe2-tests (Files): Likewise.
5302         * modules/popen-safer-tests (Files): Likewise.
5303         * modules/popen-tests (Files): Likewise.
5304         * modules/posixtm-tests (Files): Likewise.
5305         * modules/pread-tests (Files): Likewise.
5306         * modules/printf-frexp-tests (Files): Likewise.
5307         * modules/printf-frexpl-tests (Files): Likewise.
5308         * modules/printf-posix-tests (Files): Likewise.
5309         * modules/priv-set-tests (Files): Likewise.
5310         * modules/quotearg-tests (Files): Likewise.
5311         * modules/random_r-tests (Files): Likewise.
5312         * modules/rawmemchr-tests (Files): Likewise.
5313         * modules/rbtree-list-tests (Files): Likewise.
5314         * modules/rbtree-oset-tests (Files): Likewise.
5315         * modules/rbtreehash-list-tests (Files): Likewise.
5316         * modules/readlink-tests (Files): Likewise.
5317         * modules/remove-tests (Files): Likewise.
5318         * modules/rename-tests (Files): Likewise.
5319         * modules/renameat-tests (Files): Likewise.
5320         * modules/rmdir-tests (Files): Likewise.
5321         * modules/round-tests (Files): Likewise.
5322         * modules/roundf-tests (Files): Likewise.
5323         * modules/roundl-tests (Files): Likewise.
5324         * modules/safe-alloc-tests (Files): Likewise.
5325         * modules/setenv-tests (Files): Likewise.
5326         * modules/sigaction-tests (Files): Likewise.
5327         * modules/signbit-tests (Files): Likewise.
5328         * modules/sleep-tests (Files): Likewise.
5329         * modules/snprintf-posix-tests (Files): Likewise.
5330         * modules/snprintf-tests (Files): Likewise.
5331         * modules/sprintf-posix-tests (Files): Likewise.
5332         * modules/stat-tests (Files): Likewise.
5333         * modules/stat-time-tests (Files): Likewise.
5334         * modules/strcasestr-tests (Files): Likewise.
5335         * modules/strchrnul-tests (Files): Likewise.
5336         * modules/strerror-tests (Files): Likewise.
5337         * modules/striconv-tests (Files): Likewise.
5338         * modules/striconveh-tests (Files): Likewise.
5339         * modules/striconveha-tests (Files): Likewise.
5340         * modules/strsignal-tests (Files): Likewise.
5341         * modules/strstr-tests (Files): Likewise.
5342         * modules/strtod-tests (Files): Likewise.
5343         * modules/strverscmp-tests (Files): Likewise.
5344         * modules/symlink-tests (Files): Likewise.
5345         * modules/symlinkat-tests (Files): Likewise.
5346         * modules/trunc-tests (Files): Likewise.
5347         * modules/truncf-tests (Files): Likewise.
5348         * modules/truncl-tests (Files): Likewise.
5349         * modules/uname-tests (Files): Likewise.
5350         * modules/unicase/cased-tests (Files): Likewise.
5351         * modules/unicase/ignorable-tests (Files): Likewise.
5352         * modules/unicase/locale-language-tests (Files): Likewise.
5353         * modules/unicase/tolower-tests (Files): Likewise.
5354         * modules/unicase/totitle-tests (Files): Likewise.
5355         * modules/unicase/toupper-tests (Files): Likewise.
5356         * modules/unicase/u8-casecmp-tests (Files): Likewise.
5357         * modules/unicase/u8-casecoll-tests (Files): Likewise.
5358         * modules/unicase/u8-casefold-tests (Files): Likewise.
5359         * modules/unicase/u8-is-cased-tests (Files): Likewise.
5360         * modules/unicase/u8-is-casefolded-tests (Files): Likewise.
5361         * modules/unicase/u8-is-lowercase-tests (Files): Likewise.
5362         * modules/unicase/u8-is-titlecase-tests (Files): Likewise.
5363         * modules/unicase/u8-is-uppercase-tests (Files): Likewise.
5364         * modules/unicase/u8-tolower-tests (Files): Likewise.
5365         * modules/unicase/u8-totitle-tests (Files): Likewise.
5366         * modules/unicase/u8-toupper-tests (Files): Likewise.
5367         * modules/unicase/u16-casecmp-tests (Files): Likewise.
5368         * modules/unicase/u16-casecoll-tests (Files): Likewise.
5369         * modules/unicase/u16-casefold-tests (Files): Likewise.
5370         * modules/unicase/u16-is-cased-tests (Files): Likewise.
5371         * modules/unicase/u16-is-casefolded-tests (Files): Likewise.
5372         * modules/unicase/u16-is-lowercase-tests (Files): Likewise.
5373         * modules/unicase/u16-is-titlecase-tests (Files): Likewise.
5374         * modules/unicase/u16-is-uppercase-tests (Files): Likewise.
5375         * modules/unicase/u16-tolower-tests (Files): Likewise.
5376         * modules/unicase/u16-totitle-tests (Files): Likewise.
5377         * modules/unicase/u16-toupper-tests (Files): Likewise.
5378         * modules/unicase/u32-casecmp-tests (Files): Likewise.
5379         * modules/unicase/u32-casecoll-tests (Files): Likewise.
5380         * modules/unicase/u32-casefold-tests (Files): Likewise.
5381         * modules/unicase/u32-is-cased-tests (Files): Likewise.
5382         * modules/unicase/u32-is-casefolded-tests (Files): Likewise.
5383         * modules/unicase/u32-is-lowercase-tests (Files): Likewise.
5384         * modules/unicase/u32-is-titlecase-tests (Files): Likewise.
5385         * modules/unicase/u32-is-uppercase-tests (Files): Likewise.
5386         * modules/unicase/u32-tolower-tests (Files): Likewise.
5387         * modules/unicase/u32-totitle-tests (Files): Likewise.
5388         * modules/unicase/u32-toupper-tests (Files): Likewise.
5389         * modules/unicase/ulc-casecmp-tests (Files): Likewise.
5390         * modules/unicase/ulc-casecoll-tests (Files): Likewise.
5391         * modules/uniconv/u8-conv-from-enc-tests (Files): Likewise.
5392         * modules/uniconv/u8-conv-to-enc-tests (Files): Likewise.
5393         * modules/uniconv/u8-strconv-from-enc-tests (Files): Likewise.
5394         * modules/uniconv/u8-strconv-to-enc-tests (Files): Likewise.
5395         * modules/uniconv/u16-conv-from-enc-tests (Files): Likewise.
5396         * modules/uniconv/u16-conv-to-enc-tests (Files): Likewise.
5397         * modules/uniconv/u16-strconv-from-enc-tests (Files): Likewise.
5398         * modules/uniconv/u16-strconv-to-enc-tests (Files): Likewise.
5399         * modules/uniconv/u32-conv-from-enc-tests (Files): Likewise.
5400         * modules/uniconv/u32-conv-to-enc-tests (Files): Likewise.
5401         * modules/uniconv/u32-strconv-from-enc-tests (Files): Likewise.
5402         * modules/uniconv/u32-strconv-to-enc-tests (Files): Likewise.
5403         * modules/unictype/bidicategory-byname-tests (Files): Likewise.
5404         * modules/unictype/bidicategory-name-tests (Files): Likewise.
5405         * modules/unictype/bidicategory-of-tests (Files): Likewise.
5406         * modules/unictype/bidicategory-test-tests (Files): Likewise.
5407         * modules/unictype/block-list-tests (Files): Likewise.
5408         * modules/unictype/block-of-tests (Files): Likewise.
5409         * modules/unictype/block-test-tests (Files): Likewise.
5410         * modules/unictype/category-C-tests (Files): Likewise.
5411         * modules/unictype/category-Cc-tests (Files): Likewise.
5412         * modules/unictype/category-Cf-tests (Files): Likewise.
5413         * modules/unictype/category-Cn-tests (Files): Likewise.
5414         * modules/unictype/category-Co-tests (Files): Likewise.
5415         * modules/unictype/category-Cs-tests (Files): Likewise.
5416         * modules/unictype/category-L-tests (Files): Likewise.
5417         * modules/unictype/category-Ll-tests (Files): Likewise.
5418         * modules/unictype/category-Lm-tests (Files): Likewise.
5419         * modules/unictype/category-Lo-tests (Files): Likewise.
5420         * modules/unictype/category-Lt-tests (Files): Likewise.
5421         * modules/unictype/category-Lu-tests (Files): Likewise.
5422         * modules/unictype/category-M-tests (Files): Likewise.
5423         * modules/unictype/category-Mc-tests (Files): Likewise.
5424         * modules/unictype/category-Me-tests (Files): Likewise.
5425         * modules/unictype/category-Mn-tests (Files): Likewise.
5426         * modules/unictype/category-N-tests (Files): Likewise.
5427         * modules/unictype/category-Nd-tests (Files): Likewise.
5428         * modules/unictype/category-Nl-tests (Files): Likewise.
5429         * modules/unictype/category-No-tests (Files): Likewise.
5430         * modules/unictype/category-P-tests (Files): Likewise.
5431         * modules/unictype/category-Pc-tests (Files): Likewise.
5432         * modules/unictype/category-Pd-tests (Files): Likewise.
5433         * modules/unictype/category-Pe-tests (Files): Likewise.
5434         * modules/unictype/category-Pf-tests (Files): Likewise.
5435         * modules/unictype/category-Pi-tests (Files): Likewise.
5436         * modules/unictype/category-Po-tests (Files): Likewise.
5437         * modules/unictype/category-Ps-tests (Files): Likewise.
5438         * modules/unictype/category-S-tests (Files): Likewise.
5439         * modules/unictype/category-Sc-tests (Files): Likewise.
5440         * modules/unictype/category-Sk-tests (Files): Likewise.
5441         * modules/unictype/category-Sm-tests (Files): Likewise.
5442         * modules/unictype/category-So-tests (Files): Likewise.
5443         * modules/unictype/category-Z-tests (Files): Likewise.
5444         * modules/unictype/category-Zl-tests (Files): Likewise.
5445         * modules/unictype/category-Zp-tests (Files): Likewise.
5446         * modules/unictype/category-Zs-tests (Files): Likewise.
5447         * modules/unictype/category-and-not-tests (Files): Likewise.
5448         * modules/unictype/category-and-tests (Files): Likewise.
5449         * modules/unictype/category-byname-tests (Files): Likewise.
5450         * modules/unictype/category-name-tests (Files): Likewise.
5451         * modules/unictype/category-none-tests (Files): Likewise.
5452         * modules/unictype/category-of-tests (Files): Likewise.
5453         * modules/unictype/category-or-tests (Files): Likewise.
5454         * modules/unictype/category-test-withtable-tests (Files): Likewise.
5455         * modules/unictype/combining-class-tests (Files): Likewise.
5456         * modules/unictype/ctype-alnum-tests (Files): Likewise.
5457         * modules/unictype/ctype-alpha-tests (Files): Likewise.
5458         * modules/unictype/ctype-blank-tests (Files): Likewise.
5459         * modules/unictype/ctype-cntrl-tests (Files): Likewise.
5460         * modules/unictype/ctype-digit-tests (Files): Likewise.
5461         * modules/unictype/ctype-graph-tests (Files): Likewise.
5462         * modules/unictype/ctype-lower-tests (Files): Likewise.
5463         * modules/unictype/ctype-print-tests (Files): Likewise.
5464         * modules/unictype/ctype-punct-tests (Files): Likewise.
5465         * modules/unictype/ctype-space-tests (Files): Likewise.
5466         * modules/unictype/ctype-upper-tests (Files): Likewise.
5467         * modules/unictype/ctype-xdigit-tests (Files): Likewise.
5468         * modules/unictype/decimal-digit-tests (Files): Likewise.
5469         * modules/unictype/digit-tests (Files): Likewise.
5470         * modules/unictype/mirror-tests (Files): Likewise.
5471         * modules/unictype/numeric-tests (Files): Likewise.
5472         * modules/unictype/property-alphabetic-tests (Files): Likewise.
5473         * modules/unictype/property-ascii-hex-digit-tests (Files): Likewise.
5474         * modules/unictype/property-bidi-arabic-digit-tests (Files): Likewise.
5475         * modules/unictype/property-bidi-arabic-right-to-left-tests (Files):
5476         Likewise.
5477         * modules/unictype/property-bidi-block-separator-tests (Files):
5478         Likewise.
5479         * modules/unictype/property-bidi-boundary-neutral-tests (Files):
5480         Likewise.
5481         * modules/unictype/property-bidi-common-separator-tests (Files):
5482         Likewise.
5483         * modules/unictype/property-bidi-control-tests (Files): Likewise.
5484         * modules/unictype/property-bidi-embedding-or-override-tests (Files):
5485         Likewise.
5486         * modules/unictype/property-bidi-eur-num-separator-tests (Files):
5487         Likewise.
5488         * modules/unictype/property-bidi-eur-num-terminator-tests (Files):
5489         Likewise.
5490         * modules/unictype/property-bidi-european-digit-tests (Files): Likewise.
5491         * modules/unictype/property-bidi-hebrew-right-to-left-tests (Files):
5492         Likewise.
5493         * modules/unictype/property-bidi-left-to-right-tests (Files): Likewise.
5494         * modules/unictype/property-bidi-non-spacing-mark-tests (Files):
5495         Likewise.
5496         * modules/unictype/property-bidi-other-neutral-tests (Files): Likewise.
5497         * modules/unictype/property-bidi-pdf-tests (Files): Likewise.
5498         * modules/unictype/property-bidi-segment-separator-tests (Files):
5499         Likewise.
5500         * modules/unictype/property-bidi-whitespace-tests (Files): Likewise.
5501         * modules/unictype/property-byname-tests (Files): Likewise.
5502         * modules/unictype/property-combining-tests (Files): Likewise.
5503         * modules/unictype/property-composite-tests (Files): Likewise.
5504         * modules/unictype/property-currency-symbol-tests (Files): Likewise.
5505         * modules/unictype/property-dash-tests (Files): Likewise.
5506         * modules/unictype/property-decimal-digit-tests (Files): Likewise.
5507         * modules/unictype/property-default-ignorable-code-point-tests (Files):
5508         Likewise.
5509         * modules/unictype/property-deprecated-tests (Files): Likewise.
5510         * modules/unictype/property-diacritic-tests (Files): Likewise.
5511         * modules/unictype/property-extender-tests (Files): Likewise.
5512         * modules/unictype/property-format-control-tests (Files): Likewise.
5513         * modules/unictype/property-grapheme-base-tests (Files): Likewise.
5514         * modules/unictype/property-grapheme-extend-tests (Files): Likewise.
5515         * modules/unictype/property-grapheme-link-tests (Files): Likewise.
5516         * modules/unictype/property-hex-digit-tests (Files): Likewise.
5517         * modules/unictype/property-hyphen-tests (Files): Likewise.
5518         * modules/unictype/property-id-continue-tests (Files): Likewise.
5519         * modules/unictype/property-id-start-tests (Files): Likewise.
5520         * modules/unictype/property-ideographic-tests (Files): Likewise.
5521         * modules/unictype/property-ids-binary-operator-tests (Files): Likewise.
5522         * modules/unictype/property-ids-trinary-operator-tests (Files):
5523         Likewise.
5524         * modules/unictype/property-ignorable-control-tests (Files): Likewise.
5525         * modules/unictype/property-iso-control-tests (Files): Likewise.
5526         * modules/unictype/property-join-control-tests (Files): Likewise.
5527         * modules/unictype/property-left-of-pair-tests (Files): Likewise.
5528         * modules/unictype/property-line-separator-tests (Files): Likewise.
5529         * modules/unictype/property-logical-order-exception-tests (Files):
5530         Likewise.
5531         * modules/unictype/property-lowercase-tests (Files): Likewise.
5532         * modules/unictype/property-math-tests (Files): Likewise.
5533         * modules/unictype/property-non-break-tests (Files): Likewise.
5534         * modules/unictype/property-not-a-character-tests (Files): Likewise.
5535         * modules/unictype/property-numeric-tests (Files): Likewise.
5536         * modules/unictype/property-other-alphabetic-tests (Files): Likewise.
5537         * modules/unictype/property-other-default-ignorable-code-point-tests
5538         (Files): Likewise.
5539         * modules/unictype/property-other-grapheme-extend-tests (Files):
5540         Likewise.
5541         * modules/unictype/property-other-id-continue-tests (Files): Likewise.
5542         * modules/unictype/property-other-id-start-tests (Files): Likewise.
5543         * modules/unictype/property-other-lowercase-tests (Files): Likewise.
5544         * modules/unictype/property-other-math-tests (Files): Likewise.
5545         * modules/unictype/property-other-uppercase-tests (Files): Likewise.
5546         * modules/unictype/property-paired-punctuation-tests (Files): Likewise.
5547         * modules/unictype/property-paragraph-separator-tests (Files): Likewise.
5548         * modules/unictype/property-pattern-syntax-tests (Files): Likewise.
5549         * modules/unictype/property-pattern-white-space-tests (Files): Likewise.
5550         * modules/unictype/property-private-use-tests (Files): Likewise.
5551         * modules/unictype/property-punctuation-tests (Files): Likewise.
5552         * modules/unictype/property-quotation-mark-tests (Files): Likewise.
5553         * modules/unictype/property-radical-tests (Files): Likewise.
5554         * modules/unictype/property-sentence-terminal-tests (Files): Likewise.
5555         * modules/unictype/property-soft-dotted-tests (Files): Likewise.
5556         * modules/unictype/property-space-tests (Files): Likewise.
5557         * modules/unictype/property-terminal-punctuation-tests (Files):
5558         Likewise.
5559         * modules/unictype/property-test-tests (Files): Likewise.
5560         * modules/unictype/property-titlecase-tests (Files): Likewise.
5561         * modules/unictype/property-unassigned-code-value-tests (Files):
5562         Likewise.
5563         * modules/unictype/property-unified-ideograph-tests (Files): Likewise.
5564         * modules/unictype/property-uppercase-tests (Files): Likewise.
5565         * modules/unictype/property-variation-selector-tests (Files): Likewise.
5566         * modules/unictype/property-white-space-tests (Files): Likewise.
5567         * modules/unictype/property-xid-continue-tests (Files): Likewise.
5568         * modules/unictype/property-xid-start-tests (Files): Likewise.
5569         * modules/unictype/property-zero-width-tests (Files): Likewise.
5570         * modules/unictype/scripts-tests (Files): Likewise.
5571         * modules/unictype/syntax-c-ident-tests (Files): Likewise.
5572         * modules/unictype/syntax-c-whitespace-tests (Files): Likewise.
5573         * modules/unictype/syntax-java-ident-tests (Files): Likewise.
5574         * modules/unictype/syntax-java-whitespace-tests (Files): Likewise.
5575         * modules/unilbrk/u8-possible-linebreaks-tests (Files): Likewise.
5576         * modules/unilbrk/u8-width-linebreaks-tests (Files): Likewise.
5577         * modules/unilbrk/u16-possible-linebreaks-tests (Files): Likewise.
5578         * modules/unilbrk/u16-width-linebreaks-tests (Files): Likewise.
5579         * modules/unilbrk/u32-possible-linebreaks-tests (Files): Likewise.
5580         * modules/unilbrk/u32-width-linebreaks-tests (Files): Likewise.
5581         * modules/unilbrk/ulc-possible-linebreaks-tests (Files): Likewise.
5582         * modules/unilbrk/ulc-width-linebreaks-tests (Files): Likewise.
5583         * modules/uninorm/canonical-decomposition-tests (Files): Likewise.
5584         * modules/uninorm/compat-decomposition-tests (Files): Likewise.
5585         * modules/uninorm/composition-tests (Files): Likewise.
5586         * modules/uninorm/decomposing-form-tests (Files): Likewise.
5587         * modules/uninorm/decomposition-tests (Files): Likewise.
5588         * modules/uninorm/filter-tests (Files): Likewise.
5589         * modules/uninorm/nfc-tests (Files): Likewise.
5590         * modules/uninorm/nfd-tests (Files): Likewise.
5591         * modules/uninorm/nfkc-tests (Files): Likewise.
5592         * modules/uninorm/nfkd-tests (Files): Likewise.
5593         * modules/uninorm/u8-normcmp-tests (Files): Likewise.
5594         * modules/uninorm/u8-normcoll-tests (Files): Likewise.
5595         * modules/uninorm/u16-normcmp-tests (Files): Likewise.
5596         * modules/uninorm/u16-normcoll-tests (Files): Likewise.
5597         * modules/uninorm/u32-normcmp-tests (Files): Likewise.
5598         * modules/uninorm/u32-normcoll-tests (Files): Likewise.
5599         * modules/unistdio/u8-asnprintf-tests (Files): Likewise.
5600         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
5601         * modules/unistdio/u8-vasprintf-tests (Files): Likewise.
5602         * modules/unistdio/u8-vsnprintf-tests (Files): Likewise.
5603         * modules/unistdio/u8-vsprintf-tests (Files): Likewise.
5604         * modules/unistdio/u16-asnprintf-tests (Files): Likewise.
5605         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
5606         * modules/unistdio/u16-vasprintf-tests (Files): Likewise.
5607         * modules/unistdio/u16-vsnprintf-tests (Files): Likewise.
5608         * modules/unistdio/u16-vsprintf-tests (Files): Likewise.
5609         * modules/unistdio/u32-asnprintf-tests (Files): Likewise.
5610         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
5611         * modules/unistdio/u32-vasprintf-tests (Files): Likewise.
5612         * modules/unistdio/u32-vsnprintf-tests (Files): Likewise.
5613         * modules/unistdio/u32-vsprintf-tests (Files): Likewise.
5614         * modules/unistdio/ulc-asnprintf-tests (Files): Likewise.
5615         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
5616         * modules/unistdio/ulc-vasprintf-tests (Files): Likewise.
5617         * modules/unistdio/ulc-vsnprintf-tests (Files): Likewise.
5618         * modules/unistdio/ulc-vsprintf-tests (Files): Likewise.
5619         * modules/uniwbrk/u8-wordbreaks-tests (Files): Likewise.
5620         * modules/uniwbrk/u16-wordbreaks-tests (Files): Likewise.
5621         * modules/uniwbrk/u32-wordbreaks-tests (Files): Likewise.
5622         * modules/uniwbrk/ulc-wordbreaks-tests (Files): Likewise.
5623         * modules/uniwidth/u8-strwidth-tests (Files): Likewise.
5624         * modules/uniwidth/u8-width-tests (Files): Likewise.
5625         * modules/uniwidth/u16-strwidth-tests (Files): Likewise.
5626         * modules/uniwidth/u16-width-tests (Files): Likewise.
5627         * modules/uniwidth/u32-strwidth-tests (Files): Likewise.
5628         * modules/uniwidth/u32-width-tests (Files): Likewise.
5629         * modules/uniwidth/width-tests (Files): Likewise.
5630         * modules/unlink-tests (Files): Likewise.
5631         * modules/unsetenv-tests (Files): Likewise.
5632         * modules/usleep-tests (Files): Likewise.
5633         * modules/utimens-tests (Files): Likewise.
5634         * modules/utimensat-tests (Files): Likewise.
5635         * modules/vasnprintf-posix-tests (Files): Likewise.
5636         * modules/vasnprintf-tests (Files): Likewise.
5637         * modules/vasprintf-posix-tests (Files): Likewise.
5638         * modules/vasprintf-tests (Files): Likewise.
5639         * modules/vdprintf-posix-tests (Files): Likewise.
5640         * modules/vfprintf-posix-tests (Files): Likewise.
5641         * modules/vprintf-posix-tests (Files): Likewise.
5642         * modules/vsnprintf-posix-tests (Files): Likewise.
5643         * modules/vsnprintf-tests (Files): Likewise.
5644         * modules/vsprintf-posix-tests (Files): Likewise.
5645         * modules/wcrtomb-tests (Files): Likewise.
5646         * modules/wcsnrtombs-tests (Files): Likewise.
5647         * modules/wcsrtombs-tests (Files): Likewise.
5648         * modules/wctype-tests (Files): Likewise.
5649         * modules/wcwidth-tests (Files): Likewise.
5650         * modules/xmemdup0-tests (Files): Likewise.
5651         * modules/xprintf-posix-tests (Files): Likewise.
5652         * modules/xvasprintf-tests (Files): Likewise.
5653
5654 2009-12-24  Eric Blake  <ebb9@byu.net>
5655
5656         test-nanosleep: fix typo
5657         * tests/test-nanosleep.c (SIGNATURE_CHECK): Fix typo in previous
5658         patch.
5659         Reported by Bruno Haible.
5660
5661 2009-12-24  Bruno Haible  <bruno@clisp.org>
5662
5663         Reduce namespace pollution on glibc systems.
5664         * lib/inttypes.in.h: Don't include <stdint.h> on glibc systems.
5665         * lib/stdlib.in.h: Don't include <stdint.h>, <unistd.h> on glibc
5666         systems.
5667         * lib/unistd.in.h: Don't include <stdio.h>, <fcntl.h>, <stdlib.h>,
5668         <getopt.h> on glibc systems.
5669         * lib/fcntl.in.h: Don't include <sys/stat.h>, <unistd.h> on glibc
5670         systems.
5671         * lib/fcntl.c: Include <unistd.h> here instead.
5672
5673 2009-12-24  Bruno Haible  <bruno@clisp.org>
5674
5675         * lib/stdlib.in.h (includes): Fix typo in today's commit.
5676
5677 2009-12-24  Eric Blake  <ebb9@byu.net>
5678
5679         tests: add signature checks
5680         * tests/signature.h (SIGNATURE_CHECK): New file.
5681         * modules/atexit-tests (Files): Use it.
5682         * modules/btowc-tests (Files): Likewise.
5683         * modules/canonicalize-lgpl-tests (Files): Likewise.
5684         * modules/ceilf-tests (Files): Likewise.
5685         * modules/ceill-tests (Files): Likewise.
5686         * modules/chown-tests (Files): Likewise.
5687         * modules/dprintf-posix-tests (Files): Likewise.
5688         * modules/dup2-tests (Files): Likewise.
5689         * modules/dup3-tests (Files): Likewise.
5690         * modules/duplocale-tests (Files): Likewise.
5691         * modules/fchdir-tests (Files): Likewise.
5692         * modules/fcntl-tests (Files): Likewise.
5693         * modules/fdopendir-tests (Files): Likewise.
5694         * modules/fflush-tests (Files): Likewise.
5695         * modules/flock-tests (Files): Likewise.
5696         * modules/floorf-tests (Files): Likewise.
5697         * modules/floorl-tests (Files): Likewise.
5698         * modules/fnmatch-tests (Files): Likewise.
5699         * modules/fopen-tests (Files): Likewise.
5700         * modules/fprintf-posix-tests (Files): Likewise.
5701         * modules/freopen-tests (Files): Likewise.
5702         * modules/frexp-nolibm-tests (Files): Likewise.
5703         * modules/frexp-tests (Files): Likewise.
5704         * modules/frexpl-nolibm-tests (Files): Likewise.
5705         * modules/frexpl-tests (Files): Likewise.
5706         * modules/fseek-tests (Files): Likewise.
5707         * modules/fseeko-tests (Files): Likewise.
5708         * modules/fsync-tests (Files): Likewise.
5709         * modules/ftell-tests (Files): Likewise.
5710         * modules/ftello-tests (Files): Likewise.
5711         * modules/futimens-tests (Files): Likewise.
5712         * modules/getaddrinfo-tests (Files): Likewise.
5713         * modules/getcwd-tests (Files): Likewise.
5714         * modules/getdelim-tests (Files): Likewise.
5715         * modules/getdtablesize-tests (Files): Likewise.
5716         * modules/getgroups-tests (Files): Likewise.
5717         * modules/gethostname-tests (Files): Likewise.
5718         * modules/getline-tests (Files): Likewise.
5719         * modules/getopt-posix-tests (Files): Likewise.
5720         * modules/gettimeofday-tests (Files): Likewise.
5721         * modules/glob-tests (Files): Likewise.
5722         * modules/iconv-tests (Files): Likewise.
5723         * modules/inet_ntop-tests (Files): Likewise.
5724         * modules/inet_pton-tests (Files): Likewise.
5725         * modules/isblank-tests (Files): Likewise.
5726         * modules/lchown-tests (Files): Likewise.
5727         * modules/ldexpl-tests (Files): Likewise.
5728         * modules/link-tests (Files): Likewise.
5729         * modules/linkat-tests (Files): Likewise.
5730         * modules/lseek-tests (Files): Likewise.
5731         * modules/lstat-tests (Files): Likewise.
5732         * modules/mbrtowc-tests (Files): Likewise.
5733         * modules/mbsinit-tests (Files): Likewise.
5734         * modules/mbsnrtowcs-tests (Files): Likewise.
5735         * modules/mbsrtowcs-tests (Files): Likewise.
5736         * modules/memchr-tests (Files): Likewise.
5737         * modules/memcmp-tests (Files): Likewise.
5738         * modules/memmem-tests (Files): Likewise.
5739         * modules/memrchr-tests (Files): Likewise.
5740         * modules/mkdir-tests (Files): Likewise.
5741         * modules/mkfifo-tests (Files): Likewise.
5742         * modules/mkfifoat-tests (Files): Likewise.
5743         * modules/mknod-tests (Files): Likewise.
5744         * modules/nanosleep-tests (Files): Likewise.
5745         * modules/nl_langinfo-tests (Files): Likewise.
5746         * modules/obstack-printf-tests (Files): Likewise.
5747         * modules/open-tests (Files): Likewise.
5748         * modules/openat-tests (Files): Likewise.
5749         * modules/perror-tests (Files): Likewise.
5750         * modules/pipe2-tests (Files): Likewise.
5751         * modules/poll-tests (Files): Likewise.
5752         * modules/popen-tests (Files): Likewise.
5753         * modules/posix_spawn-tests (Files): Likewise.
5754         * modules/posix_spawnp-tests (Files): Likewise.
5755         * modules/pread-tests (Files): Likewise.
5756         * modules/printf-posix-tests (Files): Likewise.
5757         * modules/pty-tests (Files): Likewise.
5758         * modules/random_r-tests (Files): Likewise.
5759         * modules/rawmemchr-tests (Files): Likewise.
5760         * modules/readlink-tests (Files): Likewise.
5761         * modules/remove-tests (Files): Likewise.
5762         * modules/rename-tests (Files): Likewise.
5763         * modules/renameat-tests (Files): Likewise.
5764         * modules/rmdir-tests (Files): Likewise.
5765         * modules/round-tests (Files): Likewise.
5766         * modules/roundf-tests (Files): Likewise.
5767         * modules/roundl-tests (Files): Likewise.
5768         * modules/select-tests (Files): Likewise.
5769         * modules/setenv-tests (Files): Likewise.
5770         * modules/sigaction-tests (Files): Likewise.
5771         * modules/sleep-tests (Files): Likewise.
5772         * modules/snprintf-posix-tests (Files): Likewise.
5773         * modules/snprintf-tests (Files): Likewise.
5774         * modules/sprintf-posix-tests (Files): Likewise.
5775         * modules/stat-tests (Files): Likewise.
5776         * modules/strcasestr-tests (Files): Likewise.
5777         * modules/strchrnul-tests (Files): Likewise.
5778         * modules/strerror-tests (Files): Likewise.
5779         * modules/strsignal-tests (Files): Likewise.
5780         * modules/strstr-tests (Files): Likewise.
5781         * modules/strtod-tests (Files): Likewise.
5782         * modules/strverscmp-tests (Files): Likewise.
5783         * modules/symlink-tests (Files): Likewise.
5784         * modules/symlinkat-tests (Files): Likewise.
5785         * modules/times-tests (Files): Likewise.
5786         * modules/trunc-tests (Files): Likewise.
5787         * modules/truncf-tests (Files): Likewise.
5788         * modules/truncl-tests (Files): Likewise.
5789         * modules/tsearch-tests (Files): Likewise.
5790         * modules/uname-tests (Files): Likewise.
5791         * modules/unlink-tests (Files): Likewise.
5792         * modules/unsetenv-tests (Files): Likewise.
5793         * modules/usleep-tests (Files): Likewise.
5794         * modules/utimensat-tests (Files): Likewise.
5795         * modules/vasprintf-tests (Files): Likewise.
5796         * modules/vdprintf-posix-tests (Files): Likewise.
5797         * modules/vfprintf-posix-tests (Files): Likewise.
5798         * modules/vprintf-posix-tests (Files): Likewise.
5799         * modules/vsnprintf-posix-tests (Files): Likewise.
5800         * modules/vsnprintf-tests (Files): Likewise.
5801         * modules/vsprintf-posix-tests (Files): Likewise.
5802         * modules/wcrtomb-tests (Files): Likewise.
5803         * modules/wcsnrtombs-tests (Files): Likewise.
5804         * modules/wcsrtombs-tests (Files): Likewise.
5805         * modules/wcwidth-tests (Files): Likewise.
5806         * tests/test-isfinite.c (isfinite): Ensure macro declaration.
5807         * tests/test-isinf.c (isinf): Likewise.
5808         * tests/test-isnan.c (isnan): Likewise.
5809         * tests/test-signbit.c (signbit): Likewise.
5810         * tests/test-select.c (FD_CLR, FD_ISSET, FD_SET, FD_ZERO): Ensure
5811         declaration, either as macro or with correct signature.
5812         (select): Ensure function under test is declared with correct
5813         signature in correct header.
5814         * tests/test-atexit.c (atexit): Likewise.
5815         * tests/test-btowc.c (btowc): Likewise.
5816         * tests/test-canonicalize-lgpl.c (realpath)
5817         (canonicalize_file_name): Likewise.
5818         * tests/test-ceilf1.c (ceilf): Likewise.
5819         * tests/test-ceill.c (ceill): Likewise.
5820         * tests/test-chown.c (chown): Likewise.
5821         * tests/test-dprintf-posix.c (dprintf): Likewise.
5822         * tests/test-dup2.c (dup2): Likewise.
5823         * tests/test-dup3.c (dup3): Likewise.
5824         * tests/test-duplocale.c (duplocale): Likewise.
5825         * tests/test-fchdir.c (fchdir): Likewise.
5826         * tests/test-fchownat.c (fchownat): Likewise.
5827         * tests/test-fcntl.c (fcntl): Likewise.
5828         * tests/test-fdopendir.c (fdopendir): Likewise.
5829         * tests/test-fflush.c (fflush): Likewise.
5830         * tests/test-flock.c (flock): Likewise.
5831         * tests/test-floorf1.c (floorf): Likewise.
5832         * tests/test-floorl.c (floorl): Likewise.
5833         * tests/test-fnmatch.c (fnmatch): Likewise.
5834         * tests/test-fopen.c (fopen): Likewise.
5835         * tests/test-fprintf-posix.c (fprintf): Likewise.
5836         * tests/test-freopen.c (freopen): Likewise.
5837         * tests/test-frexp.c (frexp): Likewise.
5838         * tests/test-frexpl.c (frexpl): Likewise.
5839         * tests/test-fseek.c (fseek): Likewise.
5840         * tests/test-fseeko.c (fseeko): Likewise.
5841         * tests/test-fstatat.c (fstatat): Likewise.
5842         * tests/test-fsync.c (fsync): Likewise.
5843         * tests/test-ftell.c (ftell): Likewise.
5844         * tests/test-ftello.c (ftello): Likewise.
5845         * tests/test-futimens.c (futimens): Likewise.
5846         * tests/test-getaddrinfo.c (getaddrinfo, freeaddrinfo)
5847         (gai_strerror): Likewise.
5848         * tests/test-getcwd.c (getcwd): Likewise.
5849         * tests/test-getdelim.c (getdelim): Likewise.
5850         * tests/test-getdtablesize.c (getdtablesize): Likewise.
5851         * tests/test-getgroups.c (getgroups): Likewise.
5852         * tests/test-gethostname.c (gethostname): Likewise.
5853         * tests/test-getline.c (getline): Likewise.
5854         * tests/test-getopt.c (getopt, getopt_long, getopt_long_only):
5855         Likewise.
5856         * tests/test-gettimeofday.c (gettimeofday): Likewise.
5857         * tests/test-glob.c (glob, globfree): Likewise.
5858         * tests/test-iconv.c (iconv, iconv_open, iconv_close): Likewise.
5859         * tests/test-inet_ntop.c (inet_ntop): Likewise.
5860         * tests/test-inet_pton.c (inet_pton): Likewise.
5861         * tests/test-isblank.c (isblank): Likewise.
5862         * tests/test-lchown.c (lchown): Likewise.
5863         * tests/test-ldexpl.c (ldexpl): Likewise.
5864         * tests/test-link.c (link): Likewise.
5865         * tests/test-linkat.c (linkat): Likewise.
5866         * tests/test-lseek.c (lseek): Likewise.
5867         * tests/test-lstat.c (lstat): Likewise.
5868         * tests/test-mbrtowc.c (mbrtowc): Likewise.
5869         * tests/test-mbsinit.c (mbsinit): Likewise.
5870         * tests/test-mbsnrtowcs.c (mbsnrtowcs): Likewise.
5871         * tests/test-mbsrtowcs.c (mbsrtowcs): Likewise.
5872         * tests/test-memchr.c (memchr): Likewise.
5873         * tests/test-memcmp.c (memcmp): Likewise.
5874         * tests/test-memmem.c (memmem): Likewise.
5875         * tests/test-memrchr.c (memrchr): Likewise.
5876         * tests/test-mkdir.c (mkdir): Likewise.
5877         * tests/test-mkdirat.c (mkdirat): Likewise.
5878         * tests/test-mkfifo.c (mkfifo): Likewise.
5879         * tests/test-mkfifoat.c (mkfifoat, mknodat): Likewise.
5880         * tests/test-mknod.c (mknod): Likewise.
5881         * tests/test-nanosleep.c (nanosleep): Likewise.
5882         * tests/test-nl_langinfo.c (nl_langinfo): Likewise.
5883         * tests/test-obstack-printf.c (obstack_printf, obstack_vprintf):
5884         Likewise.
5885         * tests/test-open.c (open): Likewise.
5886         * tests/test-openat.c (openat): Likewise.
5887         * tests/test-perror.c (perror): Likewise.
5888         * tests/test-pipe2.c (pipe2): Likewise.
5889         * tests/test-poll.c (poll): Likewise.
5890         * tests/test-popen.c (popen, pclose): Likewise.
5891         * tests/test-posix_spawn1.c (posix_spawnp, posix_spawnattr_init)
5892         (posix_spawnattr_destroy, posix_spawnattr_setsigmask)
5893         (posix_spawnattr_setflags, posix_spawn_file_actions_init)
5894         (posix_spawn_file_actions_destroy)
5895         (posix_spawn_file_actions_addclose)
5896         (posix_spawn_file_actions_addopen)
5897         (posix_spawn_file_actions_adddup2): Likewise.
5898         * tests/test-posix_spawn3.c (posix_spawn): Likewise.
5899         * tests/test-pread.c (pread): Likewise.
5900         * tests/test-printf-posix.c (printf): Likewise.
5901         * tests/test-pty.c (openpty, forkpty): Likewise.
5902         * tests/test-random_r.c (srandom_r, initstate_r, setstate_r)
5903         (random_r): Likewise.
5904         * tests/test-rawmemchr.c (rawmemchr): Likewise.
5905         * tests/test-readlink.c (readlink): Likewise.
5906         * tests/test-remove.c (remove): Likewise.
5907         * tests/test-rename.c (rename): Likewise.
5908         * tests/test-renameat.c (renameat): Likewise.
5909         * tests/test-rmdir.c (rmdir): Likewise.
5910         * tests/test-round1.c (round): Likewise.
5911         * tests/test-roundf1.c (roundf): Likewise.
5912         * tests/test-roundl.c (roundl): Likewise.
5913         * tests/test-setenv.c (setenv): Likewise.
5914         * tests/test-sigaction.c (sigaction): Likewise.
5915         * tests/test-sleep.c (sleep): Likewise.
5916         * tests/test-snprintf.c (snprintf): Likewise.
5917         * tests/test-sprintf-posix.c (sprintf): Likewise.
5918         * tests/test-stat.c (stat): Likewise.
5919         * tests/test-stpncpy.c (stpncpy): Likewise.
5920         * tests/test-strcasestr.c (strcasestr): Likewise.
5921         * tests/test-strchrnul.c (strchrnul): Likewise.
5922         * tests/test-strerror.c (strerror): Likewise.
5923         * tests/test-strsignal.c (strsignal): Likewise.
5924         * tests/test-strstr.c (strstr): Likewise.
5925         * tests/test-strtod.c (strtod): Likewise.
5926         * tests/test-strverscmp.c (strverscmp): Likewise.
5927         * tests/test-symlink.c (symlink): Likewise.
5928         * tests/test-symlinkat.c (symlinkat, readlinkat): Likewise.
5929         * tests/test-times.c (times): Likewise.
5930         * tests/test-trunc1.c (trunc): Likewise.
5931         * tests/test-truncf1.c (truncf): Likewise.
5932         * tests/test-truncl.c (truncl): Likewise.
5933         * tests/test-tsearch.c (tdelete, tfind, tsearch, twalk):
5934         Likewise.
5935         * tests/test-uname.c (uname): Likewise.
5936         * tests/test-unlink.c (unlink): Likewise.
5937         * tests/test-unlinkat.c (unlinkat): Likewise.
5938         * tests/test-unsetenv.c (unsetenv): Likewise.
5939         * tests/test-usleep.c (usleep): Likewise.
5940         * tests/test-utimensat.c (utimensat): Likewise.
5941         * tests/test-vasprintf.c (asprintf, vasprintf): Likewise.
5942         * tests/test-vdprintf-posix.c (vdprintf): Likewise.
5943         * tests/test-vfprintf-posix.c (vfprintf): Likewise.
5944         * tests/test-vprintf-posix.c (vprintf): Likewise.
5945         * tests/test-vsnprintf.c (vsnprintf): Likewise.
5946         * tests/test-vsprintf-posix.c (vsprintf): Likewise.
5947         * tests/test-wcrtomb.c (wcrtomb): Likewise.
5948         * tests/test-wcsnrtombs.c (wcsnrtombs): Likewise.
5949         * tests/test-wcsrtombs.c (wcsrtombs): Likewise.
5950         * tests/test-wcwidth.c (wcwidth): Likewise.
5951
5952         build: pull in conditional headers during GNULIB_POSIXCHECK
5953         * lib/stdio.in.h (includes): Using GNULIB_POSIXCHECK also requires
5954         definitions from any conditionally-included headers.
5955         * lib/stdlib.in.h (includes): Likewise.
5956         * lib/unistd.in.h (includes): Likewise.
5957
5958 2009-12-24  Bruno Haible  <bruno@clisp.org>
5959
5960         * tests/test-argv-iter.c: Include header file being tested immediately
5961         after config.h.
5962         * tests/test-base64.c: Likewise.
5963         * tests/test-flock.c: Likewise.
5964         * tests/test-fsync.c: Likewise.
5965         * tests/test-getdate.c: Likewise.
5966         * tests/test-getndelim2.c: Likewise.
5967         * tests/test-isfinite.c: Likewise.
5968         * tests/test-isinf.c: Likewise.
5969         * tests/test-strerror.c: Likewise.
5970         * tests/test-strsignal.c: Likewise.
5971
5972 2009-12-23  Eric Blake  <ebb9@byu.net>
5973
5974         unistd: work around cygwin bug
5975         * lib/unistd.in.h (includes): Pick up headers needed for cygwin.
5976         * doc/posix-functions/unlinkat.texi (unlinkat): Document the bug.
5977         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
5978
5979 2009-12-23  Bruno Haible  <bruno@clisp.org>
5980
5981         localename: More tests.
5982         * tests/test-localename.c (SIZEOF): New macro.
5983         (categories): New variable.
5984         (test_locale_name, test_locale_name_posix, test_locale_name_environ,
5985         test_locale_name_default): Add test w.r.t. thread locale.
5986         (test_locale_name_thread): New function.
5987         (main): Invoke it.
5988
5989         localename: Make aware of thread locale.
5990         * lib/localename.h (gl_locale_name_thread): New declaration.
5991         (gl_locale_name, gl_locale_name_posix, gl_locale_name_default): Clarify
5992         behaviour with respect to thread locale.
5993         * lib/localename.c: Include <limits.h>, <stddef.h>, <xlocale.h>,
5994         <langinfo.h>, glthread/lock.h.
5995         (SIZE_BITS): New macro.
5996         (string_hash): New function.
5997         (struct hash_node): New type.
5998         (HASH_TABLE_SIZE): New macro.
5999         (struniq_hash_table, struniq_lock): New variables.
6000         (struniq): New function.
6001         (gl_locale_name_thread): New function.
6002         (gl_locale_name): Invoke it.
6003         * m4/localename.m4 (gl_LOCALENAME): Test for uselocale function.
6004         * modules/localename (Depends-on): Add lock.
6005         Reported by Mike Gran <spk121@yahoo.com>.
6006
6007 2009-12-23  Eric Blake  <ebb9@byu.net>
6008
6009         va-args: new module
6010         * modules/va-args: New file.
6011         * m4/va-args.m4 (gl_VA_ARGS): Likewise.
6012         * MODULES.html.sh (Core language properties): Mention it.
6013
6014         gnulib-common: prefer _GL_UNUSED over _UNUSED_PARAMETER_
6015         * m4/gnulib-common.m4 (gl_COMMON): Create a more-appropriately
6016         named alias for __attribute__((__unused__)).
6017         * lib/chown.c: Update client.
6018         * lib/fchmodat.c: Likewise.
6019         * lib/fts.c: Likewise.
6020         * lib/getdate.y: Likewise.
6021         * lib/getgroups.c: Likewise.
6022         * lib/getopt.c: Likewise.
6023         * lib/getugroups.c: Likewise.
6024         * lib/mkdir.c: Likewise.
6025         * lib/mkfifo.c: Likewise.
6026         * lib/mkfifoat.c: Likewise.
6027         * lib/mknod.c: Likewise.
6028         * lib/mknodat.c: Likewise.
6029         * lib/readlink.c: Likewise.
6030         * lib/se-context.in.h: Likewise.
6031         * lib/se-selinux.in.h: Likewise.
6032         * lib/sockets.c: Likewise.
6033         * lib/symlink.c: Likewise.
6034         * lib/symlinkat.c: Likewise.
6035         * lib/unicodeio.c: Likewise.
6036         * lib/unistr.h: Likewise.
6037         * tests/test-areadlink.c: Likewise.
6038         * tests/test-areadlinkat.c: Likewise.
6039         * tests/test-filenamecat.c: Likewise.
6040         * tests/test-fseeko.c: Likewise.
6041         * tests/test-ftello.c: Likewise.
6042         * tests/test-getdate.c: Likewise.
6043         * tests/test-getgroups.c: Likewise.
6044         * tests/test-gethostname.c: Likewise.
6045         * tests/test-quotearg.c: Likewise.
6046         * tests/test-version-etc.c: Likewise.
6047         * tests/test-xalloc-die.c: Likewise.
6048         * tests/test-xfprintf-posix.c: Likewise.
6049         * tests/test-xprintf-posix.c: Likewise.
6050         * tests/test-xvasprintf.c: Likewise.
6051
6052         tests: avoid compiler warnings
6053         * tests/test-fcntl.c (main): Delete unused parameters.
6054         * tests/test-freopen-safer.c (main): Likewise.
6055         * tests/test-xalloc-die.c (main): Mark unused parameters.
6056         * tests/test-fseeko.c (main): Likewise.
6057         * tests/test-ftello.c (main): Likewise.
6058         * tests/test-nanosleep.c (main): Avoid declaration warning.
6059         * tests/test-sleep.c (main): Likewise.
6060         * tests/test-unsetenv.c (main): Silence warning about string
6061         literal.
6062         * m4/setenv.m4 (gl_FUNC_UNSETENV): Likewise.
6063
6064 2009-12-23  Bruno Haible  <bruno@clisp.org>
6065
6066         * tests/test-localename.c (test_locale_name): New function, extracted
6067         from main. Also test mixed situations.
6068         (test_locale_name_posix, test_locale_name_environ,
6069         test_locale_name_default): New functions.
6070         (main): Invoke them all.
6071         * modules/localename-tests (configure.ac): Test for newlocale.
6072
6073 2009-12-23  Bruno Haible  <bruno@clisp.org>
6074
6075         unistd: Ensure getcwd gets declared before being overridden.
6076         * lib/unistd.in.h: Conditionally include <io.h>.
6077
6078 2009-12-22  Bruno Haible  <bruno@clisp.org>
6079
6080         wchar: Diagnose broken combination of glibc and gcc versions and flags.
6081         * m4/wchar.m4 (gl_WCHAR_H_INLINE_OK): New macro.
6082         (gl_WCHAR_H): Invoke it.
6083         * m4/btowc.m4 (gl_FUNC_BTOWC): Require it.
6084         * doc/posix-headers/wchar.texi: Mention the interoperability problem.
6085         Reported by Karl Berry <karl@freefriends.org>.
6086
6087 2009-12-22  Eric Blake  <ebb9@byu.net>
6088
6089         math, unistd: avoid redundant includes
6090         * lib/math.in.h (isnan): No need to re-include <math.h>.
6091         * lib/unistd.in.h (getcwd): Likewise, for <stdlib.h>.
6092
6093         getsubopt: work around cygwin bug
6094         * lib/stdlib.in.h (includes): Move unistd inclusion sooner, to
6095         avoid conflicting with system getsubopt.
6096         * doc/posix-functions/getsubopt.texi (getsubopt): Document the
6097         bug.
6098
6099         getopt: synchronize from glibc
6100         * lib/getopt.c (_getopt_initialize, _getopt_internal_r): Swap
6101         parameter order.  Adjust all callers.
6102         (_getopt_internal_r, main): Adjust quoting in error messages.
6103         Drop considerations for outdated POSIX 1003.2 error message.
6104         * lib/getopt1.c (_getopt_long_r, _getopt_long_only_r): Adjust
6105         callers.
6106         * lib/getopt_int.h (_getopt_internal_r): Adjust prototype.
6107
6108         test-getopt: test stderr behavior
6109         * modules/getopt-posix-tests (Depends-on): Add dup2.
6110         * tests/test-getopt.c (ASSERT): Avoid stderr.
6111         (main): Move stderr to a temporary file.
6112         * tests/test-getopt.h (getopt_loop): No longer manipulate opterr.
6113         Instead, add parameter to inform caller if output occurred.
6114         (test_getopt): Adjust all existing tests to expect silence, and
6115         add new tests of leading ":".
6116         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
6117         glibc shortcomings with leading "-:" or "+:" in optstring.
6118         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
6119         Likewise.
6120         * doc/posix-functions/getopt.texi (getopt): Likewise.
6121
6122         test-getopt: enhance test
6123         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require that getopt_long
6124         supports optind=0.
6125         * tests/test-getopt.c (OPTIND_MIN): Move...
6126         * tests/test-getopt.h (OPTIND_MIN): ...here.
6127         * tests/test-getopt_long.h (test_getopt_long): Add more coverage.
6128         Require that optind=0 works, since modern BSD supports it in
6129         addition to optreset, and since coreutils expects it.
6130         (test_getopt_long_only): New test.
6131         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
6132         glibc shortcomings with 'W;', and enforcement of optind=0.
6133         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
6134         Likewise.
6135
6136 2009-12-21  Bruno Haible  <bruno@clisp.org>
6137
6138         localename: Improvements for MacOS X and Cygwin.
6139         * lib/localename.h (gl_locale_name_environ): New declaration.
6140         * lib/localename.c (gl_locale_name_environ): New function, extracted from
6141         gl_locale_name_posix. Ignore dummy LANG values on MacOS X and Cygwin.
6142         (gl_locale_name_posix): Invoke it.
6143         (gl_locale_name_default): Add comments. Use Windows native API also on
6144         Cygwin.
6145
6146 2009-12-21  Bruno Haible  <bruno@clisp.org>
6147
6148         Update list of Win32 locale ids.
6149         * lib/localename.c (LANG_ROMANSH): Renamed from LANG_RHAETO_ROMANCE.
6150         (LANG_SAMI): Renamed from LANG_SAAMI.
6151         (LANG_BASHKIR, LANG_LUXEMBOURGISH, LANG_GREENLANDIC,
6152         LANG_MAPUDUNGUN, LANG_MOHAWK, LANG_BRETON, LANG_OCCITAN, LANG_CORSICAN,
6153         LANG_ALSATIAN, LANG_YAKUT, LANG_KICHE, LANG_KINYARWANDA, LANG_WOLOF,
6154         LANG_DARI, LANG_SCOTTISH_GAELIC): New macros.
6155         (SUBLANG_AFRIKAANS_SOUTH_AFRICA, SUBLANG_ALBANIAN_ALBANIA,
6156         SUBLANG_ALSATIAN_FRANCE, SUBLANG_AMHARIC_ETHIOPIA,
6157         SUBLANG_ARMENIAN_ARMENIA, SUBLANG_ASSAMESE_INDIA,
6158         SUBLANG_BASHKIR_RUSSIA, SUBLANG_BASQUE_BASQUE,
6159         SUBLANG_BELARUSIAN_BELARUS, SUBLANG_BRETON_FRANCE,
6160         SUBLANG_BULGARIAN_BULGARIA, SUBLANG_CAMBODIAN_CAMBODIA,
6161         SUBLANG_CATALAN_SPAIN, SUBLANG_CORSICAN_FRANCE,
6162         SUBLANG_CZECH_CZECH_REPUBLIC, SUBLANG_DANISH_DENMARK,
6163         SUBLANG_DARI_AFGHANISTAN, SUBLANG_DIVEHI_MALDIVES,
6164         SUBLANG_DUTCH_SURINAM, SUBLANG_ESTONIAN_ESTONIA,
6165         SUBLANG_FAEROESE_FAROE_ISLANDS, SUBLANG_FARSI_IRAN,
6166         SUBLANG_FINNISH_FINLAND, SUBLANG_FRISIAN_NETHERLANDS,
6167         SUBLANG_GALICIAN_SPAIN, SUBLANG_GEORGIAN_GEORGIA,
6168         SUBLANG_GREEK_GREECE, SUBLANG_GREENLANDIC_GREENLAND,
6169         SUBLANG_GUJARATI_INDIA, SUBLANG_HAUSA_NIGERIA_LATIN,
6170         SUBLANG_HEBREW_ISRAEL, SUBLANG_HINDI_INDIA, SUBLANG_HUNGARIAN_HUNGARY,
6171         SUBLANG_ICELANDIC_ICELAND, SUBLANG_IGBO_NIGERIA,
6172         SUBLANG_INDONESIAN_INDONESIA, SUBLANG_INUKTITUT_CANADA,
6173         SUBLANG_INUKTITUT_CANADA_LATIN, SUBLANG_IRISH_IRELAND,
6174         SUBLANG_JAPANESE_JAPAN, SUBLANG_KANNADA_INDIA,
6175         SUBLANG_KAZAK_KAZAKHSTAN, SUBLANG_KICHE_GUATEMALA,
6176         SUBLANG_KINYARWANDA_RWANDA, SUBLANG_KONKANI_INDIA,
6177         SUBLANG_KYRGYZ_KYRGYZSTAN, SUBLANG_LAO_LAOS, SUBLANG_LATVIAN_LATVIA,
6178         SUBLANG_LITHUANIAN_LITHUANIA, SUBLANG_LOWER_SORBIAN_GERMANY,
6179         SUBLANG_LUXEMBOURGISH_LUXEMBOURG, SUBLANG_MACEDONIAN_MACEDONIA,
6180         SUBLANG_MALAYALAM_INDIA, SUBLANG_MALTESE_MALTA,
6181         SUBLANG_MAORI_NEW_ZEALAND, SUBLANG_MAPUDUNGUN_CHILE,
6182         SUBLANG_MARATHI_INDIA, SUBLANG_MOHAWK_CANADA, SUBLANG_NEPALI_NEPAL,
6183         SUBLANG_OCCITAN_FRANCE, SUBLANG_ORIYA_INDIA,
6184         SUBLANG_PASHTO_AFGHANISTAN, SUBLANG_POLISH_POLAND,
6185         SUBLANG_ROMANSH_SWITZERLAND, SUBLANG_SAMI_NORTHERN_NORWAY,
6186         SUBLANG_SAMI_NORTHERN_SWEDEN, SUBLANG_SAMI_NORTHERN_FINLAND,
6187         SUBLANG_SAMI_LULE_NORWAY, SUBLANG_SAMI_LULE_SWEDEN,
6188         SUBLANG_SAMI_SOUTHERN_NORWAY, SUBLANG_SAMI_SOUTHERN_SWEDEN,
6189         SUBLANG_SAMI_SKOLT_FINLAND, SUBLANG_SAMI_INARI_FINLAND,
6190         SUBLANG_SANSKRIT_INDIA, SUBLANG_SINHALESE_SRI_LANKA,
6191         SUBLANG_SLOVAK_SLOVAKIA, SUBLANG_SLOVENIAN_SLOVENIA,
6192         SUBLANG_SOTHO_SOUTH_AFRICA, SUBLANG_SWAHILI_KENYA,
6193         SUBLANG_SWEDISH_SWEDEN, SUBLANG_SYRIAC_SYRIA,
6194         SUBLANG_TAGALOG_PHILIPPINES, SUBLANG_TAJIK_TAJIKISTAN,
6195         SUBLANG_TAMIL_INDIA, SUBLANG_TATAR_RUSSIA, SUBLANG_TELUGU_INDIA,
6196         SUBLANG_THAI_THAILAND, SUBLANG_TSWANA_SOUTH_AFRICA,
6197         SUBLANG_TURKISH_TURKEY, SUBLANG_TURKMEN_TURKMENISTAN,
6198         SUBLANG_UKRAINIAN_UKRAINE, SUBLANG_UPPER_SORBIAN_GERMANY,
6199         SUBLANG_VIETNAMESE_VIETNAM, SUBLANG_WELSH_UNITED_KINGDOM,
6200         SUBLANG_WOLOF_SENEGAL, SUBLANG_XHOSA_SOUTH_AFRICA,
6201         SUBLANG_YAKUT_RUSSIA, SUBLANG_YI_PRC, SUBLANG_YORUBA_NIGERIA,
6202         SUBLANG_ZULU_SOUTH_AFRICA): New macros.
6203         (gl_locale_name_from_win32_LANGID): Handle also the territory neutral
6204         locale ids. Add support for Alsatian, Bashkir, Breton, Corsican, Dari,
6205         Greenlandic, K'iche', Kinyarwanda, Luxembourgish, Mapudungun, Mohawk,
6206         Occitan, Scottish Gaelic, Wolof, Yakut. Change language code for Yi.
6207         Add more languages and countries for Sami, Sorbian. Add more countries
6208         for Serbian, Dutch. Add more scripts for Inuktitut. Be more precise
6209         for Pashto. Change country for Syriac, Tswana.
6210
6211 2009-12-21  Eric Blake  <ebb9@byu.net>
6212
6213         test-utimens: avoid spurious failure
6214         * tests/test-chown.h (nap): Factor...
6215         * tests/nap.h: ...into new file.
6216         * tests/test-lchown.h (nap): Avoid duplication.
6217         * tests/test-utimens-common.h (nap): Use shared implementation,
6218         necessary on file systems with 1-second resolution.
6219         * modules/chown-tests (Files): Include new file.
6220         * modules/fdutimensat-tests (Files): Likewise.
6221         * modules/futimens-tests (Files): Likewise.
6222         * modules/lchown-tests (Files): Likewise.
6223         * modules/openat-tests (Files): Likewise.
6224         * modules/utimens-tests (Files): Likewise.
6225         * modules/utimensat-tests (Files): Likewise.
6226
6227 2009-12-19  Eric Blake  <ebb9@byu.net>
6228
6229         futimens, utimensat: work around Linux bug
6230         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Detect ctime bug.
6231         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
6232         * lib/utimensat.c (rpl_utimensat): Work around it.
6233         * lib/futimens.c (rpl_futimens): Adjust comment.
6234
6235         utimens: work around Linux ctime bug
6236         * lib/utimens.c (detect_ctime_bug): New helper function.
6237         (update_timespec): Differentiate between workaround needed for
6238         this bug vs. what is needed for systems that lack utimensat.
6239         (fdutimens, lutimens): Work around bug.
6240
6241         utimens: check for ctime update
6242         * tests/test-utimens-common.h (check_ctime): Define.
6243         * tests/test-utimens.h (test_utimens): Expose the Linux bug.
6244         * tests/test-futimens.h (test_futimens): Likewise.
6245         * tests/test-lutimens.h (test_lutimens): Likewise.
6246         * doc/posix-functions/futimens.texi (futimens): Document the bug.
6247         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
6248
6249 2009-12-19  Bruno Haible  <bruno@clisp.org>
6250
6251         dprintf-posix: Check against memory leak fixed on 2009-12-15.
6252         * tests/test-dprintf-posix2.sh: New file.
6253         * tests/test-dprintf-posix2.c: New file.
6254         * modules/dprintf-posix-tests (Files): Add them.
6255         (configure.ac): Check for getrlimit and setrlimit.
6256         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
6257
6258 2009-12-19  Bruno Haible  <bruno@clisp.org>
6259
6260         fprintf-posix: Check against memory leak fixed on 2009-12-15.
6261         * tests/test-fprintf-posix3.sh: New file.
6262         * tests/test-fprintf-posix3.c: New file.
6263         * modules/fprintf-posix-tests (Files): Add them.
6264         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
6265
6266 2009-12-19  Eric Blake  <ebb9@byu.net>
6267
6268         dirfd: fix prototype
6269         * lib/dirent.in.h (dirfd): Argument is not const, per POSIX.
6270         * lib/dirfd.c (dirfd): Likewise.
6271
6272         canonicalize: reduce memory usage
6273         * lib/canonicalize.c (canonicalize_filename_mode): Trim the
6274         allocation to size.
6275         Reported by Solar Designer <solar@openwall.com>.
6276
6277 2009-12-19  Bruno Haible  <bruno@clisp.org>
6278
6279         New module attribute 'Applicability'.
6280         * modules/TEMPLATE-EXTENDED: New field 'Applicability'.
6281         * gnulib-tool: New option --extract-applicability.
6282         (func_usage): Document it.
6283         (sed_extract_prog): Recognize it.
6284         (func_get_applicability): New function.
6285         (func_import): Generalize handling of 'link-warning' module.
6286         * modules/link-warning (Applicability): New section.
6287         * modules/arg-nonnull (Applicability): New section.
6288         Repoted by Simon Josefsson <simon@josefsson.org>.
6289
6290 2009-12-19  Bruno Haible  <bruno@clisp.org>
6291
6292         fflush: tweak
6293         * lib/fflush.c (update_fpos_cache): Don't use fpos_t on Cygwin.
6294         * lib/fseeko.c (rpl_fseeko): Likewise.
6295
6296 2009-12-16  José E. Marchesi  <jemarch@gnu.org>  (tiny change)
6297
6298         * lib/gl_list.h: Fix typo in comment.
6299
6300 2009-12-16  Eric Blake  <ebb9@byu.net>
6301
6302         fcntl: use to simplify other modules
6303         * modules/cloexec (Depends-on): Add fcntl.
6304         * modules/fchdir (Depends-on): Likewise.
6305         * modules/fd-safer-flag (Depends-on): Likewise.
6306         * modules/unistd-safer (Depends-on): Likewise.
6307         * modules/dup3 (configure.ac): Set module indicator.
6308         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Replace fcntl if fchdir is
6309         missing.
6310         * lib/fchdir.c (_gl_register_dup): Fix comment.
6311         * lib/cloexec.c (dup_cloexec): Simplify, by relying on fcntl.
6312         * lib/dup-safer.c (dup_safer): Likewise.
6313         * lib/dup-safer-flag.c (dup_safer_flag): Likewise.
6314         * lib/dup3.c (dup3): Likewise.
6315         * tests/test-fchdir.c (main): Enhance test.
6316         Fixes a dup_cloexec bug reported by Ondřej Vašík.
6317
6318         fcntl: port portions of fcntl to mingw
6319         * m4/fcntl.m4 (gl_FUNC_FCNTL): Also build fcntl.c on mingw.
6320         * lib/fcntl.c (fcntl) <F_DUPFD, F_DUPFD_CLOEXEC, F_GETFD>: Provide
6321         replacement for mingw.
6322         * modules/fcntl (Description): Update.
6323         (Depends-on): Add dup2.
6324         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness.
6325         * modules/fcntl-h (Makefile.am): Substitute it.
6326         * lib/fcntl.in.h (fcntl): Update declaration.
6327         (F_DUPFD, F_GETFD): New macros, when needed.
6328         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
6329         * doc/posix-functions/fcntl.texi (fcntl): Likewise.
6330         * tests/test-fcntl.c (check_flags, main): Enhance test for items
6331         we now guarantee.
6332
6333         fcntl: work around cygwin bug in F_DUPFD
6334         * m4/fcntl.m4 (gl_REPLACE_FCNTL): New macro.
6335         (gl_FUNC_FCNTL): Use it.  Test for F_DUPFD bug.
6336         * lib/fcntl.c (rpl_fcntl) <F_DUPFD>: Work around it.
6337         <F_DUPFD_CLOEXEC>: Reduce calls to _gl_register_dup.
6338         * doc/posix-functions/fcntl.texi (fcntl): Document it.
6339
6340         fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
6341         * modules/fcntl (Files): List new files.
6342         (configure.ac): Run a test.
6343         * m4/fcntl.m4 (gl_FUNC_FCNTL): New file.
6344         * lib/fcntl.c (rpl_fcntl): Likewise.
6345         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness defaults.
6346         (gl_FCNTL_H): Always replace fcntl.h.
6347         * modules/fcntl-h (Makefile.am): Substitute witnesses.
6348         * lib/fcntl.in.h (fcntl): Declare replacement.
6349         (F_DUPFD_CLOEXEC, GNULIB_defined_F_DUPFD_CLOEXEC): New macro when
6350         needed, plus a witness.
6351         * doc/posix-functions/fcntl.texi (fcntl): Document this.
6352         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
6353         * tests/test-fcntl.c: New file.
6354         * modules/fcntl-tests: Likewise.
6355
6356         binary-io: avoid potential compilation warning
6357         * lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
6358         directives.
6359
6360         fflush: avoid compilation error on NetBSD
6361         * lib/fflush.c (update_fpos_cache): Use a union to safely convert
6362         between off_t and fpos_t, since the latter is sometimes a struct.
6363         * lib/fseeko.c (rpl_fseeko): Likewise.
6364         Reported by Alexander Nasonov <alnsn@yandex.ru>.
6365
6366 2009-12-15  Eric Blake  <ebb9@byu.net>
6367
6368         fcntl-h, stdio, sys_ioctl: fix declarations
6369         * lib/stdio.in.h (dprintf): Use of link warning on a variadic
6370         function must not take arguments.
6371         * lib/sys_ioctl.in.h (ioctl): Likewise.
6372         * lib/fcntl.in.h (openat): Likewise.  Declare extern.
6373         (open): Add a link warning.
6374
6375 2009-12-15  Jim Meyering  <meyering@redhat.com>
6376
6377         areadlink, areadlink-with-size: relax license to LGPLv2+
6378         * modules/areadlink (License): Relax to LGPLv2+.
6379         * modules/areadlink-with-size (License): Likewise.
6380
6381 2009-12-15  Joel E. Denny  <jdenny@clemson.edu>
6382             Bruno Haible  <bruno@clisp.org>
6383
6384         *printf: Fix memory leak.
6385         * lib/fprintf.c (fprintf): Free memory allocated by vasnprintf.
6386         * lib/vfprintf.c (vfprintf): Likewise.
6387         * lib/dprintf.c (dprintf): Likewise.
6388         * lib/vdprintf.c (vdprintf): Likewise.
6389
6390 2009-12-14  Eric Blake  <ebb9@byu.net>
6391
6392         accept4: adjust module dependencies
6393         * modules/accept4 (Depends-on): Use fcntl-h, not fcntl.
6394
6395         utimens: one more try at avoiding compiler warning
6396         * lib/utimens.c (lutimens): Lower scope of result.
6397
6398 2009-12-13  Bruno Haible  <bruno@clisp.org>
6399
6400         Move the malloc checking from module 'list' to new module 'xlist'.
6401         * modules/xlist: New file.
6402         * lib/gl_xlist.h: New file.
6403         * lib/gl_xlist.c: New file.
6404         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
6405         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
6406         gl_list_add_last, gl_list_add_before, gl_list_add_after,
6407         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
6408         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
6409         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
6410         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
6411         gl_sortedlist_nx_add): New declarations.
6412         (struct gl_list_implementation): Rename and change methods accordingly.
6413         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
6414         (gl_list_nx_create): Renamed from gl_list_create.
6415         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
6416         (gl_list_nx_set_at): Renamed from gl_list_set_at.
6417         (gl_list_nx_add_first): Renamed from gl_list_add_first.
6418         (gl_list_nx_add_last): Renamed from gl_list_add_last.
6419         (gl_list_nx_add_before): Renamed from gl_list_add_before.
6420         (gl_list_nx_add_after): Renamed from gl_list_add_after.
6421         (gl_list_nx_add_at): Renamed from gl_list_add_at.
6422         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
6423         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
6424         gl_list_create_empty.
6425         (gl_list_nx_create): Renamed from gl_list_create.
6426         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
6427         (gl_list_nx_set_at): Renamed from gl_list_set_at.
6428         (gl_list_nx_add_first): Renamed from gl_list_add_first.
6429         (gl_list_nx_add_last): Renamed from gl_list_add_last.
6430         (gl_list_nx_add_before): Renamed from gl_list_add_before.
6431         (gl_list_nx_add_after): Renamed from gl_list_add_after.
6432         (gl_list_nx_add_at): Renamed from gl_list_add_at.
6433         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
6434         * lib/gl_array_list.c: Don't include xalloc.h.
6435         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
6436         NULL upon out-of-memory.
6437         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
6438         out-of-memory.
6439         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
6440         Change return type to 'int'.
6441         (gl_array_nx_set_at): Renamed from gl_array_set_at.
6442         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
6443         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
6444         upon out-of-memory.
6445         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
6446         upon out-of-memory.
6447         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
6448         upon out-of-memory.
6449         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
6450         upon out-of-memory.
6451         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
6452         out-of-memory.
6453         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
6454         Update.
6455         (gl_array_list_implementation): Update.
6456         * lib/gl_carray_list.c: Don't include xalloc.h.
6457         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
6458         Return NULL upon out-of-memory.
6459         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
6460         out-of-memory.
6461         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
6462         Change return type to 'int'.
6463         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
6464         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
6465         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
6466         upon out-of-memory.
6467         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
6468         upon out-of-memory.
6469         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
6470         out-of-memory.
6471         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
6472         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
6473         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
6474         Update.
6475         (gl_carray_list_implementation): Update.
6476         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
6477         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
6478         gl_linked_create_empty. Return NULL upon out-of-memory.
6479         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
6480         out-of-memory.
6481         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
6482         Change return type to 'int'. Return -1 upon out-of-memory.
6483         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
6484         out-of-memory.
6485         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
6486         upon out-of-memory.
6487         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
6488         upon out-of-memory.
6489         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
6490         NULL upon out-of-memory.
6491         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
6492         upon out-of-memory.
6493         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
6494         out-of-memory.
6495         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
6496         Update.
6497         * lib/gl_linked_list.c: Don't include xalloc.h.
6498         (gl_linked_list_implementation): Update.
6499         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
6500         (add_to_bucket): Change return type to 'int'.
6501         (gl_linkedhash_list_implementation): Update.
6502         * lib/gl_anytree_list1.h (free_subtree): New function.
6503         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
6504         gl_tree_create_empty. Return NULL upon out-of-memory.
6505         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
6506         Change return type to 'int'. Return -1 upon out-of-memory.
6507         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
6508         out-of-memory.
6509         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
6510         (gl_tree_remove_node): New function, moved here from
6511         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
6512         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
6513         Update.
6514         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
6515         malloc, not xmalloc. Return NULL upon out-of-memory.
6516         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
6517         out-of-memory.
6518         (gl_tree_remove_node_from_tree): New function, extracted from
6519         gl_tree_remove_node.
6520         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
6521         upon out-of-memory.
6522         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
6523         out-of-memory.
6524         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
6525         upon out-of-memory.
6526         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
6527         upon out-of-memory.
6528         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
6529         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
6530         not xmalloc. Return NULL upon out-of-memory.
6531         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
6532         out-of-memory.
6533         (gl_tree_remove_node_from_tree): New function, extracted from
6534         gl_tree_remove_node.
6535         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
6536         upon out-of-memory.
6537         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
6538         out-of-memory.
6539         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
6540         upon out-of-memory.
6541         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
6542         upon out-of-memory.
6543         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
6544         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
6545         gl_anytree_list1.h before gl_anyavltree_list2.h.
6546         (gl_avltree_list_implementation): Update.
6547         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
6548         gl_anytree_list1.h before gl_anyavltree_list2.h.
6549         (gl_rbtree_list_implementation): Update.
6550         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
6551         Change return type to 'int'. Return -1 upon out-of-memory. Use
6552         __builtin_expect.
6553         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
6554         (gl_avltreehash_list_implementation): Update.
6555         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
6556         (gl_rbtreehash_list_implementation): Update.
6557         * modules/array-list (Depends-on): Remove xalloc.
6558         * modules/carray-list (Depends-on): Likewise.
6559         * modules/linked-list (Depends-on): Likewise.
6560         * modules/linkedhash-list (Depends-on): Likewise.
6561         * modules/avltree-list (Depends-on): Likewise.
6562         * modules/rbtree-list (Depends-on): Likewise.
6563         * modules/avltreehash-list (Depends-on): Likewise.
6564         * modules/rbtreehash-list (Depends-on): Likewise.
6565
6566         * modules/xsublist: New file.
6567         * lib/gl_xsublist.h: New file.
6568         * lib/gl_xsublist.c: New file.
6569         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
6570         (gl_sublist_nx_create): New declaration.
6571         * lib/gl_sublist.c: Don't include xalloc.h.
6572         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
6573         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
6574         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
6575         Change return type to 'int'. Return -1 upon out-of-memory.
6576         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
6577         upon out-of-memory.
6578         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
6579         NULL upon out-of-memory.
6580         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
6581         upon out-of-memory.
6582         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
6583         NULL upon out-of-memory.
6584         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
6585         NULL upon out-of-memory.
6586         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
6587         upon out-of-memory.
6588         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
6589         (gl_sublist_list_implementation): Update.
6590         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
6591         upon out-of-memory.
6592         * modules/sublist (Depends-on): Remove xalloc.
6593
6594         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
6595         * tests/test-carray_list.c: Likewise.
6596         * tests/test-linked_list.c: Likewise.
6597         * tests/test-linkedhash_list.c: Likewise.
6598         * tests/test-avltree_list.c: Likewise.
6599         * tests/test-rbtree_list.c: Likewise.
6600         * tests/test-avltreehash_list.c: Likewise.
6601         * tests/test-rbtreehash_list.c: Likewise.
6602         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
6603         * modules/carray-list-tests (Makefile.am): Likewise.
6604         * modules/linked-list-tests (Makefile.am): Likewise.
6605         * modules/linkedhash-list-tests (Makefile.am): Likewise.
6606         * modules/avltree-list-tests (Makefile.am): Likewise.
6607         * modules/rbtree-list-tests (Makefile.am): Likewise.
6608         * modules/avltreehash-list-tests (Makefile.am): Likewise.
6609         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
6610
6611         * NEWS: Mention the changes.
6612
6613         * lib/clean-temp.c: Include gl_xlist.h.
6614         * modules/clean-temp (Depends-on): Add xlist.
6615
6616         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
6617         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
6618
6619         * tests/test-array_oset.c: Include gl_xlist.h.
6620         * modules/array-oset-tests (Depends-on): Add xlist.
6621
6622         Reported by José E. Marchesi <jemarch@gnu.org>.
6623
6624 2009-12-13  Bruno Haible  <bruno@clisp.org>
6625
6626         Move the malloc checking from module 'oset' to new module 'xoset'.
6627         * modules/xoset: New file.
6628         * lib/gl_xoset.h: New file.
6629         * lib/gl_xoset.c: New file.
6630         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
6631         declarations.
6632         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
6633         (struct gl_oset_implementation): Rename and change methods accordingly.
6634         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
6635         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
6636         'int'. Mark as __warn_unused_result__.
6637         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
6638         gl_oset_create_empty.
6639         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
6640         'int'.
6641         * lib/gl_array_oset.c: Don't include xalloc.h.
6642         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
6643         malloc, not xmalloc.
6644         (grow): Change return type to 'int'. Don't call xalloc_die.
6645         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
6646         to 'int'.
6647         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
6648         'int'.
6649         (gl_array_oset_implementation): Update.
6650         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
6651         gl_tree_create_empty.
6652         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
6653         'int'.
6654         * lib/gl_avltree_oset.c: Don't include xalloc.h.
6655         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
6656         xmalloc.
6657         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
6658         not xmalloc.
6659         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
6660         xmalloc.
6661         (gl_avltree_oset_implementation): Update.
6662         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
6663         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
6664         xmalloc.
6665         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
6666         not xmalloc.
6667         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
6668         xmalloc.
6669         (gl_rbtree_oset_implementation): Update.
6670         * modules/array-oset (Depends-on): Remove xalloc.
6671         * modules/avltree-oset (Depends-on): Likewise.
6672         * modules/rbtree-oset (Depends-on): Likewise.
6673         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
6674         * tests/test-avltree_oset.c: Likewise.
6675         * tests/test-rbtree_oset.c: Likewise.
6676         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
6677         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
6678         * modules/rbtree-oset-tests (Makefile.am): Likewise.
6679         * NEWS: Mention the change.
6680
6681 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
6682
6683         maint.mk: allow a project to override release-prep commands
6684         * top/maint.mk (alpha, beta, stable): Move release-preparatory
6685         commands into a new rule.
6686         (release-prep): New rule.
6687         (release-prep-hook): New overridable variable.
6688
6689 2009-12-13  Bruno Haible  <bruno@clisp.org>
6690
6691         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
6692
6693 2009-12-13  Jim Meyering  <meyering@redhat.com>
6694
6695         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
6696         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
6697
6698 2009-12-12  Bruno Haible  <bruno@clisp.org>
6699
6700         duplocale: Tweak.
6701         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
6702
6703 2009-12-12  Karl Berry  <karl@gnu.org>
6704
6705         * config/srclist.txt (strtoll.c): tab changes, no more sync.
6706
6707 2009-12-12  Bruno Haible  <bruno@clisp.org>
6708
6709         * m4/po.m4: Undo incorrect untabification.
6710
6711 2009-12-12  Bruno Haible  <bruno@clisp.org>
6712
6713         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
6714         * modules/c-strtod (Depends-on): Add locale.
6715         * modules/c-strtold (Depends-on): Likewise.
6716
6717 2009-12-12  Bruno Haible  <bruno@clisp.org>
6718
6719         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
6720
6721 2009-12-11  Eric Blake  <ebb9@byu.net>
6722
6723         setenv: relax requirement in light of POSIX ruling
6724         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
6725         not NULL.
6726         * tests/test-setenv.c (main): Relax test.
6727         * tests/test-unsetenv.c (main): Likewise.
6728         * doc/posix-functions/setenv.texi (setenv): Document this.
6729         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
6730
6731 2009-12-11  Bruno Haible  <bruno@clisp.org>
6732
6733         New module 'fd-safer-flag'.
6734         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
6735         * lib/dup-safer.c (dup_safer_flag): Remove function.
6736         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
6737         * lib/fd-safer.c (fd_safer_flag): Remove function.
6738         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
6739         * modules/cloexec (configure.ac): Drop indicator macro.
6740         * modules/fd-safer-flag: New file.
6741         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
6742         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
6743         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
6744
6745 2009-12-11  Bruno Haible  <bruno@clisp.org>
6746
6747         Tests for module 'nl_langinfo'.
6748         * modules/nl_langinfo-tests: New file.
6749         * tests/test-nl_langinfo.sh: New file.
6750         * tests/test-nl_langinfo.c: New file.
6751
6752         New module 'nl_langinfo'.
6753         * lib/nl_langinfo.c: New file.
6754         * m4/nl_langinfo.m4: New file.
6755         * modules/nl_langinfo: New file.
6756         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
6757
6758 2009-12-11  Bruno Haible  <bruno@clisp.org>
6759
6760         Tests for module 'langinfo'.
6761         * modules/langinfo-tests: New file.
6762         * tests/test-langinfo.c: New file.
6763
6764         New module 'langinfo'.
6765         * lib/langinfo.in.h: New file.
6766         * m4/langinfo_h.m4: New file.
6767         * modules/langinfo: New file.
6768         * doc/posix-headers/langinfo.texi: Mention the new module.
6769
6770 2009-12-11  Bruno Haible  <bruno@clisp.org>
6771
6772         * lib/config.charset: Untabify.
6773
6774 2009-12-11  Bruno Haible  <bruno@clisp.org>
6775
6776         * modules/unistd-safer (configure.ac): Drop indicator macro.
6777
6778 2009-12-11  Bruno Haible  <bruno@clisp.org>
6779
6780         Move pipe2-safer code to its own file.
6781         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
6782         * lib/pipe-safer.c (pipe2_safer): Remove function.
6783         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
6784         (Makefile.am): Add it to lib_SOURCES.
6785
6786 2009-12-10  Bruno Haible  <bruno@clisp.org>
6787
6788         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
6789
6790 2009-12-10  Bruno Haible  <bruno@clisp.org>
6791
6792         Declare which arguments expect non-NULL values, for GCC and clang.
6793         * build-aux/arg-nonnull.h: New file.
6794         * modules/arg-nonnull: New file.
6795         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
6796         (inet_ntop, inet_pton): Use it.
6797         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
6798         (closedir, dirfd, opendir, scandir, alphasort): Use it.
6799         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
6800         (open, openat): Use it.
6801         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
6802         (fnmatch): Use it.
6803         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
6804         (getopt, getopt_long, getopt_long_only): Use it.
6805         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
6806         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
6807         Use it.
6808         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
6809         (iconv_open): Use it.
6810         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
6811         (strtoimax, strtoumax): Use it.
6812         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
6813         (duplocale): Use it.
6814         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
6815         (frexp, frexpl): Use it.
6816         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
6817         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
6818         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
6819         (tsearch, tfind, tdelete, twalk): Use it.
6820         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
6821         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
6822         sigpending): Use it.
6823         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
6824         (posix_spawn, posix_spawnp, posix_spawnattr_init,
6825         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
6826         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
6827         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
6828         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
6829         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
6830         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
6831         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
6832         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
6833         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
6834         Use it.
6835         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
6836         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
6837         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
6838         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
6839         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
6840         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
6841         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
6842         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
6843         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
6844         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
6845         strtoull, unsetenv): Use it.
6846         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
6847         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
6848         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
6849         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
6850         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
6851         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
6852         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
6853         (strcasecmp, strncasecmp): Use it.
6854         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
6855         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
6856         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
6857         rpl_setsockopt): Use it.
6858         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
6859         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
6860         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
6861         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
6862         (gettimeofday): Use it.
6863         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
6864         (times): Use it.
6865         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
6866         (uname): Use it.
6867         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
6868         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
6869         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
6870         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
6871         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
6872         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
6873         unlinkat, write): Use it.
6874         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
6875         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
6876         * lib/argv-iter.h: Include arg-nonnull.h.
6877         (_ATTRIBUTE_NONNULL_): Remove macro.
6878         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
6879         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
6880         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
6881         optimization.
6882         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
6883         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
6884         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
6885         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
6886         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
6887         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
6888         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
6889         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
6890         * modules/arpa_inet (Depends-on): Add arg-nonnull.
6891         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
6892         * modules/dirent (Depends-on): Add arg-nonnull.
6893         (Makefile.am): Insert arg-nonnull.h into dirent.h.
6894         * modules/fcntl-h (Depends-on): Add arg-nonnull.
6895         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
6896         * modules/fnmatch (Depends-on): Add arg-nonnull.
6897         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
6898         * modules/getopt-posix (Depends-on): Add arg-nonnull.
6899         (Makefile.am): Insert arg-nonnull.h into getopt.h.
6900         * modules/glob (Depends-on): Add arg-nonnull.
6901         (Makefile.am): Insert arg-nonnull.h into glob.h.
6902         * modules/iconv_open (Depends-on): Add arg-nonnull.
6903         (Makefile.am): Insert arg-nonnull.h into iconv.h.
6904         * modules/inttypes (Depends-on): Add arg-nonnull.
6905         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
6906         * modules/locale (Depends-on): Add arg-nonnull.
6907         (Makefile.am): Insert arg-nonnull.h into locale.h.
6908         * modules/math (Depends-on): Add arg-nonnull.
6909         (Makefile.am): Insert arg-nonnull.h into math.h.
6910         * modules/netdb (Depends-on): Add arg-nonnull.
6911         (Makefile.am): Insert arg-nonnull.h into netdb.h.
6912         * modules/search (Depends-on): Add arg-nonnull.
6913         (Makefile.am): Insert arg-nonnull.h into search.h.
6914         * modules/signal (Depends-on): Add arg-nonnull.
6915         (Makefile.am): Insert arg-nonnull.h into signal.h.
6916         * modules/spawn (Depends-on): Add arg-nonnull.
6917         (Makefile.am): Insert arg-nonnull.h into spawn.h.
6918         * modules/stdio (Depends-on): Add arg-nonnull.
6919         (Makefile.am): Insert arg-nonnull.h into stdio.h.
6920         * modules/stdlib (Depends-on): Add arg-nonnull.
6921         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
6922         * modules/string (Depends-on): Add arg-nonnull.
6923         (Makefile.am): Insert arg-nonnull.h into string.h.
6924         * modules/strings (Depends-on): Add arg-nonnull.
6925         (Makefile.am): Insert arg-nonnull.h into strings.h.
6926         * modules/sys_socket (Depends-on): Add arg-nonnull.
6927         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
6928         * modules/sys_stat (Depends-on): Add arg-nonnull.
6929         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
6930         * modules/sys_time (Depends-on): Add arg-nonnull.
6931         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
6932         * modules/sys_times (Depends-on): Add arg-nonnull.
6933         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
6934         * modules/sys_utsname (Depends-on): Add arg-nonnull.
6935         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
6936         * modules/time (Depends-on): Add arg-nonnull.
6937         (Makefile.am): Insert arg-nonnull.h into time.h.
6938         * modules/unistd (Depends-on): Add arg-nonnull.
6939         (Makefile.am): Insert arg-nonnull.h into unistd.h.
6940         * modules/wchar (Depends-on): Add arg-nonnull.
6941         (Makefile.am): Insert arg-nonnull.h into wchar.h.
6942         * modules/argv-iter (Depends-on): Add arg-nonnull.
6943         * tests/test-canonicalize.c (null_ptr): New function.
6944         (main): Use it.
6945         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
6946         (main): Use it.
6947         * tests/test-memmem.c (null_ptr): New function.
6948         (main): Use it.
6949         Reported by Jim Meyering.
6950
6951 2009-12-10  Bruno Haible  <bruno@clisp.org>
6952
6953         Use spaces for indentation, not tabs.
6954         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
6955         * m4/*.m4: Untabify.
6956         * build-aux/*.h: Untabify.
6957         * tests/**/*.[hc]: Untabify.
6958         * README: New section "Indent with spaces, not TABs", based on
6959         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
6960         * NEWS: Mention the change.
6961
6962 2009-12-10  Bruno Haible  <bruno@clisp.org>
6963
6964         pty test: Fix link error.
6965         * modules/pty-tests (Makefile.am): Add the default LDADD value to
6966         test_pty_LDADD.
6967
6968 2009-12-07  Simon Josefsson  <simon@josefsson.org>
6969
6970         * modules/pty: New file.
6971         * modules/pty-tests: New file.
6972         * m4/pty.m4: New file.
6973         * tests/test-pty.c: New file.
6974         * doc/glibc-headers/pty.texi: Modified.
6975         * doc/glibc-functions/forkpty.texi: Modified.
6976         * doc/glibc-functions/openpty.texi: Modified.
6977
6978 2009-12-10  Bruno Haible  <bruno@clisp.org>
6979
6980         Avoid syntax error in C++ mode.
6981         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
6982
6983 2009-12-10  Bruno Haible  <bruno@clisp.org>
6984
6985         Use sed with option -e.
6986         * gnulib-tool (func_version, func_emit_copyright_notice,
6987         func_emit_initmacro_end, func_import, func_create_testdir): Pass
6988         option -e to sed.
6989         * modules/link-warning (Makefile.am): Likewise.
6990
6991 2009-12-10  Jim Meyering  <meyering@redhat.com>
6992
6993         mgetgroups: do not write bytes beyond end of malloc'd buffer
6994         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
6995         username, we call getgroups with a one-element-shorter buffer,
6996         but still told it the length was original, max_n_groups.
6997
6998 2009-12-09  Eric Blake  <ebb9@byu.net>
6999
7000         cloexec: relax license
7001         * modules/cloexec (Maintainer): Add myself.
7002         (License): Use LGPL, not GPL.
7003
7004         link-warning: optimize generation
7005         * modules/link-warning (Makefile.am): Reduce process usage.
7006
7007 2009-12-09  Bruno Haible  <bruno@clisp.org>
7008
7009         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
7010         workaround was added on 2009-11-17.
7011
7012 2009-12-09  Jim Meyering  <meyering@redhat.com>
7013             Bruno Haible  <bruno@clisp.org>
7014
7015         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
7016         * modules/link-warning (Makefile.am): Make the comment-removing sed
7017         command more robust in the face of bootstrap-prepended comment lines.
7018
7019 2009-12-09  Bruno Haible  <bruno@clisp.org>
7020
7021         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
7022         most one group.
7023
7024 2009-12-09  Simon Josefsson <simon@josefsson.org>
7025             Bruno Haible  <bruno@clisp.org>
7026
7027         * build-aux/link-warning.h: Add copyright notice.
7028         * modules/link-warning (Makefile.am): Generate link-warning.h from
7029         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
7030         * NEWS: Mention change in link-warning module.
7031         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
7032         * modules/dirent (Makefile.am): Add dependency to dirent.h.
7033         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
7034         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
7035         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
7036         * modules/math (Makefile.am): Add dependency to math.h.
7037         * modules/search (Makefile.am): Add dependency to search.h.
7038         * modules/signal (Makefile.am): Add dependency to signal.h.
7039         * modules/spawn (Makefile.am): Add dependency to spawn.h.
7040         * modules/stdio (Makefile.am): Add dependency to stdio.h.
7041         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
7042         * modules/string (Makefile.am): Add dependency to string.h.
7043         * modules/strings (Makefile.am): Add dependency to strings.h.
7044         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
7045         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
7046         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
7047         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
7048         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
7049         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
7050         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
7051         * modules/unistd (Makefile.am): Add dependency to unistd.h.
7052         * modules/wchar (Makefile.am): Add dependency to wchar.h.
7053
7054 2009-12-09  Bruno Haible  <bruno@clisp.org>
7055
7056         fchdir: Optimize away rpl_fstat when possible.
7057         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
7058         REPLACE_OPEN_DIRECTORY.
7059         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
7060
7061 2009-12-09  Bruno Haible  <bruno@clisp.org>
7062
7063         * lib/fchdir.c: Update comment.
7064
7065 2009-12-09  Bruno Haible  <bruno@clisp.org>
7066
7067         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
7068
7069 2009-12-08  Eric Blake  <ebb9@byu.net>
7070
7071         fchdir: avoid memory leak on re-registration.
7072         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
7073
7074 2009-12-08  Jim Meyering  <meyering@redhat.com>
7075
7076         init.sh: avoid Solaris 10 /bin/sh portability problem
7077         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
7078         sourced script:
7079           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
7080           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
7081           bar
7082         tests/init.sh relied on that, accepting a --set-path=DIR argument,
7083         and two tests used that idiom.
7084         * tests/init.sh: Update suggested usage comments.
7085         (path_prepend_): New function, to be used in place
7086         of the --src-path=DIR option.
7087         (setup_): Move PATH-prepending code into path_prepend_.
7088         * tests/test-pread.sh: Adapt to new usage.
7089         * tests/test-xalloc-die.sh: Likewise.
7090
7091 2009-12-08  Simon Josefsson  <simon@josefsson.org>
7092
7093         * doc/gnulib.texi (Glibc pty.h): Add.
7094         * doc/glibc-functions/forkpty.texi: Add.
7095         * doc/glibc-functions/openpty.texi: Add.
7096         Suggested by Bruno Haible.
7097
7098 2009-12-08  Eric Blake  <ebb9@byu.net>
7099
7100         fchdir: fix logic bugs
7101         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
7102         * tests/test-fchdir.c (main): Enhance test.
7103         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
7104         is in use.
7105
7106         dup2: fix logic bugs
7107         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
7108         REPLACE_DUP2 to decide when rpl_dup2 is needed.
7109         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
7110         exists.
7111         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
7112
7113 2009-12-07  Eric Blake  <ebb9@byu.net>
7114
7115         unlink: fix m4 detection
7116         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
7117
7118         unistd-safer: add unit test
7119         * modules/unistd-safer-tests: New file.
7120         * tests/test-dup-safer.c: Likewise.
7121         * tests/test-cloexec.c (setmode): Avoid compiler warning.
7122         * tests/test-dup2.c (setmode): Likewise.
7123         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
7124
7125         cloexec: preserve text vs. binary across dup_cloexec
7126         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
7127         mode.
7128         * modules/dup2-tests (Depends-on): Add binary-io.
7129         * modules/cloexec-tests (Depends-on): Likewise.
7130         * tests/test-dup2.c (setmode, is_mode): New helpers.
7131         (main): Add tests that translation mode is preserved.
7132         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
7133         Reported by Bruno Haible.
7134
7135         mgetgroups: reduce duplicate listings
7136         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
7137         resulting array.
7138         * tests/test-chown.h (test_chown): Simplify client.
7139         * tests/test-lchown.h (test_lchown): Likewise.
7140
7141 2009-12-06  Bruno Haible  <bruno@clisp.org>
7142
7143         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
7144         value.
7145
7146 2009-12-06  Bruno Haible  <bruno@clisp.org>
7147
7148         * lib/progname.c: Include stdio.h, stdlib.h.
7149         (set_program_name): Reject a NULL argument.
7150
7151 2009-12-05  Eric Blake  <ebb9@byu.net>
7152
7153         pipe2-safer: new module
7154         * modules/pipe2-safer: New file.
7155         * lib/unistd-safer.h (pipe2_safer): New prototype.
7156         * lib/unistd--.h (pipe2): New wrapper.
7157         * lib/pipe-safer.c (pipe2_safer): New function.
7158         * modules/pipe (Depends-on): Add pipe2-safer.
7159         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
7160
7161         stdlib-safer: preserve cloexec flag for mkostemp[s]
7162         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
7163         fd_safer_flag.
7164
7165         unistd-safer: allow preservation of cloexec status via flag
7166         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
7167         prototypes.
7168         * lib/dup-safer.c (dup_safer_flag): New function.
7169         * lib/fd-safer.c (fd_safer_flag): Likewise.
7170         * modules/cloexec (configure.ac): Set witness.
7171
7172         test-dup2: enhance test
7173         * modules/dup2-tests (Depends-on): Add cloexec.
7174         * tests/test-dup2.c (main): Enhance test.
7175
7176         cloexec: add dup_cloexec
7177         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
7178         header and comments.
7179         * lib/cloexec.c (set_cloexec_flag): Add comments.
7180         (dup_cloexec): New function, with mingw implementation borrowed
7181         from...
7182         * lib/w32spawn.h (dup_noinherit): ...here.
7183         * modules/execute (Depends-on): Add cloexec.
7184         * modules/pipe (Depends-on): Likewise.
7185         * modules/cloexec (Depends-on): Add dup2.
7186         * modules/cloexec-tests (Files): New file.
7187         * tests/test-cloexec.c: Likewise.
7188
7189         test-xalloc-die: fix test for mingw
7190         * modules/xalloc-die-tests (Files): Add tests/init.sh.
7191         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
7192         directory and .exe suffix off argv[0] output.
7193
7194         test-fseeko: fix test for mingw
7195         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
7196         than undefining fseek, so test will pass on mingw.
7197
7198 2009-12-05  Bruno Haible  <bruno@clisp.org>
7199
7200         * lib/progname.h (set_program_name): Clarify specification.
7201         * lib/progname.c (set_program_name): Likewise.
7202         Reported by Jim Meyering.
7203
7204 2009-12-05  Jim Meyering  <meyering@redhat.com>
7205
7206         maint.mk: backslash-escape parens in default regexp
7207         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
7208         backslash-escape the literal parentheses.
7209
7210         maint.mk: news-date-check: use grep -E
7211         * top/maint.mk (today): Define a Make variable, not a...
7212         (news-date-check): ...shell variable.
7213         (news-date-regexp): Use the Make variable.
7214         Use grep's -E option.  Change the failing diagnostic to mention
7215         the variable, $(news-date-regexp).
7216
7217 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
7218
7219         maintainer-makefile: allow customization of NEWS entry format
7220         * top/maint.mk (news-date-regexp): New overridable variable.
7221         (news-date-check): Use it.
7222
7223 2009-12-04  Eric Blake  <ebb9@byu.net>
7224
7225         mgetgroups: add xgetgroups, and avoid ENOSYS failures
7226         * lib/mgetgroups.h (xgetgroups): New prototype.
7227         * lib/mgetgroups.c (xgetgroups): New wrapper.
7228         (mgetgroups): Handle ENOSYS.
7229         * modules/mgetgroups (Depends-on): Add realloc.
7230         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
7231
7232         mgetgroups: avoid argument promotion issues with -1
7233         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
7234         for invalid gid_t.
7235         * tests/test-chown.h (getegid, test_chown): Likewise.
7236         * tests/test-lchown.h (getegid, test_lchown): Likewise.
7237
7238 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
7239
7240         exclude: Fix header file problems.
7241         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
7242
7243 2009-12-01  Jim Meyering  <meyering@redhat.com>
7244
7245         fts: fts_open: do not let an empty string cause immediate failure
7246         This is required in support of GNU rm, for which the command
7247         "rm A '' B" must process and remove both A and B, in spite of
7248         the empty string argument.
7249         * lib/fts.c (fts_open): Do not let the presence of an empty string
7250         cause fts_open to fail immediately.  Most fts-using tools must be
7251         able to process all arguments, in order, and can be expected to
7252         diagnose such arguments themselves.
7253
7254 2009-11-30  Eric Blake  <ebb9@byu.net>
7255
7256         utimens: fix compilation error
7257         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
7258         Declare variable at right scope.
7259
7260 2009-11-29  Jim Meyering  <meyering@redhat.com>
7261
7262         bootstrap: handle perl-5.11's changed --version output
7263         * build-aux/bootstrap (get_version): Handle perl separately,
7264         since perl-5.11's --version output is different.
7265
7266 2009-11-28  Jim Meyering  <meyering@redhat.com>
7267
7268         userspec: depend on the inttostr module, too
7269         * modules/userspec (Depends-on): Add inttostr.
7270
7271         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
7272         * lib/userspec.c (parse_with_separator): Do not accept a user ID
7273         number of MAXUID when it evaluates to (uid_t) -1.
7274         Likewise for group ID.  Reported by Matt McCutchen in
7275         <http://savannah.gnu.org/bugs/?28113>
7276
7277         userspec: reformat to use spaces, not TABs
7278         * lib/userspec.c: Expand TABs to spaces.
7279         Add Emacs' "indent-tabs-mode: nil" hint.
7280
7281 2009-11-27  Eric Blake  <ebb9@byu.net>
7282
7283         getopt-gnu: flush out another BSD bug
7284         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
7285         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
7286         flush out BSD bug.
7287         * tests/test-getopt.h (test_getopt): End lists with NULL.
7288         * tests/test-getopt_long.h (test_getopt_long): Likewise.
7289         (test_getopt_long_posix): Enhance test.
7290         * modules/getopt-posix-tests (Depends-on): Add stdbool.
7291         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
7292         getopt-gnu.
7293         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
7294         Likewise.
7295
7296 2009-11-27  Simon Josefsson  <simon@josefsson.org>
7297
7298         * modules/idpriv-droptemp-tests (Notice): Fix text.
7299
7300 2009-11-27  Jim Meyering  <meyering@redhat.com>
7301
7302         test-xalloc-die: avoid spurious failure due to libtool argv difference
7303         In a libtool-enabled project, this test would fail due to a difference
7304         in the emitted program name, e.g.,
7305         -test-xalloc-die: memory exhausted
7306         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
7307         Use program to avoid that.
7308         * modules/xalloc-die-tests (Depends-on): Add progname.
7309         * tests/test-xalloc-die.c: Include progname.h".
7310         (program_name): Remove decl.
7311         (main): Call set_program_name.
7312         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
7313
7314 2009-11-26  Richard Jones  <rjones@redhat.com>
7315
7316         w32sock: leave win32 error in place.
7317         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
7318
7319 2009-11-26  Eric Blake  <ebb9@byu.net>
7320
7321         init.sh: suggest to use skip_ and fail_ functions in comments
7322         * tests/init.sh: Add a sentence.
7323
7324 2009-11-25  Bruno Haible  <bruno@clisp.org>
7325
7326         init.sh: add documentation in comments
7327         * tests/init.sh: Add some developer and user documentation.
7328
7329 2009-11-26  Jim Meyering  <meyering@redhat.com>
7330
7331         init.sh: accommodate even those who specify bogus srcdir manually
7332         * tests/init.sh: Normally, srcdir is guaranteed by automake and
7333         configure-time tests to be sanitized, so that there is no need to
7334         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
7335         (with no double quotes) suffices.  However, since tests may be
7336         invoked manually, and since you may explicitly set srcdir to the
7337         name of a directory containing spaces, do quote its uses here.
7338         * tests/test-pread.sh: Likewise.
7339         Suggested by Bruno Haible.
7340
7341         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
7342         * tests/test-pread.sh: Write no data into the pipe, because
7343         test-pread actually reads none.  This avoids a diagnostic,
7344         "bash: echo: write error: Broken pipe", that arises in the unusual
7345         event something is ignoring SIGPIPE, and might be interpreted
7346         as some sort of failure.  Reported by Bruno Haible.
7347
7348 2009-11-25  Jim Meyering  <meyering@redhat.com>
7349
7350         test-pread: cover failure with ESPIPE and EINVAL
7351         * tests/test-pread.c (main): Test for failure, too.
7352         * tests/test-pread.sh: Invoke with stdin on a pipe.
7353         Suggested by Eric Blake.
7354
7355         pread: improvement and fix
7356         * modules/pread (Depends-on): Depend on lseek, for portability to
7357         e.g., mingw.  Suggested by Eric Blake.
7358         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
7359
7360         unistd.in.h: correct declaration of pread
7361         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
7362         Reported by Richard W.M. Jones.
7363
7364         test-pread.sh: distribute the test script
7365         * modules/pread-tests (Files): Include test-pread.sh.
7366
7367         test-pread.sh: clean up
7368         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
7369         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
7370         That is unnecessary, since it's always ".".
7371         Suggestion from Eric Blake.
7372
7373         test-pread.sh: make executable
7374         * tests/test-pread.sh: Set executable bit.
7375         Reported by Eric Blake.
7376
7377         correct typo in test-pread.sh
7378         * tests/test-pread.sh: Add #! line.
7379
7380         test pread
7381         * tests/test-pread.c: New file.
7382         * tests/test-pread.sh: Likewise.
7383         * modules/pread-tests: Likewise.
7384
7385         pread: new module
7386         * modules/pread: New file.
7387         * lib/unistd.in.h (pread): Define/declare.
7388         * lib/pread.c (pread): New file.
7389         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
7390         * modules/unistd (Makefile.am): Substitute witnesses.
7391         * doc/posix-functions/pread.texi (pread): Update.
7392         * MODULES.html.sh: Add pread.
7393
7394 2009-11-25  Jim Meyering  <meyering@redhat.com>
7395
7396         tests/init.sh: new file to be used via most *.sh tests
7397         * tests/init.sh: New file.
7398
7399 2009-11-25  Eric Blake  <ebb9@byu.net>
7400
7401         utimens: work around older Linux failure with symlinks
7402         * lib/utimens.c (lutimensat_works_really): New variable.
7403         (fdutimens, lutimens): Use it to manage kernels that support
7404         nanosecond times on files, but not on symlinks.
7405         Reported by Ondřej Vašík.
7406
7407         utimes: fix configure grammar
7408         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
7409
7410 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
7411
7412         regex: Fix fastmap for multibyte character ranges.
7413         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
7414         characters when a multibyte character range is included.
7415
7416 2009-11-22  Andy Wingo  <wingo@pobox.com>
7417
7418         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
7419         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
7420
7421 2009-11-24  Bruno Haible  <bruno@clisp.org>
7422
7423         doc: Most *_l functions exist in MacOS X 10.5.
7424         * doc/posix-functions/duplocale.texi: Update platforms list.
7425         * doc/posix-functions/freelocale.texi: Likewise.
7426         * doc/posix-functions/newlocale.texi: Likewise.
7427         * doc/posix-functions/uselocale.texi: Likewise.
7428         * doc/posix-functions/isalnum_l.texi: Likewise.
7429         * doc/posix-functions/isalpha_l.texi: Likewise.
7430         * doc/posix-functions/isblank_l.texi: Likewise.
7431         * doc/posix-functions/iscntrl_l.texi: Likewise.
7432         * doc/posix-functions/isdigit_l.texi: Likewise.
7433         * doc/posix-functions/isgraph_l.texi: Likewise.
7434         * doc/posix-functions/islower_l.texi: Likewise.
7435         * doc/posix-functions/isprint_l.texi: Likewise.
7436         * doc/posix-functions/ispunct_l.texi: Likewise.
7437         * doc/posix-functions/isspace_l.texi: Likewise.
7438         * doc/posix-functions/isupper_l.texi: Likewise.
7439         * doc/posix-functions/iswalnum_l.texi: Likewise.
7440         * doc/posix-functions/iswalpha_l.texi: Likewise.
7441         * doc/posix-functions/iswblank_l.texi: Likewise.
7442         * doc/posix-functions/iswcntrl_l.texi: Likewise.
7443         * doc/posix-functions/iswctype_l.texi: Likewise.
7444         * doc/posix-functions/iswdigit_l.texi: Likewise.
7445         * doc/posix-functions/iswgraph_l.texi: Likewise.
7446         * doc/posix-functions/iswlower_l.texi: Likewise.
7447         * doc/posix-functions/iswprint_l.texi: Likewise.
7448         * doc/posix-functions/iswpunct_l.texi: Likewise.
7449         * doc/posix-functions/iswspace_l.texi: Likewise.
7450         * doc/posix-functions/iswupper_l.texi: Likewise.
7451         * doc/posix-functions/iswxdigit_l.texi: Likewise.
7452         * doc/posix-functions/isxdigit_l.texi: Likewise.
7453         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
7454         * doc/posix-functions/strcasecmp_l.texi: Likewise.
7455         * doc/posix-functions/strcoll_l.texi: Likewise.
7456         * doc/posix-functions/strfmon_l.texi: Likewise.
7457         * doc/posix-functions/strftime_l.texi: Likewise.
7458         * doc/posix-functions/strncasecmp_l.texi: Likewise.
7459         * doc/posix-functions/strxfrm_l.texi: Likewise.
7460         * doc/posix-functions/tolower_l.texi: Likewise.
7461         * doc/posix-functions/toupper_l.texi: Likewise.
7462         * doc/posix-functions/towctrans_l.texi: Likewise.
7463         * doc/posix-functions/towlower_l.texi: Likewise.
7464         * doc/posix-functions/towupper_l.texi: Likewise.
7465         * doc/posix-functions/wcscoll_l.texi: Likewise.
7466         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
7467         * doc/posix-functions/wctrans_l.texi: Likewise.
7468         * doc/posix-functions/wctype_l.texi: Likewise.
7469         * doc/glibc-functions/strptime_l.texi: Likewise.
7470         * doc/glibc-functions/strtod_l.texi: Likewise.
7471         * doc/glibc-functions/strtof_l.texi: Likewise.
7472         * doc/glibc-functions/strtol_l.texi: Likewise.
7473         * doc/glibc-functions/strtold_l.texi: Likewise.
7474         * doc/glibc-functions/strtoll_l.texi: Likewise.
7475         * doc/glibc-functions/strtoul_l.texi: Likewise.
7476         * doc/glibc-functions/strtoull_l.texi: Likewise.
7477         * doc/glibc-functions/wcsftime_l.texi: Likewise.
7478         * doc/glibc-functions/wcstod_l.texi: Likewise.
7479         * doc/glibc-functions/wcstof_l.texi: Likewise.
7480         * doc/glibc-functions/wcstol_l.texi: Likewise.
7481         * doc/glibc-functions/wcstold_l.texi: Likewise.
7482         * doc/glibc-functions/wcstoll_l.texi: Likewise.
7483         * doc/glibc-functions/wcstoul_l.texi: Likewise.
7484         * doc/glibc-functions/wcstoull_l.texi: Likewise.
7485
7486 2009-11-24  Bruno Haible  <bruno@clisp.org>
7487
7488         duplocale: Fix logic bug.
7489         * lib/duplocale.c: Don't include <langinfo.h>.
7490         (_NL_LOCALE_NAME): Remove macro.
7491         (rpl_duplocale): Use setlocale instead of nl_langinfo.
7492         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
7493
7494 2009-11-23  Jim Meyering  <meyering@redhat.com>
7495
7496         test-update-copyright: don't hard-code /usr/bin/perl
7497         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
7498         perl to print the current year.  Gilles Espinasse reported that
7499         the replaced use of perl was hard-coded as /usr/bin/perl.
7500
7501 2009-11-23  Bruno Haible  <bruno@clisp.org>
7502
7503         duplocale: Add support for glibc 2.3.x.
7504         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
7505
7506 2009-11-22  Bruno Haible  <bruno@clisp.org>
7507
7508         vasnprintf: Tiny optimization.
7509         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
7510         MacOS X.
7511
7512 2009-11-22  Bruno Haible  <bruno@clisp.org>
7513
7514         Tests for module 'duplocale'.
7515         * modules/duplocale-tests: New file.
7516         * tests/test-duplocale.c: New file.
7517
7518         New module 'duplocale'.
7519         * m4/duplocale.m4: New file.
7520         * lib/locale.in.h (duplocale): New declaration.
7521         * lib/duplocale.c: New file.
7522         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
7523         gl_LOCALE_H_DEFAULTS): New macros.
7524         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
7525         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
7526         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
7527         REPLACE_DUPLOCALE.
7528         * modules/duplocale: New file.
7529         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
7530
7531 2009-11-22  Bruno Haible  <bruno@clisp.org>
7532
7533         * modules/locale-tests (configure.ac): Test for newlocale function.
7534         * tests/test-locale.c: When the system has extended locale functions,
7535         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
7536
7537         locale: Make locale_t available when possible.
7538         * lib/locale.in.h: Include <xlocale.h> when it exists.
7539         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
7540         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
7541         * modules/locale (Depends-on): Add extensions.
7542         (Makefile.am): Also substitute HAVE_XLOCALE_H.
7543         * doc/posix-headers/locale.texi: Document the problem with locale_t.
7544
7545 2009-11-22  Bruno Haible  <bruno@clisp.org>
7546
7547         Add comments.
7548         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
7549         invocation.
7550         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
7551         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
7552         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
7553
7554 2009-11-22  Bruno Haible  <bruno@clisp.org>
7555
7556         error: account for the possibility of freopen (stdout).
7557         * lib/error.c: Include <unistd.h>.
7558         (flush_stdout): New function, extracted from error and error_at_line.
7559         Determine stdout's fd dynamically.
7560         (error, error_at_line): Invoke flush_stdout.
7561         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
7562         * modules/error (Depends-on): Add unistd.
7563
7564 2009-11-22  Bruno Haible  <bruno@clisp.org>
7565
7566         diffseq: Add comment.
7567         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
7568
7569 2009-11-22  Jim Meyering  <meyering@redhat.com>
7570
7571         c-stack: avoid defining an unused static function
7572         * lib/c-stack.c (find_stack_direction): Do not define this function
7573         when it will not be used.
7574
7575         diffseq: avoid spurious gcc warnings
7576         * lib/diffseq.h (IF_LINT2): Define.
7577         (compareseq): Use it to initialize two members of "part".
7578         This avoids two used-uninitialized warnings.
7579
7580 2009-11-21  Jim Meyering  <meyering@redhat.com>
7581
7582         c-stack: avoid "ignoring return value of `write'" warning
7583         * lib/c-stack.c: Include "ignore-value.h".
7584         (die): Explicitly ignore each write return value.
7585         * modules/c-stack (Depends-on): Add ignore-value.
7586
7587 2009-11-21  Bruno Haible  <bruno@clisp.org>
7588
7589         diffseq: reduce scope of variable 'best'.
7590         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
7591         variable, earlier used for two different purposes.
7592
7593 2009-11-21  Jim Meyering  <meyering@redhat.com>
7594
7595         diffseq: remove useless assignment to "best"
7596         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
7597         assignment.  At that point "best" is already guaranteed to be zero.
7598
7599 2009-11-20  Eric Blake  <ebb9@byu.net>
7600
7601         build: mention ftp redirector in release announcements
7602         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
7603         values that used to come from cfg.mk; mention FTP redirect URL.
7604         * build-aux/announce-gen: Mention the mirror list.
7605         Suggested by Karl Berry.
7606
7607         nanosleep: improve port to mingw
7608         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
7609         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
7610         LIB_NANOSLEEP, but only when needed.
7611         * modules/select (Link): Document LIBSOCKET.
7612         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
7613         enough.
7614
7615         nanosleep: work around cygwin bug
7616         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
7617         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
7618         bug.
7619         (getnow): Delete, not needed.
7620         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
7621         LIB_CLOCK_GETTIME.
7622         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
7623         clock-time, gettime.
7624         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
7625         bug.
7626         * modules/nanosleep-tests: New test.
7627         * tests/test-nanosleep.c: New file.
7628
7629         sleep: work around cygwin bug
7630         * lib/sleep.c (rpl_sleep): Work around the bug.
7631         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
7632         (gl_PREREQ_SLEEP): Delete unused macro.
7633         * modules/sleep (Depends-on): Add verify.
7634         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
7635         * modules/unistd (Makefile.am): Substitute witness.
7636         * lib/unistd.in.h (sleep): Update prototype.
7637         * doc/posix-functions/sleep.texi (sleep): Document the bug.
7638         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
7639         * modules/sleep-tests (Depends-on): Check for alarm.
7640
7641 2009-11-20  Jim Meyering  <meyering@redhat.com>
7642
7643         maint.mk: improve sc_prohibit_magic_number_exit
7644         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
7645         so it does not match uses like System.exit(1).
7646         Add comments showing how to correct all offenders.
7647
7648 2009-11-19  Eric Blake  <ebb9@byu.net>
7649
7650         xalloc-die-tests: add missing library
7651         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
7652
7653         test-xvasprintf: silence compiler warnings
7654         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
7655         empty string from gcc.
7656
7657 2009-11-19  Jim Meyering  <meyering@redhat.com>
7658
7659         xfreopen: new module, from coreutils
7660         * modules/xfreopen: New module.
7661         * lib/xfreopen.c: New file.
7662         * lib/xfreopen.h: New file.
7663         * MODULES.html.sh (File stream based Input/Output"): Add it.
7664
7665 2009-11-19  Eric Blake  <ebb9@byu.net>
7666
7667         manywarnings: depend on warnings
7668         * modules/manywarnings (Depends-on): Add warnings.
7669
7670         build: avoid compiler warnings
7671         * lib/select.c (rpl_select): Delete unused variable.
7672         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
7673
7674 2009-11-18  Eric Blake  <ebb9@byu.net>
7675
7676         tests: avoid false negative with --with-packager
7677         * tests/test-version-etc.sh: Discard packager information.
7678         * tests/test-argp-version-etc-1.sh: Likewise.
7679         Reported by Mike Frysinger.
7680
7681         utimens: fix regression on Solaris
7682         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
7683         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
7684         can only change fd timestamps via futimesat.  Instead, use an
7685         additional witness macro to avoid BSD bug.
7686         Reported by Jim Meyering.
7687
7688 2009-11-17  Eric Blake  <ebb9@byu.net>
7689
7690         usleep: use it to simplify tests
7691         * modules/stat-time-tests (Depends-on): Add usleep.
7692         (configure.ac): Drop usleep check.
7693         * modules/chown-tests (Depends-on, configure.ac): Likewise.
7694         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
7695         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
7696         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
7697         * modules/openat-tests (Depends-on, configure.ac): Likewise.
7698         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
7699         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
7700         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
7701         Likewise.
7702         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
7703         * tests/test-lchown.h (nap): Likewise.
7704         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
7705         * tests/test-stat-time.c (nap): Likewise.
7706         * tests/test-utimens-common.h (nap): Update comments.
7707
7708         usleep: new module
7709         * modules/usleep: New file.
7710         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
7711         * lib/usleep.c (usleep): Likewise.
7712         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
7713         * modules/unistd (Makefile.am): Substitute witnesses.
7714         * lib/unistd.in.h (usleep): Add declaration.
7715         * doc/pastposix-functions/usleep.texi (usleep): Document this.
7716         * MODULES.html.sh (Date and time): Likewise.
7717         * modules/usleep-tests (Depends-on): New test.
7718         * tests/test-usleep.c: New file.
7719
7720         chown: work around OpenBSD bug
7721         * lib/chown.c (rpl_chown): Work around the bug.
7722         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
7723         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
7724         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
7725         * modules/chown (Depends-on): Add stdbool.
7726         * modules/lchown (Depends-on): Likewise.
7727         * doc/posix-functions/chown.texi (chown): Document the bug.
7728         * doc/posix-functions/lchown.texi (lchown): Likewise.
7729         * tests/test-lchown.h (test_chown): Relax test.
7730
7731         mkstemp: avoid conflict with C++ keyword template
7732         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
7733         * lib/mkostemp.c (mkostemp): Likewise.
7734         * lib/mkostemps.c (mkostemps): Likewise.
7735         * lib/mkstemp.c (mkstemp): Likewise.
7736         * lib/mkstemps.c (mkstemps): Likewise.
7737
7738         xalloc-die-tests: optimize
7739         * tests/test-xalloc-die.sh: Reduce number of processes.
7740
7741 2009-11-17  Simon Josefsson  <simon@josefsson.org>
7742
7743         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
7744         patch from ludo@gnu.org (Ludovic Courtès).
7745
7746 2009-11-17  Jim Meyering  <meyering@redhat.com>
7747
7748         version-etc: use proper license string
7749         * modules/version-etc (License): Use LGPL, not LGPLv3+.
7750         * modules/version-etc-fsf: Likewise.
7751
7752 2009-11-17  Simon Josefsson  <simon@josefsson.org>
7753
7754         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
7755         printed to stdout.  Deal with EOL differences.
7756
7757 2009-11-17  Eric Blake  <ebb9@byu.net>
7758
7759         unsetenv: work around Solaris bug
7760         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
7761         * lib/unsetenv.c (rpl_unsetenv): Work around it.
7762         Reported by Jim Meyering.
7763
7764         vasnprintf: avoid compiler warnings
7765         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
7766         variables.
7767         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
7768
7769 2009-11-17  Simon Josefsson  <simon@josefsson.org>
7770
7771         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
7772         settings since xalloc-die is no longer the self test,
7773         xalloc-die.sh is.
7774
7775 2009-11-17  Jim Meyering  <meyering@redhat.com>
7776
7777         test-xalloc-die.sh: make the code agree with the commit log
7778         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
7779         at the end, just in case you happen to have a test-xalloc-die
7780         program in some other PATH directory.
7781
7782         test-xalloc-die.sh: fix a portability bug
7783         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
7784         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
7785         Otherwise, argv[0] (as often seen in diagnostics) would be too
7786         system-dependent, sometimes with, and sometimes without the leading "./".
7787
7788         version-etc-fsf: relax license to LGPLv3+
7789         * modules/version-etc-fsf (License): Relax license.
7790
7791 2009-11-16  Eric Blake  <ebb9@byu.net>
7792
7793         xalloc-die-tests: avoid printing null pointer
7794         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
7795         shell script.
7796         * tests/test-xalloc-die.c (program_name): Declare.
7797         * tests/test-xalloc-die.sh (tmpfiles): New file.
7798
7799         setenv, unsetenv: work around various bugs
7800         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
7801         (setenv) [HAVE_SETENV]: Work around bugs.
7802         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
7803         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
7804         for bugs.
7805         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
7806         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
7807         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
7808         * modules/stdlib (Makefile.am): Update substitutions.
7809         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
7810         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
7811         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
7812         * modules/setenv-tests: New test.
7813         * modules/unsetenv-tests: Likewise.
7814         * tests/test-setenv.c: New file.
7815         * tests/test-unsetenv.c: Likewise.
7816
7817 2009-11-16  Jim Meyering  <meyering@redhat.com>
7818
7819         version-etc: relax license to LGPLv3+
7820         * modules/version-etc (License): Relax license.
7821
7822         better AC_REQUIRE expanded-before-required-warning avoidance
7823         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
7824         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
7825         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
7826         which is no longer needed.
7827
7828 2009-11-16  Eric Blake  <ebb9@byu.net>
7829
7830         test-freading: clean up temporary file
7831         * tests/test-freading.c (main): Remove file on success, and use
7832         ASSERT more liberally.
7833         Reported by Jim Meyering.
7834
7835 2009-11-16  Jim Meyering  <meyering@redhat.com>
7836
7837         avoid new AC_REQUIRE expanded-before-required warnings
7838         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
7839         merely using it.
7840         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
7841         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
7842
7843 2009-11-15  Simon Josefsson  <simon@josefsson.org>
7844
7845         * tests/test-xalloc-die.c: New file.
7846         * modules/xalloc-die-tests: New file.
7847         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
7848         XFAIL_TESTS so it can be appended by modules.
7849
7850 2009-11-15  Simon Josefsson  <simon@josefsson.org>
7851
7852         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
7853         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
7854
7855 2009-11-14  Eric Blake  <ebb9@byu.net>
7856
7857         fnmatch: avoid compiler warning
7858         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
7859         to silence compiler warning about mismatch signedness in ?:.
7860         Reported by Robert Millan.
7861
7862         intprops: add double-inclusion guard
7863         * lib/intprops.h: Allow idempotent includes.
7864         Suggested by Bruce Korb.
7865
7866         openat: detect Solaris fchownat bug
7867         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
7868         penalizing glibc chownat when only lchownat is broken.
7869         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
7870         trailing slash bugs.
7871         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
7872         * modules/openat-tests (Files): Include more files.
7873         (Depends-on): Add mgetgroups, sleep, stat-time.
7874         (configure.ac): Add additional checks.
7875         (Makefile.am): Build new test.
7876         * tests/test-fchownat.c: New file.
7877
7878         lchown: detect Solaris and FreeBSD bug
7879         * lib/lchown.c (rpl_lchown): Work around bug.
7880         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
7881         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
7882         * modules/unistd (Makefile.am): Populate it.
7883         * lib/unistd.in.h (lchown): Update declaration.
7884         * doc/posix-functions/lchown.texi (lchown): Document the bug.
7885         * modules/lchown-tests: New file.
7886         * tests/test-lchown.h (test_lchown): Likewise.
7887         * tests/test-lchown.c (main): Likewise.
7888
7889         chown: detect Solaris and FreeBSD bug
7890         * lib/chown.c (rpl_chown): Work around bug.
7891         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
7892         (gl_PREREQ_CHOWN): Delete.
7893         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
7894         * modules/unistd (Makefile.am): Populate it.
7895         * lib/unistd.in.h (chown): Update declaration.
7896         * lib/lchown.c (chown): Update client.
7897         * modules/lchown (Depends-on): Add lstat.
7898         * doc/posix-functions/chown.texi (chown): Document the bug.
7899         * doc/posix-functions/getgroups.texi (getgroups): Document
7900         getgroups pitfall.
7901         * modules/chown-tests: New file.
7902         * tests/test-chown.h (test_chown): Likewise.
7903         * tests/test-chown.c (main): Likewise.
7904
7905 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
7906
7907         gnulib-tool: correctly detect absence of m4 directories
7908         * gnulib-tool: Avoid extra newline on data passed to wc -l.
7909
7910 2009-11-14  Jim Meyering  <meyering@redhat.com>
7911
7912         maint.mk: Prohibit inclusion of "xalloc.h" without use.
7913         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
7914
7915 2009-11-14  John W. Eaton  <jwe@gnu.org>
7916
7917         strftime.h: wrap funtion declaration in extern "C" block
7918         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
7919
7920 2009-11-13  Eric Blake  <ebb9@byu.net>
7921
7922         getgroups: avoid compiler warning
7923         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
7924
7925         getgroups: work around FreeBSD bug
7926         * lib/getgroups.c (rpl_getgroups): Work around the bug.
7927         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
7928         * doc/posix-functions/getgroups.texi (getgroups): Document it.
7929         * tests/test-getgroups.c (main): Fix buffer overrun.
7930
7931         getgroups: avoid compilation failure
7932         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
7933         * modules/getgroups (Depends-on): Add stdint.
7934
7935 2009-11-13  Jim Meyering  <meyering@redhat.com>
7936
7937         test-getgroups: avoid compilation failure
7938         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
7939
7940 2009-11-13  Eric Blake  <ebb9@byu.net>
7941
7942         mgetgroups: new module, taken from coreutils
7943         * modules/mgetgroups: New file.
7944         * lib/mgetgroups.h: Likewise.
7945         * lib/mgetgroups.c (mgetgroups): Likewise.
7946         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
7947         * MODULES.html.sh (Users and groups): Mention it.
7948
7949         getgroups: don't expose GETGROUPS_T to user
7950         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
7951         an element at a time if GETGROUPS_T is wrong size.
7952         * lib/getugroups.h (getugroups): Change signature.
7953         * lib/unistd.in.h (getgroups): Likewise.
7954         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
7955         signature needs fixing.
7956         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
7957         AC_TYPE_GETGROUPS.
7958         * modules/group-member (Depends-on): Add getgroups.
7959         * lib/group-member.c (group_info, get_group_info): Use gid_t.
7960         (group_member): Rely on getgroups replacement.
7961         * lib/getugroups.c (getugroups): Use gid_t.
7962         * tests/test-getgroups.c (main): Likewise.
7963         * NEWS: Mention the signature change.
7964         * doc/posix-functions/getgroups.texi (getgroups): Mention the
7965         problem with signature.
7966         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
7967         GETGROUPS_T is still useful for setgroups.
7968
7969         getgroups, getugroups: provide stubs for mingw
7970         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
7971         * lib/getugroups.c (getugroups): Likewise.
7972         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
7973         function.  Modernize replacement scheme.
7974         (gl_PREREQ_GETGROUPS): Delete.
7975         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
7976         * modules/getgroups (configure.ac): Declare witness.
7977         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
7978         * modules/unistd (Depends-on): Substitute witness.
7979         * lib/unistd.in.h (getgroups): Declare replacement.
7980
7981         getgroups: avoid calling exit
7982         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
7983         drop xalloc.
7984         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
7985         dependencies.
7986         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
7987         exiting, in the rare case of malloc failure.
7988
7989         getgroups: fix logic error
7990         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
7991         has more than 20 groups.
7992         * modules/getgroups-tests: New test.
7993         * tests/test-getgroups.c: New file.
7994
7995 2009-11-13  Simon Josefsson  <simon@josefsson.org>
7996
7997         * tests/test-base64.c: Improve.
7998
7999 2009-11-13  Simon Josefsson  <simon@josefsson.org>
8000
8001         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
8002         Blake <ebb9@byu.net>.
8003
8004 2009-11-13  Simon Josefsson  <simon@josefsson.org>
8005
8006         * tests/test-xvasprintf.c: Add %s%s related checks.
8007
8008 2009-11-12  Eric Blake  <ebb9@byu.net>
8009
8010         version-etc: match standards.texi style
8011         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
8012         and use <> only for URLs.
8013
8014 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
8015
8016         fts: do not fail on a submount during traversal
8017         * lib/fts.c (fts_build): Read the stat info again after opening
8018         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
8019         Original report at http://bugzilla.redhat.com/501848.
8020
8021 2009-11-12  Jim Meyering  <meyering@redhat.com>
8022
8023         bootstrap: sync from coreutils
8024         * build-aux/bootstrap (bootstrap_epilogue): New function.
8025         Use git_modules_config in one more place.  This make bootstrap's
8026         --gnulib-srcdir option more useful for testing.
8027
8028         bootstrap: generalize autoheader check
8029         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
8030         AC_CONFIG_HEADERS.
8031
8032 2009-11-11  Eric Blake  <ebb9@byu.net>
8033
8034         mkfifoat: use new modules for Solaris and BSD bugs
8035         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
8036         * lib/mkfifoat.c (mknodat): Split...
8037         * lib/mknodat.c (mknodat): ...into new file.
8038         * modules/mkfifoat (Files): Ship new file.
8039         (Depends-on): Add mkfifo, mknod.
8040         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
8041         (Depends-on): Add symlink.
8042         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
8043         redundant with test_mkfifo.h.
8044         (do_mkfifoat, do_mknodat): New helpers.
8045
8046         mknod: new module
8047         * modules/mknod: New file.
8048         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
8049         * lib/mknod.c (mknod): Likewise.
8050         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
8051         defaults.
8052         * modules/sys_stat (Makefile.am): Substitute them.
8053         * lib/sys_stat.in.h (mknod): Declare replacement.
8054         * MODULES.html.sh (Support for systems lacking POSIX:2008):
8055         Document it.
8056         * doc/posix-functions/mknod.texi (mknod): Likewise.
8057         * modules/mknod-tests: New test.
8058         * tests/test-mknod.c: Likewise.
8059
8060         mkfifo: new module
8061         * modules/mkfifo: New file.
8062         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
8063         * lib/mkfifo.c (mkfifo): Likewise.
8064         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
8065         defaults.
8066         * modules/sys_stat (Makefile.am): Substitute them.
8067         * lib/sys_stat.in.h (mkfifo): Declare replacement.
8068         * MODULES.html.sh (Support for systems lacking POSIX:2008):
8069         Document it.
8070         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
8071         * modules/mkfifo-tests: New test.
8072         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
8073         from test-mkfifoat.c.
8074         * tests/test-mkfifo.c: New file.
8075
8076         readlink: detect FreeBSD bug
8077         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
8078         slash on symlink.
8079         * doc/posix-functions/readlink.texi (readlink): Document the bug.
8080         * tests/test-readlink.h (test_readlink): Enhance test.
8081
8082         symlink: detect FreeBSD bug
8083         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
8084         slash on symlink.
8085         * doc/posix-functions/symlink.texi (symlink): Document the bug.
8086         * tests/test-symlink.h (test_symlink): Enhance test.
8087
8088 2009-11-10  Eric Blake  <ebb9@byu.net>
8089
8090         link: detect FreeBSD bug
8091         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
8092         symlink.
8093         * doc/posix-functions/link.texi (link): Document the bug.
8094         * tests/test-link.h (test_link): Enhance test.
8095         * tests/test-linkat.c (main): Update caller.
8096
8097         unlink, remove: detect FreeBSD bug
8098         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
8099         slash on symlink.
8100         * doc/posix-functions/unlink.texi (unlink): Document the bug.
8101         * doc/posix-functions/remove.texi (remove): Likewise.
8102         * tests/test-unlink.h (test_unlink): Enhance test.
8103         * tests/test-remove.c (main): Likewise.
8104
8105 2009-11-09  Eric Blake  <ebb9@byu.net>
8106
8107         rename: detect FreeBSD bug
8108         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
8109         slash on symlink.
8110         * modules/renameat-tests (Depends-on): Add filenamecat.
8111         * tests/test-rename.h (test_rename): Allow one more errno.
8112         * tests/test-renameat.c (main): Likewise.
8113         * doc/posix-functions/rename.texi (rename): Document the bug.
8114
8115         open: detect FreeBSD bug
8116         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
8117         symlink.
8118         * doc/posix-functions/open.texi (open): Document the bug.
8119         * doc/posix-functions/utimes.texi (utimes): Likewise.
8120         * tests/test-open.h (test_open): Add parameters, and test symlink
8121         handling.
8122         * tests/test-open.c (main): Adjust caller.
8123         * tests/test-fcntl-safer.c (main): Likewise.
8124         * modules/open-tests (Depends-on): Add stdbool, symlink.
8125         * modules/fcntl-safer-tests (Depends-on): Likewise.
8126         * tests/test-openat.c (main): Add test-open tests.
8127
8128         stat: detect FreeBSD bug
8129         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
8130         symlink.
8131         * doc/posix-functions/stat.texi (stat): Document the bug.
8132         * tests/test-stat.h (test_stat_func): Add argument.
8133         * tests/test-stat.c (main): Adjust caller.
8134         * tests/test-fstatat.c (main): Likewise.
8135         * modules/stat-tests (Depends-on): Add stdbool, symlink.
8136         Reported by Jim Meyering.
8137
8138 2009-11-09  James Youngman  <jay@gnu.org>
8139
8140         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
8141         * lib/strftime.c: Correct placement of #include "ignore-value.h".
8142
8143 2009-11-08  Jim Meyering  <meyering@redhat.com>
8144
8145         utimens: remove invalid futimesat call
8146         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
8147         It used the file descriptor of the target file as the DIR_FD
8148         parameter and NULL as the file name.  That caused failure with
8149         errno == EFAULT on FreeBSD-8.0-rc2
8150
8151 2009-11-07  Eric Blake  <ebb9@byu.net>
8152
8153         fflush, freadseek: use fseeko, not fseek
8154         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
8155         (clear_ungetc_buffer): Avoid potential problems on large files.
8156         * lib/freadseek.c (freadseek): Likewise.
8157         * modules/freadseek (Depends-on): Add fseeko.
8158         * modules/fseek (configure.ac): Set a witness.
8159         * tests/test-fflush.c (main): Use fseeko.
8160         * tests/test-fpurge.c (fseek): Disable link warning.
8161         * tests/test-freadable.c (fseek): Likewise.
8162         * tests/test-freading.c (fseek): Likewise.
8163         * tests/test-fseeko.c (fseek): Likewise.
8164         * tests/test-ftell.c (fseek): Likewise.
8165         * tests/test-ftello.c (fseek): Likewise.
8166         * tests/test-fwritable.c (fseek): Likewise.
8167         * tests/test-fwriting.c (fseek): Likewise.
8168
8169 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8170
8171         * modules/memchr (Depends-on): Drop getpagesize dependency.
8172
8173 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8174
8175         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
8176         Reported by Ludovic Courtès.
8177         * build-aux/pmccabe2html: Improve example usage.
8178         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
8179
8180 2009-11-06  Jim Meyering  <meyering@redhat.com>
8181
8182         do-release-commit-and-tag: New module.
8183         Automate the release-commit and tag process.
8184         * build-aux/do-release-commit-and-tag: New script, from coreutils.
8185         * modules/do-release-commit-and-tag: New file.
8186         * MODULES.html.sh (Support for maintaining and releasing): Add it.
8187
8188 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8189
8190         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
8191         because test-select.c uses inet_pton.
8192
8193 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8194
8195         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
8196         GETADDRINFO_LIB.  Bump serial number.
8197         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
8198         Suggested by Eric Blake <ebb9@byu.net>.
8199
8200 2009-11-05  Eric Blake  <ebb9@byu.net>
8201
8202         strtod: detect darwin bug
8203         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
8204         Reported by Leo Davis.
8205
8206         freopen-safer: new module
8207         * modules/freopen-safer: New module.
8208         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
8209         * lib/freopen-safer.c (freopen_safer): New file.
8210         * lib/stdio-safer.h (freopen_safer): New declaration.
8211         * lib/stdio--.h (freopen): New override.
8212         * MODULES.html.sh (File stream based Input/Output): Mention it.
8213         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
8214         freopen-safer module.
8215         * doc/posix-functions/stderr.texi (stderr): Likewise.
8216         * doc/posix-functions/stdin.texi (stdin): Likewise.
8217         * doc/posix-functions/stdout.texi (stdout): Likewise.
8218         * modules/freopen-safer-tests: New test.
8219         * tests/test-reopen-safer.c: New file.
8220
8221 2009-11-05  Jim Meyering  <meyering@redhat.com>
8222
8223         maint.mk: Prohibit inclusion of "close-stream.h" without use.
8224         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
8225
8226 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8227
8228         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
8229
8230 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8231
8232         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
8233
8234 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8235
8236         Fix link error.
8237         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
8238         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
8239
8240 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8241
8242         * tests/test-func.c: Also test value of __func__.
8243
8244 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8245
8246         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
8247         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
8248
8249 2009-11-05  Bruno Haible  <bruno@clisp.org>
8250
8251         Fix link error.
8252         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
8253         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
8254         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
8255
8256 2009-11-05  Bruno Haible  <bruno@clisp.org>
8257
8258         Tests for module 'inet_pton'.
8259         * modules/inet_pton-tests: New file.
8260         * tests/test-inet_pton.c: New file.
8261
8262 2009-11-05  Bruno Haible  <bruno@clisp.org>
8263
8264         Tests for module 'inet_ntop'.
8265         * modules/inet_ntop-tests: New file.
8266         * tests/test-inet_ntop.c: New file.
8267
8268 2009-11-04  Eric Blake  <ebb9@byu.net>
8269
8270         stdlib-safer: wrap all mkstemp variants
8271         * modules/mkostemp (configure.ac): Set witness.
8272         * modules/mkostemps (configure.ac): Likewise.
8273         * modules/mkstemps (configure.ac): Likewise.
8274         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
8275         (mkstemps_safer): Wrap more functions.
8276         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
8277         wrapping.
8278         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
8279         (mkstemps_safer): Implement the wrappers.
8280
8281         mkstemps, mkostemps: new modules
8282         * modules/mkostemps: New module.
8283         * modules/mkstemps: Likewise.
8284         * lib/mkostemps.c (mkostemps): New file.
8285         * lib/mkstemps.c (mkstemps): Likewise.
8286         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
8287         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
8288         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
8289         * modules/stdlib (Makefile.am): Substitute them.
8290         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
8291         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
8292         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
8293         * doc/gnulib.texi (Glibc stdlib.h): Include them.
8294         * MODULES.html.sh (File system functions): Mention them.
8295
8296         tempname: resync from glibc
8297         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
8298         same values for __GT_FILE as glibc.  Abort even when assertions
8299         are disabled.
8300         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
8301         match its value otherwise.  Allow idempotent inclusion.
8302         * lib/mkdtemp.c (mkdtemp): Adjust caller.
8303         * lib/mkostemp.c (mkostemp): Likewise.
8304         * lib/mkstemp.c (mkstemp): Likewise.
8305         * lib/tmpfile.c (tmpfile): Likewise.
8306         * NEWS: Document this.
8307
8308         utimens: fix use of futimens on older Linux
8309         * lib/utimens.c (fdutimens): Use updated, rather than original,
8310         timespec to avoid bug in older Linux kernel.
8311         Reported by Simon Josefsson.
8312
8313 2009-11-04  Bruno Haible  <bruno@clisp.org>
8314
8315         Make num_processors more flexible and consistent.
8316         * lib/nproc.h (enum nproc_query): New type.
8317         (num_processors): Add a 'query' argument.
8318         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
8319         (num_processors): Add a 'query' argument. Test the value of the
8320         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
8321         mingw, count the number of CPUs available for the current process.
8322         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
8323         Check for sched_getaffinity and sched_getaffinity_np.
8324         * modules/nproc (Depends-on): Add c-ctype, extensions.
8325         * NEWS: Mention the change.
8326
8327 2009-11-03  Bruno Haible  <bruno@clisp.org>
8328
8329         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
8330
8331 2009-11-03  Jim Meyering  <meyering@redhat.com>
8332
8333         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
8334         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
8335         if it is defined.
8336
8337 2009-11-02  Eric Blake  <ebb9@byu.net>
8338
8339         mktime, timegm: share common declaration
8340         * lib/mktime-internal.h: New file.
8341         * lib/mktime.c: Use it rather than open-coding a declaration.
8342         * lib/timegm.c: Likewise.
8343         * modules/mktime (Files): Ship it.
8344         * modules/timegm (Files): Likewise.
8345         Suggested by Bruno Haible.
8346
8347         test-update-copyright: update test to match script changes
8348         * tests/test-update-copyright.sh: Avoid hard-coding perl
8349         location.  Don't update *.bak created by earlier runs.
8350
8351 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
8352             Simon Josefsson  <simon@josefsson.org>
8353             Bruno Haible  <bruno@clisp.org>
8354
8355         Fix link error on Solaris 8.
8356         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
8357         also in libnsl. Define also INET_PTON_LIB.
8358         * modules/inet_pton (Link): New section.
8359
8360 2009-11-02  Simon Josefsson  <simon@josefsson.org>
8361             Bruno Haible  <bruno@clisp.org>
8362
8363         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
8364         * modules/inet_ntop (Link): New section.
8365         Reported by Boyan Kasarov <bkasarov@gmail.com>.
8366
8367 2009-11-02  Eric Blake  <ebb9@byu.net>
8368
8369         maint: avoid compiler warnings in m4 macros
8370         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
8371         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
8372
8373 2009-11-02  Simon Josefsson  <simon@josefsson.org>
8374
8375         * m4/pmccabe2html.m4: Remove file.
8376         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
8377         function.  Change maintainer.
8378         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
8379         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
8380         Courtès).
8381
8382 2009-10-31  Eric Blake  <ebb9@byu.net>
8383
8384         fseeko: fix m4 regression
8385         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
8386         regression from 2009-10-27.
8387         Reported by Ralf Wildenhues.
8388
8389 2009-10-31  Jim Meyering  <meyering@redhat.com>
8390
8391         inttostr: aesthetics and improved (compile-time) safety
8392         Define inttype_is_signed rather than inttype_is_unsigned,
8393         since the sole use is via "#if inttype_is_signed".
8394         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
8395         inttype_is_unsigned.
8396         * lib/offtostr.c (inttype_is_signed): Likewise.
8397         * lib/uinttostr.c (inttype_is_signed): Likewise.
8398         * lib/umaxtostr.c (inttype_is_signed): Likewise.
8399         * lib/inttostr.c (inttostr): Use verify to cross-check the
8400         inttype_is_signed value and the signedness of the actual type.
8401         * modules/inttostr (Depends-on): Add verify.
8402
8403 2009-10-30  Eric Blake  <ebb9@byu.net>
8404
8405         build: avoid compiler warnings
8406         * lib/fchmodat.c (lchmod): Mark unused variables.
8407         * lib/getopt.c (_getopt_initialize): Likewise.
8408         * lib/mktime.c (__mktime_internal): Provide prototype.
8409         * lib/inttostr.c (inttostr): Avoid compiler warning even with
8410         older gcc that do not understand #pragma GCC diagnostic.
8411         * lib/uinttostr.c (inttype_is_unsigned): Define.
8412         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
8413
8414 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
8415
8416         stat: fix compilation on AIX
8417         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
8418         only see struct stat64.
8419
8420 2009-10-30  Eric Blake  <ebb9@byu.net>
8421
8422         exclude: make more robust
8423         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
8424         rather than masking a coding bug.
8425         Suggested by Bruno Haible.
8426
8427 2009-10-30  Jim Meyering  <meyering@redhat.com>
8428
8429         perl scripts: remove #!/usr/bin/perl in favor of more portable...
8430         Rather than putting #!/usr/bin/perl on the first line,
8431         start with a variant of what's recommended by "man perlrun" that
8432         invokes the first "perl" program from your shell's search path.
8433         * build-aux/gitlog-to-changelog: Replace #!... as above.
8434         Add a "Local Variables" perl mode setting.
8435         Prompted by a patch from Ludovic Courtès.
8436         Improved by Eric Blake.
8437         * build-aux/useless-if-before-free: Likewise.
8438         * build-aux/announce-gen: Likewise.
8439         * build-aux/update-copyright: Likewise.
8440
8441 2009-10-29  Eric Blake  <ebb9@byu.net>
8442
8443         filenamecat-lgpl: adjust clients
8444         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
8445         filenamecat.
8446         * modules/renameat (Depends-on): Likewise.
8447
8448         filenamecat: split into filenamecat-lgpl
8449         * modules/filenamecat-lgpl: New module.
8450         * modules/filenamecat (Files): Move library-safe files into
8451         filenamecat-lgpl.
8452         (Depends-on): Add filenamecat-lgpl.
8453         (configure.ac): Declare witness.
8454         * lib/filenamecat.h (file_name_concat): Only declare when using
8455         GPL module.
8456         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
8457         Move...
8458         * lib/filenamecat-lgpl.c: ...into new file.
8459         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
8460         (gl_FILE_NAME_CONCAT): Use it.
8461         * MODULES.html.sh (File system functions): Mention new module.
8462
8463         argp: avoid memory leak
8464         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
8465         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
8466         base_name, since the latter malloc()s and can call exit().
8467         Leak introduced 2006-07-03.
8468
8469         dirname-lgpl: adjust clients that don't need full dirname
8470         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
8471         * modules/filenamecat (Depends-on): Likewise.
8472         * modules/linkat (Depends-on): Likewise.
8473         * modules/mkancesdirs (Depends-on): Likewise.
8474         * modules/mkdir (Depends-on): Likewise.
8475         * modules/openat (Depends-on): Likewise.
8476         * modules/savewd (Depends-on): Likewise.
8477         * modules/rename (Depends-on): Likewise.
8478         (License): Relax license.
8479         * modules/mkdir-tests (Depends-on): Drop progname.
8480         (Makefile.am): Delete unneeded LDADD.
8481         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
8482
8483         dirname: split into dirname-lgpl
8484         * modules/dirname-lgpl: New module.
8485         * modules/dirname (Files): Move library-safe files into
8486         dirname-lgpl.
8487         (Depends-on): Add dirname-lgpl.
8488         (configure.ac): Declare witness.
8489         * modules/double-slash-root (License): Relax license.
8490         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
8491         module.
8492         * lib/dirname.c (dir_len, mdir_name): Move...
8493         * lib/dirname-lgpl.c: ...into new file.
8494         * lib/basename.c (last_component, base_len): Move...
8495         * lib/basename-lgpl.c: ...into new file.
8496         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
8497         (gl_DIRNAME): Use it.
8498         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
8499         Mention new module.
8500         * modules/dirname-tests (Depends-on): Add progname.
8501         * tests/test-dirname.c (program_name): Delete.
8502
8503         mkdir: make safe for libraries
8504         * modules/mkdir (Depends-on): Drop xalloc.
8505         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
8506         exit.
8507
8508         tests: avoid some compiler warnings
8509         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
8510         literals.
8511         * tests/test-memchr.c (main): Avoid type mismatch.
8512         * tests/test-arpa_inet.c (main): Avoid unused parameters.
8513         * tests/test-base64.c (main): Likewise.
8514         * tests/test-getdelim.c (main): Likewise.
8515         * tests/test-gethostname.c (main): Likewise.
8516         * tests/test-getline.c (main): Likewise.
8517         * tests/test-netinet_in.c (main): Likewise.
8518         * tests/test-select.c (open_server_socket, main): Likewise.
8519         * tests/test-select-stdin.c (main): Likewise.
8520         * tests/test-sockets.c (main): Likewise.
8521         * tests/test-strsignal.c (main): Likewise.
8522         * tests/test-sys_select.c (main): Likewise.
8523         * tests/test-sys_socket.c (main): Likewise.
8524         * tests/test-u64.c (main): Likewise.
8525         * tests/test-xfprintf-posix.c (main): Likewise.
8526         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
8527
8528         sockets: avoid compiler warning
8529         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
8530
8531         maint: detect usage(1) and other suspicious exits
8532         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
8533
8534 2009-10-29  Jim Meyering  <meyering@redhat.com>
8535
8536         timespec: long-to-int truncation could make timespec_cmp malfunction
8537         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
8538         a multiple of 2^32 nanoseconds as no difference.
8539
8540 2009-10-28  Jim Meyering  <meyering@redhat.com>
8541
8542         fprintftime: wrap macro code argument in "do {...} while(0)"
8543         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
8544         cpy macro must be a statement that can be followed by a semicolon.
8545         Now that the else clause contains a comment and is hence longer
8546         than one line, I require curly braces.  That in turn requires
8547         that we wrap this code block in the standard do...while(0).
8548
8549         fprintftime: remove stray semicolon from previous change
8550         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
8551
8552         fprintftime: avoid a warning about ignored fwrite return value
8553         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
8554         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
8555         that is unsafe.
8556         * modules/fprintftime (Depends-on): Add ignore-value.
8557
8558         exclude: avoid an unwarranted warning
8559         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
8560
8561 2009-10-27  Eric Blake  <ebb9@byu.net>
8562
8563         fseek: avoid compilation failure when fflush is replaced
8564         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
8565         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
8566         module is in use.
8567         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
8568         module is not in use; since REPLACE_FSEEK worked otherwise.
8569         (GNULIB_FTELLO): Likewise for ftell.
8570         Reported by Ian Beckwith and others.
8571
8572 2009-10-27  Bruno Haible  <bruno@clisp.org>
8573
8574         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
8575         Reported by Jim Meyering.
8576
8577 2009-10-27  Jim Meyering  <jim@meyering.net>
8578             Bruno Haible  <bruno@clisp.org>
8579
8580         Avoid warning despite dropping the return value of fwrite.
8581         * lib/unicodeio.c: Include ignore-value.h.
8582         (fwrite_success_callback): Explicitly ignore fwrite's return value.
8583         * modules/unicodeio (Depends-on): Add ignore-value.
8584
8585 2009-10-26  Eric Blake  <ebb9@byu.net>
8586
8587         areadlinkat: fix fallback path
8588         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
8589         pointer and zero.
8590
8591 2009-10-22  Pádraig Brady  <P@draigBrady.com>
8592
8593         Use a better IO block size for modern systems
8594         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
8595         * lib/md2.c: Likewise.
8596         * lib/md4.c: Likewise.
8597         * lib/md5.c: Likewise.
8598         * lib/sha1.c: Likewise.
8599         * lib/sha256.c: Likewise.
8600         * lib/sha512.c: Likewise.
8601
8602 2009-10-22  Eric Blake  <ebb9@byu.net>
8603
8604         tests: avoid several compiler warnings
8605         * tests/test-getcwd.c (main): Avoid buffer underflow.
8606         * tests/test-getdate.c (main): String literals are not safe with
8607         putenv, so use setenv.  Declare unused argument.
8608         * modules/getdate-tests (Depends-on): Add setenv.
8609         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
8610         problems with string literals in char *.
8611         * tests/test-hash.c (main): Avoid shadowing declaration.
8612         (insert_new): Treat string literals as char const *.
8613         * tests/test-getopt.h (test_getopt): Likewise.
8614         (getopt_loop): Alter types to minimize casting elsewhere.
8615         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
8616         (test_getopt_long_posix): Likewise.
8617         (do_getopt_long): Add wrapper to minimize casting.
8618         * tests/test-atexit.c (clear_temp_file): Use void.
8619         * tests/test-areadlink-with-size.c (main): Declare unused
8620         arguments.
8621         * tests/test-areadlink.c (main): Likewise.
8622         * tests/test-areadlinkat-with-size.c (main): Likewise.
8623         * tests/test-areadlinkat.c (main): Likewise.
8624         * tests/test-canonicalize-lgpl.c (main): Likewise.
8625         * tests/test-canonicalize.c (main): Likewise.
8626         * tests/test-dirent-safer.c (main): Likewise.
8627         * tests/test-dirname.c (main): Likewise.
8628         * tests/test-dup2.c (main): Likewise.
8629         * tests/test-fchdir.c (main): Likewise.
8630         * tests/test-fcntl-h.c (main): Likewise.
8631         * tests/test-fcntl-safer.c (main): Likewise.
8632         * tests/test-fdopendir.c (main): Likewise.
8633         * tests/test-fdutimensat.c (main): Likewise.
8634         * tests/test-fflush.c (main): Likewise.
8635         * tests/test-filenamecat.c (main): Likewise.
8636         * tests/test-filevercmp.c (main): Likewise.
8637         * tests/test-fopen-safer.c (main): Likewise.
8638         * tests/test-fopen.c (main): Likewise.
8639         * tests/test-fpending.c (main): Likewise.
8640         * tests/test-fpurge.c (main): Likewise.
8641         * tests/test-freading.c (main): Likewise.
8642         * tests/test-fstatat.c (main): Likewise.
8643         * tests/test-fsync.c (main): Likewise.
8644         * tests/test-futimens.c (main): Likewise.
8645         * tests/test-getndelim2.c (main): Likewise.
8646         * tests/test-gettimeofday.c (main): Likewise.
8647         * tests/test-getopt.c (main): Likewise.
8648         * tests/test-i-ring.c (main): Likewise.
8649         * tests/test-inttypes.c (main): Likewise.
8650         * tests/test-link.c (main): Likewise.
8651         * tests/test-lstat.c (main): Likewise.
8652         * tests/test-math.c (main): Likewise.
8653         * tests/test-md5.c (main): Likewise.
8654         * tests/test-memchr2.c (main): Likewise.
8655         * tests/test-memrchr.c (main): Likewise.
8656         * tests/test-mkdir.c (main): Likewise.
8657         * tests/test-mkdirat.c (main): Likewise.
8658         * tests/test-mkfifoat.c (main): Likewise.
8659         * tests/test-open.c (main): Likewise.
8660         * tests/test-openat-safer.c (main): Likewise.
8661         * tests/test-openat.c (main): Likewise.
8662         * tests/test-quotearg.c (main): Likewise.
8663         * tests/test-rawmemchr.c (main): Likewise.
8664         * tests/test-readlink.c (main): Likewise.
8665         * tests/test-remove.c (main): Likewise.
8666         * tests/test-rename.c (main): Likewise.
8667         * tests/test-renameat.c (main): Likewise.
8668         * tests/test-rmdir.c (main): Likewise.
8669         * tests/test-sha1.c (main): Likewise.
8670         * tests/test-signal.c (main): Likewise.
8671         * tests/test-sigaction.c (main): Likewise.
8672         * tests/test-stat.c (main): Likewise.
8673         * tests/test-stat-time.c (main): Likewise.
8674         * tests/test-stddef.c (main): Likewise.
8675         * tests/test-stdint.c (main): Likewise.
8676         * tests/test-stdio.c (main): Likewise.
8677         * tests/test-stdlib.c (main): Likewise.
8678         * tests/test-strchrnul.c (main): Likewise.
8679         * tests/test-strerror.c (main): Likewise.
8680         * tests/test-string.c (main): Likewise.
8681         * tests/test-strtod.c (main): Likewise.
8682         * tests/test-strverscmp.c (main): Likewise.
8683         * tests/test-symlink.c (main): Likewise.
8684         * tests/test-symlinkat.c (main): Likewise.
8685         * tests/test-sys_stat.c (main): Likewise.
8686         * tests/test-sys_time.c (main): Likewise.
8687         * tests/test-time.c (main): Likewise.
8688         * tests/test-unistd.c (main): Likewise.
8689         * tests/test-unlink.c (main): Likewise.
8690         * tests/test-unlinkat.c (main): Likewise.
8691         * tests/test-utimens.c (main): Likewise.
8692         * tests/test-utimensat.c (main): Likewise.
8693         * tests/test-version-etc.c (main): Likewise.
8694         * tests/test-wchar.c (main): Likewise.
8695         * tests/test-wctype.c (main): Likewise.
8696         * tests/test-xprintf-posix.c (main): Likewise.
8697         * tests/test-posixtm.c (main): Likewise.
8698         (STREQ): Delete unused macro.
8699         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
8700         shadowed variables.
8701         * tests/test-memchr.c (main): Likewise.
8702
8703 2009-10-21  Eric Blake  <ebb9@byu.net>
8704
8705         areadlinkat: avoid failure on older glibc
8706         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
8707         rather than mis-comparing 0 against FUNC_RESULT of char*.
8708
8709 2009-10-21  Bruno Haible  <bruno@clisp.org>
8710
8711         * modules/stpncpy (License): Relicense under LGPLv2+.
8712         Reported by David Lutterkort <lutter@redhat.com>.
8713
8714 2009-10-20  Eric Blake  <ebb9@byu.net>
8715
8716         utimensat: work around Solaris 9 bug
8717         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
8718         has trailing slash bugs.
8719         * tests/test-lutimens.h (test_lutimens): Enhance test.
8720         * tests/test-utimens.h (test_utimens): Likewise.
8721         * doc/posix-functions/utime.texi (utime): Enhance documentation.
8722         * doc/posix-functions/utimes.texi (utimes): Likewise.
8723         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
8724         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
8725         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
8726         * doc/posix-functions/futimens.texi (futimens): Likewise.
8727
8728         fdutimensat: new module
8729         * modules/fdutimensat: New file.
8730         * lib/fdutimensat.c (fdutimensat): Likewise.
8731         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
8732         * MODULES.html.sh (File system functions): Mention module.
8733         * modules/fdutimensat-tests: New test.
8734         * tests/test-fdutimensat.c: Likewise.
8735
8736         doc: regenerate INSTALL
8737         * doc/INSTALL: Reflect recent autoconf update.
8738         * doc/INSTALL.ISO: Likewise.
8739         * doc/INSTALL.UTF-8: Likewise.
8740
8741 2009-10-20  Pádraig Brady  <P@draigBrady.com>
8742
8743         acl: warn if ACL support is not detected
8744         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
8745
8746 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
8747
8748         * lib/nproc.h: Add extern "C" block for C++.
8749
8750 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
8751             Bruno Haible  <bruno@clisp.org>
8752
8753         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
8754         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
8755         * doc/posix-functions/isalpha.texi: Likewise.
8756         * doc/posix-functions/isblank.texi: Likewise.
8757         * doc/posix-functions/iscntrl.texi: Likewise.
8758         * doc/posix-functions/isdigit.texi: Likewise.
8759         * doc/posix-functions/isgraph.texi: Likewise.
8760         * doc/posix-functions/islower.texi: Likewise.
8761         * doc/posix-functions/isprint.texi: Likewise.
8762         * doc/posix-functions/ispunct.texi: Likewise.
8763         * doc/posix-functions/isspace.texi: Likewise.
8764         * doc/posix-functions/isupper.texi: Likewise.
8765         * doc/posix-functions/isxdigit.texi: Likewise.
8766
8767 2009-10-18  Bruno Haible  <bruno@clisp.org>
8768
8769         Tests for module 'isblank'.
8770         * modules/isblank-tests: New file.
8771         * tests/test-isblank.c: New file.
8772
8773         New module 'isblank'.
8774         * lib/isblank.c: New file.
8775         * m4/isblank.m4: New file.
8776         * modules/isblank: New file.
8777         * doc/posix-functions/isblank.texi: Mention the new module.
8778
8779 2009-10-18  Bruno Haible  <bruno@clisp.org>
8780
8781         New module 'ctype'.
8782         * lib/ctype.in.h: New file.
8783         * m4/ctype.m4: New file.
8784         * modules/ctype: New file.
8785         * doc/posix-headers/ctype.texi: Mention the new module.
8786
8787 2009-10-18  Jim Meyering  <meyering@redhat.com>
8788
8789         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
8790         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
8791         right after its initialization, rather than farther down.
8792         Keeping these in close proximity makes it easier to ensure
8793         that each such variable is initialized.  E.g.,
8794
8795             LIB_CLOCK_GETTIME=
8796             AC_SUBST([LIB_CLOCK_GETTIME])
8797
8798         This change also increments these serial numbers.
8799         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
8800         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
8801         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8802
8803 2009-10-18  Bruno Haible  <bruno@clisp.org>
8804
8805         Don't let environment variables perturb build.
8806         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
8807         (gl_PREREQ_GETHRXTIME): ... not here.
8808
8809 2009-10-18  Bruno Haible  <bruno@clisp.org>
8810
8811         Avoid symlink attack in localcharset module.
8812         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
8813         (O_NOFOLLOW): Define fallback.
8814         (get_charset_aliases): Don't open the file if it is a symbolic link.
8815         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
8816         gl_FCNTL_H.
8817         (gl_FCNTL_H): Require it.
8818         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
8819         * modules/localcharset (Files): Add m4/fcntl_h.m4.
8820         Reported by Fergal Glynn <fglynn@veracode.com>.
8821
8822 2009-10-18  Bruno Haible  <bruno@clisp.org>
8823
8824         Implement nproc for mingw.
8825         * lib/nproc.c: Include <windows.h>
8826         (num_processors): On native Windows platforms, try GetSystemInfo.
8827
8828 2009-10-18  Bruno Haible  <bruno@clisp.org>
8829
8830         Implement nproc for IRIX.
8831         * lib/nproc.c: Include <sys/sysmp.h>.
8832         (num_processors): On IRIX systems, try sysmp.
8833         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
8834
8835 2009-10-18  Bruno Haible  <bruno@clisp.org>
8836
8837         Implement nproc for HP-UX.
8838         * lib/nproc.c: Include <sys/pstat.h>
8839         (num_processors): On HP-UX systems, try pstat_getdynamic.
8840         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
8841         pstat_getdynamic.
8842
8843 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
8844             Bruno Haible  <bruno@clisp.org>
8845
8846         Implement nproc for NetBSD, OpenBSD.
8847         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
8848         (ARRAY_SIZE): New macro.
8849         (num_processors): On BSD systems, try sysctl of HW_NCPU.
8850         * m4/nproc.m4: New file.
8851         * modules/nproc (Files): Add m4/nproc.m4.
8852         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
8853         (Makefile.am): Instead, augment lib_SOURCES.
8854
8855 2009-10-18  Bruno Haible  <bruno@clisp.org>
8856
8857         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
8858         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
8859         sys/param.h.
8860
8861 2009-10-16  Eric Blake  <ebb9@byu.net>
8862
8863         utimensat: new module
8864         * modules/utimensat: New file.
8865         * lib/utimensat.c (utimensat): Likewise.
8866         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
8867         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
8868         so we can work around Linux bugs.
8869         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
8870         * modules/sys_stat (Makefile.am): Substitute them.
8871         * lib/sys_stat.in.h (utimensat): Declare it.
8872         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
8873         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
8874         * modules/utimensat-tests: New test.
8875         * tests/test-utimensat.c: Likewise.
8876
8877         utimens: let lutimens work on non-symlinks
8878         * lib/utimens.c (lutimens): Fall back to utimens rather than
8879         failing with ENOSYS, when file is not a symlink.
8880         (utimens): Reduce redirection.
8881         * tests/test-lutimens.h (test_lutimens): Update test to cover
8882         non-symlinks.
8883         * tests/test-utimens.h (test_utimens): Update test to cover
8884         symlinks.
8885         * tests/test-utimens.c (main): Update caller.
8886
8887         utimens: cache whether utimensat syscall works
8888         * lib/utimens.c (utimensat_works_really): New cache variable.
8889         (fdutimens, lutimens): Use it to avoid failing syscall.
8890
8891         test-stat-time, test-utimens: improve portability
8892         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
8893         ext4 on alpha, and for cygwin.
8894         * tests/test-utimens-common.h: New file.
8895         (nap): Factor delays into single function.
8896         * tests/test-lutimens.h (test_lutimens): Use new header.
8897         * tests/test-futimens.h (test_futimens): Likewise.
8898         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
8899         timestamps to occur from same machine, as was done previously for
8900         test_utimens.
8901         * modules/utimens-tests (Files): Ship new file.
8902         * modules/futimens-tests (Files): Likewise.
8903         Reported in part by Jim Meyering.
8904
8905         sys_stat: sort replacement declarations
8906         * lib/sys_stat.in.h: Sort declarations.
8907         * lib/futimens.c (futimens): Fix typo.
8908
8909 2009-10-15  Jim Meyering  <meyering@redhat.com>
8910
8911         don't let environment settings perturb build
8912         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
8913         could cause a configure-time and/or build-time malfunction.
8914         Typically, a configure-time function-in-library test is performed
8915         via code like this:
8916
8917           LIB_VAR=
8918           AC_SUBST([LIB_VAR])
8919           prefix_saved_LIBS=$LIBS
8920             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
8921                        [test "$ac_cv_search_FUNC" = "none required" ||
8922                         LIB_VAR=$ac_cv_search_FUNC])
8923           LIBS=$prefix_saved_LIBS
8924
8925         However, in each of the files affected by this change, the LIB_VAR=
8926         initialization was omitted.  Thus, when set in the environment, its
8927         value would propagate into generated Makefiles when FUNC is not found
8928         in LIB_NAME.
8929         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
8930         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
8931         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8932
8933 2009-10-14  Eric Blake  <ebb9@byu.net>
8934
8935         fchdir: avoid infinite recursion in mingw
8936         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
8937         recursing.
8938
8939         test-stat-time: port to mingw
8940         * tests/test-stat-time.c (force_unlink): Return a value.
8941         (test_ctime) [W32]: Fix compilation error.
8942         (nap): Don't call usleep with too large an argument.  Use
8943         force_unlink.
8944         * doc/pastposix-functions/usleep.texi (usleep): Document the
8945         portability issue.
8946
8947 2009-10-13  Jim Meyering  <meyering@redhat.com>
8948
8949         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
8950         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
8951         * modules/pipe-filter-ii: Likewise.
8952         * modules/sys_socket-tests: Likewise.
8953         * modules/tsearch-tests: Likewise.
8954         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
8955         (check): Depend on it.
8956
8957 2009-10-12  Eric Blake  <ebb9@byu.net>
8958
8959         utimens-tests: port to NFS file systems
8960         * tests/test-utimens.h (test_utimens): Refactor utimecmp
8961         comparisons to avoid spurious failures from timestamp drift
8962         between NFS machines.
8963
8964 2009-10-12  Eric Blake  <ebb9@byu.net>
8965
8966         stat-time-tests: minor cleanups
8967         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
8968         * tests/test-stat-time.c (nap): Separate assignment from call.
8969         Suggested by Paolo Bonzini and Bruno Haible.
8970
8971         sys_stat: guarantee struct timespec
8972         * lib/sys_stat.in.h (includes): Always include <time.h>
8973         * modules/sys_stat (Depends-on): Add time.
8974         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
8975         mode_t permission values.
8976         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
8977         get at subsecond timestamps.
8978
8979 2009-10-10  Eric Blake  <ebb9@byu.net>
8980
8981         futimens: new module
8982         * modules/futimens: New file.
8983         * lib/futimens.c (futimens): Likewise.
8984         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
8985         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
8986         we can work around Linux bugs.
8987         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
8988         * modules/sys_stat (Makefile.am): Substitute them.
8989         * lib/sys_stat.in.h (futimens): Declare it.
8990         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
8991         * doc/posix-functions/futimens.texi (futimens): Likewise.
8992         * modules/futimens-tests: New test.
8993         * tests/test-futimens.c: Likewise.
8994
8995         utimens: introduce fdutimens
8996         * lib/utimens.h (fdutimens): New prototype.
8997         * lib/utimens.c (gl_futimens): Move guts...
8998         (fdutimens): ...to new interface.
8999         * tests/test-utimens.c (do_fdutimens): Use it.
9000
9001         utimens: add UTIME_NOW and UTIME_OMIT support
9002         * lib/utimens.c (validate_timespec, update_timespec): New helper
9003         functions.
9004         (gl_futimens, lutimens): Use them.
9005         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
9006         stdbool, sys_stat.
9007         (Link): Mention resulting library dependency.
9008         * modules/utimecmp (Link): Likewise.
9009         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
9010         (Makefile.am): Pick up library dependency.
9011         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
9012         definition.
9013         * tests/test-sys_stat.c: Test the definitions.
9014         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
9015         * NEWS: Document library dependency.
9016
9017         utimecmp: support symlink timestamps
9018         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
9019         hashing when possible.  Use pathconf when available.
9020         (SYSCALL_RESOLUTION): Recognize tighter resolution.
9021         * modules/utimecmp (Depends-on): Add lstat.
9022
9023         utimens: add lutimens interface
9024         * lib/utimens.c (lutimens): New function.
9025         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
9026         * lib/utimens.h (lutimens): Declare new interface.
9027         * tests/test-utimens.c (main): Enhance test.
9028         * tests/test-lutimens.h (test_lutimens): New file.
9029         * modules/utimens-tests (Files): Distribute it.
9030         (Depends-on): Add symlink.
9031         (configure.ac): Check for usleep.
9032
9033         utimens: validate futimens usage
9034         * lib/utimens.c (gl_futimens): Require valid fd up front, using
9035         fewer syscalls on failure later on.  Avoid compiler warning on
9036         mingw.
9037         * modules/utimens (Depends-on): Add dup2.
9038
9039         utimens: add test
9040         * modules/utimens-tests: New test.
9041         * tests/test-utimens.h: New file.
9042         * tests/test-futimens.h: Likewise.
9043         * tests/test-utimens.c: Likewise.
9044
9045         doc: mention timestamp portability issues
9046         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
9047         instead.
9048         * doc/posix-functions/utime.texi (utime): Likewise.
9049         * doc/posix-functions/utimes.texi (utimes): Likewise.
9050         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
9051         instead.
9052         * doc/posix-functions/futimens.texi (futimens): Mention utimens
9053         module.
9054         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
9055         Mention weakness with symlink timestamps.
9056         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
9057         to utimensat/futimens instead.
9058         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
9059
9060         test-dup2: enhance test
9061         * tests/test-dup2.c (main): Also check AT_FDCWD.
9062
9063         test-stat-time: avoid more spurious failures
9064         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
9065         xfs; and avoid race if the two timestamps cross quantization edge.
9066
9067         relocatable: prefer 'file system' over 'filesystem'
9068         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
9069         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
9070         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
9071         * doc/relocatable.texi (Enabling Relocatability): Likewise.
9072         * lib/relocatable.c (compute_curr_prefix): Likewise.
9073
9074 2009-10-10  Jim Meyering  <meyering@redhat.com>
9075
9076         stat-time-tests: check for the usleep function
9077         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
9078
9079 2009-10-10  Bruno Haible  <bruno@clisp.org>
9080
9081         * modules/xnanosleep: Put the Link section after the Include section.
9082
9083 2009-10-09  Eric Blake  <ebb9@byu.net>
9084
9085         dup2: work around FreeBSD 6.1 bug
9086         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
9087         * doc/posix-functions/dup2.texi (dup2): Document it.
9088         Reported by Nelson H. F. Beebe and Jim Meyering.
9089
9090         test-stat-time: port to buggy NFS clients
9091         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
9092         (test_ctime): Also skip test if mtime and ctime are skewed.
9093
9094         maint: prefer 'file system' over 'filesystem'
9095         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
9096         * doc/posix-functions/lstat.texi (lstat): Likewise.
9097         * lib/file-has-acl.c (file_has_acl): Likewise.
9098         * lib/fwriteerror.c [TEST]: Likewise.
9099         * tests/test-areadlink.h (test_areadlink): Likewise.
9100         * tests/test-areadlinkat-with-size.c (main): Likewise.
9101         * tests/test-areadlinkat.c (main): Likewise.
9102         * tests/test-canonicalize-lgpl.c (main): Likewise.
9103         * tests/test-canonicalize.c (main): Likewise.
9104         * tests/test-fstatat.c (main): Likewise.
9105         * tests/test-linkat.c (main): Likewise.
9106         * tests/test-lstat.h (test_lstat_func): Likewise.
9107         * tests/test-mkdir.h (test_mkdir): Likewise.
9108         * tests/test-readlink.h (test_readlink): Likewise.
9109         * tests/test-remove.c (main): Likewise.
9110         * tests/test-rename.h (test_rename): Likewise.
9111         * tests/test-renameat.c (main): Likewise.
9112         * tests/test-rmdir.h (test_rmdir_func): Likewise.
9113         * tests/test-symlink.h (test_symlink): Likewise.
9114         * tests/test-symlinkat.c (main): Likewise.
9115         * tests/test-unlink.h (test_unlink_func): Likewise.
9116         * tests/test-unlinkat.c (main): Likewise.
9117
9118         maint: make realtime library usage explicit
9119         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
9120         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
9121         * modules/settime (Link): Likewise.
9122         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
9123
9124         test-stat-time: speed up execution
9125         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
9126         warning on mingw.
9127         (nap): New helper function.
9128         (prepare_test): Use it to reduce sleep time.
9129         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
9130         execution.
9131         * modules/stat-time-tests (configure.ac): Check for usleep.
9132
9133 2009-10-09  Jim Meyering  <meyering@redhat.com>
9134
9135         selinux-h: always use getfilecon wrappers
9136         * lib/getfilecon.c: New file.
9137         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
9138         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
9139         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
9140         (fgetfilecon): Provide a stub.
9141         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
9142         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
9143         file unconditionally.
9144         When <selinux/selinux.h> is found, arrange to use wrappers.
9145         * modules/selinux-h (Files): Add getfilecon.c.
9146         (Makefile.am): Substitute include-next-related bits
9147         into the now-always-generated selinux/selinux.h file.
9148         * doc/glibc-functions/lgetfilecon.texi: New file.
9149         * doc/glibc-functions/fgetfilecon.texi: New file.
9150         * doc/glibc-functions/getfilecon.texi: New file.
9151         * doc/glibc-functions/getfilecon-desc.texi: New file.
9152         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
9153         which to pull in the new files.
9154         * MODULES.html.sh (Misc): Add selinux-h.
9155
9156 2009-10-08  Jim Meyering  <meyering@redhat.com>
9157
9158         unistd: fix comment typo
9159         * lib/unistd.in.h (euidaccess): Fix a comment typo.
9160
9161 2009-10-08  Eric Blake  <ebb9@byu.net>
9162
9163         areadlink: use SIZE_MAX consistently
9164         * modules/areadlink (Depends-on): Add stdint.
9165         * modules/areadlink-with-size (Depends-on): Likewise.
9166         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
9167         gives NULL; drop sys/types, since unistd gives size_t; and add
9168         stdint for SIZE_MAX.
9169         (SIZE_MAX): Rely on headers.
9170         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
9171         and add stdint.
9172         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
9173         (SIZE_MAX): Likewise.
9174         (INITIAL_BUF_SIZE): Turn into enum.
9175         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
9176
9177 2009-10-08  Jim Meyering  <meyering@redhat.com>
9178
9179         areadlinkat: avoid compilation failure
9180         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
9181         Fix typo in comment.
9182
9183 2009-10-07  Eric Blake  <ebb9@byu.net>
9184
9185         areadlinkat-with-size: new module
9186         * modules/areadlinkat-with-size: New module.
9187         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
9188         * lib/areadlink.h (areadlinkat): Declare it.
9189         * MODULES.html.sh (File system functions): Mention it.
9190         * modules/areadlinkat-with-size-tests: New test.
9191         * tests/test-areadlinkat-with-size.c: New file.
9192
9193         xreadlinkat: new module
9194         * modules/xreadlinkat: New module.
9195         * lib/xreadlinkat.c (xreadlinkat): New file.
9196         * lib/xreadlink.h (xreadlinkat): Declare it.
9197         * MODULES.html.sh (File system functions): Mention it.
9198
9199         areadlinkat: new module
9200         * lib/at-func.c (FUNC_FAIL): New define.
9201         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
9202         * modules/areadlinkat: New module.
9203         * lib/linkat.c (areadlinkat): Move...
9204         * lib/areadlinkat.c (areadlinkat): ...to new file.
9205         * lib/areadlink.h (areadlinkat): Declare it.
9206         * modules/linkat (Depends-on): Add areadlinkat.
9207         * MODULES.html.sh (File system functions): Mention it.
9208         * modules/areadlinkat-tests: New test.
9209         * tests/test-areadlinkat.c: New file.
9210
9211         areadlink, areadlink-with-size: add tests
9212         * modules/areadlink-tests: New test.
9213         * modules/areadlink-with-size-tests: Likewise.
9214         * tests/test-areadlink.h: New file.
9215         * tests/test-areadlink.c: Likewise.
9216         * tests/test-areadlink-with-size.c: Likewise.
9217
9218         maint: minor cleanups
9219         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
9220         _UNUSED_PARAMETER_ instead.
9221         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
9222         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
9223         * modules/linkat-tests (Files): Distribute test-link.h.
9224
9225         openat, utimens: whitespace cleanup
9226         * lib/openat.c: Prefer space throughout, rather than mix of 8
9227         spaces vs. tabs.
9228         * lib/at-func.c: Likewise.
9229         * lib/utimens.c: Likewise.
9230
9231         openat: avoid using wrong fd
9232         * lib/openat.c (openat_permissive): Reject user's fd if saving the
9233         working directory chooses same fd.
9234         * lib/at-func.c (AT_FUNC_NAME): Likewise.
9235
9236         mkdir, mkdirat: fix cygwin 1.5.x bug
9237         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
9238         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
9239         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
9240         bug.
9241         (gl_PREREQ_MKDIR): Delete unused macro.
9242         * modules/mkdir (Files): Track file rename.
9243         (configure.ac): Update macro name.
9244         * modules/openat (Depends-on): Add mkdir.
9245         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
9246
9247         mkdir, mkdirat: add tests
9248         * modules/mkdir-tests: New test.
9249         * tests/test-mkdir.h: New file.
9250         * tests/test-mkdir.c: Likewise.
9251         * tests/test-mkdirat.c: Likewise.
9252         * modules/openat-tests (Files): Add new files.
9253         (Makefile.am): Run new test.
9254
9255 2009-10-06  Eric Blake  <ebb9@byu.net>
9256
9257         doc: tweak *at function documentation
9258         * doc/posix-functions/faccessat.texi (faccessat): Mention
9259         known issue with replacement.
9260         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
9261         * doc/posix-functions/linkat.texi (linkat): Likewise.
9262         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
9263         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
9264         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
9265         * doc/posix-functions/renameat.texi (renameat): Likewise.
9266         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
9267
9268         openat: fix GNU/Hurd bug in unlinkat
9269         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
9270         broken.
9271         * doc/posix-functions/unlink.texi (unlink): Document this.
9272         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
9273
9274         fdopendir: fix GNU/Hurd bug
9275         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
9276         allowing non-directory fds.
9277         * lib/fdopendir.c (rpl_fdopendir): Work around it.
9278         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
9279         * modules/dirent (Makefile.am): Substitute it.
9280         * lib/dirent.in.h (fdopendir): Declare replacement.
9281         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
9282         * tests/test-fdopendir.c (main): Test something other than
9283         /dev/null, since on Hurd that behaves like a directory.
9284
9285         test-symlink: port to GNU/Hurd
9286         * tests/test-symlink.h (test_symlink): Relax expected errno.
9287
9288         doc: tweak more cygwin information
9289         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
9290         now compatible with glibc.
9291         * doc/posix-functions/getopt.texi (getopt): Likewise.
9292
9293         getopt-gnu: add another test
9294         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
9295         guarantee behavior relied on by m4.
9296         * tests/test-getopt.c (main): Use it.
9297         * modules/getopt-posix-tests (Depends-on): Add setenv.
9298         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
9299
9300         getopt: fix compilation on darwin
9301         * lib/getopt.in.h (includes): Leave breadcrumbs during system
9302         include.
9303         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
9304         Reported by Ludovic Courtès.
9305
9306 2009-10-06  Bruno Haible  <bruno@clisp.org>
9307
9308         * modules/size_max (Description): Discourage its use.
9309         Reported by Simon Josefsson.
9310
9311 2009-10-06  Jim Meyering  <meyering@redhat.com>
9312
9313         linkat: avoid compilation failure
9314         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
9315
9316 2009-10-05  Eric Blake  <ebb9@byu.net>
9317
9318         linkat: support Linux 2.6.17
9319         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
9320         linkat on Linux, but allow cache variable override.
9321         * lib/linkat.c (rpl_linkat): Define override.
9322         * modules/linkat (Depends-on): Add symlinkat.
9323         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
9324         * modules/unistd (Makefile.am): Substitute it.
9325         * lib/unistd.in.h (linkat): Declare replacement.
9326         Reported by Pádraig Brady.
9327
9328         quotearg: port test to systems with C.UTF-8 locale
9329         * tests/test-quotearg.c (struct result_strings): Add another
9330         member, differentiating between C.ASCII and C.UTF-8 handling.
9331         (compare_strings): Add parameter.
9332         (main): Adjust all callers.
9333
9334         getopt: avoid clash with FreeBSD _getopt_internal
9335         * lib/getopt.in.h (_getopt_internal): Override the name.
9336         * lib/getopt_int.h (includes): Pick up any overrides.
9337         Reported by Reuben Thomas.
9338
9339         hash: allow C89 compilation
9340         * lib/hash.c (check_tuning): Move declaration before statement.
9341         Reported by Reuben Thomas.
9342
9343 2009-10-05  Karl Berry  <karl@gnu.org>
9344
9345         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
9346
9347 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
9348             Bruno Haible  <bruno@clisp.org>
9349
9350         * lib/uname.c (uname): Use a table-driven algorithm to compute
9351         Windows NT versions.
9352
9353 2009-10-04  Bruno Haible  <bruno@clisp.org>
9354
9355         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
9356         program_invocation_short_name.
9357         * modules/progname (configure.ac): Test for presence of
9358         program_invocation_short_name.
9359         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
9360
9361 2009-10-04  Bruno Haible  <bruno@clisp.org>
9362
9363         * lib/progname.c (set_program_name): Fix comment.
9364         Reported by Jim Meyering.
9365
9366 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
9367             Bruno Haible  <bruno@clisp.org>
9368
9369         * lib/uname.c: Include <string.h>.
9370         (uname): Do only one call to GetVersionEx in the common case.
9371
9372 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
9373             Bruno Haible  <bruno@clisp.org>
9374
9375         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
9376         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
9377         (uname): Add support for Windows CE and various non-x86 CPU types.
9378
9379 2009-10-03  Bruno Haible  <bruno@clisp.org>
9380
9381         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
9382         invocation to tests/configure.ac.
9383         Reported by Ian Beckwith <ianb@erislabs.net>.
9384
9385 2009-10-02  Eric Blake  <ebb9@byu.net>
9386
9387         fchdir: avoid compiler warning
9388         * lib/fchdir.c (canonicalize_file_name)
9389         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
9390
9391         test-open: support mingw errno values
9392         * tests/test-open.h (test_open): Relax test.
9393         * tests/test-fopen.h (test_fopen): Likewise.
9394         * tests/test-openat-safer.c (main): Likewise.
9395
9396         open: fix opening directory on mingw
9397         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
9398
9399         test-open: on GNU/Hurd, /dev/null is a directory
9400         * tests/test-fopen.h (main): Rename...
9401         (test_fopen): ...to this.  Use a guaranteed non-directory when
9402         confirming open behavior on trailing slash.
9403         * tests/test-openat-safer.c (main): Likewise.
9404         * tests/test-open.h (main): Likewise....
9405         (test_open): ...to this.
9406         * tests/test-fopen.c (main): Adjust caller.
9407         * tests/test-fopen-safer.c (main): Likewise.
9408         * tests/test-open.c (main): Likewise.
9409         * tests/test-fcntl-safer.c (main): Likewise.
9410         Reported by Samuel Thibault.
9411
9412         rename, fchdir: don't ignore chdir failure
9413         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
9414         * lib/rename.c (rpl_rename) [W32]: Likewise.
9415         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
9416         an empty destination directory if source cannot be renamed,
9417         although there is still possibility for failure.
9418         * doc/posix-functions/rename.texi (rename): Document the race.
9419         Reported by Jim Meyering.
9420
9421         maint: cleanup whitespace in recent commits
9422         * lib/rename.c (rpl_rename): Remove tabs.
9423         * tests/test-link.h (test_link): Likewise.
9424         * lib/fchdir.c (get_name): Likewise.
9425         Reported by Jim Meyering.
9426
9427 2009-10-02  Ben Pfaff  <blp@gnu.org>
9428
9429         relocatable-prog-wrapper: Add missing dependency on
9430         double-slash-root.
9431         * modules/relocatable-prog-wrapper: Add dependency.
9432         Reported by Ian Beckwith <ianb@erislabs.net>.
9433
9434 2009-10-02  Eric Blake  <ebb9@byu.net>
9435
9436         renameat: fix Solaris bugs
9437         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
9438         needed fixing.
9439         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
9440         * modules/stdio (Makefile.am): Substitute it.
9441         * lib/stdio.in.h (renameat): Declare replacement.
9442         * lib/renameat.c (rpl_renameat): Implement fix.
9443
9444         renameat: new module
9445         * modules/renameat: New file.
9446         * lib/renameat.c (renameat): Likewise.
9447         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
9448         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
9449         * modules/stdio (Makefile.am): Substitute them.
9450         * lib/stdio.in.h (renameat): Declare it.
9451         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9452         * doc/posix-functions/renameat.texi (renameat): Likewise.
9453         * modules/renameat-tests: New test.
9454         * tests/test-renameat.c: Likewise.
9455
9456         rename: fix mingw bugs
9457         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
9458         directory overwrite bugs.
9459
9460         rename: fix another cygwin 1.5 bug
9461         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
9462         checks.
9463         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
9464         unnecessary cygwin workarounds.  Also work around bug with moving
9465         full directory onto an empty one.
9466         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
9467
9468         rename-dest-slash: merge into rename module
9469         * modules/rename-dest-slash (Status): Mark obsolete.
9470         (Depends-on): Add rename.
9471         (Files): Let rename do it all.
9472         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
9473         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
9474         * m4/rename-dest-slash.m4: ...so this file can be deleted.
9475         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
9476         * lib/rename.c (rpl_rename): Update comments.
9477
9478         rename: fix cygwin 1.5.x bugs
9479         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
9480         * lib/rename.c (rpl_rename): Work around them.
9481         * modules/rename (Depends-on): Add same-inode.
9482
9483         rename: fix Solaris 10 bug
9484         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
9485         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
9486         was the only bug.
9487
9488         rename: fix Solaris 9 bug
9489         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
9490         on non-directory.  Avoid calling exit.
9491         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
9492         strdup.
9493         * modules/rename-tests (Depends-on): Drop lstat.
9494         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
9495         (gl_PREREQ_RENAME): Delete unused macro.
9496
9497         rename-dest-slash: fix NetBSD bug
9498         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
9499         links.
9500         * modules/rename-dest-slash (Depends-on): Add same-inode.
9501
9502         rename-tests: new test, exposes several platform bugs
9503         * modules/rename-tests: New file.
9504         * tests/test-rename.h: Likewise.
9505         * tests/test-rename.c: Likewise.
9506         * doc/posix-functions/rename.texi (rename): Improve documentation,
9507         including bugs that will eventually be fixed in gnulib.
9508
9509 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
9510
9511         * lib/uname.c: Include <stdlib.h>
9512         (uname): Assume version info is available.
9513
9514 2009-10-02  Jim Meyering  <meyering@redhat.com>
9515
9516         gnu-web-doc-update: correct --help output
9517         * build-aux/gnu-web-doc-update: Make --help output relevant.
9518
9519         gnu-web-doc-update: add standard options
9520         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
9521
9522         gnu-web-doc-update: New module.
9523         Use this script to automatically update the on-line web documentation
9524         for your GNU project at http://www.gnu.org/software/$pkg/manual/
9525         * modules/gnu-web-doc-update: New file, from coreutils.
9526         * build-aux/gnu-web-doc-update: New script.
9527
9528 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
9529
9530         link: LoadLibrary is not needed.
9531         * lib/link.c: Use GetModuleHandle.
9532
9533 2009-10-01  Eric Blake  <ebb9@byu.net>
9534
9535         getopt: bump serial number
9536         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
9537         change.
9538
9539         tests: tighten link, rmdir, and remove tests
9540         * tests/test-link.h (includes): No need to use <config.h> here.
9541         Clean up if directory hard link was created, otherwise test for
9542         trailing '.'.
9543         * tests/test-linkat.c (main): Simplify.
9544         * tests/test-remove.c (main): Enhance test for trailing '.'.
9545         * tests/test-rmdir.h (test_rmdir_func): Likewise.
9546
9547 2009-10-01  Jim Meyering  <meyering@redhat.com>
9548
9549         maint.mk: requiring "make major" was annoying, for a "minor" release.
9550         What is intended is "stable", to contrast with alpha and beta,
9551         so require "make stable", not "make major".
9552         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
9553         (get_tool_versions): Likewise.
9554         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
9555
9556 2009-09-30  Ben Pfaff  <blp@gnu.org>
9557
9558         Fix broken build of replacement for Windows tmpfile().
9559         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
9560         flags argument added along with the 'mkostemp' module.
9561
9562 2009-09-28  Bruno Haible  <bruno@clisp.org>
9563
9564         Avoid identifier clash with POSIX function 'remove' defined as a macro.
9565         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
9566         to 'remove_elt'.
9567         (gl_list_remove): Update.
9568         * lib/gl_list.c (gl_list_remove): Update.
9569         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
9570         to 'remove_elt'.
9571         (gl_oset_remove): Update.
9572         * lib/gl_list.c (gl_oset_remove): Update.
9573         Reported by Eric Blake.
9574
9575 2009-09-28  Eric Blake  <ebb9@byu.net>
9576
9577         doc: mention yet more cygwin 1.7 status
9578         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
9579         cygwin.
9580         * doc/glibc-functions/execvpe.texi (execvpe): New file.
9581         * doc/gnulib.texi (Glibc unistd.h): Mention it.
9582
9583         argp: fix test failure
9584         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
9585         that are not upper-case.  Pass correct range to tolower.
9586
9587 2009-09-27  Jim Meyering  <meyering@redhat.com>
9588
9589         test-yesno: work around sparc-dash here-document infelicity
9590         Without this change, the literal \177 byte in a here document
9591         would make dash 0.5.5.1-3 access uninitialized memory.
9592         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
9593         Instead, use a marker, "@", and filter through tr to create the desired
9594         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
9595
9596 2009-09-27  Bruno Haible  <bruno@clisp.org>
9597
9598         Disable untested support for new flavours of ACLs on AIX.
9599         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
9600         progress.
9601         * lib/set-mode-acl.c (qset_acl): Likewise.
9602
9603 2008-12-07  Bruno Haible  <bruno@clisp.org>
9604
9605         Add support for new flavours of ACLs on AIX. (Untested.)
9606         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
9607         (file_has_acl): Add support for newer AIX.
9608         * lib/set-mode-acl.c (qset_acl): Likewise.
9609         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
9610         Rainer Tammer <tammer@tammer.net>.
9611
9612 2009-09-26  Eric Blake  <ebb9@byu.net>
9613
9614         argp: fix compilation of getopt
9615         * lib/getopt.in.h (includes): Use different guard than glibc.
9616         Reported by Sergey Poznyakoff.
9617
9618         doc: mention more cygwin 1.7 status
9619         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
9620         bug.
9621         * doc/posix-functions/execl.texi (execl): Likewise.
9622         * doc/posix-functions/execle.texi (execle): Likewise.
9623         * doc/posix-functions/execlp.texi (execlp): Likewise.
9624         * doc/posix-functions/execv.texi (execv): Likewise.
9625         * doc/posix-functions/execve.texi (execve): Likewise.
9626         * doc/posix-functions/execvp.texi (execvp): Likewise.
9627         * doc/glibc-functions/canonicalize_file_name.texi
9628         (canonicalize_file_name): Cygwin 1.7 now provides this.
9629         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
9630         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
9631         on AT_SYMLINK_NOFOLLOW.
9632
9633 2009-09-24  Eric Blake  <ebb9@byu.net>
9634
9635         test-linkat: make test more robust
9636         * tests/test-linkat.c (main): Avoid collision with EEXIST.
9637
9638         getopt: fix inclusion guards for cygwin
9639         * modules/getopt-posix (Depends-on): Add include-next.
9640         (Makefile.am): Substitute more items in replacement header.
9641         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
9642         <getopt.h>.
9643         * lib/getopt.in.h (includes): Use split inclusion guard, and
9644         prefer <getopt.h> over include <unistd.h> when one is present.
9645         (option): Also override name of 'struct option'.
9646
9647         same-inode: revert prior change; it is not yet ready
9648         * NEWS: Undo mention of this change.
9649         * lib/same-inode.h (same-inode.h): Undo tri-state change.
9650         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
9651         * lib/cycle-check.c (cycle_check): Likewise.
9652         * lib/same.c (same_name): Likewise.
9653         * lib/at-func2.c (at_func2): Likewise.
9654
9655 2009-09-23  Eric Blake  <ebb9@byu.net>
9656
9657         linkat: new module
9658         * modules/linkat: New file.
9659         * lib/at-func2.c (at_func2): Likewise.
9660         * lib/linkat.c (linkat): Likewise.
9661         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
9662         * lib/openat-priv.h (at_func2): Add declaration.
9663         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
9664         * modules/unistd (Makefile.am): Substitute them.
9665         * lib/unistd.in.h (linkat): Declare it.
9666         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9667         * doc/posix-functions/linkat.texi (linkat): Likewise.
9668         * doc/posix-functions/link.texi (link): Tweak wording.
9669         * tests/test-link.c (main): Move guts...
9670         * tests/test-link.h (test_link): ...into new file.
9671         * modules/linkat-tests: New test.
9672         * tests/test-linkat.c: Likewise.
9673         * modules/link-tests (Files): Ship new file.
9674         (Depends-on): Add stdbool.
9675
9676         dirname: add library-safe mdir_name
9677         * lib/dirname.h (mdir_name): New prototype.
9678         * lib/dirname.c (dir_name): Move guts...
9679         (mdir_name): ...to new function that avoids xalloc_die.
9680
9681         fchdir: another mingw fix
9682         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
9683         * lib/fchdir.c (get_name): New helper method; skips canonicalize
9684         on mingw (where it has not yet been ported), and make it optional
9685         elsewhere.
9686         (_gl_register_fd): Use it.
9687
9688         same-inode: make SAME_INODE tri-state, to port to mingw
9689         * NEWS: Mention this change.
9690         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
9691         st_ino always being 0.
9692         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
9693         * lib/cycle-check.c (cycle_check): Likewise.
9694         * lib/same.c (same_name): Likewise.
9695
9696         lstat: avoid mingw compilation error
9697         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
9698         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
9699         lstat ourselves.
9700         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
9701         was adequate.
9702         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
9703         the checks for lstat.
9704         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
9705
9706         link: fix test failure on Solaris 9
9707         * lib/link.c (rpl_link): Don't assume link will catch bogus
9708         trailing slash on source.
9709
9710         test-symlinkat: enhance test
9711         * tests/test-readlink.c (main): Move guts...
9712         * tests/test-readlink.h (test_readlink): ...into new file.
9713         * tests/test-symlink.c (main): Move guts...
9714         * tests/test-symlink.h (test_symlink): ...into new file.
9715         * tests/test-symlinkat.c (main): Use new files for further
9716         coverage.
9717         (do_symlink, do_readlink): New helper functions.
9718         * modules/symlink-tests (Files): Ship new file.
9719         (Depends-on): Add stdbool.
9720         * modules/readlink-tests (Files): Ship new file.
9721         (Depends-on): Add stdbool.
9722         * modules/symlinkat-tests (Files): Use new files.
9723
9724 2009-09-23  Eric Blake  <ebb9@byu.net>
9725
9726         readlink: document portability issue with symlink length
9727         * doc/posix-functions/lstat.texi (lstat): Mention that some file
9728         systems have bogus st_size on symlinks, and mention the
9729         areadlink-with-size module.
9730         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
9731         * doc/posix-functions/readlink.texi (readlink): Mention the
9732         areadlink module, and ERANGE failure.
9733         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
9734         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
9735
9736         readlink: fix Solaris 9 bug with trailing slash
9737         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
9738         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
9739         * doc/posix-functions/readlink.texi (readlink): Document this.
9740         * modules/readlink-tests: New test.
9741         * tests/test-readlink.c: Likewise.
9742
9743         readlink: fix cygwin 1.5.x bug with return type
9744         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
9745         * lib/unistd.in.h (readlink): Use ssize_t.
9746         * lib/readlink.c (readlink): Likewise.
9747         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
9748         * modules/unistd (Makefile.am): Substitute it.
9749         * lib/unistd.in.h (readlink): Declare replacement.
9750         * doc/posix-functions/readlink.texi (readlink): Document this.
9751
9752         symlink: use throughout gnulib
9753         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
9754         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
9755         symlink is not used.
9756         * modules/symlinkat (Depends-on): Add symlink.
9757         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
9758         * modules/canonicalize-tests (Depends-on): Likewise.
9759         * modules/lstat-tests (Depends-on): Likewise.
9760         * modules/openat-tests (Depends-on): Likewise.
9761         * modules/remove-tests (Depends-on): Likewise.
9762         * modules/rmdir-tests (Depends-on): Likewise.
9763         * modules/unlink-tests (Depends-on): Likewise.
9764         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
9765         * tests/test-canonicalize.c (symlink): Likewise.
9766         * tests/test-fstatat.c (symlink): Likewise.
9767         * tests/test-lstat.c (symlink): Likewise.
9768         * tests/test-remove.c (symlink): Likewise.
9769         * tests/test-rmdir.c (symlink): Likewise.
9770         * tests/test-unlink.c (symlink): Likewise.
9771         * tests/test-unlinkat.c (symlink): Likewise.
9772
9773         symlink: new module, for Solaris 9 bug
9774         * modules/symlink: New file.
9775         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
9776         * lib/symlink.c: Likewise.
9777         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
9778         * modules/unistd (Makefile.am): Substitute them.
9779         * lib/unistd.in.h (symlink): Declare replacement.
9780         * MODULES.html.sh (File system functions): Mention it.
9781         * doc/posix-functions/symlink.texi (symlink): Likewise.
9782         * modules/symlink-tests: New test.
9783         * tests/test-symlink.c: Likewise.
9784
9785 2009-09-23  Bruno Haible  <bruno@clisp.org>
9786
9787         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
9788         when needed.
9789         Test case: gnulib-tool --import --with-tests atexit inttypes.
9790         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
9791
9792 2009-09-23  Bruno Haible  <bruno@clisp.org>
9793
9794         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
9795         subcommand, not in a subshell.
9796
9797 2009-09-22  Eric Blake  <ebb9@byu.net>
9798
9799         unistd: sort replacement declarations
9800         * lib/unistd.in.h: Sort declarations.
9801
9802         open, openat: minor optimization
9803         * lib/open.c (open): If open succeeded, len is non-zero.
9804         * lib/openat.c (rpl_openat): Likewise.
9805
9806         link-follow: ensure correct result
9807         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
9808         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
9809         distinguish between possible failures.
9810
9811 2009-09-21  Eric Blake  <ebb9@byu.net>
9812
9813         fts: avoid compiler warning
9814         * lib/fts.c (dirent_inode_sort_may_be_useful)
9815         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
9816
9817 2009-09-19  Bruno Haible  <bruno@clisp.org>
9818
9819         * lib/progreloc.c (canonicalize_file_name): New declaration.
9820
9821 2009-09-19  Eric Blake  <ebb9@byu.net>
9822
9823         link: fix quoting
9824         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
9825
9826         openat: fix openat bugs on Solaris 9
9827         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
9828         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
9829         * modules/openat (Depends-on): Add open.
9830         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
9831         * modules/fcntl-h (Makefile.am): Substitute it.
9832         * lib/fcntl.in.h (openat): Declare replacement.
9833         * doc/posix-functions/openat.texi (openat): Document this.
9834
9835         openat: move fstatat and unlinkat into correct files
9836         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
9837         compiled.
9838         * lib/openat.c (fstatat, unlinkat): Move...
9839         * lib/fstatat.c (fstatat): ...into correct files.
9840         * lib/unlinkat.c (unlinkat): Likewise.
9841
9842         openat: fix unlinkat bugs on Solaris 9
9843         * lib/unlinkat.c (unlinkat): New file.
9844         * modules/openat (Depends-on): Add unlink.
9845         (Files): Distribute it.
9846         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
9847         trailing slash behavior is broken.
9848         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
9849         * modules/unistd (Makefile.am): Substitute it.
9850         * lib/unistd.in.h (unlinkat): Declare replacement.
9851         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
9852
9853         openat: fix fstatat bugs on Solaris 9
9854         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
9855         stat.
9856         * doc/posix-functions/fstatat.texi (fstatat): Document this.
9857
9858         test-unlinkat: enhance test, to expose Solaris 9 bug
9859         * tests/test-unlink.c (main): Factor guts...
9860         * tests/test-unlink.h (test_rmdir_func): ...into new file.
9861         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
9862         * tests/test-rmdir.c (main): Adjust caller.
9863         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
9864         (unlinker): New helper function.
9865         (rmdirat): Enhance check.
9866         * modules/rmdir-tests (Depends-on): Add stdbool.
9867         * modules/unlink-tests (Depends-on): Likewise.
9868         (Files): Add test-unlink.h.
9869         * modules/openat-tests (Files): Likewise.
9870         (Depends-on): Add unlinkdir.
9871
9872         test-fstatat: new test, to expose Solaris 9 bugs
9873         * tests/test-stat.c (main): Factor guts...
9874         * tests/test-stat.h (test_stat_func): ...into new file.
9875         * tests/test-lstat.c (main): Factor guts...
9876         * tests/test-lstat.h (test_lstat_func): ...into new file.
9877         * tests/test-fstatat.c: New file.
9878         * modules/stat-tests (Files): Add test-stat.h.
9879         * modules/lstat-tests (Files): Add test-lstat.h.
9880         (Depends-on): Add stdbool.
9881         * modules/openat-tests (Depends-on): Add pathmax.
9882         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
9883         (Makefile.am): Run new test.
9884
9885         remove: new module, for mingw and Solaris 9 bugs
9886         * modules/remove: New file.
9887         * lib/remove.c: Likewise.
9888         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
9889         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
9890         * modules/stdio (Makefile.am): Use them.
9891         * lib/stdio.in.h (remove): Declare replacement.
9892         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9893         * doc/posix-functions/remove.texi (remove): Likewise.
9894         * modules/remove-tests: New test.
9895         * tests/test-remove.c: Likewise.
9896
9897         unlink: new module, for Solaris 9 bug
9898         * modules/unlink: New file.
9899         * lib/unlink.c: Likewise.
9900         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
9901         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
9902         * modules/unistd (Makefile.am): Use them.
9903         * lib/unistd.in.h (stat): Declare replacement.
9904         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9905         * doc/posix-functions/unlink.texi (unlink): Likewise.
9906         * modules/unlink-tests: New test.
9907         * tests/test-unlink.c: Likewise.
9908
9909         lstat: fix Solaris 9 bug
9910         * lib/lstat.c (lstat): Also check for trailing slash on
9911         non-symlink, non-directories.  Use stat module to simplify logic.
9912         * doc/posix-functions/lstat.texi (lstat): Document it.
9913         * modules/lstat-tests (Depends-on): Add errno, same-inode.
9914         (configure.ac): Check for symlink.
9915         * tests/test-lstat.c (main): Add more tests.
9916
9917         stat: add as dependency to other modules
9918         * modules/chown (Depends-on): Add stat.
9919         * modules/euidaccess (Depends-on): Likewise.
9920         * modules/fchdir (Depends-on): Likewise.
9921         * modules/isdir (Depends-on): Likewise.
9922         * modules/link (Depends-on): Likewise.
9923         * modules/lstat (Depends-on): Likewise.
9924         * modules/mkdir-p (Depends-on): Likewise.
9925         * modules/modechange (Depends-on): Likewise.
9926         * modules/open (Depends-on): Likewise.
9927         * modules/readlink (Depends-on): Likewise.
9928         * modules/same (Depends-on): Likewise.
9929
9930         stat: fix Solaris 9 bug
9931         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
9932         slash.
9933         * lib/stat.c (rpl_stat): Work around it.
9934         * doc/posix-functions/stat.texi (stat): Update documentation.
9935
9936         stat: new module, for mingw bug
9937         * modules/stat: New file.
9938         * lib/stat.c: Likewise.
9939         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
9940         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
9941         * modules/sys_stat (Makefile.am): Use them.
9942         * lib/sys_stat.in.h (stat): Declare replacement.
9943         * lib/openat.c (fstatat): Deal with lstat and stat being function
9944         macros.
9945         * modules/openat (Depends-on): Add inline.
9946         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9947         * doc/posix-functions/stat.texi (stat): Likewise.
9948         * modules/stat-tests: New test.
9949         * tests/test-stat.c: Likewise.
9950
9951 2009-09-19  Jim Meyering  <meyering@redhat.com>
9952
9953         syntax-check: detect unnecessary inclusion of canonicalize.h
9954         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
9955
9956 2009-09-19  Eric Blake  <ebb9@byu.net>
9957
9958         canonicalize-lgpl: adjust clients to use correct header
9959         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
9960         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
9961         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
9962         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
9963         * lib/progreloc.c (includes): Likewise.
9964
9965 2009-09-19  Jim Meyering  <meyering@redhat.com>
9966
9967         test-posixtm.c: correct a comment
9968         * tests/test-posixtm.c: Correct first-line comment.
9969         Spotted by Eric Blake.
9970
9971 2009-09-16  Jim Meyering  <meyering@redhat.com>
9972
9973         posixtm-tests: make T const-correct; add a test case
9974         * tests/test-posixtm.c (T): Declare const.
9975         Add a test for -(2^31+1).
9976         Remove useless can-succeed-only-in-2002 test.
9977
9978         posixtm-tests: adjust the sole failing test
9979         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
9980         expected output matches what mktime now produces.  Cross-checked via
9981         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
9982
9983         posixtm: move #ifdef'd tests into a new module
9984         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
9985         * tests/test-posixtm.c: ... this new file.
9986         * modules/posixtm-tests: New module.
9987
9988 2009-09-19  Eric Blake  <ebb9@byu.net>
9989
9990         openat: simplify use of at-func.c
9991         * lib/at-func.c (includes): Include prerequisites here, to
9992         simplify requirements on client files.
9993         * lib/openat-priv.h: Add double-inclusion guard.
9994         * lib/faccessat.c (includes): Simplify.
9995         * lib/fchmodat.c (includes): Likewise.
9996         * lib/fchownat.c (includes): Likewise.
9997         * lib/mkdirat.c (includes): Likewise.
9998         * lib/mkfifoat.c (includes): Likewise.
9999         * lib/symlinkat.c (includes): Likewise.
10000
10001         openat: allow return of fd 0
10002         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
10003         * modules/save-cwd (Depends-on): Replace fcntl-safer with
10004         unistd-safer.
10005         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
10006         <fcntl.h>; this module does not leak fds.
10007         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
10008         must be allowed to return 0, leaving openat_safer to add the
10009         safety.
10010         (openat_permissive): Avoid writing to just-opened fd 2 if
10011         restoring the current directory fails.
10012         * lib/openat-die.c (openat_restore_fail): Add comment.
10013         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
10014         (save_cwd): Guarantee safe fd, but without use of open_safer.
10015         * tests/test-openat.c: New test.
10016         * modules/openat-tests (Files, Makefile.am): Distribute and build
10017         new file.
10018
10019         relocatable-prog-wrapper: fix build
10020         * modules/relocatable-prog-wrapper (Files): Update name of
10021         canonicalize m4 file, broken on 2009-09-17.
10022         Reported by emad hajjar <aleppos@hotmail.com>.
10023
10024 2009-09-19  Bruno Haible  <bruno@clisp.org>
10025
10026         * lib/safe-alloc.h: Use the standard header with GPL copyright.
10027         * lib/safe-alloc.c: Likewise.
10028         Reported by Ian Beckwith <ianb@erislabs.net>.
10029
10030 2009-09-18  Bruno Haible  <bruno@clisp.org>
10031
10032         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
10033         Reported by <erobles@sensacd.com.mx>.
10034
10035 2009-09-17  Eric Blake  <ebb9@byu.net>
10036
10037         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
10038         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
10039         slashes when checking if last component is missing.
10040         * tests/test-canonicalize.c (main): Test this.
10041
10042         canonicalize, canonicalize-lgpl: honor // if distinct from /
10043         * modules/canonicalize (Files): Add double-slash-root.m4.
10044         * modules/canonicalize-lgpl (Files): Likewise.
10045         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
10046         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
10047         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
10048         fallback definition.
10049         (canonicalize_filename_mode): Use it to protect //.
10050         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
10051         (__realpath): Likewise.
10052         * tests/test-canonicalize.c (main): Test this.
10053         * tests/test-canonicalize-lgpl.c (main): Likewise.
10054         * modules/canonicalize-tests (Depends-on): Add same-inode.
10055         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
10056
10057         canonicalize-lgpl: fix glibc bug with trailing slash
10058         * m4/canonicalize-lgpl.m4: Move contents...
10059         * m4/canonicalize.m4: ...here.
10060         (gl_CANONICALIZE_LGPL): Factor realpath check...
10061         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
10062         glibc 2.3.5 bug, fixed 2005-04-27.
10063         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
10064         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
10065         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
10066         * modules/canonicalize-lgpl (Files): Manage file rename.
10067         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
10068         * modules/stdlib (Makefile.am): Substitute witness.
10069         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
10070         is needed.
10071         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
10072         replacement is required.
10073         * lib/canonicalize.c (canonicalize_file_name): Likewise.
10074         * doc/glibc-functions/canonicalize_file_name.texi
10075         (canonicalize_file_name): Document this.
10076         * doc/posix-functions/realpath.texi (realpath): Likewise.
10077
10078         canonicalize-lgpl: reject non-directory with trailing slash
10079         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
10080         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
10081         catches failures in glibc 2.3.5.
10082         * tests/test-canonicalize.c (main): Likewise.
10083
10084         canonicalize-lgpl: use native realpath if it works
10085         * lib/canonicalize-lgpl.c (realpath): Guard with
10086         FUNC_REALPATH_WORKS.
10087         * lib/stdlib.in.h (realpath): Make declaration optional based on
10088         HAVE_REALPATH.
10089         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
10090         native realpath works.
10091         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
10092         * modules/stdlib (Makefile.am): Substitute witness.
10093
10094         canonicalize, canonicalize-lgpl: use <stdlib.h>
10095         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
10096         (Include): Mention <stdlib.h>.
10097         (configure.ac): Mention functions we provide.
10098         * modules/canonicalize (configure.ac): Likewise.
10099         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
10100         realpath if canonicalize_file_name is missing.
10101         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
10102         * modules/stdlib (Makefile.am): Substitute witnesses.
10103         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
10104         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
10105         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
10106         * NEWS: Document this.
10107         * doc/glibc-functions/canonicalize_file_name.texi
10108         (canonicalize_file_name): Likewise.
10109         * doc/posix-functions/realpath.texi (realpath): Likewise.
10110         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
10111
10112         test-canonicalize: consolidate into single C program
10113         * tests/test-canonicalize.sh: Delete; move setup into...
10114         * tests/test-canonicalize.c (main): ...the program, making it
10115         easier to run in debugger.  Add some tests.
10116         * modules/canonicalize-tests (Files): Remove unused file.
10117         (Depends-on): Add progname.
10118         (configure.ac, Makefile.am): Simplify.
10119
10120         test-canonicalize-lgpl: consolidate into single C program
10121         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
10122         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
10123         easier to run in debugger.  Add some tests.
10124         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
10125         (configure.ac, Makefile.am): Simplify.
10126
10127         canonicalize: avoid resolvepath
10128         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
10129         unnecessary checks.
10130         * lib/canonicalize.c (includes): Simplify.
10131         (canonicalize_file_name): Drop resolvepath implementation.
10132         * modules/canonicalize (Depends-on): Drop filenamecat.
10133
10134         canonicalize: don't lose errno
10135         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
10136         over calls to free.
10137
10138         canonicalize: simplify errno handling
10139         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
10140         assignment.
10141
10142         canonicalize, canonicalize-lgpl: update module dependencies
10143         * modules/canonicalize (Depends-on): Add extensions, lstat,
10144         pathmax, stdlib.
10145         (Files): Drop pathmax.h.
10146         (configure.ac): Adjust macro name.
10147         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
10148         lstat, stdlib, sys_stat.
10149         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
10150         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
10151         extensions.
10152         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
10153         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
10154         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
10155         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
10156         declaration, if available.
10157         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
10158         we can rely on the readlink module.
10159         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
10160         (includes): Use <unistd.h> unconditionally.
10161
10162 2009-09-17  Eric Blake  <ebb9@byu.net>
10163
10164         maint: make Include sections of modules consistent
10165         * modules/alloca: Use only header name; no need to list #include.
10166         * modules/alloca-opt: Likewise.
10167         * modules/arpa_inet: Likewise.
10168         * modules/canon-host: Likewise.
10169         * modules/configmake: Likewise.
10170         * modules/dirent: Likewise.
10171         * modules/eealloc: Likewise.
10172         * modules/environ: Likewise.
10173         * modules/fchdir: Likewise.
10174         * modules/fcntl: Likewise.
10175         * modules/fcntl-h: Likewise.
10176         * modules/gethrxtime: Likewise.
10177         * modules/gettime: Likewise.
10178         * modules/ignore-value: Likewise.
10179         * modules/inet_ntop: Likewise.
10180         * modules/inet_pton: Likewise.
10181         * modules/inttypes: Likewise.
10182         * modules/isnand-nolibm: Likewise.
10183         * modules/isnanf-nolibm: Likewise.
10184         * modules/mbchar: Likewise.
10185         * modules/mbfile: Likewise.
10186         * modules/mbiter: Likewise.
10187         * modules/mbuiter: Likewise.
10188         * modules/netdb: Likewise.
10189         * modules/netinet_in: Likewise.
10190         * modules/nproc: Likewise.
10191         * modules/pagealign_alloc: Likewise.
10192         * modules/poll: Likewise.
10193         * modules/printf-frexp: Likewise.
10194         * modules/pthread: Likewise.
10195         * modules/putenv: Likewise.
10196         * modules/random_r: Likewise.
10197         * modules/relocatable-prog: Likewise.
10198         * modules/search: Likewise.
10199         * modules/select: Likewise.
10200         * modules/selinux-h: Likewise.
10201         * modules/settime: Likewise.
10202         * modules/signal: Likewise.
10203         * modules/size_max: Likewise.
10204         * modules/socklen: Likewise.
10205         * modules/ssize_t: Likewise.
10206         * modules/stdarg: Likewise.
10207         * modules/stdbool: Likewise.
10208         * modules/stddef: Likewise.
10209         * modules/stdint: Likewise.
10210         * modules/stdio: Likewise.
10211         * modules/stdlib: Likewise.
10212         * modules/string: Likewise.
10213         * modules/strings: Likewise.
10214         * modules/sys_file: Likewise.
10215         * modules/sys_ioctl: Likewise.
10216         * modules/sys_select: Likewise.
10217         * modules/sys_socket: Likewise.
10218         * modules/sys_stat: Likewise.
10219         * modules/sys_time: Likewise.
10220         * modules/sys_times: Likewise.
10221         * modules/sys_utsname: Likewise.
10222         * modules/sys_wait: Likewise.
10223         * modules/sysexits: Likewise.
10224         * modules/time: Likewise.
10225         * modules/times: Likewise.
10226         * modules/tmpfile: Likewise.
10227         * modules/trim: Likewise.
10228         * modules/unistd: Likewise.
10229         * modules/wchar: Likewise.
10230         * modules/wctype: Likewise.
10231
10232 2009-09-17  Bruno Haible  <bruno@clisp.org>
10233
10234         Make getdate.y compile on QNX and NetBSD 5 / i386.
10235         * m4/getdate.m4 (gl_GETDATE): Conditionally define
10236         TIME_T_FITS_IN_LONG_INT.
10237         * lib/getdate.y (long_time_t): New type.
10238         (relative_time): Change type of 'seconds' field to long_time_t.
10239         (get_date): Update types of local variables. Check against overflow
10240         during conversion from long_time_t to time_t.
10241         Reported by Matt Kraai <kraai@ftbfs.org>
10242         and Hasso Tepper <hasso@netbsd.org>.
10243
10244 2009-09-17  Bruno Haible  <bruno@clisp.org>
10245
10246         * modules/COPYING: Update copyright years.
10247         * modules/README: Likeiwse.
10248         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
10249         Reported by Ian Beckwith <ianb@erislabs.net>.
10250
10251 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
10252
10253         * users.txt: Update references for gnuit package.
10254
10255 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
10256
10257         * m4/getdelim.m4: Fix typo in copyright line.
10258
10259 2009-09-17  Bruno Haible  <bruno@clisp.org>
10260
10261         * lib/atoll.c: Use the standard header with GPL copyright.
10262         * lib/argz.in.h: Likewise.
10263         * lib/glob.c: Likewise.
10264         * lib/glob-libc.h: Likewise.
10265         * lib/random_r.c: Likewise.
10266         * lib/siglist.h: Likewise.
10267         * lib/strsignal.c: Likewise.
10268         Reported by Ian Beckwith <ianb@erislabs.net>.
10269
10270 2009-09-17  Eric Blake  <ebb9@byu.net>
10271
10272         rmdir: ensure correct dependency order
10273         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
10274
10275 2009-09-17  Bruno Haible  <bruno@clisp.org>
10276
10277         Disable assertion that fails on NetBSD 5 / i386.
10278         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
10279         Reported by Sam Steingold <sds@gnu.org>
10280         and Hasso Tepper <hasso@netbsd.org>.
10281
10282 2009-09-16  Eric Blake  <ebb9@byu.net>
10283
10284         unlinkdir: port to mingw
10285         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
10286         on which no one can unlink a directory.
10287
10288         stdlib: sort witness names
10289         * modules/stdlib (Makefile.am): Sort replacements.
10290         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
10291         * lib/stdlib.in.h: Likewise.
10292
10293         parse-duration-tests: avoid link failure
10294         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
10295         LIBINTL.
10296         Reported by Tom G. Christensen.
10297
10298         openat-tests: ensure unlinkat behaves like rmdir
10299         * tests/test-rmdir.c (main): Factor guts...
10300         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
10301         * modules/rmdir-tests (Files): Ship new file.
10302         * modules/openat-tests: New test.
10303         * tests/test-unlinkat.c: Likewise.
10304
10305         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
10306         * modules/rmdir-errno (Status, Notice): Now obsolete.
10307
10308         rmdir: work around cygwin 1.5.x and mingw bugs
10309         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
10310         * lib/rmdir.c (rmdir): Work around it.
10311         * modules/rmdir (Status, Notice): No longer obsolete.
10312         (Files): Add dos.m4.
10313         (Depends-on): Add unistd.
10314         (configure.ac): Set witnesses.
10315         (License): Relax to LGPLv2+.
10316         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
10317         * modules/unistd (Makefile.am): Substitute witnesses.
10318         * lib/unistd.in.h (rmdir): Declare replacement.
10319         * doc/posix-functions/rmdir.texi (rmdir): Document this.
10320         * modules/rmdir-tests: New tests.
10321         * tests/test-rmdir.c: Likewise.
10322
10323 2009-09-15  Eric Blake  <ebb9@byu.net>
10324
10325         fchdir: improve use of replacement functions
10326         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
10327         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
10328         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
10329         REPLACE_CLOSEDIR.
10330         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
10331         * modules/sys_stat (Makefile.am): Substitute correct witness.
10332         * modules/dirent (Makefile.am): Likewise.
10333         * modules/unistd (Makefile.am): Likewise.
10334         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
10335         * lib/unistd.in.h (dup): Likewise.
10336         * lib/sys_stat.in.h (fstat): Likewise.
10337
10338         maint: ignore gnulib-tool temp files
10339         * .gitignore: Ignore files created during gnulib-tool --test.
10340
10341 2009-09-13  Jim Meyering  <meyering@redhat.com>
10342
10343         posixtm: don't reject a time that specify "60" as the number of seconds
10344         * lib/posixtm.c (posixtime): The code to reject invalid dates
10345         would also reject a time specified with the .60 suffix.
10346         But POSIX allows that, in order to accommodate leap seconds.
10347         So don't reject it.
10348         (main): Adjust tests accordingly.
10349         * modules/posixtm (Depends-on): Add stpcpy.
10350
10351 2009-09-11  Jim Meyering  <meyering@redhat.com>
10352
10353         announce-gen: include [$release_type] in emitted Subject:
10354         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
10355         e.g., [stable] in the emitted Subject: line.
10356
10357 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10358
10359         Remove obsolete macros from several modules.
10360         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
10361         obsolete Autoconf macros with their modern counterparts.
10362         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
10363         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
10364         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
10365         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
10366         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
10367         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
10368         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
10369         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
10370         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
10371         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
10372         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
10373         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
10374         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
10375         * m4/sockets.m4 (gl_SOCKETS): Likewise.
10376         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
10377         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
10378         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
10379         * m4/time_r.m4 (gl_TIME_R): Likewise.
10380         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
10381         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
10382         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
10383
10384         Fix copyright header in build-aux scripts.
10385         * build-aux/git-version-gen: Fix copyright header to match GPLv3
10386         recommendation.
10387         * build-aux/ncftpput-ftp: Likewise.
10388         * build-aux/update-copyright: Likewise.
10389
10390 2009-09-09  Eric Blake  <ebb9@byu.net>
10391
10392         test-link: allow Linux choice of errno
10393         * tests/test-link.c (main): Relax test for alternate error.
10394
10395         strndup: fix improper m4 caching
10396         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
10397         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
10398         (gl_PREREQ_STRNDUP): Delete.
10399         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
10400         * modules/string (Makefile.am): Substitute it.
10401         * lib/string.in.h (strndup): Modernize prototype.
10402
10403         getcwd: port to mingw
10404         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
10405         different from the POSIX assumptions made throughout the getcwd
10406         module; fortunately, the mingw getcwd does not need replacement.
10407         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
10408         * modules/getcwd-tests: New test.
10409         * tests/test-getcwd.c: Likewise.
10410
10411         link: fix platform bugs
10412         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
10413         * lib/link.c (link): Work around them.  Fix related mingw bug.
10414         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
10415         * modules/unistd (Makefile.am): Substitute it.
10416         * lib/unistd.in.h (link): Declare replacement.
10417         * doc/posix-functions/link.texi (link): Document this.
10418         * modules/link (Depends-on): Add strdup-posix, sys_stat.
10419
10420         test-link: consolidate into single C program, test more cases
10421         * tests/test-link.sh: Delete.
10422         * tests/test-link.c: Test more error conditions.  Exposes bugs on
10423         at least Cygwin and Solaris.
10424         * modules/link-tests (Files): Remove unused file.
10425         (Depends-on): Add errno, sys_stat.
10426         (Makefile.am): Simplify.
10427
10428 2009-09-08  Bruno Haible  <bruno@clisp.org>
10429
10430         Work around towlower, towupper bug on mingw.
10431         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
10432         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
10433         * doc/posix-functions/towlower.texi: Mention the mingw bug.
10434         * doc/posix-functions/towupper.texi: Likewise.
10435         Reported by Eric Blake.
10436
10437 2009-09-08  Jim Meyering  <meyering@redhat.com>
10438
10439         build: don't try to run autoheader if we don't use it
10440         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
10441         is not used in configure.ac.
10442
10443 2009-09-08  Eric Blake  <ebb9@byu.net>
10444
10445         euidaccess: fix compilation error
10446         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
10447
10448         rawmemchr: relax license
10449         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
10450         okay.
10451         Reported by Jim Meyering.
10452
10453         mkfifoat: new module
10454         * modules/mkfifoat: New file.
10455         * lib/mkfifoat.c: Likewise.
10456         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
10457         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
10458         * modules/sys_stat (Makefile.am): Use them.
10459         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
10460         * MODULES.html.sh (File system functions): Mention module.
10461         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
10462         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
10463         * modules/mkfifoat-tests: New test.
10464         * tests/test-mkfifoat.c: Likewise.
10465
10466         strchrnul: relax license
10467         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
10468         okay.
10469         Reported by Jim Meyering.
10470
10471 2009-09-08  Eric Blake  <ebb9@byu.net>
10472
10473         fstatat: fix compilation on Solaris
10474         * lib/fstatat.c (includes): Add fcntl.h.
10475         Reported by Pádraig Brady.
10476
10477 2009-09-07  Eric Blake  <ebb9@byu.net>
10478
10479         rename: modernize replacement
10480         * modules/rename (Depends-on): Add stdio.
10481         (configure.ac): Declare witness.
10482         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
10483         stdio take care of replacement.
10484         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
10485         * modules/stdio (Makefile.am): Substitute them.
10486         * lib/stdio.in.h (rename): Declare replacement.
10487         * lib/rename.c (includes): Allow cross-compilation to non-windows
10488         machines.
10489         * doc/posix-functions/rename.texi (rename): Improve
10490         documentation.
10491
10492         stdio: sort witness names
10493         * modules/stdio (Makefile.am): Sort replacements.
10494         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
10495         * lib/stdio.in.h: Likewise.
10496
10497         getcwd: minor cleanups
10498         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
10499         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
10500
10501         openat: provide more convenience names
10502         * modules/faccessat (configure.ac): Add C witness.
10503         * lib/unistd.in.h (readlinkat): Fix typo.
10504         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
10505         convenience wrappers.
10506         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
10507         wrappers in syntax checks.
10508
10509 2009-09-06  Eric Blake  <ebb9@byu.net>
10510
10511         doc: fix comments in recent patches
10512         * lib/faccessat.c: Mention correct function.
10513         * lib/fchmodat.c: Likewise.
10514         * lib/fchownat.c: Likewise.
10515         * lib/symlinkat.c: Likewise.
10516         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
10517         constants.
10518
10519         faccessat, symlinkat: continue cleanup of previous patch
10520         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
10521         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
10522         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
10523         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
10524         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
10525         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
10526         set.
10527
10528 2009-09-06  Bruno Haible  <bruno@clisp.org>
10529
10530         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
10531         (fstatat): Declare if GNULIB_FSTATAT is set.
10532         (mkdirat): Declare if GNULIB_MKDIRAT is set.
10533         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
10534         (unlinkat): Declare if GNULIB_UNLINKAT is set.
10535         * modules/fcntl-h (Files): Remove m4/openat.m4.
10536         * modules/sys_stat (Files): Remove m4/openat.m4.
10537         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
10538         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
10539         * modules/unistd (Files): Remove m4/openat.m4.
10540         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
10541         GNULIB_OPENAT.
10542         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
10543         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
10544         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
10545         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
10546         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
10547         gl_OPENAT_DEFAULTS.
10548         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
10549         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
10550         Don't require gl_OPENAT_DEFAULTS.
10551         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
10552         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
10553         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
10554         (gl_OPENAT_DEFAULTS): Remove macro.
10555
10556 2009-09-06  Bruno Haible  <bruno@clisp.org>
10557
10558         * modules/openat (configure.ac): Remove unneeded witness.
10559
10560 2009-09-06  Bruno Haible  <bruno@clisp.org>
10561
10562         Set errno to ENOSYS when a function is entirely unsupported.
10563         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
10564         EOPNOTSUPP.
10565         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
10566         * modules/chown (Depends-on): Remove errno.
10567
10568 2009-09-06  Bruno Haible  <bruno@clisp.org>
10569
10570         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
10571
10572 2009-09-06  Bruno Haible  <bruno@clisp.org>
10573
10574         * lib/sys_stat.in.h: Fix preprocessor command indentation.
10575
10576 2009-09-06  Ben Pfaff  <blp@gnu.org>
10577             Bruno Haible  <bruno@clisp.org>
10578
10579         Work around a glibc bug in strtok_r.
10580         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
10581         Undefine if UNDEFINE_STRTOK_R is set.
10582         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
10583         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
10584         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
10585         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
10586         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
10587         UNDEFINE_STRTOK_R.
10588         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
10589
10590 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
10591
10592         exclude: minor fix
10593         * lib/exclude.c: Include wctype.h
10594
10595 2009-09-06  Akim Demaille  <demaille@gostai.com>
10596
10597         bootstrap: improve error message
10598         * build-aux/bootstrap (find_tool): Upon failure, report the list
10599         of candidates.
10600         Honor the initial value of the envvar.
10601
10602 2009-09-05  Eric Blake  <ebb9@byu.net>
10603
10604         symlinkat: new module
10605         * modules/symlinkat: New file.
10606         * lib/symlinkat.c: Likewise.
10607         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
10608         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
10609         * modules/unistd (Makefile.am): Use them.
10610         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
10611         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
10612         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
10613         * MODULES.html.sh (File system functions): Mention module.
10614         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
10615         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
10616         * modules/symlinkat-tests: New test.
10617         * tests/test-symlinkat.c: Likewise.
10618
10619         test-openat-safer: add more checks
10620         * tests/test-openat-safer.c (main): Check more code paths.
10621
10622 2009-09-05  Jim Meyering  <meyering@redhat.com>
10623
10624         syntax-check: detect unnecessary inclusion of openat.h
10625         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
10626
10627 2009-09-05  Bruno Haible  <bruno@clisp.org>
10628
10629         Support towlower, towupper.
10630         * doc/posix-functions/towlower.texi: Mention module wctype.
10631         * doc/posix-functions/towupper.texi: Likewise.
10632         * lib/wctype.in.h (towlower, towupper): New functions.
10633         * tests/test-wctype.c: Include stdio.h, stdlib.h.
10634         (ASSERT): New macro.
10635         (e): New variable.
10636         (main): Test also towlower, towupper. Test WEOF argument.
10637         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
10638
10639 2009-09-05  Bruno Haible  <bruno@clisp.org>
10640
10641         Fix conversion behaviour when the input is invalid.
10642         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
10643         mark occurring in first pass of indirect conversion.
10644         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
10645         input.
10646         Found by clang's static analyzer.
10647
10648 2009-09-05  Bruno Haible  <bruno@clisp.org>
10649
10650         * tests/test-striconveh.c (main): Test indirect conversion on platforms
10651         where direct conversion is possible.
10652
10653 2009-09-04  Eric Blake  <ebb9@byu.net>
10654
10655         openat: fail with ENOENT on empty name
10656         * lib/openat-proc.c (openat_proc_name): Special-case the empty
10657         buffer.
10658
10659         link-follow: fix logic bug in prior patch
10660         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
10661         reversed sense of yes and no in prior patch.  Avoid confusing
10662         compilation failure with desired semantics.
10663
10664         link-follow: accomodate mingw and cross-compilation
10665         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
10666         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
10667         cross-compilation results to -1, to make linkat easier to
10668         implement when cross-compiling.  Trivially support mingw.
10669         * modules/link-follow (configure.ac): Call new name.
10670         * NEWS: Mention this.
10671
10672 2009-09-03  Eric Blake  <ebb9@byu.net>
10673
10674         faccessat: compile replacement
10675         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
10676         needed.
10677
10678         fts: fix compilation error
10679         * lib/fts.c (includes): Re-add "openat.h", for
10680         openat_needs_fchdir.
10681
10682         faccessat: new module
10683         * modules/faccessat: New file.
10684         * lib/faccessat.c: Likewise.
10685         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
10686         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
10687         * modules/unistd (Makefile.am): Use it.
10688         * lib/unistd.in.h (faccessat): Declare it.
10689         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
10690         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
10691         * MODULES.html.sh (File system functions): Mention it.
10692         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
10693         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
10694
10695         euidaccess: prefer POSIX over non-standard implementation
10696         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
10697         * lib/euidaccess.c (euidaccess): Use it if available.
10698
10699         openat: make template easier to use
10700         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
10701         AT_FUNC_F2 to be undefined.
10702         (VALIDATE_FLAG): New macro; use it to reject bad flags.
10703         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
10704         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
10705         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
10706         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
10707         Likewise.
10708         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
10709         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
10710         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
10711         Likewise.
10712
10713         openat: declare in POSIX headers
10714         * NEWS: Mention this.
10715         * modules/openat (configure.ac): Declare witnesses.
10716         (Depends-on): Add fcntl-h, sys_stat, unistd.
10717         (Include): Mention correct headers.
10718         * modules/fcntl-h (Depends-on): Add link-warning.
10719         (Files): Add openat.m4.
10720         (Makefile.am): Substitute witnesses.
10721         * modules/sys_stat (Files, Makefile.am): Likewise.
10722         * modules/unistd (Files, Makefile.am): Likewise.
10723         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
10724         (gl_OPENAT_DEFAULTS): New macro.
10725         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
10726         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
10727         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
10728         (SYS_STAT_H): Remove unused variable.
10729         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
10730         * lib/fcntl--.h (includes): Remove unneeded header.
10731         * lib/openat-safer.c (includes): Likewise.
10732         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
10733         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
10734         appropriate headers.
10735         (__OPENAT_PREFIX): Delete.
10736         * lib/fcntl.in.h (openat): Provide declaration.
10737         (AT_FDCWD): Fix Solaris bug.
10738         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
10739         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
10740         * lib/fchmodat.c (includes):  Adjust to find declaration.
10741         * lib/fchownat.c (includes): Likewise.
10742         * lib/mkdirat.c (includes): Likewise.
10743         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
10744         still visible.
10745
10746 2009-09-02  Eric Blake  <ebb9@byu.net>
10747
10748         errno: use consistently
10749         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
10750         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
10751         * lib/canonicalize.c (ELOOP): Likewise.
10752         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
10753         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
10754         * lib/lchown.c (EOPNOTSUPP): Likewise.
10755         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
10756         * lib/savewd.c (ESTALE): Likewise.
10757         * lib/settime.c (ENOSYS): Likewise.
10758         * lib/utimens.c (ENOSYS): Likewise.
10759         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
10760         * lib/chdir-safer.c (ELOOP): Likewise.
10761         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
10762         * modules/c-stack (Depends-on): Add errno.
10763         * modules/canonicalize (Depends-on): Likewise.
10764         * modules/chdir-safer (Depends-on): Likewise.
10765         * modules/fdopendir (Depends-on): Likewise.
10766         * modules/inet_ntop (Depends-on): Likewise.
10767         * modules/inet_pton (Depends-on): Likewise.
10768         * modules/lchown (Depends-on): Likewise.
10769         * modules/openat (Depends-on): Likewise.
10770         * modules/savewd (Depends-on): Likewise.
10771         * modules/settime (Depends-on): Likewise.
10772         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
10773
10774         fts: avoid leaking fds
10775         * modules/fts (Depends-on): Add cloexec.
10776         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
10777         flag.
10778
10779         fts: make directory fds more robust
10780         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
10781         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
10782
10783         backupfile, chdir-long, fts, savedir: make safer
10784         * lib/backupfile.c (includes): Use "dirent--.h", since
10785         numbered_backup can write to stderr during readdir.
10786         * lib/savedir.c (includes): Likewise.
10787         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
10788         emulation can write to stderr on failure.
10789         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
10790         * lib/getcwd.c: Document why opendir_safer is unused.
10791         * lib/glob.c: Likewise.
10792         * lib/scandir.c: Likewise.
10793         * lib/openat-proc.c: Likewise, for open_safer.
10794         * modules/backupfile (Depends-on): Add dirent-safer.
10795         * modules/savedir (Depends-on): Likewise.
10796         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
10797         * modules/chdir-long (Depends-on): Add openat-safer.
10798
10799         openat-safer: new module
10800         * modules/openat-safer: New file.
10801         * lib/openat-safer.c: Likewise.
10802         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
10803         * lib/fcntl-safer.h (openat_safer): Declare.
10804         * lib/fcntl--.h (openat): Override.
10805         * MODULES.html.sh (File descriptor based I/O): Mention it.
10806         * lib/openat.h: Add double-inclusion guards.
10807         * lib/openat.c (includes): Only include "fcntl-safer.h", not
10808         "fcntl--.h", so we can implement openat.
10809         * modules/openat-safer-tests: New test.
10810         * tests/test-openat-safer.c: New file.
10811
10812         dirent-safer: new module
10813         * modules/dirent-safer: New file.
10814         * lib/dirent--.h: Likewise.
10815         * lib/dirent-safer.h: Likewise.
10816         * lib/opendir-safer.c: Likewise.
10817         * m4/dirent-safer.m4: Likewise.
10818         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
10819         * modules/dirent-safer-tests: New test.
10820         * tests/test-dirent-safer.c: New file.
10821         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
10822
10823         fdopendir: optimize on mingw
10824         * lib/unistd.in.h (_gl_directory_name): New prototype.
10825         * lib/fchdir.c (_gl_directory_name): Implement it.
10826         (fchdir): Use it to simplify implementation.
10827         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
10828         fchdir, when available, to avoid calling [f]chdir().
10829
10830         fdopendir: split into its own module
10831         * lib/openat.c (fdopendir): Move...
10832         * lib/fdopendir.c: ...into new file.
10833         * modules/fdopendir: New module.
10834         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
10835         * modules/openat (Depends-on): Add fdopendir.
10836         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
10837         fdopendir here.
10838         * modules/savedir (Depends-on): Only need fdopendir, not full
10839         openat.
10840         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
10841         * lib/openat.h (fdopendir): Drop prototype.
10842         * lib/dirent.in.h (fdopendir): Provide prototype.
10843         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
10844         * modules/dirent (Makefile.am): Substitute them.
10845         * MODULES.html.sh (File system functions): Mention it.
10846         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
10847         * modules/fdopendir-tests: New file.
10848         * tests/test-fdopendir.c: Likewise.
10849
10850         fchdir: use more consistent macro convention
10851         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
10852         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
10853         REPLACE_FCHDIR, rather than relying on config.h macros.
10854         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
10855         inside a single make-time REPLACE_FCHDIR block, rather than using
10856         the config.h FCHDIR_REPLACEMENT.
10857         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
10858         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
10859         Manage fstat replacement.
10860         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
10861         REPLACE_FCHDIR.
10862         * modules/sys_stat (Files): Add m4/unistd_h.m4.
10863         (Makefile.am): Substitute REPLACE_FCHDIR.
10864         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
10865         FCHDIR_REPLACEMENT.
10866         * lib/dup-safer.c (dup_safer): Likewise.
10867         * lib/dup2.c (rpl_dup2): Likewise.
10868         * lib/dup3.c (rpl_dup3): Likewise.
10869         * lib/open.c (rpl_open): Likewise.
10870
10871         fchdir: simplify error handling, and support dup3
10872         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
10873         stdbool, malloc-posix, realloc-posix.
10874         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
10875         (ensure_dirs_slot): Return false on allocation failure.
10876         (rpl_dup2): Delete.
10877         (_gl_register_dup): New function.
10878         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
10879         (_gl_register_fd): Close fd on allocation failure.
10880         * lib/fcntl.in.h (_gl_register_fd): Update signature.
10881         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
10882         prototype.
10883         (rpl_dup2_fchdir): Delete prototype.
10884         * lib/open.c (open): Update caller.
10885         * lib/dup2.c (dup2): Track fchdir metadata.
10886         * lib/dup3.c (dup3): Likewise.
10887         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
10888         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
10889
10890 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10891
10892         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
10893         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
10894         don't pass arguments to AC_OUTPUT.
10895
10896 2009-09-02  Bruno Haible  <bruno@clisp.org>
10897
10898         * modules/mkdtemp (License): Relicense under LGPLv2+.
10899         Reported by Paolo Bonzini.
10900
10901 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10902
10903         Replace uses of obsolete autoconf macros in Jim's modules.
10904         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
10905         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
10906         can evoke a warning from autoconf when run with -Wobsolete
10907         enabled.  They were declared obsolete for good reasons (see
10908         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
10909         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
10910         should not continue using the deprecated macros.
10911         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
10912         obsolete Autoconf macros with modern counterparts.
10913         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
10914         * m4/dos.m4 (gl_AC_DOS): Likewise.
10915         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
10916         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
10917         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
10918         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
10919         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
10920         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
10921         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
10922         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
10923         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
10924         Likewise.
10925         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
10926         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
10927         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
10928         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
10929         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
10930         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
10931
10932 2009-09-01  Eric Blake  <ebb9@byu.net>
10933
10934         fchdir: fix off-by-one bug in previous patch
10935         * lib/fchdir.c (rpl_fstat): Use correct bounds.
10936         (_gl_unregister_fd): Delete useless if.
10937
10938 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
10939
10940         maint.mk: sort the list of syntax-check rules
10941         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
10942         easier to get a sense of progress when the rules are run sequentially
10943         and take a long time.
10944
10945 2009-09-01  Simon Josefsson  <simon@josefsson.org>
10946
10947         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
10948         * modules/netinet_in: Likewise.
10949         * modules/sys_file: Likewise.
10950         * modules/sys_ioctl: Likewise.
10951         * modules/sys_select: Likewise.
10952         * modules/sys_socket: Likewise.
10953         * modules/sys_stat: Likewise.
10954         * modules/sys_time: Likewise.
10955         * modules/sys_times: Likewise.
10956         * modules/sys_utsname: Likewise.
10957         * modules/sys_wait: Likewise.
10958
10959 2009-09-01  Jim Meyering  <meyering@redhat.com>
10960
10961         fts: help ensure that return values are not ignored
10962         * lib/fts_.h (__GNUC_PREREQ): Define.
10963         (__attribute_warn_unused_result__): Define.
10964         (fts_children, fts_close, fts_open, fts_read): Declare with
10965         __attribute_warn_unused_result__.
10966
10967         fts: fts_close now fails also when closing a dir file descriptor fails
10968         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
10969         and propagate to caller, along with errno.
10970
10971         announce-gen: correct formatting in --help output
10972         * build-aux/announce-gen (usage): Move the one-line description in
10973         --help output "up", to where it belongs, just after Usage:.
10974
10975 2009-08-31  Eric Blake  <ebb9@byu.net>
10976
10977         fchdir: port to mingw
10978         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
10979         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
10980         opened, then use a substitute.
10981         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
10982         replacement.
10983         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
10984         (_gl_register_fd): No need to check stat if open already filters
10985         all directories.
10986         (fchdir): Fix error condition to match POSIX.
10987         * modules/fchdir (Depends-on): Add sys_stat.
10988         * doc/posix-functions/open.texi (open): Document the limitation.
10989         * modules/fchdir-tests: New file.
10990         * tests/test-fchdir.c: Likewise.
10991
10992         canonicalize: allow cross-testing from cygwin to mingw
10993         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
10994         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
10995         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
10996         Likewise.
10997         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
10998         target does not support symlinks.
10999         * tests/test-canonicalize-lgpl.sh: Likewise.
11000
11001         chown: avoid compilation warning on mingw
11002         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
11003         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
11004         mingw.
11005         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
11006         * modules/chown (Depends-on): Add errno.
11007
11008 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
11009
11010         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
11011         command.
11012
11013 2009-08-31  Jim Meyering  <meyering@redhat.com>
11014
11015         canonicalize: remove useless initialization
11016         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
11017         initialization of local, "end".
11018
11019 2009-08-30  Bruno Haible  <bruno@clisp.org>
11020
11021         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
11022         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
11023         ENOSYS.
11024
11025 2009-08-30  Bruno Haible  <bruno@clisp.org>
11026
11027         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
11028         /usr/xpg4/bin/tr when it exists.
11029         * tests/test-pipe-filter-gi1.sh: Likewise.
11030
11031 2009-08-30  Bruno Haible  <bruno@clisp.org>
11032
11033         Work around deficient /usr/bin/id program on Solaris.
11034         * tests/test-file-has-acl.sh (ID): New variable.
11035         * tests/test-set-mode-acl.sh (ID): Likewise.
11036         * tests/test-copy-acl.sh (ID): Likewise.
11037         * tests/test-copy-file.sh (ID): Likewise.
11038
11039 2009-08-30  Bruno Haible  <bruno@clisp.org>
11040
11041         New module 'xstriconveh'.
11042         * lib/xstriconveh.h: New file.
11043         * lib/xstriconveh.c: New file.
11044         * modules/xstriconveh: New file.
11045
11046 2009-08-30  Bruno Haible  <bruno@clisp.org>
11047
11048         Make it easier to use mem_cd_iconveh.
11049         * lib/striconveh.h (iconveh_t): New type.
11050         (iconveh_open, iconveh_close): New declarations.
11051         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
11052         with a single 'const iconveh_t *' argument.
11053         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
11054         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
11055         with a single 'const iconveh_t *' argument.
11056         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
11057         * tests/test-striconveh.c (main): Update.
11058         * NEWS: Mention the change.
11059
11060 2009-08-30  Bruno Haible  <bruno@clisp.org>
11061
11062         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
11063         problem.
11064
11065 2009-08-30  Bruno Haible  <bruno@clisp.org>
11066
11067         Work around iconv_open problem on Solaris.
11068         * lib/iconv_open-solaris.gperf: New file.
11069         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
11070         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
11071         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
11072         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
11073         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
11074         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
11075
11076 2009-08-29  Jim Meyering  <meyering@redhat.com>
11077
11078         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
11079         * top/maint.mk (cvs-check): Remove target; it was just an alias
11080         to the better-named vc-diff-check.
11081         (maintainer-distcheck): Remove rule.  It was used only from
11082         the (alpha/beta/major) target, and all of its commands but one
11083         were coreutils-specific.
11084         (vc-dist): Remove rule.
11085         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
11086         Run vc-diff-check, not vc-dist.
11087         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
11088
11089 2009-08-27  Bruno Haible  <bruno@clisp.org>
11090
11091         * tests/test-bitrotate.c (main): Remove test that uses a shift count
11092         of 0.
11093
11094 2009-08-27  Bruno Haible  <bruno@clisp.org>
11095
11096         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
11097         compilers.
11098         * doc/func.texi: Document the SunPRO C bug.
11099
11100 2009-08-27  Bruno Haible  <bruno@clisp.org>
11101
11102         Fix link error on Solaris.
11103         * tests/test-parse-duration.c (xstrdup): Remove function.
11104
11105 2009-08-26  Pádraig Brady  <P@draigbrady.com>
11106
11107         ignore-value: handle pointer types, too
11108         * lib/ignore-value.h (__attribute__): Remove definition.
11109         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
11110         of a more concise and more-often effective "(void) i" statement.
11111         (ignore_ptr): New function to suppress warnings from functions that
11112         return pointers, and to make it explicit that one function doesn't
11113         handle all cases.
11114
11115 2009-08-25  Bruno Haible  <bruno@clisp.org>
11116
11117         dup2: work around a Linux bug.
11118         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
11119         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
11120         * doc/posix-functions/dup2.texi: Mention the Linux bug.
11121         Reported by Simon Josefsson.
11122
11123 2009-08-25  Jim Meyering  <meyering@redhat.com>
11124
11125         libguestfs uses gnulib
11126         * users.txt: Add libguestfs.
11127
11128 2009-08-24  Eric Blake  <ebb9@byu.net>
11129
11130         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
11131         * lib/pipe2.c (includes): Add binary-io.h.
11132         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
11133
11134 2009-08-24  Bruno Haible  <bruno@clisp.org>
11135
11136         Tolerate declared but missing accept4 syscall.
11137         * lib/accept4.c (accept4): Invoke original accept4 function first, if
11138         available.
11139         * lib/sys_socket.in.h (accept4): If the function is already present,
11140         override it.
11141         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
11142         * modules/accept4 (Makefile.am): Compile accept4.c always.
11143         Reported by Paolo Bonzini and Eric Blake.
11144
11145 2009-08-23  Bruno Haible  <bruno@clisp.org>
11146
11147         New module 'accept4'.
11148         * lib/sys_socket.in.h (accept4): New declaration.
11149         * lib/accept4.c: New file.
11150         * m4/accept4.m4: New file.
11151         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
11152         GNULIB_ACCEPT4, HAVE_ACCEPT4.
11153         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
11154         HAVE_ACCEPT4.
11155         * modules/accept4: New file.
11156         * doc/glibc-functions/accept4.texi: Mention the new module.
11157
11158 2009-08-24  Jim Meyering  <meyering@redhat.com>
11159
11160         progname: also set global program_invocation_name, when possible
11161         Before this change, a libtool-enabled program that calls glibc's
11162         error function would report the program name as
11163         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
11164         * modules/progname (configure.ac): Check for a declaration of
11165         program_invocation_name.
11166         * lib/progname.c:  Include <errno.h>.
11167         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
11168         Set program_invocation_name.
11169
11170 2009-08-23  Bruno Haible  <bruno@clisp.org>
11171
11172         * lib/dup3.c: Include <string.h>.
11173
11174 2009-08-23  Bruno Haible  <bruno@clisp.org>
11175
11176         * lib/dup3.c (dup3): Test only once whether the system actually exists.
11177         * lib/pipe2.c (pipe2): Likewise.
11178         Suggested by Eric Blake.
11179
11180 2009-08-23  Bruno Haible  <bruno@clisp.org>
11181
11182         Tolerate declared but missing dup3 syscall.
11183         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
11184         * lib/unistd.in.h (dup3): If the function is already present,
11185         override it.
11186         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
11187         * modules/dup3 (Makefile.am): Compile dup3.c always.
11188         Reported by Paolo Bonzini.
11189
11190 2009-08-23  Bruno Haible  <bruno@clisp.org>
11191
11192         Tolerate declared but missing pipe2 syscall.
11193         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
11194         available.
11195         * lib/unistd.in.h (pipe2): If the function is already present,
11196         override it.
11197         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
11198         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
11199         Reported by Paolo Bonzini.
11200
11201 2009-08-23  Bruno Haible  <bruno@clisp.org>
11202
11203         * lib/pipe2.c (pipe2): Move #ifs inside function.
11204
11205 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11206
11207         quotearg: document limitations of quote_these_too
11208         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
11209         those limitations are created.
11210         * lib/quotearg.h (set_char_quoting): Document that digits and
11211         letters that are special after backslash are not permitted.
11212         (quotearg_char): Cross-reference set_char_quoting documentation.
11213
11214 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
11215
11216         quotearg: implement custom_quoting_style
11217         * lib/quotearg.c: (struct quoting_options): Add left_quote and
11218         right_quote fields.
11219         (set_custom_quoting): New public function.
11220         (quotearg_buffer_restyled): Add left_quote and right_quote
11221         arguments, handle them very much like locale quoting, and update
11222         all uses.
11223         (quotearg_n_custom): New public function.
11224         (quotearg_n_custom_mem): New public function.
11225         (quotearg_custom): New public function.
11226         (quotearg_custom_mem): New public function.
11227         * lib/quotearg.h: Prototype and document new public functions.
11228         (enum quoting_style): For escape_quoting_style and
11229         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
11230         ignored even though they're otherwise like c_quoting_style.
11231         Add custom_quoting_style member and document with comparison to
11232         clocale_quoting_style.
11233         * tests/test-quotearg.c (custom_quotes): New array.
11234         (custom_results): New array.
11235         (main): Extend to test custom quoting.
11236
11237 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11238
11239         quotearg: fix right quote escaping when it's in quote_these_too
11240         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
11241         quote, be sure to prepend only one backslash.
11242         * tests/test-quotearg.c (use_quote_double_quotes): New function.
11243         (main): Test it.
11244
11245 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11246
11247         quotearg-tests: test escaping of embedded locale quotes
11248         * tests/test-quotearg.c (struct result_strings): Add member for
11249         new input.
11250         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
11251         (inputs): Add new input.
11252         (results_g): Add expected results.
11253         (flag_results): Likewise.
11254         (locale_results): Likewise.
11255         (compare_strings): Check those.
11256
11257 2009-08-23  Bruno Haible  <bruno@clisp.org>
11258
11259         Tests for module 'dup3'.
11260         * modules/dup3-tests: New file.
11261         * tests/test-dup3.c: New file.
11262
11263         New module 'dup3'.
11264         * lib/unistd.in.h (dup3): New declaration.
11265         * lib/dup3.c: New file.
11266         * m4/dup3.m4: New file.
11267         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
11268         HAVE_DUP3.
11269         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
11270         * modules/dup3: New file.
11271         * doc/glibc-functions/dup3.texi: Mention the new module.
11272
11273 2009-08-23  Bruno Haible  <bruno@clisp.org>
11274
11275         Tweak the dup2 test.
11276         * tests/test-dup2.c (main): Create the test file empty. Verify that an
11277         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
11278         the test file is still empty. Fix argument order of lseek.
11279
11280 2009-08-23  Bruno Haible  <bruno@clisp.org>
11281
11282         Avoid test link errors when the modules getopt-gnu, gettext are used.
11283         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
11284         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11285
11286 2009-08-23  Bruno Haible  <bruno@clisp.org>
11287
11288         Fix getdtablesize() on mingw.
11289         * lib/getdtablesize.c (getdtablesize): Implement differently.
11290         * lib/unistd.in.h (getdtablesize): Improve comment.
11291
11292 2009-08-23  Bruno Haible  <bruno@clisp.org>
11293
11294         New module 'mkostemp'.
11295         Based on Ulrich Drepper's 2007-08-10 change in glibc.
11296         * lib/stdlib.in.h (mksotemp): New declaration.
11297         * lib/mkostemp.c: New file, from glibc with modifications.
11298         * lib/tempname.h (GT_FILE): Remove outdated comment.
11299         (gen_tempname): Add flags argument.
11300         * lib/tempname.c (__GT_BIGFILE): Remove macro.
11301         (__GT_FILE): Map to 1.
11302         (small_open, large_open): Remove macros.
11303         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
11304         * lib/mkstemp.c (mkstemp): Update.
11305         * lib/mkdtemp.c (mkdtemp): Likewise.
11306         * m4/mkostemp.m4: New file.
11307         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
11308         HAVE_MKOSTEMP.
11309         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
11310         HAVE_MKOSTEMP.
11311         * modules/mkostemp: New file, based on modules/mkstemp.
11312         * doc/glibc-functions/mkostemp.texi: Mention the new module.
11313         * NEWS: Mention the change.
11314
11315 2009-08-23  Bruno Haible  <bruno@clisp.org>
11316
11317         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
11318         Reported by Eric Blake.
11319
11320 2009-08-23  Bruno Haible  <bruno@clisp.org>
11321
11322         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
11323         Reported by Eric Blake.
11324
11325 2009-08-23  Bruno Haible  <bruno@clisp.org>
11326
11327         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
11328         * modules/pipe2 (Depends-on): Likewise.
11329
11330 2009-08-23  Eric Blake  <ebb9@byu.net>
11331
11332         fcntl-h: add O_TTY_INIT support
11333         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
11334         * tests/test-fcntl-h.c (o): Test it.
11335         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
11336
11337         fcntl-h: rename from fcntl, in preparation for fcntl(2)
11338         * modules/fcntl: Move <fcntl.h> header replacement...
11339         * modules/fcntl-h: ...to new name, so as not to collide with
11340         like-named function.
11341         * tests/test-fcntl.c: Rename...
11342         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
11343         * modules/fcntl-tests: Rename...
11344         * modules/fcntl-h-tests: ...to this.  Update test file name.
11345         * modules/chdir-long (Depends-on): Update clients.
11346         * modules/chdir-safer (Depends-on): Likewise.
11347         * modules/fcntl-safer (Depends-on): Likewise.
11348         * modules/fts (Depends-on): Likewise.
11349         * modules/mkancesdirs (Depends-on): Likewise.
11350         * modules/mkdir-p (Depends-on): Likewise.
11351         * modules/open (Depends-on): Likewise.
11352         * modules/savewd (Depends-on): Likewise.
11353         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
11354         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
11355
11356 2009-08-22  Bruno Haible  <bruno@clisp.org>
11357
11358         * modules/binary-io (License): Relicense under LGPL.
11359         * modules/pipe2 (License): Likewise.
11360
11361 2009-08-22  Bruno Haible  <bruno@clisp.org>
11362
11363         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
11364         return value.
11365         * lib/pipe-filter-gi.c (filter_init): Likewise.
11366         Reported by Eric Blake.
11367
11368 2009-08-22  Bruno Haible  <bruno@clisp.org>
11369
11370         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
11371         * modules/pipe (Depends-on): Add pipe2.
11372
11373 2009-08-22  Bruno Haible  <bruno@clisp.org>
11374
11375         Tests for module 'pipe2'.
11376         * modules/pipe2-tests: New file.
11377         * tests/test-pipe2.c: New file.
11378
11379         New module 'pipe2'.
11380         * lib/unistd.in.h (pipe2): New declaration.
11381         * lib/pipe2.c: New file.
11382         * m4/pipe2.m4: New file.
11383         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
11384         HAVE_PIPE2.
11385         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
11386         * modules/pipe2: New file.
11387         * doc/glibc-functions/pipe2.texi: Mention the new module.
11388
11389 2009-08-22  Bruno Haible  <bruno@clisp.org>
11390
11391         Reference some new glibc functions.
11392         * doc/glibc-functions/accept4.texi: New file.
11393         * doc/glibc-functions/dup3.texi: New file.
11394         * doc/glibc-functions/mkostemp.texi: New file.
11395         * doc/glibc-functions/pipe2.texi: New file.
11396         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
11397         (Glibc sys/socket.h): Refer to accept4.
11398         (Glibc unistd.h): Refer to dup3, pipe2.
11399         Reported by Eric Blake.
11400
11401 2009-08-22  Jim Meyering  <meyering@redhat.com>
11402             Bruno Haible  <bruno@clisp.org>
11403
11404         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
11405         This makes it so packages using automake-1.11's silent-rules option
11406         can print e.g., a single "GEN    configmake.h" line, rather than
11407         the 30+ statements that perform the job.  If you want to see the
11408         actual commands, you can still run "make V=1".
11409         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
11410         so that make output is abbreviated when those variables are defined
11411         appropriately.
11412         * modules/argz: Likewise.
11413         * modules/arpa_inet: Likewise.
11414         * modules/byteswap: Likewise.
11415         * modules/configmake: Likewise.
11416         * modules/dirent: Likewise.
11417         * modules/errno: Likewise.
11418         * modules/fcntl: Likewise.
11419         * modules/float: Likewise.
11420         * modules/fnmatch: Likewise.
11421         * modules/getopt-posix: Likewise.
11422         * modules/glob: Likewise.
11423         * modules/iconv_open: Likewise.
11424         * modules/inttypes: Likewise.
11425         * modules/localcharset: Likewise.
11426         * modules/locale: Likewise.
11427         * modules/math: Likewise.
11428         * modules/netdb: Likewise.
11429         * modules/netinet_in: Likewise.
11430         * modules/poll: Likewise.
11431         * modules/posix_spawnp-tests: Likewise.
11432         * modules/sched: Likewise.
11433         * modules/search: Likewise.
11434         * modules/selinux-h: Likewise.
11435         * modules/signal: Likewise.
11436         * modules/spawn: Likewise.
11437         * modules/stdarg: Likewise.
11438         * modules/stdbool: Likewise.
11439         * modules/stddef: Likewise.
11440         * modules/stdint: Likewise.
11441         * modules/stdio: Likewise.
11442         * modules/stdlib: Likewise.
11443         * modules/string: Likewise.
11444         * modules/strings: Likewise.
11445         * modules/sys_file: Likewise.
11446         * modules/sys_ioctl: Likewise.
11447         * modules/sys_select: Likewise.
11448         * modules/sys_socket: Likewise.
11449         * modules/sys_stat: Likewise.
11450         * modules/sys_time: Likewise.
11451         * modules/sys_times: Likewise.
11452         * modules/sys_utsname: Likewise.
11453         * modules/sys_wait: Likewise.
11454         * modules/sysexits: Likewise.
11455         * modules/time: Likewise.
11456         * modules/unistd: Likewise.
11457         * modules/wchar: Likewise.
11458         * modules/wctype: Likewise.
11459
11460 2009-08-22  Jim Meyering  <meyering@redhat.com>
11461
11462         announce-gen: detect write failure
11463         * build-aux/announce-gen: Add Coda at end.
11464         Remove equivalent-but-more-verbose block at top.
11465
11466 2009-08-19  Akim Demaille  <demaille@gostai.com>
11467
11468         bootstrap: --help to stdout.
11469         * bootstrap (usage): Don't send --help to stderr.
11470         Use a here doc instead of a long string.
11471
11472 2009-08-21  Eric Blake  <ebb9@byu.net>
11473
11474         test-popen-safer: split from test-popen
11475         * tests/test-popen.c (main): Move...
11476         * tests/test-popen.h: ...into new file.
11477         * tests/test-popen-safer2.c: New file.
11478         * modules/popen-tests (Files): Add test-popen.h.
11479         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
11480         Suggested by Bruno Haible.
11481
11482         test-fcntl-safer: split from test-open
11483         * tests/test-open.c (main): Move...
11484         * tests/test-open.h: ...into new file.
11485         * tests/test-fcntl-safer.c: New file.
11486         * modules/open-tests (Files): Add test-open.h.
11487         * modules/fcntl-safer-tests: New file.
11488         Suggested by Bruno Haible.
11489
11490         test-fopen-safer: split from test-fopen
11491         * tests/test-fopen.c (main): Move...
11492         * tests/test-fopen.h: ...into new file.
11493         * tests/test-fopen-safer.c: New file.
11494         * modules/fopen-tests (Files): Add test-fopen.h.
11495         * modules/fopen-safer-tests: New file.
11496         Suggested by Bruno Haible.
11497
11498 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
11499
11500         popen-safer: test O_CLOEXEC at run-time.
11501         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
11502
11503 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
11504
11505         fcntl: move more flags to the header
11506         * lib/cloexec.c: Do not define FD_CLOEXEC here.
11507         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
11508         * lib/fcntl.in.h: Do both things here.
11509
11510 2009-08-21  Jim Meyering  <meyering@redhat.com>
11511
11512         consistently remove $@-t before redirecting to it
11513         * modules/argz: Remove $@-t and $@ before redirecting to the former.
11514         * modules/alloca-opt: Likewise.
11515         * modules/byteswap: Likewise.
11516         * modules/fnmatch: Likewise.
11517         * modules/getopt-posix: Likewise.
11518         * modules/glob: Likewise.
11519         * modules/poll: Likewise.
11520         * modules/posix_spawnp-tests: Likewise.
11521         * modules/sys_socket: Likewise.
11522         * modules/sysexits: Likewise.
11523
11524 2009-08-21  Eric Blake  <ebb9@byu.net>
11525
11526         popen: simplify access to original popen
11527         * lib/popen.c (rpl_popen): No need to worry about popen being a
11528         macro.
11529         Reported by Bruno Haible.
11530
11531 2009-08-20  Eric Blake  <ebb9@byu.net>
11532
11533         build: avoid some compiler warnings
11534         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
11535         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
11536         type.
11537         (new_exclude_segment, excluded_file_pattern_p)
11538         (excluded_file_name_p): Reduce scope.
11539         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
11540         old-style declaration.
11541
11542 2009-08-20  Simon Josefsson  <simon@josefsson.org>
11543
11544         * tests/test-exclude1.sh: Handle Windows EOL.
11545         * tests/test-exclude2.sh: Likewise.
11546         * tests/test-exclude3.sh: Likewise.
11547         * tests/test-exclude4.sh: Likewise.
11548         * tests/test-exclude5.sh: Likewise.
11549         * tests/test-exclude6.sh: Likewise.
11550         * tests/test-exclude7.sh: Likewise.
11551
11552 2009-08-19  Akim Demaille  <demaille@gostai.com>
11553
11554         bootstrap: find sha1sum when named gsha1sum.
11555         * bootstrap (find_tool): New.
11556         ($SHA1SUM): New.
11557         Use it.
11558
11559 2009-08-20  Jim Meyering  <meyering@redhat.com>
11560
11561         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
11562         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
11563         expression that converts "." in a file name to "\." in the resulting
11564         regexp.  Start with a dummy statement, so that prior shell variable
11565         definitions are expanded portably.  Reported by Simon Josefsson.
11566
11567 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
11568
11569         Fix polling for writeability of a screen buffer.
11570         * lib/poll.c: Distinguish input and screen buffers for the
11571         Win32 implementation.
11572         * lib/select.c: Likewise.
11573
11574 2009-08-19  Eric Blake  <ebb9@byu.net>
11575
11576         popen-safer: prevent popen from clobbering std descriptors
11577         * modules/popen-safer: New file.
11578         * lib/popen-safer.c: Likewise.
11579         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
11580         * lib/stdio--.h (popen): Provide override.
11581         * lib/stdio-safer.h (popen_safer): Provide declaration.
11582         * tests/test-popen.c (includes): Partially test this.
11583         * modules/popen-safer-tests: New file, for more tests.
11584         * tests/test-popen-safer.c: Likewise.
11585         * MODULES.html.sh (file stream based Input/Output): Mention it.
11586
11587         tests: test some of the *-safer modules
11588         * modules/fopen-safer (Depends-on): Add fopen.
11589         * modules/fcntl-safer (Depends-on): Add fcntl.
11590         * modules/stdlib-safer (Depends-on): Add stdlib.
11591         (configure.ac): Set indicator.
11592         * modules/unistd-safer (configure.ac): Likewise.
11593         * modules/tmpfile-safer (configure.ac): Likewise.
11594         (Depends-on): Add tmpfile.
11595         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
11596         active.
11597         * tests/test-fopen.c (includes): Test safer versions when they are
11598         in use.
11599         * tests/test-open.c (includes): Likewise.
11600
11601         popen: fix cygwin 1.5 bug when stdin closed
11602         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
11603         * modules/popen: New file.
11604         * modules/popen-tests: Likewise.
11605         * tests/test-popen.c: Likewise.
11606         * m4/popen.m4: Likewise.
11607         * lib/popen.c: Likewise.
11608         * lib/stdio.in.h (popen): New declaration.
11609         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
11610         * modules/stdio (Makefile.am): Likewise.
11611         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
11612
11613 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
11614
11615         maint.mk: give full control over update-copyright exclusions
11616         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
11617         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
11618         (update-copyright): Don't force inclusion of top-level
11619         ChangeLog.  Don't force exclusion of all COPYING files, but make
11620         them the default exclusion instead.
11621
11622 2009-08-16  Bruno Haible  <bruno@clisp.org>
11623
11624         Fix test failures on Solaris 10.
11625         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
11626         tests when Solaris iconv() is used.
11627         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
11628         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
11629         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
11630         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
11631         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
11632
11633 2009-08-16  Bruno Haible  <bruno@clisp.org>
11634
11635         Fix test failures on Solaris 10.
11636         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
11637         'tr' program and pass it as first argument.
11638         * tests/test-pipe-filter-gi1.sh: Likewise.
11639         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
11640         program as first argument.
11641         * tests/test-pipe-filter-gi1.c (main): Likewise.
11642
11643 2009-08-16  Eric Blake  <ebb9@byu.net>
11644
11645         fpurge: fix previous commits
11646         * modules/fpurge (Makefile.am): Make replacement conditional,
11647         partially reverting 2007-04-29 change; missed in previous
11648         attempt.
11649         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
11650         is missing.
11651
11652 2009-08-16  Bruno Haible  <bruno@clisp.org>
11653
11654         Clarify fpurge's effect on the file position.
11655         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
11656         * tests/test-fpurge.c (main): Make a second pass for checking the file
11657         position.
11658
11659 2009-08-16  Bruno Haible  <bruno@clisp.org>
11660
11661         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
11662         declaration of fpurge is missing.
11663         * tests/test-fpurge.c (main): Check that the file has not more contents
11664         than expected. Close the file before removing it.
11665
11666 2009-08-15  Eric Blake  <ebb9@byu.net>
11667
11668         fpurge: don't wrap working cygwin implementation
11669         * lib/fpurge.c (fpurge): Fix comment typo.
11670         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
11671         1.7 to avoid replacement.
11672         * tests/test-fpurge.c (main): Enhance test.
11673
11674 2009-08-15  Eric Blake  <ebb9@byu.net>
11675         and Jim Meyering  <meyering@redhat.com>
11676
11677         test-update-copyright: skip if perl is insufficient
11678         * tests/test-update-copyright.sh: Failure to run maintainer tool
11679         should not cause testsuite failure on cygwin 1.5.
11680
11681 2009-08-14  Eric Blake  <ebb9@byu.net>
11682
11683         doc: mention more functions added in cygwin 1.7.0
11684         * doc/posix-headers/limits.texi (limits.h): Update for recent
11685         cygwin additions.
11686         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
11687         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
11688         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
11689         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
11690         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
11691
11692 2009-08-14  Eric Blake  <ebb9@byu.net>
11693
11694         maint.mk: simplify update-copyright rule
11695         * top/maint.mk (update-copyright-local): Delete, and document how
11696         to do it in cfg.mk instead.
11697         (update-copyright-exclude-regexp): Delete, and document how to do
11698         it in .x-update-copyright instead.
11699         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
11700         exclude ChangeLog.
11701
11702 2009-08-14  Bruno Haible  <bruno@clisp.org>
11703
11704         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
11705
11706 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
11707
11708         maint.mk: support update-copyright-env
11709         * top/maint.mk (update-copyright-env): Define place-holder.
11710         (update-copyright): Expand $(update-copyright-env) before
11711         invoking update-copyright.
11712
11713 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
11714
11715         update-copyright: implement forced reformatting
11716         * build-aux/update-copyright: Implement and document
11717         UPDATE_COPYRIGHT_FORCE.
11718         * tests/test-update-copyright.sh: Test it.
11719
11720 2009-08-14  Eric Blake  <ebb9@byu.net>
11721         and Bruno Haible  <bruno@clisp.org>
11722
11723         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
11724         * tests/test-locale.c: Revert previous patch related to NULL.
11725         * tests/test-stdio.c: Likewise.
11726         * tests/test-stdlib.c: Likewise.
11727         * tests/test-string.c: Likewise.
11728         * tests/test-unistd.c: Likewise.
11729         * modules/time-tests (Depends-on): Add verify.
11730         * modules/wchar-tests (Depends-on): Likewise.
11731         * tests/test-time.c: Test for NULL compliance.
11732         * tests/test-wchar.c: Likewise.
11733         * modules/locale (Depends-on): Add stddef.
11734         * modules/stdio (Depends-on): Likewise.
11735         * modules/stdlib (Depends-on): Likewise.
11736         * modules/string (Depends-on): Likewise.
11737         * modules/time (Depends-on): Likewise.
11738         * modules/unistd (Depends-on): Likewise.
11739         * modules/wchar (Depends-on): Likewise.
11740         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
11741         * lib/stdlib.in.h (includes): Likewise.
11742         * lib/string.in.h (includes): Likewise.
11743         * lib/time.in.h (includes): Likewise.
11744         * lib/unistd.in.h (includes): Likewise.
11745         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
11746         replaced.
11747         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
11748         * m4/stddef_h.m4: New file.
11749         * modules/stddef: Likewise.
11750         * lib/stddef.in.h: Likewise.
11751         * modules/stddef-tests: Likewise.
11752         * tests/test-stddef.c: Likewise.
11753         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
11754         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
11755         * doc/posix-headers/locale.texi (locale.h): Likewise.
11756         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
11757         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
11758         * doc/posix-headers/string.texi (string.h): Likewise.
11759         * doc/posix-headers/time.texi (time.h): Likewise.
11760         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
11761         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
11762
11763 2009-08-14  Eric Blake  <ebb9@byu.net>
11764
11765         doc: improve git diff of texinfo files
11766         * .gitattributes: Add rule for *.texi files, with hint on how to
11767         use it.
11768         Copied from m4, and based on a report by Bruno Haible.
11769
11770 2009-08-14  Bruno Haible  <bruno@clisp.org>
11771
11772         Disable multithread support by default on Cygwin 1.5.x for real.
11773         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
11774
11775 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
11776
11777         update-copyright: much ado about intervals
11778         * build-aux/update-copyright: Implement and document
11779         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
11780         of copyright year intervals.
11781         Also, document UPDATE_COPYRIGHT_YEAR.
11782         * tests/test-update-copyright.sh: Test it.
11783
11784         update-copyright: convert 2-digit to 4-digit years
11785         * build-aux/update-copyright: Implement and document.
11786         * tests/test-update-copyright.sh: Update.
11787
11788 2009-08-14  Jim Meyering  <meyering@redhat.com>
11789
11790         test-exclude: avoid coreutils "make check" failure
11791         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
11792         just as in test-argmatch.c.
11793
11794 2009-08-13  Eric Blake  <ebb9@byu.net>
11795
11796         test-dup2: fix bad assumption
11797         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
11798         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
11799
11800         test-version-etc: fix CRLF portability issue
11801         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
11802         recognize \r.
11803         * tests/test-argp-version-etc-1.sh: Likewise.
11804
11805         getopt: update client modules
11806         * modules/argp (Depends-on): Use getopt-gnu.
11807         * modules/git-merge-changelog (Depends-on): Likewise.
11808         * modules/long-options (Depends-on): Likewise.
11809         * modules/xstrtol (Depends-on): Likewise.
11810
11811 2009-08-13  Simon Josefsson  <simon@josefsson.org>
11812
11813         * tests/test-version-etc.sh: Don't fail on different
11814         project/version.  Don't fail on CRLF differences.  Rewrite to use
11815         multiple -e instead of multiple sed forks, suggested by Eric Blake
11816         <ebb9@byu.net>.
11817         * tests/test-argp-version-etc-1.sh: Likewise.
11818
11819 2009-08-13  Simon Josefsson  <simon@josefsson.org>
11820
11821         * tests/test-version-etc.sh: Don't fail on different
11822         project/version.
11823
11824 2009-08-12  Bruno Haible  <bruno@clisp.org>
11825
11826         Tests for modules 'getopt-posix', 'getopt-gnu'.
11827         * modules/getopt-posix-tests: New file.
11828         * tests/test-getopt.c: New file.
11829         * tests/test-getopt.h: New file.
11830         * tests/test-getopt_long.h: New file.
11831
11832         New modules 'getopt-posix', 'getopt-gnu'.
11833         * modules/getopt-gnu: New file, renamed from modules/getopt.
11834         * modules/getopt-posix: New file.
11835         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
11836         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
11837         (gl_GETOPT): Remove macro.
11838         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
11839         Disable the test against BSD systems that declare optreset. Test
11840         against mingw bug. Test against lack of support of optional arguments
11841         on many platforms.
11842         * doc/glibc-headers/getopt.texi: Update module name and list of
11843         relevant platforms.
11844         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
11845         'getopt-gnu' and more portability problems.
11846         * NEWS: Mention the changes.
11847
11848 2009-08-12  Bruno Haible  <bruno@clisp.org>
11849
11850         Ensure that optarg etc. get declared by <unistd.h>.
11851         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
11852         AC_USE_SYSTEM_EXTENSIONS.
11853         * modules/getopt (Depends-on): Add 'extensions'.
11854
11855 2009-08-12  Bruno Haible  <bruno@clisp.org>
11856
11857         Avoid test link errors.
11858         * modules/pipe-filter-ii-tests (Makefile.am): Define
11859         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
11860         * modules/pipe-filter-gi-tests (Makefile.am): Define
11861         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
11862         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11863
11864 2009-08-12  Bruno Haible  <bruno@clisp.org>
11865
11866         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
11867         gl_GETOPT_SUBSTITUTE before.
11868         (gl_GETOPT): Use it.
11869         * m4/argp.m4 (gl_ARGP): Update.
11870         Reported by Sergey Poznyakoff.
11871
11872         * m4/getopt.m4: Reorder macros.
11873         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
11874         (gl_GETOPT_SUBSTITUTE): Remove macro.
11875
11876 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
11877
11878         Minor improvement in gitlog-to-changelog
11879
11880         * build-aux/gitlog-to-changelog: New option `--format' makes
11881         output format string configurable.
11882
11883 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
11884
11885         Optimize exclude: use hash tables for non-wildcard patterns.
11886
11887         * lib/exclude.c: Include hash.h and mbuiter.h
11888         (struct exclude_pattern, exclude_segment): New data types.
11889         (struct exclude): Rewrite.
11890         (fnmatch_pattern_has_wildcards): New function.
11891         (new_exclude_segment, free_exclude_segment): New functions.
11892         (excluded_file_pattern_p, excluded_file_name_p): New functions.
11893         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
11894         * lib/exclude.h (is_fnmatch_pattern): New prototype.
11895         * modules/exclude: Depend on hash and mbuiter.
11896
11897         * modules/exclude-tests: New file.
11898         * tests/test-exclude.c: New file.
11899         * tests/test-exclude1.sh: New file.
11900         * tests/test-exclude2.sh: New file.
11901         * tests/test-exclude3.sh: New file.
11902         * tests/test-exclude4.sh: New file.
11903         * tests/test-exclude5.sh: New file.
11904         * tests/test-exclude6.sh: New file.
11905         * tests/test-exclude7.sh: New file.
11906
11907 2009-08-12  Bruno Haible  <bruno@clisp.org>
11908
11909         Ensure that getopt() gets declared by <unistd.h>.
11910         * lib/unistd.in.h: Conditionally include getopt.h.
11911         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
11912         Set GNULIB_UNISTD_H_GETOPT.
11913         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
11914         GNULIB_UNISTD_H_GETOPT.
11915         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
11916
11917 2009-08-12  Bruno Haible  <bruno@clisp.org>
11918
11919         Clarify logic.
11920         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
11921         gl_replace_getopt instead of GETOPT_H.
11922
11923 2009-08-12  Bruno Haible  <bruno@clisp.org>
11924
11925         * m4/getopt.m4: Add comments.
11926
11927 2009-08-12  Bruno Haible  <bruno@clisp.org>
11928
11929         Disable multithread support by default on Cygwin 1.5.x.
11930         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
11931         set gl_use_threads=no if not specified otherwise.
11932
11933 2009-08-11  Bruno Haible  <bruno@clisp.org>
11934
11935         Avoid compilation error on NetBSD 5.0.
11936         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
11937         * tests/test-stdio.c: Likewise.
11938         * tests/test-stdlib.c: Likewise.
11939         * tests/test-string.c: Likewise.
11940         * tests/test-unistd.c: Likewise.
11941         Reported by Greg Troxel <gdt@ir.bbn.com>
11942         at <https://savannah.gnu.org/support/?106973>.
11943
11944 2009-08-11  Bruno Haible  <bruno@clisp.org>
11945
11946         * modules/dup2-tests (Depends-on): Remove close.
11947
11948         Undo 2009-07-19 commit.
11949         * modules/acl-tests (Depends-on): Remove close.
11950         * modules/binary-io-tests (Depends-on): Likewise.
11951         * modules/closein-tests (Depends-on): Likewise.
11952         * modules/flock-tests (Depends-on): Likewise.
11953         * modules/fsync-tests (Depends-on): Likewise.
11954         * modules/lseek-tests (Depends-on): Likewise.
11955         * modules/pipe-tests (Depends-on): Likewise.
11956         * modules/posix_spawn-tests (Depends-on): Likewise.
11957         * modules/posix_spawnp-tests (Depends-on): Likewise.
11958         * modules/stat-time-tests (Depends-on): Likewise.
11959         * modules/yesno-tests (Depends-on): Likewise.
11960
11961 2009-08-10  Bruno Haible  <bruno@clisp.org>
11962
11963         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
11964
11965 2009-08-10  Bruno Haible  <bruno@clisp.org>
11966
11967         Fix a gcc warning.
11968         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
11969
11970 2009-08-10  Bruno Haible  <bruno@clisp.org>
11971
11972         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
11973         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
11974         not only the first time.
11975         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
11976         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
11977         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
11978         is 1, not only the the first time.
11979
11980 2009-08-10  Bruno Haible  <bruno@clisp.org>
11981
11982         Make it possible to use module 'gethostname' without module 'close'.
11983         * lib/unistd.in.h (close): Evoke a link error only if
11984         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
11985         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
11986         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
11987         * modules/unistd (Makefile.am): Substitute
11988         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
11989         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
11990         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
11991         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
11992         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
11993         * modules/sys_ioctl (Makefile.am): Substitute
11994         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
11995         * modules/socket (configure.ac): On native Windows, set
11996         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
11997         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
11998         Reported by Sam Steingold <sds@gnu.org>.
11999
12000 2009-08-10  Bruno Haible  <bruno@clisp.org>
12001
12002         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
12003         * modules/ioctl (configure.ac): Likewise.
12004
12005 2009-08-10  Bruno Haible  <bruno@clisp.org>
12006
12007         Avoid collision between gnulib wrapper and libintl wrapper.
12008         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
12009         already defined in intl/printf.c.
12010         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
12011         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
12012
12013 2009-08-09  Bruno Haible  <bruno@clisp.org>
12014
12015         Make <sys/select.h> really self-contained, also on Solaris 10.
12016         * lib/sys_select.in.h: Include <string.h>.
12017         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
12018         Solaris 10 problem.
12019         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
12020         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
12021         Reported by Jim Meyering.
12022
12023 2009-08-09  Bruno Haible  <bruno@clisp.org>
12024
12025         Avoid warnings from 'aclocal' that are due to a use of macro name
12026         AM_XGETTEXT_OPTION that is not defined in automake.
12027         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
12028         automake.
12029         * modules/error (configure.ac): Likewise.
12030         * modules/propername (configure.ac): Likewise.
12031         * modules/vasprintf (configure.ac): Likewise.
12032         * modules/verror (configure.ac): Likewise.
12033         * modules/xprintf (configure.ac): Likewise.
12034         * modules/xvasprintf (configure.ac): Likewise.
12035
12036 2009-08-08  Bruno Haible  <bruno@clisp.org>
12037
12038         Avoid compilation error in C++ mode.
12039         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
12040         Reported by Sam Steingold <sds@gnu.org>.
12041
12042 2009-08-08  Bruno Haible  <bruno@clisp.org>
12043
12044         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
12045         for the various Unix platforms.
12046         * doc/posix-headers/limits.texi: Update platforms list regarding
12047         HOST_NAME_MAX.
12048         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
12049
12050 2009-08-07  Jim Meyering  <meyering@redhat.com>
12051
12052         selinux-at: fix typo in a comment
12053         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
12054         Spotted by Paolo Bonzini.
12055
12056         selinux-at: remove redundant m4 code, add documentation
12057         * modules/selinux-at (configure.ac): Remove redundant code.
12058         LIB_SELINUX is already set via the dependent module, selinux-h.
12059         (Include): Add quotes around selinux-at.h.
12060         * lib/selinux-at.h: Add documentation.
12061         Reported by Bruno Haible in
12062         http://marc.info/?l=gnulib-bug&m=124958988300749
12063
12064 2009-08-07  Bruno Haible  <bruno@clisp.org>
12065
12066         Avoid link error on MacOS X 10.3 and 10.4.
12067         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
12068         on non-ELF systems.
12069         * lib/argp-pv.c (argp_program_version): Likewise.
12070         Reported by Simon Josefsson.
12071
12072 2009-08-07  Simon Josefsson  <simon@josefsson.org>
12073
12074         * tests/test-version-etc.sh: Use $EXEEXT.
12075
12076 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
12077
12078         update-copyright: update documentation to point to maint.mk
12079         * build-aux/update-copyright: Here.
12080
12081 2009-08-06  Jim Meyering  <meyering@redhat.com>
12082
12083         maint.mk: support update-copyright-local
12084         * top/maint.mk (update-copyright-local): Define place-holder.
12085         (update-copyright): Depend on $(update-copyright-local).
12086
12087 2009-08-06  Jim Meyering  <meyering@redhat.com>
12088
12089         selinux-at: new module
12090         Initially written for coreutils, this module will soon be
12091         used by findutils, too.
12092         * MODULES.html.sh [Misc]: Add selinux-at.
12093         * lib/selinux-at.h: New file, from coreutils.
12094         * lib/selinux-at.c: Likewise.
12095         * modules/selinux-at: Likewise.
12096         (License): Change from LGPL to GPL, since it depends
12097         on the GPL'd openat module.
12098
12099         doc: update README
12100         * README: Remove references to cogito.
12101         Remove cvs-repo-updating instructions from 2007.
12102         Don't imply that CVS is better if you have limited disk space.
12103
12104 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12105
12106         update-copyright: support C-style comments
12107         * build-aux/update-copyright: Implement and document.
12108         * tests/test-update-copyright.sh: Test.
12109
12110 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12111
12112         update-copyright: support omitted "(C)"
12113         * build-aux/update-copyright: Implement and document.  Also,
12114         allow variable whitespace before "(C)".
12115         * tests/test-update-copyright.sh: Test.
12116
12117 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12118
12119         update-copyright: don't trip on non-FSF copyright statements
12120         * build-aux/update-copyright: Fix so that the first correctly
12121         formatted FSF copyright statement is recognized no matter what
12122         appears before it.  Update documentation.
12123         * tests/test-update-copyright.sh: Test that.
12124
12125 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12126
12127         update-copyright: clean up code a little
12128         * build-aux/update-copyright: Append "_re" to the name of any
12129         variable holding a regular expression.
12130         Replace "old" and "new" with "stmt" in variable names.
12131         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
12132         handled correctly.
12133         Format code more consistently.
12134
12135 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12136
12137         update-copyright-tests: improve portability
12138         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
12139         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
12140
12141 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
12142
12143         update-copyright: support @copyright{} and &copy;
12144         * build-aux/update-copyright: Implement and document.
12145         * tests/test-update-copyright.sh: Test.
12146
12147 2009-08-04  Jim Meyering  <meyering@redhat.com>
12148
12149         update-copyright-tests: correctly test EOL=\r\n handling
12150         * tests/test-update-copyright.sh: Put \r at the end of some lines
12151         for the dos-eol tests.  Based on a patch by Joel E. Denny.
12152
12153         maint.mk: make update-copyright exclusion list more configurable
12154         * top/maint.mk (update-copyright): Default to excluding COPYING,
12155         but allow an override, in case someone does want to update that file.
12156
12157         maint.mk: don't update copyright date in COPYING
12158         * top/maint.mk (update-copyright): Exclude COPYING.
12159
12160         maint.mk: add a copyright-updating rule
12161         * top/maint.mk (update-copyright): New rule.
12162         Derived from coreutils/Makefile.am.
12163
12164         update-copyright: rename some variables
12165         * build-aux/update-copyright: Rename a few variables for clarity.
12166         Tweak syntax.  List Joel E. Denny as coauthor.
12167
12168 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
12169
12170         update-copyright: fix bug for 2-digit last year and add tests
12171         * build-aux/update-copyright: Fix bug.
12172         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
12173         specified.
12174         * modules/update-copyright-tests: New
12175         * tests/test-update-copyright.sh: New.
12176
12177 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12178
12179         update-copyright: handle leading tabs in line prefix
12180         * build-aux/update-copyright: Count leading tabs as 8 spaces
12181         when computing margin.  This helps with the formatting of
12182         ChangeLogs, for example.
12183         Fix documentation a little.
12184
12185 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12186
12187         update-copyright: support EOL=\r\n
12188         * build-aux/update-copyright: Implement that.
12189
12190 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12191
12192         update-copyright: automatically format copyright statements
12193         * build-aux/update-copyright: Implement that.
12194         Also, be a little more predictable and safer by always failing
12195         when the full copyright format is not perfectly recognized as an
12196         unbroken whole.  Discussed at
12197         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
12198         Rewrite documentation.
12199
12200 2009-08-03  Bruno Haible  <bruno@clisp.org>
12201
12202         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
12203
12204 2009-08-02  Bruno Haible  <bruno@clisp.org>
12205
12206         Tests for module 'uname'.
12207         * modules/uname-tests: New file.
12208         * tests/test-uname.c: New file.
12209
12210         New module 'uname'.
12211         * lib/uname.c: New file.
12212         * m4/uname.m4: New file.
12213         * modules/uname: New file.
12214         * doc/posix-functions/uname.texi: Mention the new module.
12215
12216 2009-08-02  Bruno Haible  <bruno@clisp.org>
12217
12218         Tests for module 'sys_utsname'.
12219         * modules/sys_utsname-tests: New file.
12220         * tests/test-sys_utsname.c: New file.
12221
12222         New module 'sys_utsname'.
12223         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
12224         * m4/sys_utsname_h.m4: New file.
12225         * modules/sys_utsname: New file.
12226         * doc/posix-headers/sys_utsname.texi: Mention the new module.
12227
12228 2009-08-02  Bruno Haible  <bruno@clisp.org>
12229
12230         Implicitly initialize the sockets library.
12231         * lib/gethostname.c: Include sockets.h.
12232         (rpl_gethostname): Invoke gl_sockets_startup.
12233         * lib/socket.c: Include sockets.h.
12234         (rpl_socket): Invoke gl_sockets_startup.
12235         * modules/gethostname (Depends-on): Add sockets.
12236         * modules/socket (Depends-on): Likewise.
12237         * tests/test-poll.c: Don't include sockets.h.
12238         (main): Don't invoke gl_sockets_startup.
12239         * tests/test-select.c: Don't include sockets.h.
12240         (main): Don't invoke gl_sockets_startup.
12241
12242 2009-08-02  Bruno Haible  <bruno@clisp.org>
12243
12244         Allow multiple calls to gl_sockets_startup.
12245         * lib/sockets.c (initialized_sockets_version): New variable.
12246         (gl_sockets_startup): Do nothing if already called for this or a higher
12247         version.
12248         (gl_sockets_cleanup): Reset initialized_sockets_version.
12249
12250 2009-08-03  Simon Josefsson  <simon@josefsson.org>
12251
12252         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
12253         different project/version.
12254
12255 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
12256             Bruno Haible  <bruno@clisp.org>
12257
12258         Tests for module 'pipe-filter-gi'.
12259         * modules/pipe-filter-gi-tests: New file.
12260         * tests/test-pipe-filter-gi1.sh: New file.
12261         * tests/test-pipe-filter-gi1.c: New file.
12262         * tests/test-pipe-filter-gi2.sh: New file.
12263         * tests/test-pipe-filter-gi2-main.c: New file.
12264         * tests/test-pipe-filter-gi2-child.c: New file.
12265
12266         New module 'pipe-filter-gi'.
12267         * lib/pipe-filter-gi.c: New file.
12268         * modules/pipe-filter-gi: New file.
12269
12270 2009-08-02  Bruno Haible  <bruno@clisp.org>
12271             Paolo Bonzini  <bonzini@gnu.org>
12272
12273         Tests for module 'pipe-filter-ii'.
12274         * modules/pipe-filter-ii-tests: New file.
12275         * tests/test-pipe-filter-ii1.sh: New file.
12276         * tests/test-pipe-filter-ii1.c: New file.
12277         * tests/test-pipe-filter-ii2.sh: New file.
12278         * tests/test-pipe-filter-ii2-main.c: New file.
12279         * tests/test-pipe-filter-ii2-child.c: New file.
12280
12281         New module 'pipe-filter-ii'.
12282         * lib/pipe-filter.h: New file.
12283         * lib/pipe-filter-ii.c: New file.
12284         * lib/pipe-filter-aux.h: New file.
12285         * modules/pipe-filter-ii: New file.
12286
12287 2009-08-02  Simon Josefsson  <simon@josefsson.org>
12288
12289         * lib/gc-libgcrypt.c: Change copyright to FSF.
12290         * lib/gc-gnulib.c: Likewise.
12291
12292 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
12293
12294         * lib/gethostname.c: Include limits.h.
12295
12296 2009-08-02  Simon Josefsson  <simon@josefsson.org>
12297             Bruno Haible  <bruno@clisp.org>
12298
12299         Ensure HOST_NAME_MAX as part of the gethostname module.
12300         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
12301         define also HOST_NAME_MAX.
12302         * tests/test-gethostname.c: Include <limits.h>.
12303         (main): Check also HOST_NAME_MAX.
12304         * doc/posix-headers/limits.texi: Document the mingw problem.
12305
12306 2009-08-02  Bruno Haible  <bruno@clisp.org>
12307
12308         * lib/gethostname.c (gethostname): Fix handling of large len argument.
12309         Add comments.
12310
12311 2009-03-31  Simon Josefsson  <simon@josefsson.org>
12312
12313         * lib/gethostname.c: Add Windows wrapper.
12314         * m4/gethostname.m4: Look for gethostname in -lws2_32.
12315         * modules/gethostname: Depend on sys_socket & errno, for also
12316         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
12317         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
12318
12319 2009-07-31  Jim Meyering  <meyering@redhat.com>
12320
12321         getloadavg: fix symbol name in comment
12322         * lib/getloadavg.c: Correct a typo I introduced when adding
12323         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
12324         Matt Kraai spotted the problem.
12325
12326 2009-07-29  Matt Kraai  <mkraai@beckman.com>
12327
12328         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
12329         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
12330         code also if ! defined N_NAME_POINTER.
12331         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
12332         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
12333         but the n_name member is a 12-byte array.
12334
12335 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
12336
12337         update-copyright: generalize comment handling
12338         * build-aux/update-copyright: Handle copyright statements
12339         within more comment styles.
12340         Document usage.
12341         Report any file with an external copyright holder or parse failure.
12342
12343 2009-07-29  Jim Meyering  <meyering@redhat.com>
12344
12345         mktime: correct setting of REPLACE_MKTIME
12346         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
12347
12348         update-copyright: new module
12349         * modules/update-copyright: New file.
12350         * build-aux/update-copyright: New file.
12351         * MODULES.html.sh (maint+release support): Add update-copyright.
12352
12353 2009-07-27  Bruno Haible  <bruno@clisp.org>
12354
12355         Fix compilation error when <ctime> is used and mktime is replaced.
12356         * lib/time.in.h (mktime): New declaration.
12357         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
12358         REPLACE_MKTIME instead of defining mktime in config.h.
12359         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
12360         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
12361         Reported by Ross McFarland <rwmcfa1@neces.com>.
12362
12363 2009-07-27  Bruno Haible  <bruno@clisp.org>
12364
12365         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
12366         Reported by Matt Kraai <mkraai@beckman.com>.
12367
12368 2009-07-25  Jim Meyering  <meyering@redhat.com>
12369
12370         maint.mk: avoid warnings about missing files
12371         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
12372         diagnostic when .prev-version does not exist.
12373         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
12374         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
12375         nonexistent cfg.mk.
12376         Suggestions from Simon Josefsson.
12377
12378 2009-07-25  Bruno Haible  <bruno@clisp.org>
12379
12380         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
12381         defined as macros. Needed on QNX 6.4.1.
12382         Reported by Matt Kraai <mkraai@beckman.com>.
12383
12384 2009-07-23  Jim Meyering  <meyering@redhat.com>
12385
12386         maint.mk: invoke "make dist" with a working value of XZ_OPT
12387         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
12388
12389 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
12390
12391         Make fseeko.c compile on QNX.
12392         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
12393
12394 2009-07-22  Peter Simons  <simons@cryp.to>
12395
12396         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
12397         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
12398         * lib/md4.h: Likewise.
12399         * lib/md5.h: Likewise.
12400         * lib/sha1.h: Likewise.
12401         * lib/sha256.h: Likewise.
12402         * lib/sha512.h: Likewise.
12403
12404         tests-sha1: don't assign literal string to 'char *' variable
12405         * tests/test-sha1.c (main): Declare locals with "const" to match
12406         attributes of the right hand side.
12407
12408 2009-07-21  Eric Blake  <ebb9@byu.net>
12409
12410         dup2: fix more mingw problems
12411         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
12412         fd to itself.
12413         * doc/posix-functions/dup2.texi (dup2): Document the bug.
12414         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
12415         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
12416         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
12417         care of mingw bugs.
12418
12419 2009-07-21  Jim Meyering  <meyering@redhat.com>
12420
12421         vc-list-files: avoid failure when /bin/sh is dash
12422         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
12423         On some Debian based systems, /bin/sh is a symlink to dash, and running
12424         this command would omit the "/" following each 'tests' prefix:
12425           dash -x build-aux/vc-list-files -C . tests
12426         That is because bash and dash work differently:
12427           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
12428           bash ok
12429           dash odd
12430
12431 2009-07-21  Eric Blake  <ebb9@byu.net>
12432
12433         dup2-tests: test previous patch
12434         * modules/dup2-tests: New file.
12435         * tests/test-dup2.c: Likewise.
12436         * tests/test-open.c (main): Avoid unspecified behavior.
12437         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
12438         test.
12439
12440         dup2: work around mingw and cygwin 1.5 bug
12441         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
12442         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
12443         * modules/unistd (Makefile.am): Substitute it.
12444         * lib/unistd.in.h (dup2): Declare the replacement.
12445         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
12446         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
12447         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
12448         * modules/execute (Depends-on): Add dup2.
12449         * modules/fseterr (Depends-on): Likewise.
12450         * modules/pipe (Depends-on): Likewise.
12451         * modules/posix_spawn-internal (Depends-on): Likewise.
12452
12453 2009-07-21  Bruno Haible  <bruno@clisp.org>
12454
12455         * modules/.gitattributes: New file.
12456
12457 2009-07-20  Bruno Haible  <bruno@clisp.org>
12458
12459         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
12460         (main): Use it.
12461
12462 2009-07-20  Eric Blake  <ebb9@byu.net>
12463
12464         test-pipe: make a bit more robust.
12465         * tests/test-pipe.c (myerr): Allow error messages regardless of
12466         what we do to stderr.
12467         (test_pipe): Rearrange to avoid deadlock.
12468         (child_main): Try a larger read, to ensure we avoided deadlock.
12469         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
12470         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
12471         if misused.
12472
12473 2009-07-19  Jim Meyering  <meyering@redhat.com>
12474
12475         fts: avoid false-positive cycle-detection
12476         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
12477         for each new command line argument.
12478
12479 2009-07-19  Bruno Haible  <bruno@clisp.org>
12480
12481         Fix build error on mingw with the modules sys_select and unistd.
12482         * modules/acl-tests (Depends-on): Add close.
12483         * modules/binary-io-tests (Depends-on): Likewise.
12484         * modules/closein-tests (Depends-on): Likewise.
12485         * modules/flock-tests (Depends-on): Likewise.
12486         * modules/fsync-tests (Depends-on): Likewise.
12487         * modules/lseek-tests (Depends-on): Likewise.
12488         * modules/pipe-tests (Depends-on): Likewise.
12489         * modules/posix_spawn-tests (Depends-on): Likewise.
12490         * modules/posix_spawnp-tests (Depends-on): Likewise.
12491         * modules/stat-time-tests (Depends-on): Likewise.
12492         * modules/yesno-tests (Depends-on): Likewise.
12493
12494 2009-07-19  Bruno Haible  <bruno@clisp.org>
12495
12496         Unify conditionals.
12497         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
12498         macros, not at the compiler macros.
12499         * lib/pipe.c: Likewise.
12500         * lib/execute.c: Likewise.
12501         * lib/spawni.c: Likewise.
12502
12503 2009-07-19  Bruno Haible  <bruno@clisp.org>
12504
12505         Fix handling of closed stdin/stdout/stderr on mingw.
12506         * lib/w32spawn.h: Include unistd.h.
12507         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
12508         file descriptor with O_NOINHERIT flag.
12509         (fd_safer_noinherit): New function, based on fd-safer.c.
12510         (dup_safer_noinherit): New function, based on dup-safer.c.
12511         (undup_safer_noinherit): New function.
12512         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
12513         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
12514         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
12515         instead of fd_safer.
12516         * tests/test-pipe.c: Include <windows.h>.
12517         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
12518
12519         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
12520         from main.
12521         (test_pipe): Pass an extra argument for disambiguation.
12522         (main): Invoke parent_main or child_main.
12523
12524         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
12525         consistently.
12526
12527 2009-07-18  Eric Blake  <ebb9@byu.net>
12528
12529         test-pipe: fix mingw build
12530         * tests/test-pipe.c (main): Avoid fcntl on mingw.
12531
12532 2009-07-18  Bruno Haible  <bruno@clisp.org>
12533
12534         * modules/pipe-tests (Makefile.am): Fix typo.
12535
12536 2009-07-18  Eric Blake  <ebb9@byu.net>
12537
12538         error: fix mingw build
12539         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
12540         Reported by Bruno Haible.
12541
12542         error: avoid undefined use of stdout
12543         * lib/error.c (error, error_at_line): Check that fd 1 is open
12544         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
12545         is handling faults and the close_stdout module wants to report the
12546         detection of closed stdout as an error.
12547
12548 2009-07-17  Eric Blake  <ebb9@byu.net>
12549
12550         pipe: be robust in face of closed fds
12551         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
12552         should cause child to misbehave.
12553         * modules/pipe-tests: New module.
12554         * tests/test-pipe.c: New file.
12555         * tests/test-pipe.sh: New file.
12556         Reported by Akim Demaille.
12557
12558 2009-07-14  Bruno Haible  <bruno@clisp.org>
12559
12560         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
12561         Reported by anonymous kc.
12562
12563 2009-07-07  Jim Meyering  <meyering@redhat.com>
12564
12565         maint.mk: don't look for translatable strings in *.m4 or *.mk
12566         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
12567         when searching for translatable strings.
12568
12569 2009-07-05  Jim Meyering  <meyering@redhat.com>
12570
12571         remove superfluous parentheses in STREQ definition
12572         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
12573         * lib/getugroups.c (STREQ): Likewise.
12574         * lib/fnmatch.c (STREQ): Likewise.
12575         Spotted by Bruno Haible.
12576
12577 2009-07-04  Jim Meyering  <meyering@redhat.com>
12578
12579         argv-iter: new module
12580         * MODULES.html.sh: Add argv-iter.
12581         * lib/argv-iter.c, lib/argv-iter.h: New files.
12582         * modules/argv-iter: New file.
12583         * modules/argv-iter-tests: New file.
12584         * tests/test-argv-iter.c: Test it.
12585
12586 2009-07-04  Bruno Haible  <bruno@clisp.org>
12587
12588         Fix assertion.
12589         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
12590         contains more exact copies of a given entry than file2, leave the extra
12591         copies unpaired rather than aborting.
12592         Reported by Eric Blake.
12593
12594 2009-07-02  Bruno Haible  <bruno@clisp.org>
12595
12596         Speedup git-merge-changelog for git cherry-pick.
12597         * lib/git-merge-changelog.c (struct entries_mapping): New type.
12598         (entries_mapping_get): New function, extracted from compute_mapping.
12599         (entries_mapping_reverse_get): New function.
12600         (compute_mapping): Add a 'full' argument. Return the result in a
12601         'struct entries_mapping'.
12602         (main): Update. Access the mappings through entries_mapping_get.
12603         Reported by Eric Blake.
12604
12605 2009-07-02  Bruno Haible  <bruno@clisp.org>
12606
12607         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
12608         best_i.
12609
12610 2009-07-02  Bruno Haible  <bruno@clisp.org>
12611
12612         Speed up approximate search for matching ChangeLog entries.
12613         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
12614         argument. Call fstrcmp_bounded instead of fstrcmp.
12615         (compute_mapping, try_split_merged_entry, main): Update callers.
12616
12617 2009-07-02  Bruno Haible  <bruno@clisp.org>
12618
12619         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
12620
12621 2009-06-30  Bruno Haible  <bruno@clisp.org>
12622
12623         Reduce the number of uc_is_cased calls.
12624         * lib/unicase.h (casing_suffix_context_t): Add
12625         'first_char_except_ignorable' field.
12626         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
12627         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
12628         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
12629         Update initializer.
12630         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
12631         case-ignorable characters.
12632         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
12633         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
12634         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
12635         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
12636         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
12637
12638 2009-06-30  Bruno Haible  <bruno@clisp.org>
12639
12640         Tests for module 'unicase/ignorable'.
12641         * modules/unicase/ignorable-tests: New file.
12642         * tests/unicase/test-ignorable.c: New file, generated by
12643         gen-uni-tables.
12644
12645         Tests for module 'unicase/cased'.
12646         * modules/unicase/cased-tests: New file.
12647         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
12648         * tests/unicase/test-predicate-part1.h: New file, derived from
12649         tests/unictype/test-predicate-part1.h.
12650         * tests/unicase/test-predicate-part2.h: New file, same as
12651         tests/unictype/test-predicate-part2.h.
12652
12653         Fix evaluation of "Before C" condition of FINAL_SIGMA.
12654         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
12655         (output_casing_properties): New function.
12656         (main): Call it.
12657         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
12658         * lib/unicase/cased.c: Include unictype/bitmap.h.
12659         (uc_is_cased): Define through a bitmap lookup.
12660         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
12661         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
12662         (uc_is_case_ignorable): Define through a bitmap lookup.
12663         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
12664         lib/unictype/bitmap.h.
12665         (Depends-on): Add inline. Clean up.
12666         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
12667         lib/unictype/bitmap.h.
12668         (Depends-on): Add inline. Clean up.
12669         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
12670         recognition.
12671         * tests/unicase/test-u16-tolower.c (main): Likewise.
12672         * tests/unicase/test-u32-tolower.c (main): Likewise.
12673
12674 2009-06-30  Bruno Haible  <bruno@clisp.org>
12675
12676         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
12677         * lib/unicase/u16-casemap.c: Likewise.
12678         * lib/unicase/u32-casemap.c: Likewise.
12679
12680 2009-06-29  Bruno Haible  <bruno@clisp.org>
12681
12682         Define u32_casefold as a wrapper around u32_ct_casefold.
12683         * lib/unicase/u32-casefold.c: Update.
12684         * modules/unicase/u32-casefold (Depends-on): Add
12685         unicase/u32-ct-casefold, unicase/empty-prefix-context,
12686         unicase/empty-suffix-context. Clean up.
12687
12688         Define u16_casefold as a wrapper around u16_ct_casefold.
12689         * lib/unicase/u16-casefold.c: Update.
12690         * modules/unicase/u16-casefold (Depends-on): Add
12691         unicase/u16-ct-casefold, unicase/empty-prefix-context,
12692         unicase/empty-suffix-context. Clean up.
12693
12694         Define u8_casefold as a wrapper around u8_ct_casefold.
12695         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
12696         * lib/unicase/u8-casefold.c: Update.
12697         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
12698         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
12699
12700         Define u32_totitle as a wrapper around u32_ct_totitle.
12701         * lib/unicase/u32-totitle.c: Update.
12702         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
12703         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
12704
12705         Define u16_totitle as a wrapper around u16_ct_totitle.
12706         * lib/unicase/u16-totitle.c: Update.
12707         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
12708         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
12709
12710         Define u8_totitle as a wrapper around u8_ct_totitle.
12711         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
12712         functions.
12713         (FUNC): Delegate to U_CT_TOTITLE.
12714         * lib/unicase/u8-totitle.c: Update.
12715         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
12716         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
12717
12718         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
12719         invocation.
12720         * modules/unicase/u32-tolower (Depends-on): Add
12721         unicase/empty-prefix-context, unicase/empty-suffix-context.
12722
12723         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
12724         invocation.
12725         * modules/unicase/u16-tolower (Depends-on): Add
12726         unicase/empty-prefix-context, unicase/empty-suffix-context.
12727
12728         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
12729         * modules/unicase/u8-tolower (Depends-on): Add
12730         unicase/empty-prefix-context, unicase/empty-suffix-context.
12731
12732         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
12733         invocation.
12734         * modules/unicase/u32-toupper (Depends-on): Add
12735         unicase/empty-prefix-context, unicase/empty-suffix-context.
12736
12737         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
12738         invocation.
12739         * modules/unicase/u16-toupper (Depends-on): Add
12740         unicase/empty-prefix-context, unicase/empty-suffix-context.
12741
12742         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
12743         * modules/unicase/u8-toupper (Depends-on): Add
12744         unicase/empty-prefix-context, unicase/empty-suffix-context.
12745
12746         New module 'unicase/u32-ct-casefold'.
12747         * lib/unicase/u32-ct-casefold.c: New file.
12748         * modules/unicase/u32-ct-casefold: New file.
12749
12750         New module 'unicase/u16-ct-casefold'.
12751         * lib/unicase/u16-ct-casefold.c: New file.
12752         * modules/unicase/u16-ct-casefold: New file.
12753
12754         New module 'unicase/u8-ct-casefold'.
12755         * lib/unicase/u8-ct-casefold.c: New file.
12756         * lib/unicase/u-ct-casefold.h: New file, derived from
12757         lib/unicase/u-casefold.h.
12758         * modules/unicase/u8-ct-casefold: New file.
12759
12760         New module 'unicase/u32-ct-totitle'.
12761         * lib/unicase/u32-ct-totitle.c: New file.
12762         * modules/unicase/u32-ct-totitle: New file.
12763
12764         New module 'unicase/u16-ct-totitle'.
12765         * lib/unicase/u16-ct-totitle.c: New file.
12766         * modules/unicase/u16-ct-totitle: New file.
12767
12768         New module 'unicase/u8-ct-totitle'.
12769         * lib/unicase/u8-ct-totitle.c: New file.
12770         * lib/unicase/u-ct-totitle.h: New file, derived from
12771         lib/unicase/u-totitle.h.
12772         * modules/unicase/u8-ct-totitle: New file.
12773
12774         New module 'unicase/u32-ct-tolower'.
12775         * lib/unicase/u32-ct-tolower.c: New file.
12776         * modules/unicase/u32-ct-tolower: New file.
12777
12778         New module 'unicase/u16-ct-tolower'.
12779         * lib/unicase/u16-ct-tolower.c: New file.
12780         * modules/unicase/u16-ct-tolower: New file.
12781
12782         New module 'unicase/u8-ct-tolower'.
12783         * lib/unicase/u8-ct-tolower.c: New file.
12784         * modules/unicase/u8-ct-tolower: New file.
12785
12786         New module 'unicase/u32-ct-toupper'.
12787         * lib/unicase/u32-ct-toupper.c: New file.
12788         * modules/unicase/u32-ct-toupper: New file.
12789
12790         New module 'unicase/u16-ct-toupper'.
12791         * lib/unicase/u16-ct-toupper.c: New file.
12792         * modules/unicase/u16-ct-toupper: New file.
12793
12794         New module 'unicase/u8-ct-toupper'.
12795         * lib/unicase/u8-ct-toupper.c: New file.
12796         * modules/unicase/u8-ct-toupper: New file.
12797
12798         Add context arguments to u*_casemap functions.
12799         * lib/unicase/unicasemap.h: Include unicase.h.
12800         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
12801         suffix_context arguments.
12802         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
12803         functions.
12804         (FUNC): Add prefix_context and suffix_context arguments. Use
12805         uc_is_cased and uc_is_case_ignorable.
12806         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
12807         * lib/unicase/u16-casemap.c: Likewise.
12808         * lib/unicase/u32-casemap.c: Likewise.
12809         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
12810         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
12811         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
12812         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
12813         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
12814         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
12815
12816         New module 'unicase/u32-suffix-context'.
12817         * lib/unicase/u32-suffix-context.c: New file.
12818         * modules/unicase/u32-suffix-context: New file.
12819
12820         New module 'unicase/u16-suffix-context'.
12821         * lib/unicase/u16-suffix-context.c: New file.
12822         * modules/unicase/u16-suffix-context: New file.
12823
12824         New module 'unicase/u8-suffix-context'.
12825         * lib/unicase/u8-suffix-context.c: New file.
12826         * lib/unicase/u-suffix-context.h: New file.
12827         * modules/unicase/u8-suffix-context: New file.
12828
12829         New module 'unicase/empty-suffix-context'.
12830         * lib/unicase/empty-suffix-context.c: New file.
12831         * modules/unicase/empty-suffix-context: New file.
12832
12833         New module 'unicase/u32-prefix-context'.
12834         * lib/unicase/u32-prefix-context.c: New file.
12835         * modules/unicase/u32-prefix-context: New file.
12836
12837         New module 'unicase/u16-prefix-context'.
12838         * lib/unicase/u16-prefix-context.c: New file.
12839         * modules/unicase/u16-prefix-context: New file.
12840
12841         New module 'unicase/u8-prefix-context'.
12842         * lib/unicase/u8-prefix-context.c: New file.
12843         * lib/unicase/u-prefix-context.h: New file.
12844         * lib/unicase/context.h: New file.
12845         * modules/unicase/u8-prefix-context: New file.
12846
12847         New module 'unicase/empty-prefix-context'.
12848         * lib/unicase/empty-prefix-context.c: New file.
12849         * modules/unicase/empty-prefix-context: New file.
12850
12851         New module 'unicase/ignorable'.
12852         * lib/unicase/ignorable.c: New file.
12853         * modules/unicase/ignorable: New file.
12854
12855         New module 'unicase/cased'.
12856         * lib/unicase/caseprop.h: New file.
12857         * lib/unicase/cased.c: New file.
12858         * modules/unicase/cased: New file.
12859
12860         New functions for case mapping of substrings.
12861         * lib/unicase.h (casing_prefix_context_t): New type.
12862         (unicase_empty_prefix_context): New variable.
12863         (u8_casing_prefix_context, u16_casing_prefix_context,
12864         u32_casing_prefix_context, u8_casing_prefixes_context,
12865         u16_casing_prefixes_context, u32_casing_prefixes_context): New
12866         declarations.
12867         (casing_suffix_context_t): New type.
12868         (unicase_empty_suffix_context): New variable.
12869         (u8_casing_suffix_context, u16_casing_suffix_context,
12870         u32_casing_suffix_context, u8_casing_suffixes_context,
12871         u16_casing_suffixes_context, u32_casing_suffixes_context,
12872         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
12873         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
12874         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
12875         declarations.
12876
12877 2009-06-28  Jim Meyering  <meyering@redhat.com>
12878
12879         boostrap: indent only with spaces
12880         * build-aux/bootstrap: Indent only with spaces, never TABs.
12881
12882         bootstrap: split long lines
12883         * build-aux/bootstrap: Keep line length < 80.
12884
12885         bootstrap: sync from coreutils
12886         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
12887         just as autoreconf does.  Verify a list of prerequisite
12888         package-name,version-number pairs if defined in bootstrap.conf.
12889         Refer to README-prereq, if prerequisites are not satisfied.
12890
12891 2009-06-27  Eric Blake  <ebb9@byu.net>
12892
12893         tests: add test for bogus NULL definition
12894         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
12895         * tests/test-stdlib.c: Likewise.
12896         * tests/test-string.c: Likewise.
12897         * tests/test-locale.c: Likewise.
12898         * tests/test-unistd.c: Likewise.
12899         * modules/stdio-tests (Depends-on): Add verify.
12900         * modules/stdlib-tests (Depends-on): Likewise.
12901         * modules/string-tests (Depends-on): Likewise.
12902         * modules/locale-tests (Depends-on): Likewise.
12903         * modules/unistd-tests (Depends-on): Likewise.
12904
12905 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
12906
12907         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
12908         self-explaining comment.
12909         * m4/selinux-selinux-h: Update serial.
12910         (gl_LIBSELINUX): New macro, adding a warning for missing development
12911         packages to code extracted from...
12912         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
12913         Add warning for missing development packages here, too.
12914
12915 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
12916
12917         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
12918
12919 2009-06-25  Eric Blake  <ebb9@byu.net>
12920
12921         version-etc: fix regression
12922         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
12923         gcc.
12924         (version_etc): Use it, to catch bugs with trailing NULL.
12925         * lib/version-etc.c (version_etc_arn): Delete unused argument.
12926         (version_etc_va): Fix logic bug.
12927         * modules/version-etc-tests: Add test.
12928         * tests/test-version-etc.c: New file.
12929         * tests/test-version-etc.sh: Likewise.
12930
12931 2009-06-25  Sam Steingold  <sds@gnu.org>
12932
12933         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
12934         mbtowc declaration.
12935
12936 2009-06-25  Eric Blake  <ebb9@byu.net>
12937
12938         fpurge: migrate into <stdio.h>
12939         * lib/fpurge.h: Delete...
12940         * lib/stdio.in.h (fpurge): ...and declare here, instead.
12941         * lib/fpurge.c (fpurge): Change declaring header.
12942         * modules/fpurge (Files): Drop deleted file.
12943         (Depends-on): Add stdio.
12944         (configure.ac): Set witness.
12945         * modules/stdio (Makefile.am): Support fpurge macros.
12946         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
12947         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
12948         * lib/fflush.c: Update client.
12949         * tests/test-fpurge.c: Likewise.
12950         * NEWS: Mention the change.
12951
12952 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
12953
12954         * lib/argp-version-etc.c (program_authors): Add const
12955         qualifier.
12956         * lib/version-etc.c: Fix typos in the comments.
12957         * modules/argp-version-etc: Depends on version-etc.
12958
12959 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
12960
12961         argp-version-etc: new module.
12962
12963         * lib/argp-version-etc.c: New file.
12964         * lib/argp-version-etc.h: New file.
12965         * modules/argp-version-etc: New file.
12966         * modules/argp-version-etc-tests: New file.
12967         * tests/test-argp-version-etc.c: New test.
12968         * tests/test-argp-version-etc-1.sh: New test.
12969
12970 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
12971
12972         Provide additional interfaces and documentation for version-etc
12973         module.
12974
12975         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
12976         interfaces.
12977         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
12978         prototypes.
12979
12980 2009-06-24  Bruno Haible  <bruno@clisp.org>
12981
12982         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
12983         HAVE_LIB${NAME} macro.
12984         Reported by Sam Steingold <sds@gnu.org>.
12985
12986 2009-06-23  Simon Josefsson  <simon@josefsson.org>
12987
12988         * modules/hash-tests (test_hash_LDADD): Link to libintl when
12989         needed.
12990
12991 2009-06-21  Bruno Haible  <bruno@clisp.org>
12992
12993         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
12994         work.
12995         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
12996         together with LIB${NAME}, LTLIB${NAME}.
12997         Reported by Sam Steingold <sds@gnu.org>.
12998
12999 2009-06-20  Jim Meyering  <meyering@redhat.com>
13000
13001         tests: make sc_require_test_exit_idiom more generic
13002         * top/maint.mk (Exit_witness_file): New overridable variable.
13003         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
13004         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
13005
13006 2009-06-19  Jim Meyering  <meyering@redhat.com>
13007
13008         hash: reverse order of src/dst parameters in an internal interface
13009         * lib/hash.c (transfer_entries): Reverse order of parameters to
13010         put DST before SRC.  Adjust callers.
13011
13012         tests: test-hash: avoid wholesale duplication
13013         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
13014         Instead, use a loop and add a single conditional.
13015
13016         tests: test-hash: allow seed selection via a command line argument
13017         * tests/test-hash.c (get_seed): New function.
13018         (main): Use it.
13019
13020 2009-06-19  Eric Blake  <ebb9@byu.net>
13021
13022         hash: avoid memory leak on allocation failure
13023         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
13024         failure.  Factor repeated algorithm...
13025         (transfer_entries): ...into new helper routine.
13026         (hash_delete): React to hash_rehash return value.
13027
13028         hash: reduce memory pressure in hash_rehash no-op case
13029         * lib/hash.c (next_prime): Avoid overflow.
13030         (hash_initialize): Factor bucket size computation...
13031         (compute_bucket_size): ...into new helper function.
13032         (hash_rehash): Use new function and open coding to reduce memory
13033         pressure, and avoid a memory leak in USE_OBSTACK code.
13034         Reported by Jim Meyering.
13035
13036 2009-06-18  Eric Blake  <ebb9@byu.net>
13037
13038         hash: make rotation more obvious
13039         * modules/hash (Depends-on): Add bitrotate and stdint.
13040         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
13041         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
13042         (SIZE_MAX): Rely on headers for definition.
13043         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
13044         (raw_hasher): Use rotr_sz.
13045         Suggested by Jim Meyering.
13046
13047         hash: fix memory leak in last patch
13048         * lib/hash.c (hash_rehash): Avoid memory leak.
13049
13050         hash: avoid no-op rehashing
13051         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
13052
13053         hash: provide default callback functions
13054         * lib/hash.c (raw_hasher, raw_comparator): New functions.
13055         (hash_initialize): Use them as defaults.
13056         * tests/test-hash.c (main): Test this.
13057
13058         hash: minor optimization
13059         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
13060         when possible.
13061         (hash_initialize): Document this promise.
13062         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
13063         * tests/test-hash.c (hash_compare_strings): Test this.
13064
13065 2009-06-18  Bruno Haible  <bruno@clisp.org>
13066
13067         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
13068         going to be replaced anyway.
13069
13070 2009-06-18  Bruno Haible  <bruno@clisp.org>
13071
13072         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
13073         in one place.
13074         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
13075         be replaced anyway.
13076
13077 2009-06-18  Eric Blake  <ebb9@byu.net>
13078
13079         hash: check for resize before insertion
13080         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
13081         threshold before insertion, so that a pathological hash_rehash
13082         that fills every bucket can still trigger another rehash.
13083
13084 2009-06-18  Jim Meyering  <meyering@redhat.com>
13085
13086         hash-tests: add a loop around the small tests
13087         * tests/test-hash.c (main): Repeat small tests with selected
13088         small initial table sizes.
13089
13090 2009-06-17  Eric Blake  <ebb9@byu.net>
13091
13092         hash: minor cleanups
13093         * lib/hash.h (hash_entry): Make opaque, by moving...
13094         * lib/hash.c (hash_entry): ...here.
13095         (hash_insert): Clarify restrictions on what can be inserted.
13096         (hash_get_next): Clarify when it is safe to remove an element
13097         during traversal.
13098         (check_tuning): Skip verification when tuning is known safe.
13099         (hash_initialize): Clarify restrictions on tuning.
13100
13101 2009-06-17  Jim Meyering  <jim@meyering.net>
13102         and Eric Blake  <ebb9@byu.net>
13103
13104         hash-tests: new module
13105         * modules/hash-tests: New file.
13106         * tests/test-hash.c: New file.
13107
13108 2009-06-17  Eric Blake  <ebb9@byu.net>
13109
13110         strstr-simple: document new module
13111         * MODULES.html.sh: Document new module.
13112
13113         strstr, strcasestr: replace on platforms with broken memchr
13114         * modules/strstr: Split into...
13115         * modules/strstr-simple: ...new module that does not care about
13116         performance, but does care about glibc bug.
13117         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
13118         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
13119         if platform memchr is broken, per Debian bug 521737.
13120         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
13121         memchr.
13122         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
13123         * doc/posix-functions/strstr.texi (strstr): Document the fix.
13124         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
13125         * modules/mountlist (Depends-on): Add strstr-simple.
13126         * modules/gen-uni-tables (Depends-on): Likewise.
13127         * modules/argz (Depends-on): Add strstr.
13128
13129 2009-06-17  Bruno Haible  <bruno@clisp.org>
13130
13131         * modules/posix_spawn-internal (Depends-on): Add errno.
13132
13133 2009-06-17  Bruno Haible  <bruno@clisp.org>
13134
13135         Define missing ESTALE on Interix 3.5.
13136         * lib/errno.in.h (ESTALE): Assign a value if missing.
13137         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
13138         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
13139         missing.
13140         * doc/posix-headers/errno.texi: Mention the Interix bug.
13141         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
13142
13143 2009-06-15  Eric Blake  <ebb9@byu.net>
13144
13145         memchr, memchr2: add valgrind exception
13146         * lib/memchr.valgrind: New file.
13147         * lib/memchr2.valgrind: New file.
13148         * modules/memchr (Files): Distribute valgrind file.
13149         * modules/memchr2 (Files): Likewise.
13150
13151         docs: memchr is no longer obsolete
13152         * MODULES.html.sh: Move memchr from obsolete to string.h section.
13153         * lib/string.in.h (memchr): Simplify logic.
13154
13155 2009-06-14  Jim Meyering  <meyering@redhat.com>
13156
13157         link-follow: fix the "checking..." message to not mention trailing slash
13158         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
13159         never considered trailing slashes.
13160
13161 2009-06-14  Bruno Haible  <bruno@clisp.org>
13162
13163         * m4/memchr.m4: Mention also the bug on IA-64.
13164         * doc/posix-functions/memchr.texi: Likewise.
13165
13166 2009-06-12  Eric Blake  <ebb9@byu.net>
13167
13168         memchr: detect broken x86_64 and alpha implementations
13169         * modules/memchr-tests (Depends-on): Move mmap detection...
13170         * modules/memchr (Depends-on): ...here.
13171         (configure.ac): Set indicator.
13172         * lib/string.in.h (memchr): Declare replacement.
13173         * modules/string (Makefile.am): Trigger replacement.
13174         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
13175         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
13176         bugs.
13177         * doc/posix-functions/memchr.texi (memchr): Document the bug.
13178         * modules/getpagesize (License): Relax license.
13179
13180 2009-06-11  Bruno Haible  <bruno@clisp.org>
13181
13182         * lib/idpriv.h: Add more references.
13183
13184 2009-06-08  Bruno Haible  <bruno@clisp.org>
13185
13186         Tests for module 'idpriv-droptemp'.
13187         * modules/idpriv-droptemp-tests: New file.
13188         * tests/test-idpriv-droptemp.sh: New file.
13189         * tests/test-idpriv-droptemp.su.sh: New file.
13190         * tests/test-idpriv-droptemp.c: New file.
13191
13192         New module 'idpriv-droptemp'.
13193         * lib/idpriv-droptemp.c: New file.
13194         * modules/idpriv-droptemp: New file.
13195
13196 2009-06-08  Bruno Haible  <bruno@clisp.org>
13197
13198         Tests for module 'idpriv-drop'.
13199         * modules/idpriv-drop-tests: New file.
13200         * tests/test-idpriv-drop.sh: New file.
13201         * tests/test-idpriv-drop.su.sh: New file.
13202         * tests/test-idpriv-drop.c: New file.
13203
13204         New module 'idpriv-drop'.
13205         * lib/idpriv.h: New file.
13206         * lib-idpriv-drop.c: New file.
13207         * m4/idpriv.m4: New file.
13208         * modules/idpriv-drop: New file.
13209
13210 2009-06-08  Bruno Haible  <bruno@clisp.org>
13211
13212         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
13213         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
13214         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
13215         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
13216         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
13217         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
13218         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
13219
13220 2009-06-08  Eric Blake  <ebb9@byu.net>
13221
13222         test-strstr: use memory fence, when possible
13223         * tests/test-strstr.c (main): Use memory fence, in order to be
13224         more likely to trigger Debian bug 521737.
13225         * modules/strstr-tests (Files): Pull in additional files.
13226
13227         memchr: no longer obsolete, for wider field testing
13228         * modules/memchr (Status, Notice): Delete, this module is no
13229         longer obsolete.
13230         * modules/vasnprintf (Depends-on): Add memchr.
13231
13232 2009-06-07  Jim Meyering  <meyering@redhat.com>
13233
13234         hash: declare some functions with the warn_unused_result attribute
13235         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
13236
13237 2009-06-07  Bruno Haible  <bruno@clisp.org>
13238
13239         * tests/test-alignof.c: Don't test int64_t if it does not exist.
13240         Reported by Eric Blake.
13241
13242 2009-06-06  Eric Blake  <ebb9@byu.net>
13243
13244         test-alignof: fix typo with long double
13245         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
13246         compiler error.
13247
13248 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
13249
13250         Escape non-texinfo { and }s.
13251         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
13252         markup error.
13253
13254 2009-06-04  Jim Meyering  <meyering@redhat.com>
13255
13256         gitlog-to-changelog: don't infloop on an empty commit log
13257         * build-aux/gitlog-to-changelog: Warn about an empty log message.
13258         Reported by Boris Petersen <transacid@centerim.org>.
13259
13260 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
13261
13262         version-etc: extend for packagers
13263         Add three new configure options, intended for packagers:
13264           --with-packager="packager name"
13265           --with-packager-version="packager-specific version"
13266           --with-packager-bug-reports="packager bug reporting"
13267         An example with coreutils:
13268           $ ./configure \
13269             --with-packager=Gentoo \
13270             --with-packager-bug-report=http://bugs.gentoo.org/ \
13271             --with-packager-version="patchset 1.6"
13272           $ ./src/ls --version | head -n2
13273           ls (GNU coreutils) 7.1-dirty
13274           Packaged by Gentoo (patchset 1.6)
13275         Note that the bug reporting info via --help doesn't show up because
13276         coreutils uses its own custom emit_bug_reporting_address() implementation
13277         in src/system.h.  If it didn't, it'd look like:
13278           $ ./src/ls --help | tail -n4
13279           Report bugs to <bug-coreutils@gnu.org>.
13280           Report Gentoo bugs to <http://bugs.gentoo.org/>.
13281           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
13282           General help using GNU software: <http://www.gnu.org/gethelp/>.
13283         * lib/version-etc.c: Print new information, if provided.
13284         * m4/version-etc.m4: New file.
13285         * modules/version-etc (Files): Add m4/version-etc.m4.
13286         (configure.ac): Add gl_VERSION_ETC.
13287
13288 2009-05-31  Bruno Haible  <bruno@clisp.org>
13289
13290         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
13291         and 'int64_t'.
13292         * modules/alignof-tests (Dependencies): Add stdint.
13293         Reported by Eric Blake.
13294
13295 2009-05-31  Bruno Haible  <bruno@clisp.org>
13296
13297         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
13298         restriction due to compiler bugs.
13299         Reported by Eric Blake.
13300
13301 2009-05-31  Simon Josefsson  <simon@josefsson.org>
13302             Bruno Haible  <bruno@clisp.org>
13303
13304         Fix test-alignof failure.
13305         * lib/alignof.h (alignof_slot): New macro.
13306         (alignof_type): New macro, with the same semantics as the previous
13307         'alignof'.
13308         (alignof): Alias to alignof_slot.
13309         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
13310         check that the results are usable as constant expressions.
13311
13312 2009-05-31  Bruno Haible  <bruno@clisp.org>
13313
13314         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
13315         * tests/test-memchr.c (main): Check that memchr does not read past the
13316         first occurrence of the byte.
13317         * tests/test-strstr.c (main): Update comment.
13318         Suggested by Eric Blake.
13319
13320 2009-05-30  Bruno Haible  <bruno@clisp.org>
13321
13322         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
13323         detail how to use dumpbin.
13324         Reported by David Byron <dbyron@dbyron.com>.
13325
13326 2009-06-02  Simon Josefsson  <simon@josefsson.org>
13327
13328         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
13329
13330 2009-06-02  Simon Josefsson  <simon@josefsson.org>
13331
13332         * m4/manywarnings.m4: Add GCC 4.4 warnings.
13333
13334 2009-05-28  Bruno Haible  <bruno@clisp.org>
13335
13336         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
13337         build-aux/ files.
13338
13339 2009-05-28  Simon Josefsson  <simon@josefsson.org>
13340
13341         * gnulib-tool (func_import): Transform license on build-aux/ files too.
13342
13343 2009-05-27  Simon Josefsson  <simon@josefsson.org>
13344
13345         * gnulib-tool (sed_transform_main_lib_file)
13346         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
13347         regexps.
13348
13349 2009-05-26  Simon Josefsson  <simon@josefsson.org>
13350
13351         * tests/test-strstr.c: Add another self-test.
13352         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
13353         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
13354
13355 2009-05-23  Bruno Haible  <bruno@clisp.org>
13356
13357         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
13358         change.
13359
13360 2009-05-21  Bruno Haible  <bruno@clisp.org>
13361
13362         Simplify use of mode_t varargs.
13363         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
13364         uses 'mode_t' or 'int'.
13365         * lib/openat.c (openat): Likewise.
13366         * lib/open-safer.c (open_safer): Likewise.
13367         * m4/mode_t.m4: New file.
13368         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
13369         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
13370         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
13371         * modules/open (Files): Add m4/mode_t.m4.
13372         * modules/openat (Files): Likewise.
13373         * modules/fcntl-safer (Files): Likewise.
13374         Suggested by Eric Blake.
13375
13376 2009-05-21  Pádraig Brady  <P@draigbrady.com>
13377
13378         * doc/glibc-functions/fallocate.texi: New file.
13379         * doc/gnulib.texi: Include it.
13380
13381 2009-05-21  Eric Blake  <ebb9@byu.net>
13382             Bruno Haible  <bruno@clisp.org>
13383
13384         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
13385         invocations.
13386         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
13387
13388 2009-05-21  Eric Blake  <ebb9@byu.net>
13389             Bruno Haible  <bruno@clisp.org>
13390
13391         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
13392         include_next. Fix of 2008-11-20 commit.
13393         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
13394         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
13395         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
13396         NEXT_MATH_H.
13397         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
13398         instead of NEXT_MATH_H.
13399
13400 2009-05-21  Bruno Haible  <bruno@clisp.org>
13401
13402         Avoid redefinition warnings for SIZE_MAX.
13403         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
13404         Reported by Simon Josefsson.
13405
13406 2009-05-21  Bruno Haible  <bruno@clisp.org>
13407
13408         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
13409         AC_CACHE_VAL.
13410
13411 2009-05-20  Bruno Haible  <bruno@clisp.org>
13412
13413         Make zeroptr.h work on mingw.
13414         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
13415         mprotect.
13416         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
13417         * modules/memchr2-tests (configure.ac): Likewise.
13418         * modules/memcmp-tests (configure.ac): Likewise.
13419         * modules/memmem-tests (configure.ac): Likewise.
13420         * modules/memrchr-tests (configure.ac): Likewise.
13421         Reported by Simon Josefsson.
13422
13423 2009-05-20  Simon Josefsson  <simon@josefsson.org>
13424
13425         * tests/test-glob.c: Include string.h for strcmp prototype.
13426
13427 2009-05-20  Simon Josefsson  <simon@josefsson.org>
13428
13429         * modules/getdelim (Depends-on): Add explicit stdint, although it
13430         was implicitly already pulled in via realloc-posix.
13431         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
13432
13433 2009-05-20  Simon Josefsson  <simon@josefsson.org>
13434
13435         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
13436         G. Christensen" <tgc@jupiterrise.com>.
13437         * m4/sys_socket_h.m4: Check for sa_family_t.
13438         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
13439         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
13440         * tests/test-sys_socket.c: Check that sa_family_t works.
13441
13442 2009-05-18  Eric Blake  <ebb9@byu.net>
13443
13444         maint.mk: allow gnulib_dir in VPATH build
13445         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
13446
13447 2009-05-15  Jim Meyering  <meyering@redhat.com>
13448
13449         maint.mk: Give gnulib_dir a default definition.
13450         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
13451         Thus, most packages no longer need to specify this variable in cfg.mk
13452
13453 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
13454
13455         rename.m4: fix typos that would make non-mingw cross-configure fail
13456         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
13457
13458 2009-05-13  Eric Blake  <ebb9@byu.net>
13459
13460         mmap-anon: avoid out-of-order autoconf expansion
13461         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
13462         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
13463         * modules/memchr-tests (Depends-on): Add extensions.
13464         * modules/memchr2-tests (Depends-on): Add extensions.
13465         * modules/memcmp-tests (Depends-on): Add extensions.
13466         * modules/memmem-tests (Depends-on): Add extensions.
13467         * modules/memrchr-tests (Depends-on): Add extensions.
13468
13469 2009-05-13  Bruno Haible  <bruno@clisp.org>
13470
13471         Make some tests ISO C 99 compliant.
13472         * tests/zerosize-ptr.h: New file.
13473         * tests/test-memchr.c: Include zerosize-ptr.h.
13474         (main): Use a zero-size object pointer instead of NULL.
13475         * tests/test-memchr2.c: Include zerosize-ptr.h.
13476         (main): Use a zero-size object pointer instead of NULL.
13477         * tests/test-memcmp.c: Include zerosize-ptr.h.
13478         (main): Use a zero-size object pointer instead of NULL.
13479         * tests/test-memmem.c: Include zerosize-ptr.h.
13480         (main): Use a zero-size object pointer instead of NULL.
13481         * tests/test-memrchr.c: Include zerosize-ptr.h.
13482         (main): Use a zero-size object pointer instead of NULL.
13483         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
13484         m4/mmap-anon.m4.
13485         (Depends-on): Add getpagesize.
13486         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
13487         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
13488         m4/mmap-anon.m4.
13489         (Depends-on): Add getpagesize.
13490         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
13491         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
13492         m4/mmap-anon.m4.
13493         (Depends-on): Add getpagesize.
13494         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
13495         * modules/memmem-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/memrchr-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
13504 2009-05-12  Bruno Haible  <bruno@clisp.org>
13505
13506         Tests for module 'alignof'.
13507         * modules/alignof-tests: New file.
13508         * tests/test-alignof.c: New file.
13509
13510 2009-05-12  Bruno Haible  <bruno@clisp.org>
13511
13512         Fix alignof macro.
13513         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
13514         vendor compilers that are always correct.
13515
13516 2009-05-12  Bruno Haible  <bruno@clisp.org>
13517
13518         Make the MAP_ANONYMOUS detection work on HP-UX 11.
13519         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
13520         not whether its fully works.
13521
13522 2009-05-12  Bruno Haible  <bruno@clisp.org>
13523
13524         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
13525
13526 2009-05-12  Jim Meyering  <meyering@redhat.com>
13527
13528         * top/maint.mk: Adjust backslash alignment.
13529
13530 2009-05-11  Simon Josefsson  <simon@josefsson.org>
13531
13532         * top/maint.mk: Make $(srcdir)/build-aux configurable.
13533
13534 2009-05-11  Eric Blake  <ebb9@byu.net>
13535
13536         argp: avoid undefined behavior
13537         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
13538         macros.
13539
13540 2009-05-08  Simon Josefsson  <simon@josefsson.org>
13541
13542         * tests/test-vc-list-files-git.sh: Do git config of user.email and
13543         user.name to prevent git commit from complaining.
13544
13545 2009-05-10  Bruno Haible  <bruno@clisp.org>
13546
13547         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
13548         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
13549         it rewrites every file name only once.
13550         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
13551
13552 2009-05-08  Bruno Haible  <bruno@clisp.org>
13553
13554         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
13555         instead of 'max'.
13556
13557 2009-05-08  Simon Josefsson  <simon@josefsson.org>
13558
13559         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
13560         sockaddr_storage test.
13561
13562 2009-05-07  Simon Josefsson  <simon@josefsson.org>
13563
13564         * modules/sys_socket (Makefile.am): Substitute
13565         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
13566         * m4/sys_socket_h.m4: Check for sockaddr_storage.
13567         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
13568         * tests/test-sys_socket.c: Check sockaddr_storage.
13569
13570 2009-05-08  Bruno Haible  <bruno@clisp.org>
13571
13572         New module 'alignof'.
13573         * lib/alignof.h: New file.
13574         * modules/alignof: New file.
13575
13576 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
13577             Bruno Haible  <bruno@clisp.org>
13578
13579         Fix test-file-has-acl on FreeBSD.
13580         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
13581         mask is implicitly added.
13582         * tests/test-file-has-acl.c: Include <signal.h>.
13583         (main): Terminate the test after 5 seconds.
13584         * modules/acl-tests (configure.ac): Check for alarm function.
13585
13586 2009-05-04  Bruno Haible  <bruno@clisp.org>
13587
13588         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
13589         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
13590         * modules/errno (configure.ac): Drop AC_REQUIRE.
13591         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
13592         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
13593
13594 2009-05-04  Simon Josefsson  <simon@josefsson.org>
13595
13596         * modules/glob-tests: New module.
13597         * tests/test-glob.c: Add.
13598
13599 2009-05-04  Simon Josefsson  <simon@josefsson.org>
13600
13601         * modules/fnmatch-tests: New module.
13602         * tests/test-fnmatch.c: Add.
13603
13604 2009-05-04  Eric Blake  <ebb9@byu.net>
13605
13606         maint: make the new no-submodule-changes rule VPATH-safe
13607         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
13608
13609 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
13610             Bruno Haible  <bruno@clisp.org>
13611
13612         acl: Fix infinite loop on FreeBSD.
13613         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
13614         of return value from acl_get_entry.
13615         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
13616         Likewise.
13617
13618 2009-05-03  Bruno Haible  <bruno@clisp.org>
13619
13620         * lib/acl-internal.h (acl_entries): Clarify return value.
13621         * lib/acl_entries.c (acl_entries): Likewise.
13622
13623 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
13624
13625         Bug fix in acl module.
13626         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
13627
13628 2009-05-03  Bruno Haible  <bruno@clisp.org>
13629
13630         Create gperf-generated file in the source dir, not in the build dir.
13631         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
13632         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
13633         * modules/unicase/locale-language (unicase/locale-languages.h):
13634         Likewise.
13635         * modules/unicase/special-casing (unicase/special-casing-table.h):
13636         Likewise.
13637         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
13638         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
13639         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
13640         Reported by Ralf Wildenhues.
13641
13642 2009-05-03  Bruno Haible  <bruno@clisp.org>
13643
13644         * modules/fnmatch (Description, configure.ac): Taken from
13645         fnmatch-posix.
13646         * modules/fnmatch-posix: Turn into a symbolic reference to the
13647         'fnmatch' module, and deprecate.
13648         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
13649
13650 2009-05-03  Bruno Haible  <bruno@clisp.org>
13651
13652         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
13653         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
13654         Reported by Ralf Wildenhues.
13655
13656 2009-05-04  Simon Josefsson  <simon@josefsson.org>
13657
13658         * m4/fnmatch.m4: Fix fnmatch re-define.
13659
13660 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
13661
13662         priv-set: new module and tests; adapt write-any-file
13663         * lib/priv-set.c: New file.
13664         * lib/priv-set.h: New file.
13665         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
13666         * lib/write-any-file.c: Simplify by using priv-set module.
13667         * m4/priv-set.m4: New file.
13668         * modules/priv-set: New file.
13669         * modules/unlinkdir: Add dependency on priv-set module.
13670         * modules/write-any-file: Likewise.
13671
13672         Tests for module 'priv-set'.
13673         * modules/priv-set-tests: New file.
13674         * tests/test-priv-set.c: New file.
13675
13676 2009-05-03  Jim Meyering  <meyering@redhat.com>
13677             Bruno Haible  <bruno@clisp.org>
13678
13679         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
13680         use the converted UTF-8 variant of the name instead.
13681
13682 2009-05-03  Jim Meyering  <meyering@redhat.com>
13683
13684         tests: tighten some getdate tests
13685         * tests/test-getdate.c (main): Tighten tests: require equality,
13686         not just greater than.  Set TZ envvar to UTC0.
13687
13688 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
13689
13690         getdate: correctly interpret "next monday" when run on a Monday
13691         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
13692         that e.g., "next tues" (when run on a tuesday) results in a date
13693         that is one week in the future, and not today's date.
13694         I.e., add a week when the wday is the same as the current one.
13695         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
13696         and earlier by Martin Bernreuther and Jan Minář.
13697         * tests/test-getdate.c (main): Check that "next DAY" is always in
13698         the future and that "last DAY" is always in the past.
13699
13700 2009-05-02  Jim Meyering  <meyering@redhat.com>
13701
13702         build: ensure that a release build fails when a submodule is unclean
13703         * top/maint.mk (no-submodule-changes): New rule.
13704         (alpha beta major): Depend on it.
13705
13706 2009-05-02  Bruno Haible  <bruno@clisp.org>
13707
13708         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
13709         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
13710         shell variable gl_fnmatch_required to detect which variant is
13711         requested.
13712         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
13713         gl_FUNC_FNMATCH_POSIX.
13714         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
13715         exclude fnmatch-posix.
13716
13717 2009-05-02  Bruno Haible  <bruno@clisp.org>
13718
13719         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
13720         * modules/mbsrtowcs (License): Change to LGPLv2+.
13721         * modules/strnlen1 (License): Likewise.
13722         Reported by Simon Josefsson.
13723
13724 2009-05-02  Bruno Haible  <bruno@clisp.org>
13725
13726         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
13727         "cross".
13728         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
13729         gnulib-tool was called with option --source-base=lib.
13730
13731 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13732
13733         Use automake *-local hooks without commands, for extensibility.
13734         * modules/localcharset (Makefile.am): Rename install-exec-local
13735         rule to install-exec-localcharset, and make it a prerequisite of
13736         install-exec-local.  Likewise, rename the uninstall-local rule to
13737         uninstall-localcharset, and make it a prerequisite of the former.
13738
13739 2009-05-01  Bruno Haible  <bruno@clisp.org>
13740
13741         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
13742         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
13743         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
13744         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
13745         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
13746         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
13747         m4/locale-zh.m4, m4/codeset.m4.
13748
13749         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
13750         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
13751         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
13752         m4/locale-zh.m4.
13753
13754         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
13755         REPLACE_WCRTOMB if mbstate_t must be replaced.
13756         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
13757         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
13758
13759 2009-05-01  Bruno Haible  <bruno@clisp.org>
13760
13761         Avoid compiler warnings when redefining macros defined by <libintl.h>.
13762         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
13763         dngettext, dcngettext, textdomain, bindtextdomain,
13764         bind_textdomain_codeset): Undefine before redefining.
13765
13766 2009-04-30  Bruno Haible  <bruno@clisp.org>
13767
13768         Fix bug introduced on 2009-04-25.
13769         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
13770         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
13771         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
13772         is defined.
13773         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
13774         is defined.
13775         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
13776         is defined.
13777         Reported by Elbert_Pol <elbert.pol@gmail.com>.
13778
13779 2009-04-28  Bruno Haible  <bruno@clisp.org>
13780
13781         Comment tweaks.
13782         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
13783         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
13784         * lib/unicase.h (u*_casexfrm): Likewise.
13785         Reported by Paolo Bonzini.
13786
13787 2009-04-28  Bruno Haible  <bruno@clisp.org>
13788
13789         Fix a compilation error.
13790         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
13791         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
13792         Reported by Jim Meyering.
13793
13794 2009-04-27  Bruno Haible  <bruno@clisp.org>
13795
13796         New module 'libunistring'.
13797         * modules/libunistring: New file.
13798         * m4/libunistring.m4: New file.
13799         * MODULES.html.sh (Unicode string functions): Add it.
13800
13801 2009-04-27  Eric Blake  <ebb9@byu.net>
13802
13803         maint.mk: allow package-specific header to provide <config.h>
13804         * top/maint.mk (sc_require_config_h): New variable.
13805         (sc_require_config_h, sc_require_config_h_first): Use it.
13806
13807 2009-04-27  Simon Josefsson  <simon@josefsson.org>
13808
13809         * top/maint.mk (sc_avoid_if_before_free): Except
13810         useless-if-before-free script.
13811
13812 2009-04-27  Eric Blake  <ebb9@byu.net>
13813
13814         maintainer-makefile: depend on all required helper scripts
13815         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
13816         useless-if-before-free.
13817         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
13818         version, rather than assuming gnulib checkout is available.
13819         Reported by Simen Josefsson.
13820
13821 2009-04-26  Bruno Haible  <bruno@clisp.org>
13822
13823         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
13824         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
13825         "../" or "..".
13826
13827 2009-04-26  Bruno Haible  <bruno@clisp.org>
13828
13829         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
13830         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
13831         AC_LIB_HAVE_LINKFLAGS.
13832
13833 2009-04-26  Bruno Haible  <bruno@clisp.org>
13834
13835         Simplify calling convention of u*_conv_from_encoding.
13836         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
13837         u32_conv_from_encoding): Expect a resultbuf argument and return the
13838         result directly as a pointer.
13839         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
13840         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
13841         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
13842         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
13843         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
13844         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
13845         Update.
13846         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
13847         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
13848         * lib/vasnprintf.c (VASNPRINTF): Update.
13849         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
13850         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
13851         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
13852         * NEWS: Mention the change.
13853
13854 2009-04-26  Bruno Haible  <bruno@clisp.org>
13855
13856         Simplify calling convention of u*_conv_to_encoding.
13857         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
13858         u32_conv_to_encoding): Expect a resultbuf argument and return the
13859         result directly as a pointer.
13860         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
13861         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
13862         freeing scaled_offsets if mem_iconveha failed.
13863         * lib/unicase/u-casexfrm.h (FUNC): Update.
13864         * lib/uninorm/u-normxfrm.h (FUNC): Update.
13865         * lib/vasnprintf.c (VASNPRINTF): Update.
13866         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
13867         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
13868         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
13869         * NEWS: Mention the change.
13870
13871 2009-04-26  Bruno Haible  <bruno@clisp.org>
13872
13873         Avoid test failures on AIX and OSF/1.
13874         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
13875         malloc(0).
13876         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
13877         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
13878         Likewise.
13879         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
13880         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
13881         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
13882         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
13883         * doc/posix-functions/malloc.texi: Document the portability problem
13884         related to malloc(0).
13885
13886 2009-04-26  Bruno Haible  <bruno@clisp.org>
13887
13888         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
13889         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
13890         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
13891
13892 2009-04-25  Bruno Haible  <bruno@clisp.org>
13893
13894         Avoid link error when creating a namespace clean library.
13895         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
13896         as macro with arguments if already defined as an alias.
13897         * lib/signbitf.c (gl_signbitf): Don't undefine.
13898         * lib/signbitd.c (gl_signbitd): Don't undefine.
13899         * lib/signbitl.c (gl_signbitl): Don't undefine.
13900
13901 2009-04-25  Jim Meyering  <meyering@redhat.com>
13902
13903         vc-list-files: fix another quoting bug
13904         * build-aux/vc-list-files: Avoid sed backslash expansion
13905         of pathological directory names.
13906
13907 2009-04-25  Eric Blake  <ebb9@byu.net>
13908
13909         vc-list-files: fix shell quoting error
13910         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
13911         timestamp.
13912
13913 2009-04-25  Jim Meyering  <meyering@redhat.com>
13914
13915         vc-list-files: restore lost functionality with subdir argument
13916         * build-aux/vc-list-files: When given a non-"." sub-directory
13917         argument, substitute the $dir/ prefix back onto each resulting name.
13918         Otherwise, coreutils' root_tests check would fail.
13919
13920 2009-04-24  Eric Blake  <ebb9@byu.net>
13921
13922         vc-list-files: ignore git symlinks
13923         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
13924         than ls-files, to ignore git symlinks.
13925
13926         maint.mk: import improvements from m4
13927         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
13928         (move_if_change): Delete unused macro.
13929         (news-date-check, vc-diff-check): Support VPATH builds.
13930         (announcement): Likewise.  Split --bootstrap-tools list...
13931         (boostrap-tools): ...into separate list, which can be overridden
13932         in cfg.mk.
13933         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
13934         requiring dependency on useless-if-before-free module.
13935         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
13936         Support VPATH builds.
13937
13938 2009-04-24  Jim Meyering  <meyering@redhat.com>
13939
13940         maint.mk: remove coreutils-specific rules and variables
13941         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
13942         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
13943         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
13944
13945         maint.mk: remove obsolete rule
13946         * top/maint.mk (rel-check): Remove rule.
13947         (WGET, WGETFLAGS): Remove now-unused variables.
13948
13949 2009-04-24  Simon Josefsson  <simon@josefsson.org>
13950
13951         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
13952         consistency.
13953
13954         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
13955         '$(PATH_SEPARATOR)' instead of ':'.
13956
13957 2009-04-24  Simon Josefsson  <simon@josefsson.org>
13958
13959         * lib/getopt1.c (main): Use 'const' for static array.
13960
13961 2009-04-24  Simon Josefsson  <simon@josefsson.org>
13962
13963         * top/maint.mk: Sync with coreutils.
13964         * NEWS: Explain incompatibilities.
13965
13966 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13967             Bruno Haible  <bruno@clisp.org>
13968
13969         Fix cross-compilation results.
13970         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
13971         statement, as third argument of AC_TRY_RUN.
13972         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
13973         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
13974         Likewise.
13975         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
13976         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
13977         Likewise.
13978         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
13979         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
13980         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
13981
13982 2009-04-20  Bruno Haible  <bruno@clisp.org>
13983
13984         Avoid test failure on mingw.
13985         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
13986
13987 2009-04-20  Bruno Haible  <bruno@clisp.org>
13988
13989         Avoid compilation error on mingw.
13990         * modules/localename-tests (Depends-on): Add locale.
13991
13992 2009-04-19  Bruno Haible  <bruno@clisp.org>
13993
13994         Support for building a shared library on Windows platforms.
13995         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
13996         (main): Test the presence of UNINORM_NFC here.
13997         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
13998         (main): Test the presence of UNINORM_NFD here.
13999         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
14000         (main): Test the presence of UNINORM_NFKC here.
14001         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
14002         (main): Test the presence of UNINORM_NFKD here.
14003
14004 2009-04-19  Bruno Haible  <bruno@clisp.org>
14005
14006         Avoid a compiler warning.
14007         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
14008         Change type of variable 'sequence'.
14009
14010 2009-04-19  Bruno Haible  <bruno@clisp.org>
14011
14012         * modules/configmake (Makefile.am): When the contents of configmake.h
14013         does not change, arrange to preserve its modification time.
14014
14015 2009-04-17  Simon Josefsson  <simon@josefsson.org>
14016
14017         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
14018         gettext domain.
14019
14020 2009-04-16  Jim Meyering  <meyering@redhat.com>
14021
14022         useless-if-before-free: improve conversion code
14023         * build-aux/useless-if-before-free: Adjust code-in-comment to match
14024         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
14025
14026 2009-04-14  Bruno Haible  <bruno@clisp.org>
14027
14028         * modules/fcntl (Depends-on): Add extensions.
14029         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
14030
14031 2009-04-12  Ben Pfaff  <blp@gnu.org>
14032
14033         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
14034         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
14035
14036 2009-03-20  Ben Pfaff  <blp@gnu.org>
14037
14038         Make rename replace existing destinations on Windows.
14039         * m4/rename.m4: Add test for Mingw.
14040         * lib/rename.c: Add rename replacement that uses MoveFileEx with
14041         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
14042         * doc/posix-functions/rename.texi: Document.
14043
14044 2009-04-10  Bruno Haible  <bruno@clisp.org>
14045
14046         New include file "iconveh.h".
14047         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
14048         * lib/striconveh.h: Include it.
14049         (enum iconv_ilseq_handler): Remove definition.
14050         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
14051         striconveh.h.
14052         * lib/striconveha.c: Include striconveh.h.
14053         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
14054         * modules/striconveh (Files): Add lib/iconveh.h.
14055         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
14056         lib/striconveh.h.
14057
14058 2009-04-10  Bruno Haible  <bruno@clisp.org>
14059
14060         * lib/uniconv.h: Update comment.
14061
14062 2009-04-10  Bruno Haible  <bruno@clisp.org>
14063
14064         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
14065         always.
14066         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
14067         * lib/unistr/u16-mbtouc-aux.c: Likewise.
14068         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
14069         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
14070         "unistring-notinline.h", so that the function gets defined always.
14071         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
14072         * lib/unistr/u8-uctomb.c: Likewise.
14073         * lib/unistr/u16-mbtouc.c: Likewise.
14074         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
14075         * lib/unistr/u16-uctomb.c: Likewise.
14076         * lib/unistr/u32-mbtouc.c: Likewise.
14077         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
14078         * lib/unistr/u32-uctomb.c: Likewise.
14079
14080 2009-04-10  Bruno Haible  <bruno@clisp.org>
14081
14082         Mark 'utime' obsolete.
14083         * modules/utime (Status, Notice): New sections.
14084         Suggested by Jim Meyering.
14085
14086         Fix cross-compile guess for utime test.
14087         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
14088         autoconf.
14089         * doc/posix-functions/utime.texi: Give more precisions.
14090         Reported by Jan <ipif@ymail.com>.
14091
14092 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
14093
14094         filevercmp: correct today's change
14095         * lib/filevercmp.c: Also handle coreutils' test inputs.
14096         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
14097
14098         Fix regression in 'filevercmp' module. Thanks Sven Joachim
14099         for reporting it.
14100         * lib/filevercmp.c: Special handle for "", "." and "..".
14101         * tests/test-filevercmp.c: Enlarge the set suite.
14102
14103 2009-04-07  Jim Meyering  <meyering@redhat.com>
14104
14105         useless-if-before-free: show how to remove braced useless free, too
14106         * build-aux/useless-if-before-free: still only in a comment, though.
14107
14108 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
14109
14110         maint.mk: import changes to syntax-check macros from coreutils
14111         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
14112         Use them in the relevant macros.
14113
14114 2009-04-06  Bruno Haible  <bruno@clisp.org>
14115
14116         Fix unportable use of bit-fields.
14117         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
14118         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
14119         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
14120
14121 2009-04-06  Bruno Haible  <bruno@clisp.org>
14122
14123         Avoid test failures on AIX and OSF/1.
14124         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
14125         that malloc(0) = NULL.
14126         * tests/unicase/test-u8-tolower.c (check): Likewise.
14127         * tests/unicase/test-u8-totitle.c (check): Likewise.
14128         * tests/unicase/test-u8-toupper.c (check): Likewise.
14129         * tests/unicase/test-u16-casefold.c (check): Likewise.
14130         * tests/unicase/test-u16-tolower.c (check): Likewise.
14131         * tests/unicase/test-u16-totitle.c (check): Likewise.
14132         * tests/unicase/test-u16-toupper.c (check): Likewise.
14133         * tests/unicase/test-u32-casefold.c (check): Likewise.
14134         * tests/unicase/test-u32-tolower.c (check): Likewise.
14135         * tests/unicase/test-u32-totitle.c (check): Likewise.
14136         * tests/unicase/test-u32-toupper.c (check): Likewise.
14137         * tests/uninorm/test-u8-nfc.c (check): Likewise.
14138         * tests/uninorm/test-u8-nfd.c (check): Likewise.
14139         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
14140         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
14141         * tests/uninorm/test-u16-nfc.c (check): Likewise.
14142         * tests/uninorm/test-u16-nfd.c (check): Likewise.
14143         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
14144         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
14145         * tests/uninorm/test-u32-nfc.c (check): Likewise.
14146         * tests/uninorm/test-u32-nfd.c (check): Likewise.
14147         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
14148         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
14149
14150 2009-04-05  Bruno Haible  <bruno@clisp.org>
14151
14152         Work around an autoconf limitation.
14153         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
14154         comment line if it would be longer than 3 KB.
14155
14156 2009-04-05  Bruno Haible  <bruno@clisp.org>
14157
14158         Avoid test failure with libiconv-1.13.
14159         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
14160         of the expected test results.
14161
14162 2009-04-05  Bruno Haible  <bruno@clisp.org>
14163
14164         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
14165         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
14166         that it should be installed.
14167
14168 2009-04-05  Bruno Haible  <bruno@clisp.org>
14169
14170         * gnulib-tool: New option --copy-file.
14171         (func_usage): Document it.
14172         (func_dest_tmpfilename): Moved out of func_import.
14173         (func_add_file, func_update_file): New functions, extracted from
14174         func_import.
14175         (func_import): Update.
14176
14177 2009-04-05  Karl Berry  <karl@gnu.org>
14178
14179         * README: prominently mention gnulib-tool.
14180         Rearrange sections so getting the code is near the top.
14181
14182 2009-04-05  Bruno Haible  <bruno@clisp.org>
14183
14184         * lib/unicase.h: Mention u*_cmp2.
14185         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
14186         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
14187         * lib/unicase/ulc-casecmp.c: Likewise.
14188         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
14189         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
14190         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
14191         unistr/u8-cmp.
14192         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
14193         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
14194         unistr/u16-cmp.
14195         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
14196         unistr/u32-cmp.
14197
14198         * lib/uninorm.h: Mention u*_cmp2.
14199         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
14200         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
14201         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
14202         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
14203         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
14204         unistr/u8-cmp.
14205         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
14206         unistr/u16-cmp.
14207         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
14208         unistr/u32-cmp.
14209
14210         New module 'unistr/u32-cmp2'.
14211         * lib/unistr/u32-cmp2.c: New file.
14212         * modules/unistr/u32-cmp2: New file.
14213
14214         New module 'unistr/u16-cmp2'.
14215         * lib/unistr/u16-cmp2.c: New file.
14216         * modules/unistr/u16-cmp2: New file.
14217
14218         New module 'unistr/u8-cmp2'.
14219         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
14220         * lib/unistr/u8-cmp2.c: New file.
14221         * lib/unistr/u-cmp2.h: New file.
14222         * modules/unistr/u8-cmp2: New file.
14223
14224 2009-04-05  Bruno Haible  <bruno@clisp.org>
14225
14226         * lib/unictype.h (uc_property_is_valid): New macro.
14227         * tests/unictype/test-pr_byname.c (main): Use it.
14228
14229         * lib/unistr.h: Doc fixes.
14230         * lib/uniconv.h: Doc fixes.
14231         * lib/unictype.h: Doc fixes.
14232
14233 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
14234
14235         Port coreutils 7.2 to Solaris 8.
14236
14237         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
14238         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
14239         for Solaris 8.  This is a bit of a hack, as it means it's the
14240         caller's responsibility to add -lnsl if needed, but most likely it
14241         won't be needed since only getaddrinfo uses this and getaddrinfo
14242         isn't needed on Solaris 8.
14243
14244         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
14245         problem to Solaris 8 encountered with coreutils 7.2, which
14246         resulted in a message "fnmatch.c:292: warning: passing argument 4
14247         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
14248         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
14249
14250 2009-04-03  Simon Josefsson  <simon@josefsson.org>
14251
14252         * m4/ld-version-script.m4: Add FIXME comment.
14253
14254 2009-04-02  Simon Josefsson  <simon@josefsson.org>
14255
14256         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
14257         SOVERSION variable.
14258
14259 2009-04-02  Bruno Haible  <bruno@clisp.org>
14260
14261         * Makefile (info, html, dvi, pdf): Combine the rules.
14262         Suggested by Jim Meyering.
14263
14264 2009-04-01  Bruno Haible  <bruno@clisp.org>
14265
14266         * Makefile (info, html, dvi, pdf): New targets.
14267         Reported by Reuben Thomas <rrt@sc3d.org>.
14268
14269 2009-04-01  Bruno Haible  <bruno@clisp.org>
14270
14271         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
14272         can be put into PATH.
14273         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
14274
14275 2009-04-01  Bruno Haible  <bruno@clisp.org>
14276
14277         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
14278
14279 2009-04-01  Bruno Haible  <bruno@clisp.org>
14280
14281         Rename module 'visibility'.
14282         * modules/lib-symbol-visibility: Renamed from modules/visibility.
14283         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
14284         * doc/gnulib.texi: Update.
14285         * MODULES.html.sh (Misc): Update.
14286         * NEWS: Mention the change.
14287
14288 2009-04-01  Simon Josefsson  <simon@josefsson.org>
14289
14290         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
14291         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
14292         Eric Blake <ebb9@byu.net> for review.
14293         * MODULES.html.sh: Add lib-msvc-compat.
14294         * doc/gnulib.texi: Link to new section.
14295         * m4/ld-output-def.m4: New file.
14296         * doc/ld-output-def.texi: New file.
14297
14298 2009-04-01  Simon Josefsson  <simon@josefsson.org>
14299
14300         Rename ld-version-script to lib-symbol-versions.  Suggested by
14301         Bruno Haible <bruno@clisp.org>.
14302         * modules/ld-version-script: Renamed to lib-symbol-versions.
14303         * doc/ld-version-script.texi: Fix module name.
14304         * MODULES.html.sh: Add lib-symbol-versions.
14305
14306 2009-03-31  Simon Josefsson  <simon@josefsson.org>
14307
14308         * modules/u64-tests: New file.
14309         * tests/test-u64.c: New file.
14310
14311 2009-03-04  Simon Josefsson  <simon@josefsson.org>
14312
14313         * MODULES.html.sh: Mention u64.
14314         * modules/u64: New module.
14315         * modules/crypto/sha512: Depend on u64 module instead of providing
14316         u64.h.
14317
14318 2009-03-27  Eric Blake  <ebb9@byu.net>
14319
14320         test-strerror: make debugging EAI_SYSTEM easier
14321         * modules/getaddrinfo-tests (Depends-on): Add strerror.
14322         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
14323         failure was EAI_SYSTEM.
14324
14325 2009-03-25  Bruno Haible  <bruno@clisp.org>
14326
14327         Fix a problem with --enable-relocatable on Solaris 7.
14328         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
14329         since 2008-02-24.
14330
14331 2009-03-25  Eric Blake  <ebb9@byu.net>
14332
14333         test-sockets: avoid gcc warning
14334         * tests/test-sockets.c (main): Silence compiler warning.
14335
14336 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
14337
14338         New modules nproc, pthread, contributed by Glen Lenker.
14339
14340         * MODULES.html.sh: Add pthread, nproc.
14341         * lib/nproc.c: New file.
14342         * lib/nproc.h: New file.
14343         * lib/pthread.in.h: New file.
14344         * m4/pthread.m4: New file.
14345         * modules/nproc: New file.
14346         * modules/pthread: New file.
14347
14348 2009-03-24  Simon Josefsson  <simon@josefsson.org>
14349
14350         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
14351         New variable.
14352
14353 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
14354
14355         filevercmp: handle simple~ and numbered.~3~ backup suffixes
14356         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
14357         * tests/test-filevercmp.c: Add tests for backup suffixes.
14358
14359 2009-03-24  Simon Josefsson  <simon@josefsson.org>
14360
14361         * modules/stdlib (Depends-on): Add stdint, needed when defining
14362         struct random_data on, for example, HP-UX 10.20.  Reported by
14363         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
14364
14365 2009-03-24  Simon Josefsson  <simon@josefsson.org>
14366
14367         * lib/readline.c (readline): Call fflush on stdout after printing
14368         prompt.
14369
14370 2009-03-20  Bruno Haible  <bruno@clisp.org>
14371
14372         Remove dependency from 'close' module to -lws2_32 on native Windows.
14373         * lib/close-hook.h: New file.
14374         * lib/close-hook.c: New file.
14375         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
14376         w32sock.h.
14377         (_gl_close_fd_maybe_socket): Remove function.
14378         (rpl_close): Invoke execute_all_close_hooks instead of
14379         _gl_close_fd_maybe_socket.
14380         * lib/sockets.c: Include close-hook.h, w32sock.h.
14381         (close_fd_maybe_socket): New function, essentially from lib/close.c.
14382         (close_sockets_hook): New variable.
14383         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
14384         (gl_sockets_cleanup): Unregister it.
14385         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
14386         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
14387         * modules/close-hook: New file.
14388         * modules/close (Files): Remove lib/w32sock.h.
14389         (Depends-on): Add close-hook.
14390         (Link): Remove section.
14391         * modules/sockets (Files): Add lib/w32sock.h.
14392         (Depends-on): Add close-hook.
14393         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
14394         invocation.
14395         * NEWS: Mention that LIB_CLOSE is gone.
14396
14397 2009-03-23  Eric Blake  <ebb9@byu.net>
14398
14399         signal-tests: test previous patch
14400         * tests/test-signal.c: New file.
14401         * modules/signal-tests: Likewise.
14402
14403         signal.h: always support 'volatile sig_atomic_t'
14404         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
14405         (gl_SIGNAL_H_DEFAULTS): Add a default.
14406         * modules/signal (Makefile.am): Substitute if needed.
14407         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
14408         users can blindly add volatile.
14409         * doc/posix-headers/signal.texi (signal.h): Document it.
14410         Reported by Matthew Woehlke.
14411
14412 2009-03-23  Jim Meyering  <meyering@redhat.com>
14413
14414         pathmax: PATH_MAX: use pathconf only when available
14415         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
14416         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
14417         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
14418         This avoids a link failure in a PSP cross-compilation environment
14419         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
14420
14421         * lib/vasnprintf.c (divide): Fix typo in comment.
14422
14423 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14424
14425         * gnulib-tool (func_filter_filelist): Fix comment.
14426
14427 2009-03-20  Bruno Haible  <bruno@clisp.org>
14428
14429         Make sockets.h self-contained.
14430         * lib/sockets.c: Include sockets.h first.
14431         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
14432
14433 2009-03-19  Eric Blake  <ebb9@byu.net>
14434
14435         doc: mention more functions added in cygwin 1.7.0
14436         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
14437         addition.
14438         * doc/posix-functions/log2f.texi: Likewise.
14439
14440 2009-03-19  Jim Meyering  <meyering@redhat.com>
14441
14442         fsusage: avoid syntax error due to statement-before-declaration
14443         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
14444         after all declarations.  Reported by Matthew Woehlke in
14445         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
14446
14447 2009-03-18  Eric Blake  <ebb9@byu.net>
14448
14449         build-aux/compile: sync from automake
14450         * build-aux/compile: New file, from automake.
14451         * config/srclist.txt: Mention build-aux/compile.
14452
14453 2009-03-17  Bruno Haible  <bruno@clisp.org>
14454
14455         * lib/git-merge-changelog.c: Fix typo in comment.
14456         Reported by Reuben Thomas <rrt@sc3d.org>.
14457
14458 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
14459
14460         * m4/regex.m4: update and improve help for
14461         --without-included-regex.
14462
14463 2009-03-17  Simon Josefsson  <simon@josefsson.org>
14464
14465         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
14466         failure on missing include files.
14467
14468 2009-03-17  Eric Blake  <ebb9@byu.net>
14469
14470         doc: mention more functions added in cygwin 1.7.0
14471         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
14472         addition.
14473         * doc/posix-functions/fwscanf.texi: Likewise.
14474         * doc/posix-functions/swprintf.texi: Likewise.
14475         * doc/posix-functions/swscanf.texi: Likewise.
14476         * doc/posix-functions/vfwprintf.texi: Likewise.
14477         * doc/posix-functions/vfwscanf.texi: Likewise.
14478         * doc/posix-functions/vswprintf.texi: Likewise.
14479         * doc/posix-functions/vswscanf.texi: Likewise.
14480         * doc/posix-functions/vwprintf.texi: Likewise.
14481         * doc/posix-functions/vwscanf.texi: Likewise.
14482         * doc/posix-functions/wcscasecmp.texi: Likewise.
14483         * doc/posix-functions/wcsdup.texi: Likewise.
14484         * doc/posix-functions/wcsftime.texi: Likewise.
14485         * doc/posix-functions/wcsncasecmp.texi: Likewise.
14486         * doc/posix-functions/wprintf.texi: Likewise.
14487         * doc/posix-functions/wscanf.texi: Likewise.
14488         * doc/glibc-functions/gethostbyname2.texi: Likewise.
14489
14490 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14491
14492         maint.mk: really add $(AM_MAKEFLAGS)
14493         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
14494         was inadvertently omitted in the last commit.
14495         Spotted by Bruno Haible.
14496
14497         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
14498         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
14499         $(AM_MAKEFLAGS)' rather than plain `make'.
14500
14501         gnulib-tool: execute $MAKE not make
14502         * gnulib-tool: Default $MAKE to 'make'.
14503         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
14504         than make.  Initialize $MAKE in the do-autobuild script.
14505
14506         gnulib-tool: use $MAKE not make in generated files
14507         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
14508         make, in generated files.  Initialize $MAKE in the do-autobuild
14509         script.
14510
14511         * top/GNUmakefile (_have-git-version-gen): Fix typo.
14512
14513         GNUmakefile: disable parallelism only for multiple, recursive targets
14514         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
14515         additions in the Makefile.
14516         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
14517         by Automake.
14518         (.NOTPARALLEL): Only disable parallel builds if multiple targets
14519         are listed on the command line and at least one of them is
14520         listed in $(ALL_RECURSIVE_TARGETS).
14521
14522 2009-03-14  Bruno Haible  <bruno@clisp.org>
14523
14524         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
14525         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
14526         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
14527         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
14528         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
14529         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
14530         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
14531         unistr/u8-uctomb.
14532         * modules/unistr/u8-strchr (Depends-on): Likewise.
14533         * modules/unistr/u8-strrchr (Depends-on): Likewise.
14534         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
14535         unistr/u16-uctomb.
14536         * modules/unistr/u16-strchr (Depends-on): Likewise.
14537         * modules/unistr/u16-strrchr (Depends-on): Likewise.
14538
14539 2009-03-12  Bruno Haible  <bruno@clisp.org>
14540
14541         Work around select() bug on Interix 3.5.
14542         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
14543         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
14544         * m4/select.m4: New file.
14545         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
14546         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
14547         * modules/select (Files): Add m4/select.m4.
14548         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
14549         * modules/nanosleep (Depends-on): Add select.
14550         * modules/poll (Depends-on): Likewise.
14551         * doc/posix-functions/select.texi: Mention the Interix bug.
14552         Reported by Markus Duft <mduft@gentoo.org>.
14553
14554         * lib/select.c: Renamed from lib/winsock-select.c.
14555         * modules/select (Files): Add lib/select.c, remove
14556         lib/winsock-select.c.
14557         (configure.ac): Update.
14558
14559 2009-03-12  Jim Meyering  <meyering@redhat.com>
14560
14561         avoid gcc warnings about unused macro definitions
14562         * lib/readtokens.c (STREQ): Remove unused definition.
14563         * lib/xmalloc.c (SIZE_MAX): Likewise.
14564         * lib/openat-die.c (N_): Likewise.
14565         * lib/mountlist.c (SIZE_MAX): Remove definition.
14566         Instead, include <stdint.h>.
14567         * lib/readutmp.c: Likewise.
14568         * modules/readutmp (Depends-on): Add stdint.
14569         * modules/mountlist (Depends-on): Add stdint.
14570         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
14571
14572 2009-03-10  Bruno Haible  <bruno@clisp.org>
14573
14574         Tests for module 'mbmemcasecoll'.
14575         * modules/mbmemcasecoll-tests: New file.
14576         * tests/test-mbmemcasecoll1.sh: New file.
14577         * tests/test-mbmemcasecoll2.sh: New file.
14578         * tests/test-mbmemcasecoll3.sh: New file.
14579         * tests/test-mbmemcasecoll.c: New file.
14580
14581         New module 'mbmemcasecoll'.
14582         * lib/mbmemcasecoll.h: New file.
14583         * lib/mbmemcasecoll.c: New file.
14584         * modules/mbmemcasecoll: New file.
14585
14586         * tests/test-mbmemcasecmp.h: New file, extracted from
14587         tests/test-mbmemcasecmp.c.
14588         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
14589         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
14590         (main): Update.
14591         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
14592
14593 2009-03-09  Bruno Haible  <bruno@clisp.org>
14594
14595         Tests for module 'mbmemcasecmp'.
14596         * modules/mbmemcasecmp-tests: New file.
14597         * tests/test-mbmemcasecmp1.sh: New file.
14598         * tests/test-mbmemcasecmp2.sh: New file.
14599         * tests/test-mbmemcasecmp3.sh: New file.
14600         * tests/test-mbmemcasecmp.c: New file.
14601
14602         New module 'mbmemcasecmp'.
14603         * lib/mbmemcasecmp.h: New file.
14604         * lib/mbmemcasecmp.c: New file.
14605         * modules/mbmemcasecmp: New file.
14606
14607 2009-03-09  Bruno Haible  <bruno@clisp.org>
14608
14609         Tests for module 'unicase/ulc-casecoll'.
14610         * modules/unicase/ulc-casecoll-tests: New file.
14611         * tests/unicase/test-ulc-casecoll1.sh: New file.
14612         * tests/unicase/test-ulc-casecoll2.sh: New file.
14613         * tests/unicase/test-ulc-casecoll.c: New file.
14614
14615         New module 'unicase/ulc-casecoll'.
14616         * lib/unicase.h (ulc_casecoll): New declaration.
14617         * lib/unicase/ulc-casecoll.c: New file.
14618         * modules/unicase/ulc-casecoll: New file.
14619
14620         New module 'unicase/ulc-casexfrm'.
14621         * lib/unicase.h (ulc_casexfrm): New declaration.
14622         * lib/unicase/ulc-casexfrm.c: New file.
14623         * modules/unicase/ulc-casexfrm: New file.
14624
14625 2009-03-09  Bruno Haible  <bruno@clisp.org>
14626
14627         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
14628         invocations.
14629
14630         * m4/mbscasecmp.m4: Remove file.
14631         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
14632         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
14633
14634         * m4/mbscasestr.m4: Remove file.
14635         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
14636         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
14637
14638         * m4/mbschr.m4: Remove file.
14639         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
14640         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
14641
14642         * m4/mbscspn.m4: Remove file.
14643         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
14644         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
14645
14646         * m4/mbslen.m4: Remove file.
14647         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
14648         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
14649
14650         * m4/mbsncasecmp.m4: Remove file.
14651         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
14652         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
14653
14654         * m4/mbsnlen.m4: Remove file.
14655         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
14656         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
14657
14658         * m4/mbspbrk.m4: Remove file.
14659         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
14660         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
14661
14662         * m4/mbspcasecmp.m4: Remove file.
14663         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
14664         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
14665
14666         * m4/mbsrchr.m4: Remove file.
14667         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
14668         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
14669
14670         * m4/mbssep.m4: Remove file.
14671         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
14672         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
14673
14674         * m4/mbsspn.m4: Remove file.
14675         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
14676         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
14677
14678         * m4/mbsstr.m4: Remove file.
14679         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
14680         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
14681
14682         * m4/mbstok_r.m4: Remove file.
14683         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
14684         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
14685
14686         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
14687
14688         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
14689         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
14690
14691         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
14692
14693 2009-03-08  Bruno Haible  <bruno@clisp.org>
14694
14695         Tests for module 'unicase/ulc-casecmp'.
14696         * modules/unicase/ulc-casecmp-tests: New file.
14697         * tests/unicase/test-ulc-casecmp1.sh: New file.
14698         * tests/unicase/test-ulc-casecmp2.sh: New file.
14699         * tests/unicase/test-ulc-casecmp.c: New file.
14700
14701         New module 'unicase/ulc-casecmp'.
14702         * lib/unicase.h (ulc_casecmp): New declaration.
14703         * lib/unicase/ulc-casecmp.c: New file.
14704         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
14705         'const SRC_UNIT *'.
14706         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
14707         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
14708         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
14709         * modules/unicase/ulc-casecmp: New file.
14710
14711         Tests for module 'unicase/u32-is-cased'.
14712         * modules/unicase/u32-is-cased-tests: New file.
14713         * tests/unicase/test-u32-is-cased.c: New file.
14714
14715         Tests for module 'unicase/u16-is-cased'.
14716         * modules/unicase/u16-is-cased-tests: New file.
14717         * tests/unicase/test-u16-is-cased.c: New file.
14718
14719         Tests for module 'unicase/u8-is-cased'.
14720         * modules/unicase/u8-is-cased-tests: New file.
14721         * tests/unicase/test-u8-is-cased.c: New file.
14722         * tests/unicase/test-is-cased.h: New file.
14723
14724         New module 'unicase/u32-is-cased'.
14725         * lib/unicase/u32-is-cased.c: New file.
14726         * modules/unicase/u32-is-cased: New file.
14727
14728         New module 'unicase/u16-is-cased'.
14729         * lib/unicase/u16-is-cased.c: New file.
14730         * modules/unicase/u16-is-cased: New file.
14731
14732         New module 'unicase/u8-is-cased'.
14733         * lib/unicase/u8-is-cased.c: New file.
14734         * lib/unicase/u-is-cased.h: New file.
14735         * modules/unicase/u8-is-cased: New file.
14736
14737         Tests for module 'unicase/u32-is-casefolded'.
14738         * modules/unicase/u32-is-casefolded-tests: New file.
14739         * tests/unicase/test-u32-is-casefolded.c: New file.
14740
14741         Tests for module 'unicase/u16-is-casefolded'.
14742         * modules/unicase/u16-is-casefolded-tests: New file.
14743         * tests/unicase/test-u16-is-casefolded.c: New file.
14744
14745         Tests for module 'unicase/u8-is-casefolded'.
14746         * modules/unicase/u8-is-casefolded-tests: New file.
14747         * tests/unicase/test-u8-is-casefolded.c: New file.
14748         * tests/unicase/test-is-casefolded.h: New file.
14749
14750         New module 'unicase/u32-is-casefolded'.
14751         * lib/unicase/u32-is-casefolded.c: New file.
14752         * modules/unicase/u32-is-casefolded: New file.
14753
14754         New module 'unicase/u16-is-casefolded'.
14755         * lib/unicase/u16-is-casefolded.c: New file.
14756         * modules/unicase/u16-is-casefolded: New file.
14757
14758         New module 'unicase/u8-is-casefolded'.
14759         * lib/unicase/u8-is-casefolded.c: New file.
14760         * modules/unicase/u8-is-casefolded: New file.
14761
14762         Tests for module 'unicase/u32-is-titlecase'.
14763         * modules/unicase/u32-is-titlecase-tests: New file.
14764         * tests/unicase/test-u32-is-titlecase.c: New file.
14765
14766         Tests for module 'unicase/u16-is-titlecase'.
14767         * modules/unicase/u16-is-titlecase-tests: New file.
14768         * tests/unicase/test-u16-is-titlecase.c: New file.
14769
14770         Tests for module 'unicase/u8-is-titlecase'.
14771         * modules/unicase/u8-is-titlecase-tests: New file.
14772         * tests/unicase/test-u8-is-titlecase.c: New file.
14773         * tests/unicase/test-is-titlecase.h: New file.
14774
14775         New module 'unicase/u32-is-titlecase'.
14776         * lib/unicase/u32-is-titlecase.c: New file.
14777         * modules/unicase/u32-is-titlecase: New file.
14778
14779         New module 'unicase/u16-is-titlecase'.
14780         * lib/unicase/u16-is-titlecase.c: New file.
14781         * modules/unicase/u16-is-titlecase: New file.
14782
14783         New module 'unicase/u8-is-titlecase'.
14784         * lib/unicase/u8-is-titlecase.c: New file.
14785         * modules/unicase/u8-is-titlecase: New file.
14786
14787         Tests for module 'unicase/u32-is-lowercase'.
14788         * modules/unicase/u32-is-lowercase-tests: New file.
14789         * tests/unicase/test-u32-is-lowercase.c: New file.
14790
14791         Tests for module 'unicase/u16-is-lowercase'.
14792         * modules/unicase/u16-is-lowercase-tests: New file.
14793         * tests/unicase/test-u16-is-lowercase.c: New file.
14794
14795         Tests for module 'unicase/u8-is-lowercase'.
14796         * modules/unicase/u8-is-lowercase-tests: New file.
14797         * tests/unicase/test-u8-is-lowercase.c: New file.
14798         * tests/unicase/test-is-lowercase.h: New file.
14799
14800         New module 'unicase/u32-is-lowercase'.
14801         * lib/unicase/u32-is-lowercase.c: New file.
14802         * modules/unicase/u32-is-lowercase: New file.
14803
14804         New module 'unicase/u16-is-lowercase'.
14805         * lib/unicase/u16-is-lowercase.c: New file.
14806         * modules/unicase/u16-is-lowercase: New file.
14807
14808         New module 'unicase/u8-is-lowercase'.
14809         * lib/unicase/u8-is-lowercase.c: New file.
14810         * modules/unicase/u8-is-lowercase: New file.
14811
14812         Tests for module 'unicase/u32-is-uppercase'.
14813         * modules/unicase/u32-is-uppercase-tests: New file.
14814         * tests/unicase/test-u32-is-uppercase.c: New file.
14815
14816         Tests for module 'unicase/u16-is-uppercase'.
14817         * modules/unicase/u16-is-uppercase-tests: New file.
14818         * tests/unicase/test-u16-is-uppercase.c: New file.
14819
14820         Tests for module 'unicase/u8-is-uppercase'.
14821         * modules/unicase/u8-is-uppercase-tests: New file.
14822         * tests/unicase/test-u8-is-uppercase.c: New file.
14823         * tests/unicase/test-is-uppercase.h: New file.
14824
14825         New module 'unicase/u32-is-uppercase'.
14826         * lib/unicase/u32-is-uppercase.c: New file.
14827         * modules/unicase/u32-is-uppercase: New file.
14828
14829         New module 'unicase/u16-is-uppercase'.
14830         * lib/unicase/u16-is-uppercase.c: New file.
14831         * modules/unicase/u16-is-uppercase: New file.
14832
14833         New module 'unicase/u8-is-uppercase'.
14834         * lib/unicase/u8-is-uppercase.c: New file.
14835         * modules/unicase/u8-is-uppercase: New file.
14836
14837         New module 'unicase/u32-is-invariant'.
14838         * lib/unicase/u32-is-invariant.c: New file.
14839         * modules/unicase/u32-is-invariant: New file.
14840
14841         New module 'unicase/u16-is-invariant'.
14842         * lib/unicase/u16-is-invariant.c: New file.
14843         * modules/unicase/u16-is-invariant: New file.
14844
14845         New module 'unicase/u8-is-invariant'.
14846         * lib/unicase/u8-is-invariant.c: New file.
14847         * lib/unicase/invariant.h: New file.
14848         * lib/unicase/u-is-invariant.h: New file.
14849         * modules/unicase/u8-is-invariant: New file.
14850
14851         Tests for module 'unicase/u32-casecoll'.
14852         * modules/unicase/u32-casecoll-tests: New file.
14853         * tests/unicase/test-u32-casecoll.c: New file.
14854
14855         Tests for module 'unicase/u16-casecoll'.
14856         * modules/unicase/u16-casecoll-tests: New file.
14857         * tests/unicase/test-u16-casecoll.c: New file.
14858
14859         Tests for module 'unicase/u8-casecoll'.
14860         * modules/unicase/u8-casecoll-tests: New file.
14861         * tests/unicase/test-u8-casecoll.c: New file.
14862
14863         New module 'unicase/u32-casecoll'.
14864         * lib/unicase/u32-casecoll.c: New file.
14865         * modules/unicase/u32-casecoll: New file.
14866
14867         New module 'unicase/u16-casecoll'.
14868         * lib/unicase/u16-casecoll.c: New file.
14869         * modules/unicase/u16-casecoll: New file.
14870
14871         New module 'unicase/u8-casecoll'.
14872         * lib/unicase/u8-casecoll.c: New file.
14873         * lib/unicase/u-casecoll.h: New file.
14874         * modules/unicase/u8-casecoll: New file.
14875
14876         New module 'unicase/u32-casexfrm'.
14877         * lib/unicase/u32-casexfrm.c: New file.
14878         * modules/unicase/u32-casexfrm: New file.
14879
14880         New module 'unicase/u16-casexfrm'.
14881         * lib/unicase/u16-casexfrm.c: New file.
14882         * modules/unicase/u16-casexfrm: New file.
14883
14884         New module 'unicase/u8-casexfrm'.
14885         * lib/unicase/u8-casexfrm.c: New file.
14886         * lib/unicase/u-casexfrm.h: New file.
14887         * modules/unicase/u8-casexfrm: New file.
14888
14889         Tests for module 'unicase/u32-casecmp'.
14890         * modules/unicase/u32-casecmp-tests: New file.
14891         * tests/unicase/test-u32-casecmp.c: New file.
14892
14893         Tests for module 'unicase/u16-casecmp'.
14894         * modules/unicase/u16-casecmp-tests: New file.
14895         * tests/unicase/test-u16-casecmp.c: New file.
14896
14897         Tests for module 'unicase/u8-casecmp'.
14898         * modules/unicase/u8-casecmp-tests: New file.
14899         * tests/unicase/test-u8-casecmp.c: New file.
14900         * tests/unicase/test-casecmp.h: New file.
14901
14902         New module 'unicase/u32-casecmp'.
14903         * lib/unicase/u32-casecmp.c: New file.
14904         * modules/unicase/u32-casecmp: New file.
14905
14906         New module 'unicase/u16-casecmp'.
14907         * lib/unicase/u16-casecmp.c: New file.
14908         * modules/unicase/u16-casecmp: New file.
14909
14910         New module 'unicase/u8-casecmp'.
14911         * lib/unicase/u8-casecmp.c: New file.
14912         * lib/unicase/u-casecmp.h: New file.
14913         * modules/unicase/u8-casecmp: New file.
14914
14915         Tests for module 'unicase/u32-casefold'.
14916         * modules/unicase/u32-casefold-tests: New file.
14917         * tests/unicase/test-u32-casefold.c: New file.
14918
14919         Tests for module 'unicase/u16-casefold'.
14920         * modules/unicase/u16-casefold-tests: New file.
14921         * tests/unicase/test-u16-casefold.c: New file.
14922
14923         Tests for module 'unicase/u8-casefold'.
14924         * modules/unicase/u8-casefold-tests: New file.
14925         * tests/unicase/test-u8-casefold.c: New file.
14926
14927         New module 'unicase/u32-casefold'.
14928         * lib/unicase/u32-casefold.c: New file.
14929         * modules/unicase/u32-casefold: New file.
14930
14931         New module 'unicase/u16-casefold'.
14932         * lib/unicase/u16-casefold.c: New file.
14933         * modules/unicase/u16-casefold: New file.
14934
14935         New module 'unicase/u8-casefold'.
14936         * lib/unicase/u8-casefold.c: New file.
14937         * lib/unicase/u-casefold.h: New file.
14938         * modules/unicase/u8-casefold: New file.
14939
14940         New module 'unicase/tocasefold'.
14941         * lib/unicase/casefold.h: New file.
14942         * lib/unicase/tocasefold.c: New file.
14943         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
14944         * modules/unicase/tocasefold: New file.
14945
14946         Tests for module 'unicase/u32-totitle'.
14947         * modules/unicase/u32-totitle-tests: New file.
14948         * tests/unicase/test-u32-totitle.c: New file.
14949
14950         Tests for module 'unicase/u16-totitle'.
14951         * modules/unicase/u16-totitle-tests: New file.
14952         * tests/unicase/test-u16-totitle.c: New file.
14953
14954         Tests for module 'unicase/u8-totitle'.
14955         * modules/unicase/u8-totitle-tests: New file.
14956         * tests/unicase/test-u8-totitle.c: New file.
14957
14958         New module 'unicase/u32-totitle'.
14959         * lib/unicase/u32-totitle.c: New file.
14960         * modules/unicase/u32-totitle: New file.
14961
14962         New module 'unicase/u16-totitle'.
14963         * lib/unicase/u16-totitle.c: New file.
14964         * modules/unicase/u16-totitle: New file.
14965
14966         New module 'unicase/u8-totitle'.
14967         * lib/unicase/u8-totitle.c: New file.
14968         * lib/unicase/u-totitle.h: New file.
14969         * modules/unicase/u8-totitle: New file.
14970
14971         Tests for module 'unicase/u32-tolower'.
14972         * modules/unicase/u32-tolower-tests: New file.
14973         * tests/unicase/test-u32-tolower.c: New file.
14974
14975         Tests for module 'unicase/u16-tolower'.
14976         * modules/unicase/u16-tolower-tests: New file.
14977         * tests/unicase/test-u16-tolower.c: New file.
14978
14979         Tests for module 'unicase/u8-tolower'.
14980         * modules/unicase/u8-tolower-tests: New file.
14981         * tests/unicase/test-u8-tolower.c: New file.
14982
14983         New module 'unicase/u32-tolower'.
14984         * lib/unicase/u32-tolower.c: New file.
14985         * modules/unicase/u32-tolower: New file.
14986
14987         New module 'unicase/u16-tolower'.
14988         * lib/unicase/u16-tolower.c: New file.
14989         * modules/unicase/u16-tolower: New file.
14990
14991         New module 'unicase/u8-tolower'.
14992         * lib/unicase/u8-tolower.c: New file.
14993         * modules/unicase/u8-tolower: New file.
14994
14995         Tests for module 'unicase/u32-toupper'.
14996         * modules/unicase/u32-toupper-tests: New file.
14997         * tests/unicase/test-u32-toupper.c: New file.
14998
14999         Tests for module 'unicase/u16-toupper'.
15000         * modules/unicase/u16-toupper-tests: New file.
15001         * tests/unicase/test-u16-toupper.c: New file.
15002
15003         Tests for module 'unicase/u8-toupper'.
15004         * modules/unicase/u8-toupper-tests: New file.
15005         * tests/unicase/test-u8-toupper.c: New file.
15006
15007         New module 'unicase/u32-toupper'.
15008         * lib/unicase/u32-toupper.c: New file.
15009         * modules/unicase/u32-toupper: New file.
15010
15011         New module 'unicase/u16-toupper'.
15012         * lib/unicase/u16-toupper.c: New file.
15013         * modules/unicase/u16-toupper: New file.
15014
15015         New module 'unicase/u8-toupper'.
15016         * lib/unicase/u8-toupper.c: New file.
15017         * modules/unicase/u8-toupper: New file.
15018
15019         New module 'unicase/u32-casemap'.
15020         * lib/unicase/u32-casemap.c: New file.
15021         * modules/unicase/u32-casemap: New file.
15022
15023         New module 'unicase/u16-casemap'.
15024         * lib/unicase/u16-casemap.c: New file.
15025         * modules/unicase/u16-casemap: New file.
15026
15027         New module 'unicase/u8-casemap'.
15028         * lib/unicase/unicasemap.h: New file.
15029         * lib/unicase/u8-casemap.c: New file.
15030         * lib/unicase/u-casemap.h: New file.
15031         * modules/unicase/u8-casemap: New file.
15032
15033         New module 'unicase/special-casing'.
15034         * lib/unicase/special-casing.h: New file.
15035         * lib/unicase/special-casing.c: New file.
15036         * lib/unicase/special-casing-table.gperf: New file, generated by
15037         gen-uni-tables.c.
15038         * modules/unicase/special-casing: New file.
15039
15040         Tests for module 'unicase/locale-language'.
15041         * modules/unicase/locale-language-tests: New file.
15042         * tests/unicase/test-locale-language.sh: New file.
15043         * tests/unicase/test-locale-language.c: New file.
15044
15045         New module 'unicase/locale-language'.
15046         * lib/unicase/locale-language.c: New file.
15047         * lib/unicase/locale-languages.gperf: New file.
15048         * modules/unicase/locale-language: New file.
15049
15050         Generate more tables for case conversion and case folding.
15051         * lib/gen-uni-tables.c (SCC_*): New enum items.
15052         (struct special_casing_rule): New type.
15053         (casing_rules, num_casing_rules, allocated_casing_rules): New
15054         variables.
15055         (add_casing_rule, fill_casing_rules): New functions.
15056         (struct casefold_rule): New type.
15057         (casefolding_rules, num_casefolding_rules,
15058         allocated_casefolding_rules): New variables.
15059         (fill_casefolding_rules): New function.
15060         (unicode_casefold): New variable.
15061         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
15062         sort_casing_rules, output_casing_rules): New functions.
15063         (main): Accept to more arguments: SpecialCasing.txt and
15064         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
15065         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
15066         Output mapping for casefolding.
15067
15068         * lib/unicase.h: Include stdbool.h, uninorm.h.
15069         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
15070         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
15071         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
15072         arguments.
15073         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
15074         resultp arguments.
15075         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
15076         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
15077         resultp arguments.
15078         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
15079         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
15080         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
15081         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
15082         declarations.
15083         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
15084
15085 2009-03-08  Bruno Haible  <bruno@clisp.org>
15086
15087         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
15088         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
15089         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
15090         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
15091
15092 2009-03-07  Bruno Haible  <bruno@clisp.org>
15093
15094         Adjust u*_normcmp, u*_normcoll API.
15095         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
15096         u16_normcoll, u32_normcoll): Change failure conventions.
15097         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
15098         errno and return -1.
15099         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
15100
15101 2009-03-07  Bruno Haible  <bruno@clisp.org>
15102
15103         Tests for module 'uninorm/u32-normcoll'.
15104         * modules/uninorm/u32-normcoll-tests: New file.
15105         * tests/uninorm/test-u32-normcoll.c: New file.
15106
15107         Tests for module 'uninorm/u16-normcoll'.
15108         * modules/uninorm/u16-normcoll-tests: New file.
15109         * tests/uninorm/test-u16-normcoll.c: New file.
15110
15111         Tests for module 'uninorm/u8-normcoll'.
15112         * modules/uninorm/u8-normcoll-tests: New file.
15113         * tests/uninorm/test-u8-normcoll.c: New file.
15114
15115 2009-03-07  Bruno Haible  <bruno@clisp.org>
15116
15117         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
15118         tests/uninorm/test-u32-normcmp.c.
15119         * tests/uninorm/test-u32-normcmp.c: Include it.
15120         (test_nonascii): New function, extracted from main. Add some more
15121         tests.
15122         (main): Invoke test_ascii and test_nonascii.
15123         * modules/uninorm/u32-normcmp-tests (Files): Add
15124         tests/uninorm/test-u32-normcmp.h.
15125         (Depends-on): Remove uninorm/u32-normcmp.
15126
15127         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
15128         tests/uninorm/test-u16-normcmp.c.
15129         * tests/uninorm/test-u16-normcmp.c: Include it.
15130         (test_nonascii): New function, extracted from main. Add some more
15131         tests.
15132         (main): Invoke test_ascii and test_nonascii.
15133         * modules/uninorm/u16-normcmp-tests (Files): Add
15134         tests/uninorm/test-u16-normcmp.h.
15135         (Depends-on): Remove uninorm/u16-normcmp.
15136
15137         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
15138         tests/uninorm/test-u8-normcmp.c.
15139         * tests/uninorm/test-u8-normcmp.c: Include it.
15140         (test_nonascii): New function, extracted from main. Add some more
15141         tests.
15142         (main): Invoke test_ascii and test_nonascii.
15143         * modules/uninorm/u8-normcmp-tests (Files): Add
15144         tests/uninorm/test-u8-normcmp.h.
15145         (Depends-on): Remove uninorm/u8-normcmp.
15146
15147 2009-03-07  Bruno Haible  <bruno@clisp.org>
15148
15149         New module 'uninorm/u32-normcoll'.
15150         * lib/uninorm/u32-normcoll.c: New file.
15151         * modules/uninorm/u32-normcoll: New file.
15152
15153         New module 'uninorm/u16-normcoll'.
15154         * lib/uninorm/u16-normcoll.c: New file.
15155         * modules/uninorm/u16-normcoll: New file.
15156
15157         New module 'uninorm/u8-normcoll'.
15158         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
15159         declarations.
15160         * lib/uninorm/u8-normcoll.c: New file.
15161         * lib/uninorm/u-normcoll.h: New file.
15162         * modules/uninorm/u8-normcoll: New file.
15163
15164         New module 'uninorm/u32-normxfrm'.
15165         * lib/uninorm/u32-normxfrm.c: New file.
15166         * modules/uninorm/u32-normxfrm: New file.
15167
15168         New module 'uninorm/u16-normxfrm'.
15169         * lib/uninorm/u16-normxfrm.c: New file.
15170         * modules/uninorm/u16-normxfrm: New file.
15171
15172         New module 'uninorm/u8-normxfrm'.
15173         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
15174         declarations.
15175         * lib/uninorm/u8-normxfrm.c: New file.
15176         * lib/uninorm/u-normxfrm.h: New file.
15177         * modules/uninorm/u8-normxfrm: New file.
15178
15179 2009-03-07  Bruno Haible  <bruno@clisp.org>
15180
15181         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
15182         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
15183         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
15184
15185 2009-03-07  Bruno Haible  <bruno@clisp.org>
15186
15187         New module 'memxfrm'.
15188         * lib/memxfrm.h: New file.
15189         * lib/memxfrm.c: New file.
15190         * modules/memxfrm: New file.
15191
15192 2009-03-07  Bruno Haible  <bruno@clisp.org>
15193
15194         New module 'memcmp2'.
15195         * lib/memcmp2.h: New file.
15196         * lib/memcmp2.c: New file.
15197         * modules/memcmp2: New file.
15198
15199 2009-03-07  Bruno Haible  <bruno@clisp.org>
15200
15201         Tests for module 'uninorm/decomposing-form'.
15202         * modules/uninorm/decomposing-form-tests: New file.
15203         * tests/uninorm/test-decomposing-form.c: New file.
15204
15205         New module 'uninorm/decomposing-form'.
15206         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
15207         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
15208         Add 'decomposing_variant' field.
15209         * lib/uninorm/decomposing-form.c: New file.
15210         * lib/uninorm/nfc.c (uninorm_nfc): Update.
15211         * lib/uninorm/nfd.c (uninorm_nfd): Update.
15212         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
15213         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
15214         * modules/uninorm/decomposing-form: New file.
15215         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
15216         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
15217
15218 2009-03-07  Bruno Haible  <bruno@clisp.org>
15219
15220         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
15221         strings.
15222
15223 2009-03-06  Bruno Haible  <bruno@clisp.org>
15224
15225         Tests for module 'uninorm/u32-normcmp'.
15226         * tests/uninorm/test-u32-normcmp.c: New file.
15227         * modules/uninorm/u32-normcmp-tests: New file.
15228
15229         Tests for module 'uninorm/u16-normcmp'.
15230         * tests/uninorm/test-u16-normcmp.c: New file.
15231         * modules/uninorm/u16-normcmp-tests: New file.
15232
15233         Tests for module 'uninorm/u8-normcmp'.
15234         * tests/uninorm/test-u8-normcmp.c: New file.
15235         * modules/uninorm/u8-normcmp-tests: New file.
15236
15237         New module 'uninorm/u32-normcmp'.
15238         * lib/uninorm/u32-normcmp.c: New file.
15239         * modules/uninorm/u32-normcmp: New file.
15240
15241         New module 'uninorm/u16-normcmp'.
15242         * lib/uninorm/u16-normcmp.c: New file.
15243         * modules/uninorm/u16-normcmp: New file.
15244
15245         New module 'uninorm/u8-normcmp'.
15246         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
15247         declarations.
15248         * lib/uninorm/u8-normcmp.c: New file.
15249         * lib/uninorm/u-normcmp.h: New file.
15250         * modules/uninorm/u8-normcmp: New file.
15251
15252 2009-03-06  Bruno Haible  <bruno@clisp.org>
15253
15254         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
15255         Reported by Eric Blake.
15256
15257 2009-03-06  Eric Blake  <ebb9@byu.net>
15258             Bruno Haible  <bruno@clisp.org>
15259
15260         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
15261         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
15262         condition.
15263         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
15264         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
15265         condition.
15266         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
15267
15268 2009-03-06  Eric Blake  <ebb9@byu.net>
15269
15270         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
15271         to avoid compiler warnings.
15272         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
15273
15274 2009-03-05  Bruno Haible  <bruno@clisp.org>
15275
15276         * tests/test-ftell.c (main): Disable test beyond end of file on
15277         FreeMiNT.
15278         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
15279
15280 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
15281
15282         * lib/filevercmp.c: Move hidden files up in ordering.
15283         * tests/test-filevercmp.c: Add tests for hidden files.
15284
15285 2009-03-04  Bruno Haible  <bruno@clisp.org>
15286
15287         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
15288         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
15289         AM_CFLAGS.
15290         Reported by Simon Josefsson.
15291
15292 2009-03-03  Bruno Haible  <bruno@clisp.org>
15293
15294         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
15295         Reported by Simon Josefsson.
15296
15297         * doc/ld-version-script.texi: Update node reference.
15298
15299 2009-03-03  Bruno Haible  <bruno@clisp.org>
15300
15301         * modules/visibility (License): Change to 'unlimited'.
15302         Suggested by Simon Josefsson.
15303
15304 2009-03-03  Jim Meyering  <meyering@redhat.com>
15305
15306         unlinkdir: cannot_unlink_dir may modify process state
15307         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
15308         it's neither thread-safe nor appropriate for use in a library.
15309
15310 2009-03-03  Eric Blake  <ebb9@byu.net>
15311
15312         test-closein: silence test under Darwin
15313         * tests/test-closein.sh: Ignore stderr from cat, since we don't
15314         care if it dies from EPIPE or EBADF.
15315
15316 2009-03-03  Bruno Haible  <bruno@clisp.org>
15317
15318         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
15319         earlier.
15320         * doc/visibility.texi: Fix @node and @section.
15321
15322 2009-03-03  Simon Josefsson  <simon@josefsson.org>
15323
15324         * doc/gnulib.texi: Link to sections for ld version script and
15325         visibility.
15326         * doc/visibility.texi: Add @node and @section.
15327         * modules/ld-version-script: New module.
15328         * m4/ld-version-script.m4: New file.
15329         * doc/ld-version-script.texi: New file.
15330
15331 2009-03-02  David Lutterkort  <lutter@redhat.com>
15332
15333         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
15334         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15335
15336 2009-03-02  Bruno Haible  <bruno@clisp.org>
15337
15338         * doc/visibility.texi: Mention libtool's -export-symbols option.
15339
15340 2009-03-02  Jim Meyering  <meyering@redhat.com>
15341
15342         announce-gen: new option: --no-print-checksums
15343         * build-aux/announce-gen (usage): Describe it.
15344         (print_checksums): Print a newline here, not in the [*] footnote.
15345         (main): Honor it.
15346
15347 2009-03-01  Bruno Haible  <bruno@clisp.org>
15348
15349         Use socklen_t in the native Windows replacements prototypes.
15350         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
15351         instead of 'int'.
15352         * lib/getsockopt.c (rpl_getsockopt): Likewise.
15353         * lib/setsockopt.c (rpl_setsockopt): Likewise.
15354         * modules/getsockopt (Depends-on): Add socklen.
15355         * modules/setsockopt (Depends-on): Add socklen.
15356
15357 2009-03-01  Bruno Haible  <bruno@clisp.org>
15358
15359         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
15360         least 4.2.
15361
15362 2009-03-01  Eric Blake  <ebb9@byu.net>
15363             Bruno Haible  <bruno@clisp.org>
15364
15365         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
15366         error messages.
15367         * lib/wait-process.c (wait_subprocess): Omit error message about
15368         deadly signal sent to the child of termsigp != NULL.
15369
15370 2009-03-01  Eric Blake  <ebb9@byu.net>
15371
15372         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
15373
15374 2009-03-01  Bruno Haible  <bruno@clisp.org>
15375
15376         Avoid a gcc warning.
15377         * tests/test-sched.c (b): Make global.
15378         Reported by Eric Blake.
15379
15380 2009-01-19  Martin Lambers  <marlam@marlam.de>
15381
15382         Provide POSIX semantics for socket timeout options on W32.
15383         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
15384         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
15385         * modules/setsockopt: Depend on sys_time module for struct timeval.
15386         * modules/getsockopt: Depend on sys_time module for struct timeval.
15387
15388 2009-03-01  Simon Josefsson  <simon@josefsson.org>
15389
15390         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
15391         __USE_GNU, for consistency with netdb.in.h.
15392         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15393
15394 2009-03-01  Bruno Haible  <bruno@clisp.org>
15395
15396         More support for FreeMiNT.
15397         * lib/fseeko.c (rpl_fseeko): Complete last commit.
15398         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15399
15400 2009-03-01  Bruno Haible  <bruno@clisp.org>
15401
15402         More support for FreeMiNT.
15403         * lib/fpurge.c (fpurge): Correct last commit.
15404         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15405
15406 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15407
15408         Fix unportable awk script in vc-list-files.
15409         * build-aux/vc-list-files: In the replacement awk script, use
15410         substr with a second argument of 1, not zero.
15411         Report by Simon Josefsson.
15412
15413 2009-02-28  Bruno Haible  <bruno@clisp.org>
15414
15415         More support for FreeMiNT.
15416         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
15417         to FreeMiNT today.
15418         * lib/fwriting.c (fwriting): Likewise.
15419         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
15420
15421 2009-02-28  Bruno Haible  <bruno@clisp.org>
15422
15423         * tests/test-freadseek.c (main): Disable test beyond end of file on
15424         FreeMiNT.
15425         * tests/test-ftello.c (main): Likewise.
15426         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
15427
15428 2009-02-28  Bruno Haible  <bruno@clisp.org>
15429
15430         Add tentative support for FreeMiNT.
15431         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
15432         * lib/fpurge.c (fpurge): Likewise.
15433         * lib/freadable.c (freadable): Likewise.
15434         * lib/freading.c (freading): Likewise.
15435         * lib/freadptr.c (freadptr): Likewise.
15436         * lib/freadseek.c (freadptrinc): Likewise.
15437         * lib/fseeko.c (rpl_fseeko): Likewise.
15438         * lib/fseterr.c (fseterr): Likewise.
15439         * lib/fwritable.c (fwritable): Likewise.
15440         * lib/fwriting.c (fwriting): Likewise.
15441         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
15442         Hourihane.
15443         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15444
15445 2009-02-28  Bruno Haible  <bruno@clisp.org>
15446
15447         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
15448         SIGCHLD.
15449         Reported by Jim Meyering.
15450
15451 2009-02-28  Bruno Haible  <bruno@clisp.org>
15452
15453         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
15454         Mention the results of these tests on various platforms.
15455         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
15456         order.
15457         * doc/posix-functions/printf.texi: Likewise.
15458         * doc/posix-functions/snprintf.texi: Likewise.
15459         * doc/posix-functions/sprintf.texi: Likewise.
15460         * doc/posix-functions/vfprintf.texi: Likewise.
15461         * doc/posix-functions/vprintf.texi: Likewise.
15462         * doc/posix-functions/vsnprintf.texi: Likewise.
15463         * doc/posix-functions/vsprintf.texi: Likewise.
15464         * doc/glibc-functions/obstack_printf.texi: Likewise.
15465         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
15466
15467 2009-02-28  Bruno Haible  <bruno@clisp.org>
15468
15469         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
15470         Reported by Loïc Minier <lool@dooz.org>.
15471
15472 2009-02-27  Bruno Haible  <bruno@clisp.org>
15473
15474         * gnulib-tool (func_import): Make the sed expression used to create the
15475         sed script for updating the .gitignore file POSIX compliant.
15476         Reported by Eric Blake.
15477
15478 2009-02-27  Bruno Haible  <bruno@clisp.org>
15479
15480         * gnulib-tool (sed): Don't alias as "sed --posix".
15481         Reported by Eric Blake.
15482
15483 2009-02-27  Bruno Haible  <bruno@clisp.org>
15484
15485         Avoid test link errors.
15486         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
15487         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
15488         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
15489         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
15490         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15491
15492 2009-02-27  Bruno Haible  <bruno@clisp.org>
15493
15494         Avoid spurious "(cached)" in configure output.
15495         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
15496         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
15497         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
15498         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
15499         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
15500         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
15501         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
15502         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
15503         Reported by Eric Blake.
15504
15505 2009-02-27  Eric Blake  <ebb9@byu.net>
15506
15507         printf: fix regression in previous patch
15508         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
15509
15510 2009-02-27  Bruno Haible  <bruno@clisp.org>
15511
15512         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
15513         value.
15514         * lib/stdint.in.h: Likewise.
15515         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
15516
15517 2009-02-27  Eric Blake  <ebb9@byu.net>
15518
15519         doc: mention more functions added in cygwin 1.7.0
15520         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
15521         addition.
15522         * doc/posix-functions/open_wmemstream.texi: Likewise.
15523         * doc/posix-functions/wcsnlen.texi: Likewise.
15524         * doc/posix-functions/wcsnrtombs.texi: Likewise.
15525         * doc/posix-functions/wcstod.texi: Likewise.
15526         * doc/posix-functions/wcstof.texi: Likewise.
15527         * doc/posix-functions/wcstoimax.texi: Likewise.
15528         * doc/posix-functions/wcstok.texi: Likewise.
15529         * doc/posix-functions/wcstoumax.texi: Likewise.
15530
15531         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
15532         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
15533         * doc/posix-functions/fprintf.texi: Update.
15534         * doc/posix-functions/printf.texi: Update.
15535         * doc/posix-functions/snprintf.texi: Update.
15536         * doc/posix-functions/sprintf.texi: Update.
15537         * doc/posix-functions/vfprintf.texi: Update.
15538         * doc/posix-functions/vprintf.texi: Update.
15539         * doc/posix-functions/vsnprintf.texi: Update.
15540         * doc/posix-functions/vsprintf.texi: Update.
15541         * doc/glibc-functions/obstack_printf.texi: Update.
15542         * doc/glibc-functions/obstack_vprintf.texi: Update.
15543
15544 2009-02-26  Eric Blake  <ebb9@byu.net>
15545
15546         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
15547         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
15548         compilation bug by using runtime conversion.
15549         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
15550         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
15551         * modules/ceill-tests (Files): Use nan.h.
15552         * modules/floorl-tests (Files): Likewise.
15553         * modules/frexpl-tests (Files): Likewise.
15554         * modules/isnanl-tests (Files): Likewise.
15555         * modules/ldexpl-tests (Files): Likewise.
15556         * modules/roundl-tests (Files): Likewise.
15557         * modules/truncl-tests (Files): Likewise.
15558         * tests/test-ceill.c (main): Use a working NaN.
15559         * tests/test-floorl.c (main): Likewise.
15560         * tests/test-frexpl.c (main): Likewise.
15561         * tests/test-isnan.c (test_long_double): Likewise.
15562         * tests/test-isnanl.h (main): Likewise.
15563         * tests/test-ldexpl.h (main): Likewise.
15564         * tests/test-roundl.h (main): Likewise.
15565         * tests/test-truncl.h (main): Likewise.
15566         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
15567
15568 2009-02-26  Eric Blake  <ebb9@byu.net>
15569             Bruno Haible  <bruno@clisp.org>
15570
15571         Work around a *printf bug with %ls on Solaris.
15572         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
15573         precision is specified, sprintf stops converting the wide string
15574         argument when the number of bytes that have been produced by this
15575         conversion equals or exceeds the precision.
15576         * doc/posix-functions/fprintf.texi: Update.
15577         * doc/posix-functions/printf.texi: Update.
15578         * doc/posix-functions/snprintf.texi: Update.
15579         * doc/posix-functions/sprintf.texi: Update.
15580         * doc/posix-functions/vfprintf.texi: Update.
15581         * doc/posix-functions/vprintf.texi: Update.
15582         * doc/posix-functions/vsnprintf.texi: Update.
15583         * doc/posix-functions/vsprintf.texi: Update.
15584         * doc/glibc-functions/obstack_printf.texi: Update.
15585         * doc/glibc-functions/obstack_vprintf.texi: Update.
15586
15587 2009-02-26  Eric Blake  <ebb9@byu.net>
15588
15589         stdlib: favor compiler check of random.h
15590         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
15591         to avoid an ObjC random.h installed by Swarm.
15592
15593 2009-02-26  Bruno Haible  <bruno@clisp.org>
15594
15595         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
15596         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
15597         Reported by Gary V. Vaughan <gary@gnu.org>.
15598
15599 2009-02-26  Bruno Haible  <bruno@clisp.org>
15600
15601         Fix *printf behaviour regarding the %ls directive.
15602         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
15603         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
15604         NEED_PRINTF_DIRECTIVE_LS.
15605         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
15606         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
15607         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
15608         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
15609         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
15610         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
15611         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
15612         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
15613         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
15614         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
15615         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
15616         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
15617         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
15618         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
15619         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
15620         * doc/posix-functions/fprintf.texi: Update.
15621         * doc/posix-functions/printf.texi: Update.
15622         * doc/posix-functions/snprintf.texi: Update.
15623         * doc/posix-functions/sprintf.texi: Update.
15624         * doc/posix-functions/vfprintf.texi: Update.
15625         * doc/posix-functions/vprintf.texi: Update.
15626         * doc/posix-functions/vsnprintf.texi: Update.
15627         * doc/posix-functions/vsprintf.texi: Update.
15628         * doc/glibc-functions/obstack_printf.texi: Update.
15629         * doc/glibc-functions/obstack_vprintf.texi: Update.
15630         Reported by Eric Blake.
15631
15632 2009-02-25  Bruno Haible  <bruno@clisp.org>
15633
15634         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
15635         with known value.
15636         Reported by Gary V. Vaughan <gary@gnu.org>.
15637
15638 2009-02-25  Bruno Haible  <bruno@clisp.org>
15639
15640         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
15641         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
15642         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
15643         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
15644         Reported by Gary V. Vaughan <gary@gnu.org>.
15645
15646 2009-02-25  Bruno Haible  <bruno@clisp.org>
15647
15648         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
15649         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
15650         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
15651         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
15652         Reported by Gary V. Vaughan <gary@gnu.org>.
15653
15654 2009-02-25  Eric Blake  <ebb9@byu.net>
15655
15656         tests: skip fseek/ftell tests if ungetc is broken
15657         * m4/ungetc.m4: New file.
15658         * modules/fseek-tests: Split test, so ungetc dependency is
15659         separate from rest of test.
15660         * modules/fseeko-tests: Likewise.
15661         * modules/ftell-tests: Likewise.
15662         * modules/ftello-tests: Likewise.
15663         * tests/test-fseek.c (main): Isolate ungetc dependency.
15664         * tests/test-fseeko.c (main): Likewise.
15665         * tests/test-ftell.c (main): Likewise.
15666         * tests/test-ftello.c (main): Likewise.
15667         * tests/test-fseek2.sh: New file.
15668         * tests/test-fseeko2.sh: Likewise.
15669         * tests/test-ftell2.sh: Likewise.
15670         * tests/test-ftello2.sh: Likewise.
15671
15672 2009-02-25  Ondřej Vašík  <ovasik@redhat.com>
15673
15674         test-getaddrinfo: fix usage of skip return code 77
15675         * tests/test-gettaddrinfo.c: Return skip code 77 only
15676         for first occurance of skip (4x77 is not 77)
15677
15678 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
15679
15680         strtod: avoid C99 decl-after-statement
15681         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
15682
15683 2009-02-24  Eric Blake  <ebb9@byu.net>
15684
15685         strtod: detect HP-UX 11.31 bug
15686         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
15687         Reported by Gary V. Vaughan.
15688
15689 2009-02-23  Bruno Haible  <bruno@clisp.org>
15690
15691         Fix invalid read past end of memory block.
15692         * lib/vasnprintf.c (DCHAR_SET): Define.
15693         (local_wcslen): Define only when needed.
15694         (local_strnlen, local_wcsnlen): New functions.
15695         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
15696         directives that involve a conversion ourselves.
15697         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
15698         wcsnlen, mbrtowc, wcrtomb.
15699         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
15700         * tests/test-vasprintf-posix.c (test_function): Likewise.
15701         * tests/test-snprintf-posix.h (test_function): Likewise.
15702         * tests/test-sprintf-posix.h (test_function): Likewise.
15703         Reported by Ben Pfaff <blp@cs.stanford.edu>.
15704
15705 2009-02-22  Bruno Haible  <bruno@clisp.org>
15706
15707         Implement new clarified decomposition of Hangul syllables.
15708         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
15709         of type LTV, return only a pairwise decomposition.
15710         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
15711         Likewise.
15712         * tests/uninorm/test-decomposition.c (main): Updated expected result.
15713         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
15714         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
15715
15716 2009-02-22  Bruno Haible  <bruno@clisp.org>
15717
15718         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
15719         zero-length results and shrink excess allocated memory.
15720         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
15721         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
15722         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
15723         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
15724         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
15725         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
15726         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
15727         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
15728         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
15729         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
15730         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
15731         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
15732
15733 2009-02-21  Bruno Haible  <bruno@clisp.org>
15734
15735         * doc/gnulib.texi: Include safe-alloc.texi earlier.
15736         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
15737         spaces after a period. Put a space between a macro name and its
15738         argument list. Trivial rewordings.
15739         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
15740         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
15741         (main): Return 0 explicitly.
15742
15743 2009-02-21  Bruno Haible  <bruno@clisp.org>
15744
15745         Tests for module 'uninorm/filter'.
15746         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
15747         * modules/uninorm/filter-tests: New file.
15748
15749         New module 'uninorm/filter'.
15750         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
15751         uninorm_filter_flush, uninorm_filter_free): New declarations.
15752         * lib/uninorm/uninorm-filter.c: New file.
15753         * modules/uninorm/filter: New file.
15754
15755 2009-02-21  Bruno Haible  <bruno@clisp.org>
15756
15757         Tests for module 'uninorm/nfkc'.
15758         * tests/uninorm/test-nfkc.c: New file.
15759         * tests/uninorm/test-u8-nfkc.c: New file.
15760         * tests/uninorm/test-u16-nfkc.c: New file.
15761         * tests/uninorm/test-u32-nfkc.c: New file.
15762         * tests/uninorm/test-u32-nfkc-big.sh: New file.
15763         * tests/uninorm/test-u32-nfkc-big.c: New file.
15764         * modules/uninorm/nfkc-tests: New file.
15765
15766         New module 'uninorm/nfkc'.
15767         * lib/uninorm/nfkc.c: New file.
15768         * modules/uninorm/nfkc: New file.
15769
15770         Tests for module 'uninorm/nfkd'.
15771         * tests/uninorm/test-nfkd.c: New file.
15772         * tests/uninorm/test-u8-nfkd.c: New file.
15773         * tests/uninorm/test-u16-nfkd.c: New file.
15774         * tests/uninorm/test-u32-nfkd.c: New file.
15775         * tests/uninorm/test-u32-nfkd-big.sh: New file.
15776         * tests/uninorm/test-u32-nfkd-big.c: New file.
15777         * modules/uninorm/nfkd-tests: New file.
15778
15779         New module 'uninorm/nfkd'.
15780         * lib/uninorm/nfkd.c: New file.
15781         * modules/uninorm/nfkd: New file.
15782
15783         Tests for module 'uninorm/nfc'.
15784         * tests/uninorm/test-nfc.c: New file.
15785         * tests/uninorm/test-u8-nfc.c: New file.
15786         * tests/uninorm/test-u16-nfc.c: New file.
15787         * tests/uninorm/test-u32-nfc.c: New file.
15788         * tests/uninorm/test-u32-nfc-big.sh: New file.
15789         * tests/uninorm/test-u32-nfc-big.c: New file.
15790         * modules/uninorm/nfc-tests: New file.
15791
15792         New module 'uninorm/nfc'.
15793         * lib/uninorm/nfc.c: New file.
15794         * modules/uninorm/nfc: New file.
15795
15796         Tests for module 'uninorm/nfd'.
15797         * tests/uninorm/test-nfd.c: New file.
15798         * tests/uninorm/test-u8-nfd.c: New file.
15799         * tests/uninorm/test-u16-nfd.c: New file.
15800         * tests/uninorm/test-u32-nfd.c: New file.
15801         * tests/uninorm/test-u32-nfd-big.sh: New file.
15802         * tests/uninorm/test-u32-nfd-big.c: New file.
15803         * tests/uninorm/test-u32-normalize-big.h: New file.
15804         * tests/uninorm/test-u32-normalize-big.c: New file.
15805         * tests/uninorm/NormalizationTest.txt: New file, created from
15806         Unicode 5.1.0 NormalizationTest.txt.
15807         * modules/uninorm/nfd-tests: New file.
15808
15809         New module 'uninorm/nfd'.
15810         * lib/uninorm/nfd.c: New file.
15811         * modules/uninorm/nfd: New file.
15812
15813         New module 'uninorm/u32-normalize'.
15814         * lib/uninorm/u32-normalize.c: New file.
15815         * modules/uninorm/u32-normalize: New file.
15816
15817         New module 'uninorm/u16-normalize'.
15818         * lib/uninorm/u16-normalize.c: New file.
15819         * modules/uninorm/u16-normalize: New file.
15820
15821         New module 'uninorm/u8-normalize'.
15822         * lib/uninorm/u8-normalize.c: New file.
15823         * lib/uninorm/normalize-internal.h: New file.
15824         * lib/uninorm/u-normalize-internal.h: New file.
15825         * modules/uninorm/u8-normalize: New file.
15826
15827         New module 'uninorm/decompose-internal'.
15828         * lib/uninorm/decompose-internal.c: New file.
15829         * modules/uninorm/decompose-internal: New file.
15830
15831         Tests for module 'uninorm/composition'.
15832         * tests/uninorm/test-composition.c: New file.
15833         * modules/uninorm/composition-tests: New file.
15834
15835         New module 'uninorm/composition'.
15836         * lib/uninorm/composition.c: New file.
15837         * lib/uninorm/composition-table.gperf: New file, generated by
15838         gen-uni-tables.
15839         * modules/uninorm/composition: New file.
15840
15841         Tests for module 'uninorm/compat-decomposition'.
15842         * tests/uninorm/test-compat-decomposition.c: New file.
15843         * modules/uninorm/compat-decomposition-tests: New file.
15844
15845         New module 'uninorm/compat-decomposition'.
15846         * lib/uninorm/decompose-internal.h: New file.
15847         * lib/uninorm/compat-decomposition.c: New file.
15848         * modules/uninorm/compat-decomposition: New file.
15849
15850         Tests for module 'uninorm/canonical-decomposition'.
15851         * tests/uninorm/test-canonical-decomposition.c: New file.
15852         * modules/uninorm/canonical-decomposition-tests: New file.
15853
15854         New module 'uninorm/canonical-decomposition'.
15855         * lib/uninorm/canonical-decomposition.c: New file.
15856         * modules/uninorm/canonical-decomposition: New file.
15857
15858         Tests for module 'uninorm/decomposition'.
15859         * tests/uninorm/test-decomposition.c: New file.
15860         * modules/uninorm/decomposition-tests: New file.
15861
15862         New module 'uninorm/decomposition'.
15863         * lib/uninorm/decomposition.c: New file.
15864         * modules/uninorm/decomposition: New file.
15865
15866         New module 'uninorm/decomposition-table'.
15867         * lib/uninorm/decomposition-table.h: New file.
15868         * lib/uninorm/decomposition-table.c: New file.
15869         * lib/uninorm/decomposition-table1.h: New file, generated by
15870         gen-uni-tables.
15871         * lib/uninorm/decomposition-table2.h: New file, generated by
15872         gen-uni-tables.
15873         * modules/uninorm/decomposition-table: New file.
15874
15875         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
15876         (UC_DECOMP_*): New enumeration items.
15877         (get_decomposition): New function.
15878         (struct decomp_table): New type.
15879         (output_decomposition, output_decomposition_tables): New functions.
15880         (unicode_composition_exclusions): New variable.
15881         (fill_composition_exclusions, debug_output_composition_tables): New
15882         functions.
15883         (main): Accept one more argument. Invoke fill_composition_exclusions.
15884         Output decomposition and composition tables.
15885
15886         New module 'uninorm/base'.
15887         * lib/uninorm.h: New file.
15888         * lib/unictype.h: Update comment.
15889         * modules/uninorm/base: New file.
15890
15891 2009-02-21  David Lutterkort  <lutter@redhat.com>
15892
15893         Tests for module 'safe-alloc'.
15894         * tests/test-safe-alloc.c: New file.
15895         * modules/safe-alloc-tests: New file.
15896
15897         New module 'safe-alloc'.
15898         * lib/safe-alloc.h: New file.
15899         * lib/safe-alloc.c: New file.
15900         * m4/safe-alloc.m4: New file.
15901         * modules/safe-alloc: New file.
15902         * doc/safe-alloc.texi: New file.
15903         * doc/gnulib.texi: Include it.
15904         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
15905         safe-alloc.
15906
15907 2009-02-18  Bruno Haible  <bruno@clisp.org>
15908
15909         Fix link error on non-glibc systems.
15910         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
15911         variable.
15912         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15913
15914 2009-02-18  Jim Meyering  <meyering@redhat.com>
15915
15916         fts: avoid used-uninitialized error due to recent change
15917         * lib/fts.c (fts_read): Guard uses of the new member,
15918         parent->fts_n_dirs_remaining, since it's not relevant for
15919         the parent of a directory specified on the command-line.
15920
15921 2009-02-17  James Youngman  <jay@gnu.org>
15922             Bruno Haible  <bruno@clisp.org>
15923
15924         * m4/include_next.m4: Reformulate comment.
15925
15926 2009-02-16  Jim Meyering  <meyering@redhat.com>
15927
15928         fts: add #if guards so that the fts_lgpl module still builds
15929         * lib/fts.c: Guard just-added hash-table-using parts with
15930         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
15931         Reported by Simon Josefsson.
15932
15933 2009-02-15  Bruno Haible  <bruno@clisp.org>
15934
15935         * modules/array-mergesort-tests: New file.
15936         * tests/test-array-mergesort.c: New file.
15937
15938         New module 'array-mergesort'.
15939         * modules/array-mergesort: New file.
15940         * lib/array-mergesort.h: New file.
15941
15942 2009-02-15  Bruno Haible  <bruno@clisp.org>
15943
15944         Fix 2009-02-07 commit.
15945         * lib/gen-uni-tables.c (output_predicate, output_category,
15946         output_combclass, output_bidi_category, output_decimal_digit,
15947         output_digit, output_numeric, output_mirror, output_scripts,
15948         output_ident_category, output_simple_mapping): Fix format directives.
15949         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
15950
15951 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
15952
15953         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
15954         fixes are available from IBM.
15955
15956 2009-02-13  Jim Meyering  <meyering@redhat.com>
15957
15958         fts: arrange not to stat non-directories in more cases
15959         This makes GNU find (when it doesn't need to stat each file)
15960         *much* more efficient at traversing reiserfs file systems.
15961         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
15962         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
15963         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
15964         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
15965         (leaf_optimization_applies): New function.
15966         (LCO_hash, LCO_compare): New helper functions.
15967         (link_count_optimize_ok): New function.
15968         (fts_stat): Initialize new member (if dir).
15969         (fts_read): Decrement parent's fts_n_dirs_remaining count if
15970         we've just stat'ed a directory.  Skip the stat call when possible.
15971         ---
15972         Note this AFS-related exchange:
15973         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
15974         and note find's pioctl call in find/fstype.c.
15975         But that is necessary only if you want to enable the
15976         optimization for AFS, and for now, I don't.
15977
15978         fts: move a function definition "up" (no semantic change)
15979         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
15980         "up" to precede upcoming use of a related function.
15981
15982 2009-02-11  Jim Meyering  <meyering@redhat.com>
15983
15984         fts: correct internal computation of nlinks (optimization-related)
15985         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
15986         whether the current entry is a directory, so don't test it.
15987
15988 2009-02-10  Bruno Haible  <bruno@clisp.org>
15989
15990         Tests for module 'uniwbrk/ulc-wordbreaks'.
15991         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
15992         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
15993         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
15994
15995         Tests for module 'uniwbrk/u32-wordbreaks'.
15996         * modules/uniwbrk/u32-wordbreaks-tests: New file.
15997         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
15998
15999         Tests for module 'uniwbrk/u16-wordbreaks'.
16000         * modules/uniwbrk/u16-wordbreaks-tests: New file.
16001         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
16002
16003         Tests for module 'uniwbrk/u8-wordbreaks'.
16004         * modules/uniwbrk/u8-wordbreaks-tests: New file.
16005         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
16006
16007 2009-02-10  Bruno Haible  <bruno@clisp.org>
16008
16009         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
16010         property.
16011         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
16012         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
16013         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
16014
16015 2009-02-10  Simon Josefsson  <simon@josefsson.org>
16016
16017         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
16018         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
16019
16020 2009-02-10  Bruno Haible  <bruno@clisp.org>
16021
16022         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
16023         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
16024         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
16025         * lib/unilbrk/u8-possible-linebreaks.c: Update.
16026         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
16027         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
16028
16029 2009-02-09  Simon Josefsson  <simon@josefsson.org>
16030
16031         * lib/sockets.h (gl_fd_to_handle): New function.
16032
16033         * tests/test-sockets.c: Call gl_fd_to_handle.
16034
16035 2009-02-09  Bruno Haible  <bruno@clisp.org>
16036
16037         * doc/havelib.texi: Document the conventions on bi-arch systems.
16038
16039 2009-02-08  Bruno Haible  <bruno@clisp.org>
16040
16041         Document the AC_LIB_LINKFLAGS macro.
16042         * doc/havelib.texi: New file, mostly written on 2005-05-24.
16043         * doc/gnulib.texi: Include it.
16044
16045 2009-02-08  Bruno Haible  <bruno@clisp.org>
16046
16047         Fix wrong order of sections, compared to TOC.
16048         * doc/gnulib.texi: Include relocatable-maint.texi after the
16049         "Regular expressions" node, not before.
16050
16051 2009-02-08  Bruno Haible  <bruno@clisp.org>
16052
16053         Tests for module 'unicase/totitle'.
16054         * modules/unicase/totitle-tests: New file.
16055
16056         Tests for module 'unicase/tolower'.
16057         * modules/unicase/tolower-tests: New file.
16058
16059         Tests for module 'unicase/toupper'.
16060         * modules/unicase/toupper-tests: New file.
16061         * tests/unicase/test-mapping-part1.h: New file.
16062         * tests/unicase/test-mapping-part2.h: New file.
16063
16064         New module 'unicase/totitle'.
16065         * modules/unicase/totitle: New file.
16066         * lib/unicase/totitle.c: New file.
16067
16068         New module 'unicase/tolower'.
16069         * modules/unicase/tolower: New file.
16070         * lib/unicase/tolower.c: New file.
16071
16072         New module 'unicase/toupper'.
16073         * modules/unicase/toupper: New file.
16074         * lib/unicase/toupper.c: New file.
16075         * lib/unicase/simple-mapping.h: New file.
16076
16077         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
16078         (mapping_table): New structure.
16079         (output_simple_mapping): New function.
16080         (main): Invoke output_simple_mapping_test and output_simple_mapping.
16081         * modules/gen-uni-tables (Description): Update.
16082         * lib/unicase/toupper.h: New file, automatically generated by
16083         gen-uni-tables.
16084         * lib/unicase/tolower.h: New file, automatically generated by
16085         gen-uni-tables.
16086         * lib/unicase/totitle.h: New file, automatically generated by
16087         gen-uni-tables.
16088         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
16089         gen-uni-tables.
16090         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
16091         gen-uni-tables.
16092         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
16093         gen-uni-tables.
16094
16095         New module 'unicase/base'.
16096         * modules/unicase/base: New file.
16097         * lib/unicase.h: New file.
16098
16099 2009-02-08  Bruno Haible  <bruno@clisp.org>
16100
16101         New module 'uniwbrk/ulc-wordbreaks'.
16102         * modules/uniwbrk/ulc-wordbreaks: New file.
16103         * lib/uniwbrk/ulc-wordbreaks.c: New file.
16104
16105         New module 'uniwbrk/u32-wordbreaks'.
16106         * modules/uniwbrk/u32-wordbreaks: New file.
16107         * lib/uniwbrk/u32-wordbreaks.c: New file.
16108
16109         New module 'uniwbrk/u16-wordbreaks'.
16110         * modules/uniwbrk/u16-wordbreaks: New file.
16111         * lib/uniwbrk/u16-wordbreaks.c: New file.
16112
16113         New module 'uniwbrk/u8-wordbreaks'.
16114         * modules/uniwbrk/u8-wordbreaks: New file.
16115         * lib/uniwbrk/u8-wordbreaks.c: New file.
16116         * lib/uniwbrk/u-wordbreaks.h: New file.
16117
16118         New module 'uniwbrk/table'.
16119         * modules/uniwbrk/table: New file.
16120         * lib/uniwbrk/wbrktable.h: New file.
16121         * lib/uniwbrk/wbrktable.c: New file.
16122
16123         New module 'uniwbrk/wordbreak-property'.
16124         * modules/uniwbrk/wordbreak-property: New file.
16125         * lib/uniwbrk/wordbreak-property.c: New file.
16126
16127         * lib/gen-uni-tables.c (WBP_*): New enum items.
16128         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
16129         (unicode_org_wbp): New variable.
16130         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
16131         New functions.
16132         (wbp_table): New structure.
16133         (output_wbp, output_wbrk_tables): New functions.
16134         (main): Accept additional argument. Invoke fill_org_wbp,
16135         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
16136         output_wbrk_tables.
16137         * modules/gen-uni-tables (Description): Update.
16138         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
16139         gen-uni-tables.
16140
16141         New module 'uniwbrk/base'.
16142         * modules/uniwbrk/base: New file.
16143         * lib/uniwbrk.h: New file.
16144
16145 2009-02-08  Bruno Haible  <bruno@clisp.org>
16146
16147         Update to Unicode 5.1.0.
16148         * lib/gen-uni-tables.c (is_property_alphabetic): Include
16149         U+2185..U+2188.
16150         (is_property_default_ignorable_code_point): Don't include characters
16151         of category Cc or Cs and not-a-characters.
16152         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
16153         U+0D79, U+109E, U+109F, U+A60C.
16154         * lib/unictype/bidi_of.h: Regenerated.
16155         * lib/unictype/blocks.h: Regenerated.
16156         * lib/unictype/categ_C.h: Regenerated.
16157         * lib/unictype/categ_Cf.h: Regenerated.
16158         * lib/unictype/categ_Cn.h: Regenerated.
16159         * lib/unictype/categ_L.h: Regenerated.
16160         * lib/unictype/categ_Ll.h: Regenerated.
16161         * lib/unictype/categ_Lm.h: Regenerated.
16162         * lib/unictype/categ_Lo.h: Regenerated.
16163         * lib/unictype/categ_Lu.h: Regenerated.
16164         * lib/unictype/categ_M.h: Regenerated.
16165         * lib/unictype/categ_Mc.h: Regenerated.
16166         * lib/unictype/categ_Me.h: Regenerated.
16167         * lib/unictype/categ_Mn.h: Regenerated.
16168         * lib/unictype/categ_N.h: Regenerated.
16169         * lib/unictype/categ_Nd.h: Regenerated.
16170         * lib/unictype/categ_Nl.h: Regenerated.
16171         * lib/unictype/categ_No.h: Regenerated.
16172         * lib/unictype/categ_P.h: Regenerated.
16173         * lib/unictype/categ_Pd.h: Regenerated.
16174         * lib/unictype/categ_Pe.h: Regenerated.
16175         * lib/unictype/categ_Pf.h: Regenerated.
16176         * lib/unictype/categ_Pi.h: Regenerated.
16177         * lib/unictype/categ_Po.h: Regenerated.
16178         * lib/unictype/categ_Ps.h: Regenerated.
16179         * lib/unictype/categ_S.h: Regenerated.
16180         * lib/unictype/categ_Sk.h: Regenerated.
16181         * lib/unictype/categ_Sm.h: Regenerated.
16182         * lib/unictype/categ_So.h: Regenerated.
16183         * lib/unictype/categ_of.h: Regenerated.
16184         * lib/unictype/combining.h: Regenerated.
16185         * lib/unictype/ctype_alnum.h: Regenerated.
16186         * lib/unictype/ctype_alpha.h: Regenerated.
16187         * lib/unictype/ctype_graph.h: Regenerated.
16188         * lib/unictype/ctype_lower.h: Regenerated.
16189         * lib/unictype/ctype_print.h: Regenerated.
16190         * lib/unictype/ctype_punct.h: Regenerated.
16191         * lib/unictype/ctype_upper.h: Regenerated.
16192         * lib/unictype/decdigit.h: Regenerated.
16193         * lib/unictype/digit.h: Regenerated.
16194         * lib/unictype/mirror.h: Regenerated.
16195         * lib/unictype/numeric.h: Regenerated.
16196         * lib/unictype/pr_alphabetic.h: Regenerated.
16197         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
16198         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
16199         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
16200         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
16201         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
16202         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
16203         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
16204         * lib/unictype/pr_combining.h: Regenerated.
16205         * lib/unictype/pr_dash.h: Regenerated.
16206         * lib/unictype/pr_decimal_digit.h: Regenerated.
16207         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
16208         * lib/unictype/pr_deprecated.h: Regenerated.
16209         * lib/unictype/pr_diacritic.h: Regenerated.
16210         * lib/unictype/pr_extender.h: Regenerated.
16211         * lib/unictype/pr_format_control.h: Regenerated.
16212         * lib/unictype/pr_grapheme_base.h: Regenerated.
16213         * lib/unictype/pr_grapheme_extend.h: Regenerated.
16214         * lib/unictype/pr_grapheme_link.h: Regenerated.
16215         * lib/unictype/pr_id_continue.h: Regenerated.
16216         * lib/unictype/pr_id_start.h: Regenerated.
16217         * lib/unictype/pr_ideographic.h: Regenerated.
16218         * lib/unictype/pr_ignorable_control.h: Regenerated.
16219         * lib/unictype/pr_lowercase.h: Regenerated.
16220         * lib/unictype/pr_math.h: Regenerated.
16221         * lib/unictype/pr_numeric.h: Regenerated.
16222         * lib/unictype/pr_other_alphabetic.h: Regenerated.
16223         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
16224         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
16225         * lib/unictype/pr_other_id_continue.h: Regenerated.
16226         * lib/unictype/pr_other_lowercase.h: Regenerated.
16227         * lib/unictype/pr_other_math.h: Regenerated.
16228         * lib/unictype/pr_punctuation.h: Regenerated.
16229         * lib/unictype/pr_sentence_terminal.h: Regenerated.
16230         * lib/unictype/pr_soft_dotted.h: Regenerated.
16231         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
16232         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
16233         * lib/unictype/pr_unified_ideograph.h: Regenerated.
16234         * lib/unictype/pr_uppercase.h: Regenerated.
16235         * lib/unictype/pr_xid_continue.h: Regenerated.
16236         * lib/unictype/pr_xid_start.h: Regenerated.
16237         * lib/unictype/pr_zero_width.h: Regenerated.
16238         * lib/unictype/scripts.h: Regenerated.
16239         * lib/unictype/scripts_byname.gperf: Regenerated.
16240         * lib/unictype/sy_java_ident.h: Regenerated.
16241         * lib/unilbrk/lbrkprop1.h: Regenerated.
16242         * lib/unilbrk/lbrkprop2.h: Regenerated.
16243         * tests/unictype/test-categ_C.c: Regenerated.
16244         * tests/unictype/test-categ_Cf.c: Regenerated.
16245         * tests/unictype/test-categ_Cn.c: Regenerated.
16246         * tests/unictype/test-categ_L.c: Regenerated.
16247         * tests/unictype/test-categ_Ll.c: Regenerated.
16248         * tests/unictype/test-categ_Lm.c: Regenerated.
16249         * tests/unictype/test-categ_Lo.c: Regenerated.
16250         * tests/unictype/test-categ_Lu.c: Regenerated.
16251         * tests/unictype/test-categ_M.c: Regenerated.
16252         * tests/unictype/test-categ_Mc.c: Regenerated.
16253         * tests/unictype/test-categ_Me.c: Regenerated.
16254         * tests/unictype/test-categ_Mn.c: Regenerated.
16255         * tests/unictype/test-categ_N.c: Regenerated.
16256         * tests/unictype/test-categ_Nd.c: Regenerated.
16257         * tests/unictype/test-categ_Nl.c: Regenerated.
16258         * tests/unictype/test-categ_No.c: Regenerated.
16259         * tests/unictype/test-categ_P.c: Regenerated.
16260         * tests/unictype/test-categ_Pd.c: Regenerated.
16261         * tests/unictype/test-categ_Pe.c: Regenerated.
16262         * tests/unictype/test-categ_Pf.c: Regenerated.
16263         * tests/unictype/test-categ_Pi.c: Regenerated.
16264         * tests/unictype/test-categ_Po.c: Regenerated.
16265         * tests/unictype/test-categ_Ps.c: Regenerated.
16266         * tests/unictype/test-categ_S.c: Regenerated.
16267         * tests/unictype/test-categ_Sk.c: Regenerated.
16268         * tests/unictype/test-categ_Sm.c: Regenerated.
16269         * tests/unictype/test-categ_So.c: Regenerated.
16270         * tests/unictype/test-ctype_alnum.c: Regenerated.
16271         * tests/unictype/test-ctype_alpha.c: Regenerated.
16272         * tests/unictype/test-ctype_graph.c: Regenerated.
16273         * tests/unictype/test-ctype_lower.c: Regenerated.
16274         * tests/unictype/test-ctype_print.c: Regenerated.
16275         * tests/unictype/test-ctype_punct.c: Regenerated.
16276         * tests/unictype/test-ctype_upper.c: Regenerated.
16277         * tests/unictype/test-decdigit.h: Regenerated.
16278         * tests/unictype/test-digit.h: Regenerated.
16279         * tests/unictype/test-numeric.h: Regenerated.
16280         * tests/unictype/test-pr_alphabetic.c: Regenerated.
16281         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
16282         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
16283         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
16284         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
16285         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
16286         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
16287         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
16288         * tests/unictype/test-pr_combining.c: Regenerated.
16289         * tests/unictype/test-pr_dash.c: Regenerated.
16290         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
16291         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
16292         * tests/unictype/test-pr_deprecated.c: Regenerated.
16293         * tests/unictype/test-pr_diacritic.c: Regenerated.
16294         * tests/unictype/test-pr_extender.c: Regenerated.
16295         * tests/unictype/test-pr_format_control.c: Regenerated.
16296         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
16297         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
16298         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
16299         * tests/unictype/test-pr_id_continue.c: Regenerated.
16300         * tests/unictype/test-pr_id_start.c: Regenerated.
16301         * tests/unictype/test-pr_ideographic.c: Regenerated.
16302         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
16303         * tests/unictype/test-pr_lowercase.c: Regenerated.
16304         * tests/unictype/test-pr_math.c: Regenerated.
16305         * tests/unictype/test-pr_numeric.c: Regenerated.
16306         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
16307         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
16308         Regenerated.
16309         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
16310         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
16311         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
16312         * tests/unictype/test-pr_other_math.c: Regenerated.
16313         * tests/unictype/test-pr_punctuation.c: Regenerated.
16314         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
16315         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
16316         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
16317         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
16318         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
16319         * tests/unictype/test-pr_uppercase.c: Regenerated.
16320         * tests/unictype/test-pr_xid_continue.c: Regenerated.
16321         * tests/unictype/test-pr_xid_start.c: Regenerated.
16322         * tests/unictype/test-pr_zero_width.c: Regenerated.
16323
16324         Update to Unicode 5.1.0.
16325         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
16326         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
16327         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
16328         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
16329         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
16330         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
16331         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
16332         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
16333         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
16334         (nonspacing_table_ind): Update.
16335         * tests/uniwidth/test-uc_width2.sh: Update expected result.
16336
16337         Update to Unicode 5.1.0.
16338         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
16339         code transform.
16340         * lib/uniname/uniname.c (unicode_character_name,
16341         unicode_name_character): Add the range 0x1Fxxx to the code transform.
16342         * lib/uniname/uninames.h: Regenerated.
16343         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
16344
16345 2009-02-07  Bruno Haible  <bruno@clisp.org>
16346
16347         Merge gen-ctype and gen-lbrk into a single program.
16348         * lib/gen-uni-tables.c: New file, incorporating
16349         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
16350         Add directory prefixes to the names of the generated files.
16351         * lib/unictype/gen-ctype.c: Remove file.
16352         * lib/unilbrk/gen-lbrk.c: Remove file.
16353         * modules/gen-uni-tables: New file.
16354         * modules/unictype/gen-ctype: Remove file.
16355         * modules/unilbrk/gen-lbrk: Remove file.
16356
16357 2009-02-07  Bruno Haible  <bruno@clisp.org>
16358
16359         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
16360
16361         New module 'unistr/u32-strcoll'.
16362         * modules/unistr/u32-strcoll: New file.
16363         * lib/unistr/u32-strcoll.c: New file.
16364
16365         New module 'unistr/u16-strcoll'.
16366         * modules/unistr/u16-strcoll: New file.
16367         * lib/unistr/u16-strcoll.c: New file.
16368
16369         New module 'unistr/u8-strcoll'.
16370         * modules/unistr/u8-strcoll: New file.
16371         * lib/unistr/u8-strcoll.c: New file.
16372         * lib/unistr/u-strcoll.h: New file.
16373
16374 2009-02-07  Bruno Haible  <bruno@clisp.org>
16375
16376         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
16377         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
16378         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
16379         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
16380         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
16381         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
16382
16383 2009-02-07  Bruno Haible  <bruno@clisp.org>
16384
16385         Make 64-bit clean.
16386         * lib/unictype/gen-ctype.c (output_predicate, output_category,
16387         output_combclass, output_bidi_category, output_decimal_digit,
16388         output_digit, output_numeric, output_mirror, output_scripts,
16389         output_ident_category): Use proper width specifier in format strings.
16390
16391 2009-02-07  Bruno Haible  <bruno@clisp.org>
16392
16393         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
16394         failure behaviour.
16395
16396 2009-02-07  Jim Meyering  <meyering@redhat.com>
16397
16398         regex: avoid compilation failure with upcoming gcc-4.4
16399         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
16400         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
16401         "... error: integer overflow in preprocessor expression".
16402
16403 2009-02-05  Ben Pfaff  <blp@gnu.org>
16404
16405         Fix link errors on Windows when close module is used.
16406         * modules/close: Add $(LIB_CLOSE) to Link section.
16407         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
16408         $(LIB_CLOSE) on Windows.
16409
16410 2009-02-05  Jim Meyering  <meyering@redhat.com>
16411
16412         still avoid unused-parameter warnings, but do it cleanly
16413         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
16414         (get_fs_usage): Cast to void instead.
16415         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
16416         (dev_from_mount_options, read_file_system_list): Cast to void.
16417         Prompted by Bruno Haible.
16418
16419 2009-02-04  Jim Meyering  <meyering@redhat.com>
16420
16421         fsusage.c: correct copyright year
16422         * lib/fsusage.c: Reflect year in which the change is pushed into
16423
16424         avoid misc. warnings
16425         * lib/fsusage.c (UNUSED_PARAM): Define.
16426         (get_fs_usage): Mark parameter "disk" as unused.
16427         * lib/getugroups.c (getgrent): Use "void" in prototype.
16428         * lib/mountlist.c: Mark unused parameters.
16429         (read_file_system_list): Declare a local with "const".
16430         * lib/nanosleep.c (getnow): Declare static.
16431         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
16432
16433         dirfd: set errno upon failure
16434         * lib/dirfd.c: Include <errno.h>.
16435         Set errno to ENOTSUP when returning -1.
16436         * modules/dirfd (Depends-on): Add errno.
16437         Suggested by John Kodis <kodis@comcast.net>.
16438
16439 2009-02-01  Bruno Haible  <bruno@clisp.org>
16440
16441         Don't assume sizeof (long) >= sizeof (void *).
16442         * lib/memcmp.c: Include stdint.h.
16443         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
16444         srcp2 to 'const byte *'.
16445         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
16446         types to uintptr_t.
16447         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
16448         * modules/memcmp (Depends-on): Add stdint.
16449         Reported by Ozkan Sezer <sezeroz@gmail.com>.
16450
16451 2009-01-30  Eric Blake  <ebb9@byu.net>
16452
16453         fix more require-before-expand issues
16454         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
16455         expand, AC_PROG_AWK.
16456         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
16457
16458 2009-01-28  Eric Blake  <ebb9@byu.net>
16459
16460         version-etc: use consistent URL formatting
16461         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
16462         Improve formatting.  Use fputs for string without %.
16463
16464 2009-01-28  Jim Meyering  <meyering@redhat.com>
16465
16466         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
16467         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
16468         "underquoted definition of NAME" from autoconf-2.59.
16469
16470 2009-01-28  Bruno Haible  <bruno@clisp.org>
16471
16472         * doc/gnulib.texi: Add "Obsolete modules" to index.
16473
16474 2009-01-28  Jim Meyering  <meyering@redhat.com>
16475
16476         useless-if-before-free: recognize more variants
16477         * build-aux/useless-if-before-free: Also recognize e.g.,
16478         if (NULL != p) free (p);
16479
16480 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
16481
16482         test-getaddrinfo: skip (don't fail) this test when there's no network
16483         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
16484         on the presumption that it means you lack network access.
16485
16486 2009-01-26  Jim Meyering  <meyering@redhat.com>
16487
16488         fflush: avoid warnings on modern systems
16489         * lib/fflush.c (rpl_fflush): Move declarations of locals,
16490         pos and result, into scopes where they're used.
16491
16492 2009-01-26  Eric Blake  <ebb9@byu.net>
16493
16494         Silence warning reintroduced by recent extensions patch.
16495         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
16496         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
16497         autoconf.
16498
16499         Backport improved autoconf semantics of AC_DEFUN_ONCE.
16500         * m4/00gnulib.m4: New file.
16501         * gnulib-tool (func_get_filelist): Always use it.
16502         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
16503         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
16504
16505 2009-01-25  Bruno Haible  <bruno@clisp.org>
16506
16507         Make test-quotearg work on MacOS X and AIX.
16508         * tests/test-quotearg.sh: New file.
16509         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
16510         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
16511         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
16512         include <libintl.h>.
16513         (fake_locale): Remove variable.
16514         (gettext, dgettext, dcgettext): Remove functions.
16515         (main): Instead of setting a fake locale, set a real locale. Call
16516         textdomain and bindtextdomain.
16517         * modules/quotearg-tests (Files): Add the new files.
16518         (Depends-on): Add gettext, setenv, unsetenv.
16519         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
16520         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
16521         Augment TESTS_ENVIRONMENT.
16522
16523 2009-01-25  Bruno Haible  <bruno@clisp.org>
16524
16525         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
16526         fr_FR.ISO8859-1 locale on MacOS X.
16527         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
16528         ja_JP.eucJP locale on MacOS X.
16529         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
16530         zh_CN.GB18030 locale on MacOS X.
16531
16532 2009-01-25  Bruno Haible  <bruno@clisp.org>
16533
16534         Avoid link errors on MacOS X 10.3.
16535         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
16536         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
16537
16538 2009-01-25  Bruno Haible  <bruno@clisp.org>
16539
16540         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
16541         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
16542         * modules/pipe (Files): Remove m4/posix_spawn.m4.
16543         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
16544         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
16545         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
16546         posix_spawnattr_init, posix_spawnattr_setsigmask,
16547         posix_spawnattr_setflags, posix_spawnattr_destroy.
16548
16549         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
16550         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
16551         * modules/execute (Files): Remove m4/posix_spawn.m4.
16552         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
16553         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
16554         posix_spawnattr_init, posix_spawnattr_setsigmask,
16555         posix_spawnattr_setflags, posix_spawnattr_destroy.
16556
16557 2009-01-25  Bruno Haible  <bruno@clisp.org>
16558
16559         * lib/glthread/threadlib.c: Include <stdlib.h>.
16560
16561 2009-01-25  Bruno Haible  <bruno@clisp.org>
16562
16563         * lib/glthread/threadlib.c (dummy): New declaration.
16564
16565 2009-01-25  Bruno Haible  <bruno@clisp.org>
16566
16567         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
16568         multibyte characters also for the GB18030 encoding. Don't crash when
16569         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
16570
16571 2009-01-25  Bruno Haible  <bruno@clisp.org>
16572
16573         Avoid redefining 'struct random_data' on OSF/1 5.1.
16574         * lib/stdlib.in.h: Include <random.h> if it exists.
16575         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
16576         HAVE_RANDOM_H. Include <random.h> when testing whether
16577         'struct random_data' exists.
16578         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
16579
16580 2009-01-25  Bruno Haible  <bruno@clisp.org>
16581
16582         Don't install charset.alias on MacOS X >= 10.3.
16583         * lib/localcharset.c (DARWIN7): New macro.
16584         (get_charset_aliases): Hardcode the result for Darwin7.
16585         * modules/localcharset (install-exec-local): Don't install
16586         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
16587
16588 2009-01-25  Bruno Haible  <bruno@clisp.org>
16589
16590         Don't install charset.alias on mingw and Cygwin.
16591         * modules/localcharset (install-exec-local): Don't install
16592         charset.alias on mingw and Cygwin, if the file does not yet exist.
16593         The result for these platforms is hardcoded in localcharset.c.
16594
16595 2009-01-25  Bruno Haible  <bruno@clisp.org>
16596
16597         Make it possible again to use AC_GNU_SOURCE together with gnulib.
16598         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
16599         before requiring AC_USE_SYSTEM_EXTENSIONS.
16600
16601 2009-01-25  Jim Meyering  <meyering@redhat.com>
16602
16603         c-strtod: avoid warnings
16604         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
16605         "assignment discards qualifiers from pointer target type" warnings.
16606
16607 2009-01-24  Bruno Haible  <bruno@clisp.org>
16608
16609         Add support for non-UTF-8 locales on MacOS X.
16610         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
16611         canonical encodings. For Darwin 7 and newer, don't map traditional
16612         encodings to UTF-8.
16613         Reported by Vincent Lefevre <vincent@vinc17.org>
16614         at <http://savannah.gnu.org/bugs/?25235>.
16615
16616 2009-01-24  Bruno Haible  <bruno@clisp.org>
16617
16618         * doc/gnulib.texi (Obsolete modules): New section.
16619         Reported by Mike Frysinger <vapier@gentoo.org>.
16620
16621 2009-01-24  Bruno Haible  <bruno@clisp.org>
16622
16623         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
16624         (%.dvi): New rule.
16625
16626 2009-01-24  Bruno Haible  <bruno@clisp.org>
16627
16628         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
16629         Reported by Eric Blake.
16630
16631 2009-01-24  Bruno Haible  <bruno@clisp.org>
16632
16633         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
16634         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
16635         Reported by Gary V. Vaughan <gary@gnu.org>.
16636
16637 2009-01-24  Bruno Haible  <bruno@clisp.org>
16638
16639         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
16640
16641 2009-01-23  Bruno Haible  <bruno@clisp.org>
16642
16643         Make c-strtod, c-strtold usable in libraries.
16644         * lib/c-strtod.c: Include string.h instead of xalloc.h.
16645         (C_STRTOD): Call strdup instead of xstrdup.
16646         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
16647         * modules/c-strtold (Depends-on): Likewise.
16648         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
16649         * NEWS: Mention the change.
16650         Reported by Michael Gold <mgold@ncf.ca>.
16651
16652 2009-01-23  Jim Meyering  <meyering@redhat.com>
16653
16654         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
16655         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
16656         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
16657
16658 2009-01-23  Simon Josefsson  <simon@josefsson.org>
16659
16660         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
16661         GNU CoreUtils.
16662         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
16663         * modules/version-etc (Description): Update.
16664
16665 2009-01-22  Bruno Haible  <bruno@clisp.org>
16666
16667         Cache the C locale object.
16668         * lib/c-strtod.c (c_locale_cache): New variable.
16669         (c_locale): New function.
16670         (C_STRTOD): Use it, and don't call freelocale.
16671         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
16672         Suggested by Paolo Bonzini.
16673
16674 2009-01-21  Bruno Haible  <bruno@clisp.org>
16675
16676         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
16677         conditions other than overflow.
16678
16679 2009-01-21  Bruno Haible  <bruno@clisp.org>
16680
16681         * lib/c-strtod.c: Include errno.h.
16682         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
16683         value from STRTOD_L and STRTOD.
16684
16685 2009-01-21  Bruno Haible  <bruno@clisp.org>
16686         and Jim Meyering  <meyering@redhat.com>
16687
16688         nanosleep: skip configure test (fail it) for apple universal builds
16689         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
16690         universal builds, assume that nanosleep does not work.
16691         * modules/nanosleep (Depends-on): Add multiarch.
16692
16693         mktime: skip configure test (fail it) for apple universal builds
16694         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
16695         universal builds, assume that mktime does not work.
16696         * modules/mktime (Depends-on): Add multiarch.
16697
16698 2009-01-21  Eric Blake  <ebb9@byu.net>
16699
16700         multiarch: avoid expand-before-require warning
16701         * modules/multiarch (configure.ac): Require, rather than expand,
16702         gl_MULTIARCH.
16703         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
16704         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
16705         enforce that all clients require it.  Partial reversion of
16706         2008-12-29 patch.
16707
16708         error: avoid expand-before-require warning
16709         * modules/errno (configure.ac): Require, rather than expand,
16710         gl_HEADER_ERRNO_H.
16711         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
16712         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
16713         enforce that all clients require it.
16714
16715         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
16716         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
16717         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
16718         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
16719
16720 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
16721
16722         Revert:
16723         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
16724
16725         regex: do not depend on obsolete modules.
16726         * modules/regex: Remove memcmp and memmove.
16727
16728 2009-01-20  Bruno Haible  <bruno@clisp.org>
16729
16730         Make the 'link' module link on Windows NT 4.
16731         * lib/link.c (_WIN32_WINNT): Don't define.
16732         (CreateHardLinkFuncType): New type.
16733         (CreateHardLinkFunc, initialized): New variables.
16734         (initialize): New function.
16735         (link): Invoke CreateHardLink indirectly through the function pointer.
16736
16737 2009-01-20  Bruno Haible  <bruno@clisp.org>
16738
16739         Fix compilation failure on mingw.
16740         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
16741
16742 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
16743
16744         * doc/c-strtod.texi: Mention a couple of restrictions.
16745
16746 2009-01-20  Jim Meyering  <meyering@redhat.com>
16747
16748         gettimeofday: move more declarations out of functions
16749         * lib/gettimeofday.c: Move extern declarations of tzset and
16750         gmtime out of containing functions.  Prompted by Bruno Haible.
16751
16752 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
16753
16754         regex: do not depend on obsolete modules.
16755         * modules/regex: Remove memcmp and memmove.
16756
16757 2009-01-19  Bruno Haible  <bruno@clisp.org>
16758
16759         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
16760         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
16761         gl_BIGENDIAN, not AC_C_BIGENDIAN.
16762         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
16763         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
16764
16765 2009-01-19  Bruno Haible  <bruno@clisp.org>
16766
16767         * tests/test-link.c: Include <errno.h>.
16768         (main): Exit with code 77 when a hard link cannot be created due to
16769         the file system.
16770         * tests/test-link.sh: Skip test when a hard link cannot be created due
16771         to the file system.
16772         Suggested by Eric Blake.
16773
16774 2009-01-19  Martin Lambers  <marlam@marlam.de>
16775
16776         * modules/link-tests: New file.
16777         * tests/test-link.sh: New file.
16778         * tests/test-link.c: New file.
16779
16780 2009-01-19  Eric Blake  <ebb9@byu.net>
16781
16782         doc: mention another function added in cygwin 1.7.0
16783         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
16784         Another new function in cygwin 1.7.
16785
16786 2009-01-19  Bruno Haible  <bruno@clisp.org>
16787
16788         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
16789         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
16790         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
16791         gl_BIGENDIAN, not AC_C_BIGENDIAN.
16792         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
16793         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
16794         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
16795         * m4/md4.m4 (gl_MD4): Likewise.
16796         * m4/md5.m4 (gl_MD5): Likewise.
16797         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
16798         * m4/sha1.m4 (gl_SHA1): Likewise.
16799         * m4/sha256.m4 (gl_SHA256): Likewise.
16800         * m4/sha512.m4 (gl_SHA512): Likewise.
16801
16802 2009-01-19  Bruno Haible  <bruno@clisp.org>
16803
16804         * modules/uniname/uniname-tests (Depends-on): Add progname.
16805         * tests/uniname/test-uninames.c: Include progname.h.
16806         (main): Call set_program_name.
16807
16808         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
16809         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
16810         (main): Call set_program_name.
16811
16812         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
16813         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
16814         (main): Call set_program_name.
16815
16816         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
16817         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
16818         (main): Call set_program_name.
16819
16820         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
16821         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
16822         (main): Call set_program_name.
16823
16824         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
16825         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
16826         (main): Call set_program_name.
16827
16828         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
16829         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
16830         (main): Call set_program_name.
16831
16832         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
16833         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
16834         (main): Call set_program_name.
16835
16836         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
16837         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
16838         (main): Call set_program_name.
16839
16840 2009-01-19  Eric Blake  <ebb9@byu.net>
16841
16842         test-unistd: test previous patch
16843         * tests/test-unistd.c: Test *_FILENO macros.
16844
16845         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
16846         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
16847         Guarantee a definition.
16848         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
16849         * modules/unistd-safer (Depends-on): Add dependency on unistd.
16850         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
16851         * lib/dup-safer.c (STDERR_FILENO): Likewise.
16852         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
16853         Likewise.
16854         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
16855         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
16856         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
16857         Likewise.
16858         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
16859         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
16860         (STDERR_FILENO): Likewise.
16861         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
16862         (STDERR_FILENO): Likewise.
16863         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
16864         (STDERR_FILENO): Likewise.
16865         Reported by Elbert Pol.
16866
16867 2009-01-19  Eric Blake  <ebb9@byu.net>
16868
16869         doc: mention more functions added in cygwin 1.7.0
16870         * doc/posix-functions/abort.texi (abort): Update wording related
16871         to cygwin.
16872         * doc/posix-functions/daylight.texi (daylight): Likewise.
16873         * doc/posix-functions/optarg.texi (optarg): Likewise.
16874         * doc/posix-functions/optarg.texi (opterr): Likewise.
16875         * doc/posix-functions/optarg.texi (optind): Likewise.
16876         * doc/posix-functions/optarg.texi (optopt): Likewise.
16877         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
16878         worked in 1.5.x, and was withdrawn in 1.7.
16879         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
16880         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
16881         cygwin versions.
16882         * doc/posix-functions/perror.texi (perror): Likewise.
16883         * doc/posix-functions/printf.texi (printf): Likewise.
16884         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
16885         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
16886         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
16887         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
16888         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
16889         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
16890         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
16891         Likewise.
16892         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
16893         Likewise.
16894         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
16895         this function.
16896         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
16897         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
16898         Likewise.
16899         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
16900         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
16901         * doc/posix-functions/confstr.texi (confstr): Likewise.
16902         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
16903         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
16904         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
16905         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
16906         * doc/posix-functions/fputws.texi (fputws): Likewise.
16907         * doc/posix-functions/fwide.texi (fwide): Likewise.
16908         * doc/posix-functions/getwc.texi (getwc): Likewise.
16909         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
16910         * doc/posix-functions/putwc.texi (putwc): Likewise.
16911         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
16912         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
16913         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
16914         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
16915         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
16916         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
16917         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
16918         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
16919         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
16920         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
16921         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
16922
16923 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
16924
16925         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
16926         * lib/ioctl.c: Include <sys/ioctl.h>.
16927
16928 2009-01-19  Simon Josefsson  <simon@josefsson.org>
16929
16930         * modules/getdate-tests (Depends-on): Add progname.
16931         * tests/test-getdate.c: Use progname module, to avoid link errors
16932         on non-glibc systems.
16933
16934 2009-01-18  Simon Josefsson  <simon@josefsson.org>
16935
16936         * modules/filenamecat-tests (Depends-on): Add progname.
16937         * modules/fstrcmp-tests (Depends-on): Likewise.
16938
16939         * tests/test-filenamecat.c: Use progname module, to avoid link
16940         errors on non-glibc systems.
16941         * tests/test-fstrcmp.c: Likewise.
16942
16943 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
16944
16945         gettimeofday: avoid warning: nested extern declaration of 'localtime'
16946         * lib/gettimeofday.c: Move extern declaration out of function.
16947
16948 2009-01-18  Bruno Haible  <bruno@clisp.org>
16949
16950         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
16951         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
16952         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
16953
16954 2009-01-18  Bruno Haible  <bruno@clisp.org>
16955
16956         * lib/strftime.c (MEMPCPY): Remove unused macro.
16957         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
16958
16959 2009-01-18  Martin Lambers  <marlam@marlam.de>
16960
16961         New module 'link'.
16962         * lib/unistd.in.h (link): New declaration.
16963         * lib/link.c: New file.
16964         * m4/link.m4: New file.
16965         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
16966         HAVE_LINK.
16967         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
16968         * modules/link: New file.
16969         * doc/posix-functions/link.texi: Mention the new module.
16970
16971 2009-01-18  Bruno Haible  <bruno@clisp.org>
16972
16973         * tests/test-avltree_list.c (main): Call set_program_name.
16974         * tests/test-avltree_oset.c (main): Likewise.
16975         * tests/test-obstack-printf.c: Include progname.h.
16976         (main): Call set_program_name.
16977         * tests/test-quotearg.c: Include progname.h.
16978         (main): Call set_program_name.
16979         * tests/test-xmemdup0.c: Include progname.h.
16980         (main): Call set_program_name.
16981
16982 2009-01-18  Bruno Haible  <bruno@clisp.org>
16983
16984         New module 'alphasort'.
16985         * lib/dirent.in.h (alphasort): New declaration.
16986         * lib/alphasort.c: New file, from glibc with modifications.
16987         * m4/alphasort.m4: New file.
16988         * modules/alphasort: New file.
16989         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
16990         HAVE_ALPHASORT.
16991         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
16992         HAVE_ALPHASORT.
16993         * doc/posix-functions/alphasort.texi: Mention the new module and the
16994         portability problems.
16995
16996 2009-01-18  Bruno Haible  <bruno@clisp.org>
16997
16998         New module 'scandir'.
16999         * lib/dirent.in.h (scandir): New declaration.
17000         * lib/scandir.c: New file, from glibc with modifications.
17001         * m4/scandir.m4: New file.
17002         * modules/scandir: New file.
17003         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
17004         HAVE_SCANDIR.
17005         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
17006         HAVE_SCANDIR.
17007         * doc/posix-functions/scandir.texi: Mention the new module and the
17008         portability problems.
17009
17010 2009-01-17  Bruno Haible  <bruno@clisp.org>
17011
17012         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
17013         Update documentation.
17014         (func_remove_suffix): Escape all dots in the suffix. Update
17015         documentation.
17016         (func_filter_filelist): Update documentation.
17017         Reported by Ralf Wildenhues.
17018
17019 2009-01-17  Bruno Haible  <bruno@clisp.org>
17020
17021         * modules/dprintf-posix-tests: New file.
17022         * tests/test-dprintf-posix.sh: New file.
17023         * tests/test-dprintf-posix.c: New file.
17024
17025         New modules 'dprintf', 'dprintf-posix'.
17026         * lib/stdio.in.h (dprintf): New declaration.
17027         * lib/dprintf.c: New file.
17028         * m4/dprintf.m4: New file.
17029         * m4/dprintf-posix.m4: New file.
17030         * modules/dprintf: New file.
17031         * modules/dprintf-posix: New file.
17032         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
17033         HAVE_DPRINTF, REPLACE_DPRINTF.
17034         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
17035         HAVE_DPRINTF, REPLACE_DPRINTF.
17036         * doc/posix-functions/dprintf.texi: Mention the new modules.
17037
17038 2009-01-17  Bruno Haible  <bruno@clisp.org>
17039
17040         * modules/vdprintf-posix-tests: New file.
17041         * tests/test-vdprintf-posix.sh: New file.
17042         * tests/test-vdprintf-posix.c: New file.
17043
17044         New modules 'vdprintf', 'vdprintf-posix'.
17045         * lib/stdio.in.h (vdprintf): New declaration.
17046         * lib/vdprintf.c: New file.
17047         * m4/vdprintf.m4: New file.
17048         * m4/vdprintf-posix.m4: New file.
17049         * modules/vdprintf: New file.
17050         * modules/vdprintf-posix: New file.
17051         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
17052         HAVE_VDPRINTF, REPLACE_VDPRINTF.
17053         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
17054         HAVE_VDPRINTF, REPLACE_VDPRINTF.
17055         * doc/posix-functions/vdprintf.texi: Mention the new modules.
17056
17057 2009-01-17  Bruno Haible  <bruno@clisp.org>
17058
17059         Fix replacement of fopen on mingw.
17060         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
17061         mingw.
17062
17063 2009-01-17  Bruno Haible  <bruno@clisp.org>
17064
17065         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
17066         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
17067
17068 2009-01-17  Bruno Haible  <bruno@clisp.org>
17069
17070         Avoid test-fflush2.sh failure on mingw.
17071         * tests/test-fflush2.c: Include binary-io.h.
17072         (main): Put standard input into binary mode.
17073         * modules/fflush-tests (Depends-on): Add binary-io.
17074
17075 2009-01-17  Bruno Haible  <bruno@clisp.org>
17076
17077         * lib/wchar.in.h: In another particular situation, include only the
17078         system's <wchar.h> file.
17079         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
17080         Reported by Albert Chin-A-Young <china@thewrittenword.com>
17081         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
17082
17083 2009-01-17  Bruno Haible  <bruno@clisp.org>
17084
17085         Support for stripping executables in --enable-relocatable.
17086         * build-aux/install-reloc: Expect one more argument, or an environment
17087         variable RELOC_STRIP_PROG. If set, strip the destination program and
17088         its wrapper.
17089         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
17090         RELOC_STRIP_PROG.
17091         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
17092         to set RELOCATABLE_STRIP.
17093         * NEWS: Mention the new Makefile requirement.
17094
17095 2009-01-17  Bruno Haible  <bruno@clisp.org>
17096
17097         * build-aux/install-reloc: Remove debugging information left over by
17098         C compiler on MacOS X.
17099
17100 2009-01-17  Bruno Haible  <bruno@clisp.org>
17101
17102         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
17103         * lib/progreloc.c (find_executable): Fix type of pointer passed to
17104         _NSGetExecutablePath.
17105
17106 2009-01-16  Jim Meyering  <meyering@redhat.com>
17107
17108         strerror: avoid warnings about discarding "const"
17109         * lib/strerror.c (rpl_strerror): Instead of returning a const
17110         string from each and every "case", use a variable, and add a single
17111         cast after the switch.
17112
17113 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
17114
17115         * lib/arpa_inet.in.h: Add extern "C" block for C++.
17116
17117 2009-01-16  Bruno Haible  <bruno@clisp.org>
17118
17119         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
17120         array initializer syntax that also works in C++ mode.
17121         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17122
17123 2009-01-16  Jim Meyering  <meyering@redhat.com>
17124
17125         poll: suppress a warning
17126         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
17127         to ignore "...unsigned expression < 0 is always false" warnings.
17128
17129 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
17130
17131         poll: remove declarations of unused variables
17132         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
17133         sockbuf and optlen.
17134
17135 2009-01-15  Bruno Haible  <bruno@clisp.org>
17136
17137         Make fflush-after-ungetc POSIX compliant on BSD systems.
17138         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
17139         (clear_ungetc_buffer): Implement also for other systems.
17140         (rpl_fflush): On glibc systems, invoke
17141         clear_ungetc_buffer_preserving_position. Otherwise, invoke
17142         clear_ungetc_buffer after fetching the stream's position, not before.
17143
17144 2009-01-15  Bruno Haible  <bruno@clisp.org>
17145
17146         Make fflush-after-ungetc POSIX compliant on glibc systems.
17147         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
17148         after ungetc.
17149         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
17150         (rpl_fflush): On glibc systems, simply call the system's fflush
17151         function after clearing the ungetc buffer.
17152         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
17153         Instead, lseek only to the end of file, then use the system's fseeko
17154         for the rest. On glibc systems, reset the EOF indicator bit.
17155
17156 2009-01-15  Jim Meyering  <meyering@redhat.com>
17157
17158         openmp.m4: revert quote-adding change, for portability to older autoconf
17159         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
17160         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
17161         Simon Josefsson noticed the problem when using autoconf-2.61.
17162
17163 2009-01-15  Bruno Haible  <bruno@clisp.org>
17164
17165         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
17166         * tests/test-fflush2.c (ASSERT): Always fail.
17167         (main): Add two tests for fflush() after ungetc(), taking into account
17168         the Austin Group's clarification.
17169         Suggested by Eric Blake.
17170
17171 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
17172
17173         mktime.m4: remove K&R-style function prototypes
17174         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
17175         for the Sun C++ compiler.
17176
17177 2009-01-14  Bruno Haible  <bruno@clisp.org>
17178
17179         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
17180         while including <wchar.h>.
17181         * lib/wchar.in.h: In two particular situations on HP-UX, include only
17182         the system's <wchar.h> file.
17183         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17184
17185 2009-01-14  Bruno Haible  <bruno@clisp.org>
17186
17187         * m4/csharp.m4: Don't mention gettext on the serial number line.
17188         * m4/csharpexec.m4: Likewise.
17189         * m4/eaccess.m4: Likewise.
17190         * m4/javaexec.m4: Likewise.
17191         * m4/sig_atomic_t.m4: Likewise.
17192         * m4/tmpdir.m4: Likewise.
17193         * m4/intldir.m4: Bump gettext version.
17194         * m4/lib-ld.m4: Likewise.
17195
17196 2009-01-14  Bruno Haible  <bruno@clisp.org>
17197
17198         * lib/progname.c (set_program_name): Add more comments.
17199         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
17200
17201 2009-01-14  Simon Josefsson  <simon@josefsson.org>
17202
17203         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
17204         were sys/stat.h does not define it.
17205
17206 2009-01-14  Jim Meyering  <meyering@redhat.com>
17207
17208         many *.m4 files: improve m4 quoting
17209         99% of this change was performed by running the following commands:
17210         git ls-files | grep '\.m4$' | xargs perl -pi \
17211           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
17212           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
17213           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
17214           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
17215         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
17216         The remainder were to add Copyright dates, increment serial numbers,
17217         undo some changes in comments, exclude m4/intl.m4, and add quotes
17218         around the "1" in ",1" where the unusual spacing prohibited the
17219         above regexps from doing the job.  For more details, see
17220         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
17221         * m4/acl.m4: Modified.
17222         * m4/afs.m4: Likewise.
17223         * m4/alloca.m4: Likewise.
17224         * m4/argp.m4: Likewise.
17225         * m4/argz.m4: Likewise.
17226         * m4/atexit.m4: Likewise.
17227         * m4/bison-i18n.m4: Likewise.
17228         * m4/bison.m4: Likewise.
17229         * m4/byteswap.m4: Likewise.
17230         * m4/c-stack.m4: Likewise.
17231         * m4/c-strtod.m4: Likewise.
17232         * m4/calloc.m4: Likewise.
17233         * m4/canonicalize-lgpl.m4: Likewise.
17234         * m4/chown.m4: Likewise.
17235         * m4/clock_time.m4: Likewise.
17236         * m4/codeset.m4: Likewise.
17237         * m4/copy-file.m4: Likewise.
17238         * m4/csharp.m4: Likewise.
17239         * m4/csharpcomp.m4: Likewise.
17240         * m4/csharpexec.m4: Likewise.
17241         * m4/d-ino.m4: Likewise.
17242         * m4/d-type.m4: Likewise.
17243         * m4/dirfd.m4: Likewise.
17244         * m4/double-slash-root.m4: Likewise.
17245         * m4/eaccess.m4: Likewise.
17246         * m4/eealloc.m4: Likewise.
17247         * m4/environ.m4: Likewise.
17248         * m4/errno_h.m4: Likewise.
17249         * m4/euidaccess.m4: Likewise.
17250         * m4/execute.m4: Likewise.
17251         * m4/fatal-signal.m4: Likewise.
17252         * m4/fchdir.m4: Likewise.
17253         * m4/fcntl_h.m4: Likewise.
17254         * m4/fileblocks.m4: Likewise.
17255         * m4/filenamecat.m4: Likewise.
17256         * m4/findprog.m4: Likewise.
17257         * m4/flexmember.m4: Likewise.
17258         * m4/fnmatch.m4: Likewise.
17259         * m4/fopen.m4: Likewise.
17260         * m4/fpending.m4: Likewise.
17261         * m4/fprintf-posix.m4: Likewise.
17262         * m4/free.m4: Likewise.
17263         * m4/frexp.m4: Likewise.
17264         * m4/frexpl.m4: Likewise.
17265         * m4/fsusage.m4: Likewise.
17266         * m4/ftruncate.m4: Likewise.
17267         * m4/gc-camellia.m4: Likewise.
17268         * m4/gc-random.m4: Likewise.
17269         * m4/gc.m4: Likewise.
17270         * m4/getaddrinfo.m4: Likewise.
17271         * m4/getcwd-abort-bug.m4: Likewise.
17272         * m4/getcwd-path-max.m4: Likewise.
17273         * m4/getdate.m4: Likewise.
17274         * m4/getdomainname.m4: Likewise.
17275         * m4/getgroups.m4: Likewise.
17276         * m4/gethostname.m4: Likewise.
17277         * m4/gethrxtime.m4: Likewise.
17278         * m4/getline.m4: Likewise.
17279         * m4/getloadavg.m4: Likewise.
17280         * m4/getndelim2.m4: Likewise.
17281         * m4/getpass.m4: Likewise.
17282         * m4/gettext.m4: Likewise.
17283         * m4/gettime.m4: Likewise.
17284         * m4/gettimeofday.m4: Likewise.
17285         * m4/gnulib-common.m4: Likewise.
17286         * m4/group-member.m4: Likewise.
17287         * m4/host-os.m4: Likewise.
17288         * m4/iconv.m4: Likewise.
17289         * m4/iconv_open.m4: Likewise.
17290         * m4/inet_ntop.m4: Likewise.
17291         * m4/inet_pton.m4: Likewise.
17292         * m4/inline.m4: Likewise.
17293         * m4/intldir.m4: Likewise.
17294         * m4/intlmacosx.m4: Likewise.
17295         * m4/intmax.m4: Likewise.
17296         * m4/intmax_t.m4: Likewise.
17297         * m4/inttypes.m4: Likewise.
17298         * m4/inttypes_h.m4: Likewise.
17299         * m4/inttypes-pri.m4: Likewise.
17300         * m4/isapipe.m4: Likewise.
17301         * m4/isnand.m4: Likewise.
17302         * m4/isnanf.m4: Likewise.
17303         * m4/isnanl.m4: Likewise.
17304         * m4/javacomp.m4: Likewise.
17305         * m4/javaexec.m4: Likewise.
17306         * m4/jm-winsz1.m4: Likewise.
17307         * m4/jm-winsz2.m4: Likewise.
17308         * m4/lchown.m4: Likewise.
17309         * m4/lcmessage.m4: Likewise.
17310         * m4/ldexpl.m4: Likewise.
17311         * m4/lib-ld.m4: Likewise.
17312         * m4/lib-link.m4: Likewise.
17313         * m4/libsigsegv.m4: Likewise.
17314         * m4/link-follow.m4: Likewise.
17315         * m4/localcharset.m4: Likewise.
17316         * m4/locale-fr.m4: Likewise.
17317         * m4/locale-ja.m4: Likewise.
17318         * m4/locale-tr.m4: Likewise.
17319         * m4/locale-zh.m4: Likewise.
17320         * m4/lock.m4: Likewise.
17321         * m4/longlong.m4: Likewise.
17322         * m4/ls-mntd-fs.m4: Likewise.
17323         * m4/lstat.m4: Likewise.
17324         * m4/malloc.m4: Likewise.
17325         * m4/mathl.m4: Likewise.
17326         * m4/mbrtowc.m4: Likewise.
17327         * m4/mbstate_t.m4: Likewise.
17328         * m4/mbswidth.m4: Likewise.
17329         * m4/memchr.m4: Likewise.
17330         * m4/memcmp.m4: Likewise.
17331         * m4/memcpy.m4: Likewise.
17332         * m4/memmem.m4: Likewise.
17333         * m4/memmove.m4: Likewise.
17334         * m4/mempcpy.m4: Likewise.
17335         * m4/memrchr.m4: Likewise.
17336         * m4/memset.m4: Likewise.
17337         * m4/minmax.m4: Likewise.
17338         * m4/mkdir-slash.m4: Likewise.
17339         * m4/mkdtemp.m4: Likewise.
17340         * m4/mktime.m4: Likewise.
17341         * m4/mmap-anon.m4: Likewise.
17342         * m4/mountlist.m4: Likewise.
17343         * m4/nanosleep.m4: Likewise.
17344         * m4/nls.m4: Likewise.
17345         * m4/nocrash.m4: Likewise.
17346         * m4/open.m4: Likewise.
17347         * m4/openat.m4: Likewise.
17348         * m4/openmp.m4: Likewise.
17349         * m4/pathmax.m4: Likewise.
17350         * m4/perl.m4: Likewise.
17351         * m4/physmem.m4: Likewise.
17352         * m4/pipe.m4: Likewise.
17353         * m4/po.m4: Likewise.
17354         * m4/poll.m4: Likewise.
17355         * m4/posixtm.m4: Likewise.
17356         * m4/posixver.m4: Likewise.
17357         * m4/printf-frexp.m4: Likewise.
17358         * m4/printf-frexpl.m4: Likewise.
17359         * m4/printf-posix.m4: Likewise.
17360         * m4/printf-posix-rpl.m4: Likewise.
17361         * m4/printf.m4: Likewise.
17362         * m4/progtest.m4: Likewise.
17363         * m4/putenv.m4: Likewise.
17364         * m4/readline.m4: Likewise.
17365         * m4/readlink.m4: Likewise.
17366         * m4/readutmp.m4: Likewise.
17367         * m4/realloc.m4: Likewise.
17368         * m4/regex.m4: Likewise.
17369         * m4/relocatable.m4: Likewise.
17370         * m4/relocatable-lib.m4: Likewise.
17371         * m4/rename-dest-slash.m4: Likewise.
17372         * m4/rename.m4: Likewise.
17373         * m4/rmdir-errno.m4: Likewise.
17374         * m4/rmdir.m4: Likewise.
17375         * m4/roundf.m4: Likewise.
17376         * m4/roundl.m4: Likewise.
17377         * m4/rpmatch.m4: Likewise.
17378         * m4/save-cwd.m4: Likewise.
17379         * m4/selinux-selinux-h.m4: Likewise.
17380         * m4/setenv.m4: Likewise.
17381         * m4/settime.m4: Likewise.
17382         * m4/sig2str.m4: Likewise.
17383         * m4/sig_atomic_t.m4: Likewise.
17384         * m4/signalblocking.m4: Likewise.
17385         * m4/signbit.m4: Likewise.
17386         * m4/sigpipe.m4: Likewise.
17387         * m4/sockets.m4: Likewise.
17388         * m4/sockpfaf.m4: Likewise.
17389         * m4/st_dm_mode.m4: Likewise.
17390         * m4/stat-time.m4: Likewise.
17391         * m4/stdbool.m4: Likewise.
17392         * m4/stdint.m4: Likewise.
17393         * m4/stdint_h.m4: Likewise.
17394         * m4/stpcpy.m4: Likewise.
17395         * m4/stpncpy.m4: Likewise.
17396         * m4/strcase.m4: Likewise.
17397         * m4/strchrnul.m4: Likewise.
17398         * m4/strcspn.m4: Likewise.
17399         * m4/strdup.m4: Likewise.
17400         * m4/strftime.m4: Likewise.
17401         * m4/strndup.m4: Likewise.
17402         * m4/strnlen.m4: Likewise.
17403         * m4/strpbrk.m4: Likewise.
17404         * m4/strptime.m4: Likewise.
17405         * m4/strsep.m4: Likewise.
17406         * m4/strtod.m4: Likewise.
17407         * m4/strtoimax.m4: Likewise.
17408         * m4/strtok_r.m4: Likewise.
17409         * m4/strtol.m4: Likewise.
17410         * m4/strtoll.m4: Likewise.
17411         * m4/strtoul.m4: Likewise.
17412         * m4/strtoull.m4: Likewise.
17413         * m4/strtoumax.m4: Likewise.
17414         * m4/strverscmp.m4: Likewise.
17415         * m4/threadlib.m4: Likewise.
17416         * m4/timegm.m4: Likewise.
17417         * m4/tm_gmtoff.m4: Likewise.
17418         * m4/tmpdir.m4: Likewise.
17419         * m4/tmpfile.m4: Likewise.
17420         * m4/tzset.m4: Likewise.
17421         * m4/uintmax_t.m4: Likewise.
17422         * m4/unlinkdir.m4: Likewise.
17423         * m4/unlocked-io.m4: Likewise.
17424         * m4/uptime.m4: Likewise.
17425         * m4/userspec.m4: Likewise.
17426         * m4/utimbuf.m4: Likewise.
17427         * m4/utime.m4: Likewise.
17428         * m4/utimes-null.m4: Likewise.
17429         * m4/utimes.m4: Likewise.
17430         * m4/vararrays.m4: Likewise.
17431         * m4/vasnprintf.m4: Likewise.
17432         * m4/vfprintf-posix.m4: Likewise.
17433         * m4/vprintf-posix.m4: Likewise.
17434         * m4/wait-process.m4: Likewise.
17435         * m4/wchar_t.m4: Likewise.
17436         * m4/wint_t.m4: Likewise.
17437         * m4/write-any-file.m4: Likewise.
17438         * m4/yield.m4: Likewise.
17439
17440 2009-01-13  Bruno Haible  <bruno@clisp.org>
17441
17442         Avoid test-copy-file.sh failures when ACL support insufficient.
17443         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
17444         TESTS_ENVIRONMENT.
17445         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
17446         Reported by Jim Meyering.
17447
17448 2009-01-13  Bruno Haible  <bruno@clisp.org>
17449
17450         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
17451         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
17452         * modules/unistdio/u8-printf-parse (Files): Likewise.
17453         * modules/unistdio/u32-printf-parse (Files): Likewise.
17454         * modules/unistdio/ulc-printf-parse (Files): Likewise.
17455
17456 2009-01-13  Simon Josefsson  <simon@josefsson.org>
17457
17458         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
17459         and m4/inttypes_h.m4 too.
17460
17461 2009-01-12  Eric Blake  <ebb9@byu.net>
17462
17463         tests: IRIX 6.2 cc can't compile -0.0 into .data
17464         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
17465         rather than at compile-time.
17466         * tests/test-floorl.c (minus_zero): Likewise.
17467         * tests/test-frexpl.c (minus_zero): Likewise.
17468         * tests/test-isnan.c (minus_zerol): Likewise.
17469         * tests/test-isnanl.h (minus_zero): Likewise.
17470         * tests/test-ldexpl.c (minus_zero): Likewise.
17471         * tests/test-roundl.c (minus_zero): Likewise.
17472         * tests/test-signbit.c (minus_zerol): Likewise.
17473         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
17474         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
17475         * tests/test-truncl.c (minus_zero): Likewise.
17476         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
17477         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
17478         Reported by Tom G. Christensen and Nelson H. F. Beebe.
17479
17480 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
17481
17482         regex: fix glibc bug 9697
17483         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
17484         handling.
17485
17486 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
17487
17488         regex: fix glibc bug 697
17489         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
17490         being NULL also if there are no backreferences.
17491
17492 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
17493
17494         regex: merge glibc changes
17495         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
17496         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
17497         re_string_skip_chars, re_string_reconstruct): Likewise.
17498         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
17499
17500 2009-01-07  Jim Meyering  <meyering@redhat.com>
17501
17502         poll: filter through cppi
17503         * lib/poll.c: Indent cpp directives to reflect nesting.
17504
17505 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
17506
17507         poll: don't return uninitialized
17508         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
17509
17510 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
17511
17512         avoid compile failure on AIX 6.1
17513         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
17514         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
17515
17516 2009-01-04  Jim Meyering  <meyering@redhat.com>
17517
17518         remove duplicate inclusion of <stdio.h>
17519         * tests/test-fprintf-posix.c: Likewise.
17520         * tests/test-printf-posix.c: Likewise.
17521         * tests/test-snprintf-posix.c: Likewise.
17522         * tests/test-sprintf-posix.c: Likewise.
17523         * tests/test-vasprintf-posix.c: Likewise.
17524         * tests/test-vfprintf-posix.c: Likewise.
17525         * tests/test-vprintf-posix.c: Likewise.
17526         * tests/test-vsnprintf-posix.c: Likewise.
17527         * tests/test-vsprintf-posix.c: Likewise.
17528
17529 2009-01-03  Jim Meyering  <meyering@redhat.com>
17530
17531         gnulib-tool: fix sed-based filtering
17532         * gnulib-tool (func_filter_filelist): Remove extra backslash
17533         in sed_fff_filter definition.
17534
17535 2009-01-02  Jim Meyering  <meyering@redhat.com>
17536
17537         strftime: avoid compilation failure on Solaris 2.6
17538         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
17539         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
17540         Don't #define mbrlen or mbsinit, since now they're guaranteed to
17541         be available.  Reported by Tom G. Christensen.  Details in
17542         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
17543
17544 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17545             Bruno Haible  <bruno@clisp.org>
17546
17547         Speed up gnulib-tool by doing more string processing through shell
17548         built-ins.
17549         * gnulib-tool (fast_func_append): New variable.
17550         (func_remove_prefix, func_remove_suffix): New functions.
17551         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
17552         (func_filter_filelist): New function.
17553         (func_get_dependencies): Use func_remove_suffix instead of sed.
17554         (func_get_automake_snippet): Use func_filter_filelist instead of a
17555         subshell and sed invocation.
17556
17557 2009-01-01  Bruno Haible  <bruno@clisp.org>
17558
17559         Fix a security bug.
17560         * gnulib-tool (func_import, import, update): Don't allow the characters
17561         '"', '$', '`', '\' in macro arguments that become part of commands that
17562         are evaluated.
17563
17564 2009-01-01  Bruno Haible  <bruno@clisp.org>
17565
17566         * gnulib-tool (func_reset_sigpipe): Add more comments.
17567
17568 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17569
17570         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
17571         func_emit_tests_Makefile_am, func_import): Abort loops early if we
17572         already know the answer.
17573
17574 2009-01-01  Jim Meyering  <meyering@redhat.com>
17575
17576         * lib/version-etc.c (version_etc_va): Update copyright year.
17577
17578 2008-12-30  Bruno Haible  <bruno@clisp.org>
17579
17580         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
17581         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
17582         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
17583
17584 2008-12-29  Eric Blake  <ebb9@byu.net>
17585
17586         multiarch: avoid autoconf AC_REQUIRE bug
17587         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
17588         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
17589         2.63 and older.
17590         Reported by Bruno Haible, and analyzed in
17591         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
17592
17593 2008-12-29  Bruno Haible  <bruno@clisp.org>
17594
17595         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
17596         files in subdirectories correctly.
17597         Reported by Ralf Wildenhues.
17598
17599 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17600
17601         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
17602         rather than 'join FILE -', for Solaris join.
17603
17604 2008-12-29  Bruno Haible  <bruno@clisp.org>
17605
17606         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
17607         quoting.
17608         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
17609         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
17610         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
17611         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
17612         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
17613         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
17614         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
17615         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
17616         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
17617         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
17618         * m4/nls.m4 (AM_NLS): Likewise.
17619         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
17620         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
17621         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
17622         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
17623         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
17624         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
17625         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
17626         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
17627         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
17628         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
17629         * m4/xsize.m4 (gl_XSIZE): Likewise.
17630         Suggested by Jim Meyering.
17631
17632 2008-11-17  Bruce Korb  <bkorb@gnu.org>
17633
17634         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
17635         * lib/parse-duration.c: use a switch instead of cascading if's.
17636
17637 2008-12-29  Eric Blake  <ebb9@byu.net>
17638
17639         wchar.h: supply WEOF on Irix 5.3
17640         * lib/wchar.in.h (wint_t): Also supply WEOF.
17641         * lib/wctype.in.h (wint_t): Likewise.
17642         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
17643         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
17644         Reported by Tom G. Christensen.
17645
17646 2008-12-26  Bruno Haible  <bruno@clisp.org>
17647
17648         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
17649         i486, i586, i686.
17650
17651 2008-12-26  Bruno Haible  <bruno@clisp.org>
17652
17653         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
17654
17655 2008-12-26  Bruno Haible  <bruno@clisp.org>
17656
17657         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
17658         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
17659         not __STDC_CONSTANT_MACROS.
17660         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
17661
17662 2008-12-25  Bruno Haible  <bruno@clisp.org>
17663
17664         Add support for universal builds to vasnprintf.
17665         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
17666         universal builds, guess no.
17667         * modules/vasnprintf-posix (Depends-on): Add multiarch.
17668         * modules/vasprintf-posix (Depends-on): Likewise.
17669         * modules/fprintf-posix (Depends-on): Likewise.
17670         * modules/vfprintf-posix (Depends-on): Likewise.
17671         * modules/snprintf-posix (Depends-on): Likewise.
17672         * modules/vsnprintf-posix (Depends-on): Likewise.
17673         * modules/sprintf-posix (Depends-on): Likewise.
17674         * modules/vsprintf-posix (Depends-on): Likewise.
17675         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
17676         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
17677         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
17678         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
17679         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
17680         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
17681         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
17682
17683         Add support for universal builds to <inttypes.h>.
17684         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
17685         _SCNu64_PREFIX): In Apple
17686         universal builds, define directly, using _LP64.
17687         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
17688         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
17689         * modules/inttypes (Depends-on): Add multiarch.
17690         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
17691
17692         Add support for universal builds to <stdint.h>.
17693         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
17694         universal builds, define directly, using _LP64.
17695         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
17696         Apple universal builds, don't test for the size and suffix of ptrdiff_t
17697         and size_t.
17698         * modules/stdint (Depends-on): Add multiarch.
17699         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
17700
17701         New module 'multiarch'.
17702         * modules/multiarch: New file.
17703         * m4/multiarch.m4: New file.
17704
17705 2008-12-25  Bruno Haible  <bruno@clisp.org>
17706
17707         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
17708
17709 2008-12-25  Bruno Haible  <bruno@clisp.org>
17710
17711         * modules/btowc (License): Relicense under LGPLv2+.
17712         * modules/mbsinit (License): Likewise.
17713         * modules/mbrtowc (License): Likewise.
17714         * modules/wcrtomb (License): Likewise.
17715         * modules/streq (License): Likewise.
17716         Reported by David Lutterkort <lutter@redhat.com>.
17717
17718 2008-12-23  Bruno Haible  <bruno@clisp.org>
17719
17720         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
17721
17722 2008-12-23  Bruno Haible  <bruno@clisp.org>
17723
17724         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
17725         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
17726         GETADDRINFO_LIB, not in LIBS.
17727         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
17728         * modules/canon-host (Link): Likewise.
17729         * NEWS: Mention the change.
17730         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
17731         GETADDRINFO_LIB.
17732
17733 2008-12-22  Bruno Haible  <bruno@clisp.org>
17734
17735         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
17736         * doc/posix-functions/iswalpha_l.texi: Likewise.
17737         * doc/posix-functions/iswblank_l.texi: Likewise.
17738         * doc/posix-functions/iswcntrl_l.texi: Likewise.
17739         * doc/posix-functions/iswctype_l.texi: Likewise.
17740         * doc/posix-functions/iswdigit_l.texi: Likewise.
17741         * doc/posix-functions/iswgraph_l.texi: Likewise.
17742         * doc/posix-functions/iswlower_l.texi: Likewise.
17743         * doc/posix-functions/iswprint_l.texi: Likewise.
17744         * doc/posix-functions/iswpunct_l.texi: Likewise.
17745         * doc/posix-functions/iswspace_l.texi: Likewise.
17746         * doc/posix-functions/iswupper_l.texi: Likewise.
17747         * doc/posix-functions/iswxdigit_l.texi: Likewise.
17748         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
17749         * doc/posix-functions/open_wmemstream.texi: Likewise.
17750         * doc/posix-functions/swscanf.texi: Likewise.
17751         * doc/posix-functions/towctrans_l.texi: Likewise.
17752         * doc/posix-functions/towlower.texi: Likewise.
17753         * doc/posix-functions/towlower_l.texi: Likewise.
17754         * doc/posix-functions/towupper.texi: Likewise.
17755         * doc/posix-functions/towupper_l.texi: Likewise.
17756         * doc/posix-functions/vfwprintf.texi: Likewise.
17757         * doc/posix-functions/vfwscanf.texi: Likewise.
17758         * doc/posix-functions/vswscanf.texi: Likewise.
17759         * doc/posix-functions/vwprintf.texi: Likewise.
17760         * doc/posix-functions/vwscanf.texi: Likewise.
17761         * doc/posix-functions/wcpcpy.texi: Likewise.
17762         * doc/posix-functions/wcpncpy.texi: Likewise.
17763         * doc/posix-functions/wcscasecmp.texi: Likewise.
17764         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
17765         * doc/posix-functions/wcscoll_l.texi: Likewise.
17766         * doc/posix-functions/wcsdup.texi: Likewise.
17767         * doc/posix-functions/wcsncasecmp.texi: Likewise.
17768         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
17769         * doc/posix-functions/wcsnlen.texi: Likewise.
17770         * doc/posix-functions/wcsnrtombs.texi: Likewise.
17771         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
17772         * doc/posix-functions/wctrans_l.texi: Likewise.
17773         * doc/posix-functions/wctype_l.texi: Likewise.
17774         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
17775         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
17776         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
17777         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
17778         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
17779         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
17780         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
17781         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
17782         * doc/glibc-functions/wcschrnul.texi: Likewise.
17783         * doc/glibc-functions/wcsftime_l.texi: Likewise.
17784         * doc/glibc-functions/wcstod_l.texi: Likewise.
17785         * doc/glibc-functions/wcstof_l.texi: Likewise.
17786         * doc/glibc-functions/wcstol_l.texi: Likewise.
17787         * doc/glibc-functions/wcstold_l.texi: Likewise.
17788         * doc/glibc-functions/wcstoll_l.texi: Likewise.
17789         * doc/glibc-functions/wcstoq.texi: Likewise.
17790         * doc/glibc-functions/wcstoul_l.texi: Likewise.
17791         * doc/glibc-functions/wcstoull_l.texi: Likewise.
17792         * doc/glibc-functions/wcstouq.texi: Likewise.
17793         * doc/glibc-functions/wmempcpy.texi: Likewise.
17794
17795 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
17796             Eric Blake  <ebb9@byu.net>
17797             Paolo Bonzini  <bonzini@gnu.org>
17798             Bruno Haible  <bruno@clisp.org>
17799
17800         Make c-stack work on Haiku.
17801         * lib/c-stack.c (SA_ONSTACK): Define fallback.
17802         (c_stack_action): Use SA_ONSTACK flag.
17803
17804 2008-12-22  Bruno Haible  <bruno@clisp.org>
17805
17806         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
17807
17808 2008-12-22  Bruno Haible  <bruno@clisp.org>
17809
17810         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
17811         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
17812         being overridden.
17813         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
17814         New macros.
17815         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
17816         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
17817         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
17818         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
17819
17820 2008-12-22  Bruno Haible  <bruno@clisp.org>
17821
17822         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
17823         from test code.
17824
17825 2008-12-22  Eric Blake  <ebb9@byu.net>
17826
17827         Avoid gcc warnings on cygwin.
17828         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
17829         Avoid unused variable.
17830         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
17831         Likewise.
17832
17833 2008-12-22  Bruno Haible  <bruno@clisp.org>
17834
17835         Remove HAVE_MBRTOWC conditionals.
17836         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
17837         (mbscasecmp): Assume mbrtowc function.
17838         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
17839         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
17840         * lib/mbschr.c: Include mbuiter.h unconditionally.
17841         (mbschr): Assume mbrtowc function.
17842         * lib/mbscspn.c: Include mbuiter.h unconditionally.
17843         (mbscspn): Assume mbrtowc function.
17844         * lib/mbslen.c: Include mbuiter.h unconditionally.
17845         (mbslen): Assume mbrtowc function.
17846         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
17847         (mbsncasecmp): Assume mbrtowc function.
17848         * lib/mbsnlen.c: Include mbiter.h unconditionally.
17849         (mbsnlen): Assume mbrtowc function.
17850         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
17851         (mbspbrk): Assume mbrtowc function.
17852         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
17853         (mbspcasecmp): Assume mbrtowc function.
17854         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
17855         (mbsrchr): Assume mbrtowc function.
17856         * lib/mbssep.c: Include mbuiter.h unconditionally.
17857         (mbssep): Assume mbrtowc function.
17858         * lib/mbsspn.c: Include mbuiter.h unconditionally.
17859         (mbsspn): Assume mbrtowc function.
17860         * lib/mbsstr.c: Include mbuiter.h unconditionally.
17861         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
17862         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
17863         (mbstok_r): Assume mbrtowc function.
17864         * lib/propername.c: Include mbuiter.h unconditionally.
17865         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
17866         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
17867         (trim2): Assume mbrtowc function.
17868         * lib/mbswidth.c (mbsinit): Remove fallback definition.
17869         (mbsnwidth): Assume mbrtowc function.
17870         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
17871         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
17872         fallback definitions.
17873         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
17874
17875 2008-12-22  Bruno Haible  <bruno@clisp.org>
17876
17877         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
17878
17879 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
17880
17881         * modules/regex: Request emulations for the mb*/wc* functions we need.
17882         * m4/regex.m4: Don't look for those functions here.
17883         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
17884
17885 2008-12-22  Bruno Haible  <bruno@clisp.org>
17886
17887         * modules/fnmatch (Depends-on): Remove duplicated dependency.
17888
17889 2008-12-21  Bruno Haible  <bruno@clisp.org>
17890
17891         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
17892         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
17893         (Include): Remove conditionalization.
17894         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
17895         (Include): Remove conditionalization.
17896         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
17897         (Include): Remove conditionalization.
17898         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
17899         * m4/mbfile.m4 (gl_MBFILE): Likewise.
17900         * NEWS: Mention the change.
17901         Reported by Alan Hourihane <alanh@fairlite.co.uk>
17902         via Sergey Poznyakoff <gray@gnu.org.ua>.
17903
17904 2008-12-21  Bruno Haible  <bruno@clisp.org>
17905
17906         * MODULES.html.sh (Extended multibyte and wide character utilities
17907         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
17908         wcrtomb, wcsrtombs.
17909         (Support for systems lacking POSIX:2008): Add accept, bind, close,
17910         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
17911         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
17912         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
17913
17914 2008-12-21  Bruno Haible  <bruno@clisp.org>
17915
17916         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
17917
17918 2008-12-21  Bruno Haible  <bruno@clisp.org>
17919
17920         * modules/wcsnrtombs-tests: New file.
17921         * tests/test-wcsnrtombs1.sh: New file.
17922         * tests/test-wcsnrtombs2.sh: New file.
17923         * tests/test-wcsnrtombs3.sh: New file.
17924         * tests/test-wcsnrtombs4.sh: New file.
17925         * tests/test-wcsnrtombs.c: New file.
17926
17927         New module 'wcsnrtombs'.
17928         * lib/wchar.in.h (wcsnrtombs): New declaration.
17929         * lib/wcsnrtombs.c: New file.
17930         * lib/wcsrtombs-state.c: New file.
17931         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
17932         (internal_state): Remove variable.
17933         * m4/wcsnrtombs.m4: New file.
17934         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
17935         compilation units.
17936         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
17937         HAVE_WCSNRTOMBS.
17938         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
17939         HAVE_WCSNRTOMBS.
17940         * modules/wcsnrtombs: New file.
17941         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
17942         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
17943
17944 2008-12-21  Bruno Haible  <bruno@clisp.org>
17945
17946         * modules/wcsrtombs-tests: New file.
17947         * tests/test-wcsrtombs1.sh: New file.
17948         * tests/test-wcsrtombs2.sh: New file.
17949         * tests/test-wcsrtombs3.sh: New file.
17950         * tests/test-wcsrtombs4.sh: New file.
17951         * tests/test-wcsrtombs.c: New file.
17952
17953         New module 'wcsrtombs'.
17954         * lib/wchar.in.h (wcsrtombs): New declaration.
17955         * lib/wcsrtombs.c: New file.
17956         * m4/wcsrtombs.m4: New file.
17957         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
17958         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
17959         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
17960         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
17961         * modules/wcsrtombs: New file.
17962         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
17963         bugs.
17964
17965 2008-12-21  Bruno Haible  <bruno@clisp.org>
17966
17967         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
17968         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
17969         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
17970         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
17971         if not correct.
17972         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
17973         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
17974         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
17975         m4/locale-zh.m4, m4/codeset.m4.
17976         * doc/posix-functions/wcrtomb.texi: Document the bug.
17977
17978 2008-12-21  Bruno Haible  <bruno@clisp.org>
17979
17980         Work around a btowc() bug on IRIX 6.5.
17981         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
17982         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
17983         REPLACE_WTOBC if not.
17984         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
17985         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
17986         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
17987
17988 2008-12-21  Bruno Haible  <bruno@clisp.org>
17989
17990         * modules/wcrtomb-tests: New file.
17991         * tests/test-wcrtomb.sh: New file.
17992         * tests/test-wcrtomb.c: New file.
17993
17994         New module 'wcrtomb'.
17995         * lib/wchar.in.h (wcrtomb): New declaration.
17996         * lib/wcrtomb.c: New file.
17997         * m4/wcrtomb.m4: New file.
17998         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
17999         HAVE_WCRTOMB.
18000         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
18001         HAVE_WCRTOMB.
18002         * modules/wcrtomb: New file.
18003         * doc/posix-functions/wcrtomb.texi: Mention the new module.
18004
18005 2008-12-21  Bruno Haible  <bruno@clisp.org>
18006
18007         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
18008         * modules/mbsrtowcs (Files): Likewise.
18009         * modules/wctob (Files): Likewise.
18010         * modules/c-strcase-tests (Files): Likewise.
18011         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
18012         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
18013         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
18014         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
18015         * modules/vasnprintf-posix-tests (Files): Likewise.
18016
18017 2008-12-21  William Pursell  <bill.pursell@gmail.com>
18018
18019         gitlog-to-changelog: pass all command-line arguments to git-log
18020         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
18021         it is sometimes convenient to filter the commits in various ways.
18022         gitlog-to-changelog only allows --since to specify a start date,
18023         but git-log itself supports many other filtering mechanisms.
18024         At the moment, I want to filter by branch name.  Rather than
18025         adding a --branch option to gitlog-to-changelog, it seems more
18026         flexible to simply pass all options directly to git-log and let
18027         git do the work.  Notice that this effectively makes --since a
18028         redundant option for gitlog-to-changelog, but removing it would
18029         require current usage to change since calls would then require
18030         an additional '--'.
18031
18032 2008-12-21  Bruno Haible  <bruno@clisp.org>
18033
18034         * modules/mbsnrtowcs-tests: New file.
18035         * tests/test-mbsnrtowcs1.sh: New file.
18036         * tests/test-mbsnrtowcs2.sh: New file.
18037         * tests/test-mbsnrtowcs3.sh: New file.
18038         * tests/test-mbsnrtowcs4.sh: New file.
18039         * tests/test-mbsnrtowcs.c: New file.
18040
18041         New module 'mbsnrtowcs'.
18042         * lib/wchar.in.h (mbsnrtowcs): New declaration.
18043         * lib/mbsnrtowcs.c: New file.
18044         * lib/mbsrtowcs-state.c: New file.
18045         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
18046         (internal_state): Remove variable.
18047         * m4/mbsnrtowcs.m4: New file.
18048         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
18049         compilation units.
18050         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
18051         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
18052         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
18053         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
18054         * modules/mbsnrtowcs: New file.
18055         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
18056         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
18057         portability problem.
18058
18059 2008-12-21  Bruno Haible  <bruno@clisp.org>
18060
18061         Work around mbsrtowcs bug.
18062         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
18063         (gl_FUNC_MBSRTOWCS): Invoke it.
18064         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
18065         m4/locale-zh.m4.
18066         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
18067
18068 2008-12-21  Bruno Haible  <bruno@clisp.org>
18069
18070         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
18071
18072 2008-12-21  Bruno Haible  <bruno@clisp.org>
18073
18074         Update doc for AIX.
18075         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
18076         16-bit wchar_t type.
18077         * doc/posix-functions/btowc.texi: Likewise.
18078         * doc/posix-functions/fgetwc.texi: Likewise.
18079         * doc/posix-functions/fgetws.texi: Likewise.
18080         * doc/posix-functions/fputwc.texi: Likewise.
18081         * doc/posix-functions/fputws.texi: Likewise.
18082         * doc/posix-functions/fwide.texi: Likewise.
18083         * doc/posix-functions/fwprintf.texi: Likewise.
18084         * doc/posix-functions/fwscanf.texi: Likewise.
18085         * doc/posix-functions/getwchar.texi: Likewise.
18086         * doc/posix-functions/getwc.texi: Likewise.
18087         * doc/posix-functions/iswalnum.texi: Likewise.
18088         * doc/posix-functions/iswalpha.texi: Likewise.
18089         * doc/posix-functions/iswblank.texi: Likewise.
18090         * doc/posix-functions/iswcntrl.texi: Likewise.
18091         * doc/posix-functions/iswctype.texi: Likewise.
18092         * doc/posix-functions/iswdigit.texi: Likewise.
18093         * doc/posix-functions/iswgraph.texi: Likewise.
18094         * doc/posix-functions/iswlower.texi: Likewise.
18095         * doc/posix-functions/iswprint.texi: Likewise.
18096         * doc/posix-functions/iswpunct.texi: Likewise.
18097         * doc/posix-functions/iswspace.texi: Likewise.
18098         * doc/posix-functions/iswupper.texi: Likewise.
18099         * doc/posix-functions/iswxdigit.texi: Likewise.
18100         * doc/posix-functions/mbrtowc.texi: Likewise.
18101         * doc/posix-functions/mbsrtowcs.texi: Likewise.
18102         * doc/posix-functions/mbstowcs.texi: Likewise.
18103         * doc/posix-functions/mbtowc.texi: Likewise.
18104         * doc/posix-functions/putwchar.texi: Likewise.
18105         * doc/posix-functions/putwc.texi: Likewise.
18106         * doc/posix-functions/swprintf.texi: Likewise.
18107         * doc/posix-functions/tolower.texi: Likewise.
18108         * doc/posix-functions/toupper.texi: Likewise.
18109         * doc/posix-functions/towctrans.texi: Likewise.
18110         * doc/posix-functions/ungetwc.texi: Likewise.
18111         * doc/posix-functions/vswprintf.texi: Likewise.
18112         * doc/posix-functions/wcrtomb.texi: Likewise.
18113         * doc/posix-functions/wcscat.texi: Likewise.
18114         * doc/posix-functions/wcschr.texi: Likewise.
18115         * doc/posix-functions/wcscmp.texi: Likewise.
18116         * doc/posix-functions/wcscoll.texi: Likewise.
18117         * doc/posix-functions/wcscpy.texi: Likewise.
18118         * doc/posix-functions/wcscspn.texi: Likewise.
18119         * doc/posix-functions/wcsftime.texi: Likewise.
18120         * doc/posix-functions/wcslen.texi: Likewise.
18121         * doc/posix-functions/wcsncat.texi: Likewise.
18122         * doc/posix-functions/wcsncmp.texi: Likewise.
18123         * doc/posix-functions/wcsncpy.texi: Likewise.
18124         * doc/posix-functions/wcspbrk.texi: Likewise.
18125         * doc/posix-functions/wcsrchr.texi: Likewise.
18126         * doc/posix-functions/wcsrtombs.texi: Likewise.
18127         * doc/posix-functions/wcsspn.texi: Likewise.
18128         * doc/posix-functions/wcsstr.texi: Likewise.
18129         * doc/posix-functions/wcstod.texi: Likewise.
18130         * doc/posix-functions/wcstof.texi: Likewise.
18131         * doc/posix-functions/wcstoimax.texi: Likewise.
18132         * doc/posix-functions/wcstok.texi: Likewise.
18133         * doc/posix-functions/wcstold.texi: Likewise.
18134         * doc/posix-functions/wcstoll.texi: Likewise.
18135         * doc/posix-functions/wcstol.texi: Likewise.
18136         * doc/posix-functions/wcstombs.texi: Likewise.
18137         * doc/posix-functions/wcstoull.texi: Likewise.
18138         * doc/posix-functions/wcstoul.texi: Likewise.
18139         * doc/posix-functions/wcstoumax.texi: Likewise.
18140         * doc/posix-functions/wcswidth.texi: Likewise.
18141         * doc/posix-functions/wcsxfrm.texi: Likewise.
18142         * doc/posix-functions/wctob.texi: Likewise.
18143         * doc/posix-functions/wctomb.texi: Likewise.
18144         * doc/posix-functions/wctrans.texi: Likewise.
18145         * doc/posix-functions/wctype.texi: Likewise.
18146         * doc/posix-functions/wcwidth.texi: Likewise.
18147         * doc/posix-functions/wmemchr.texi: Likewise.
18148         * doc/posix-functions/wmemcmp.texi: Likewise.
18149         * doc/posix-functions/wmemcpy.texi: Likewise.
18150         * doc/posix-functions/wmemmove.texi: Likewise.
18151         * doc/posix-functions/wmemset.texi: Likewise.
18152         * doc/posix-functions/wprintf.texi: Likewise.
18153         * doc/posix-functions/wscanf.texi: Likewise.
18154
18155 2008-12-21  Bruno Haible  <bruno@clisp.org>
18156
18157         Update doc for HP-UX 11.11.
18158         * doc/posix-functions/btowc.texi: Clarify that the function is missing
18159         in HP-UX version 11.00, not in all versions of HP-UX 11.
18160         * doc/posix-functions/fwide.texi: Likewise.
18161         * doc/posix-functions/fwprintf.texi: Likewise.
18162         * doc/posix-functions/fwscanf.texi: Likewise.
18163         * doc/posix-functions/inet_ntop.texi: Likewise.
18164         * doc/posix-functions/inet_pton.texi: Likewise.
18165         * doc/posix-functions/mbrlen.texi: Likewise.
18166         * doc/posix-functions/mbrtowc.texi: Likewise.
18167         * doc/posix-functions/mbsinit.texi: Likewise.
18168         * doc/posix-functions/mbsrtowcs.texi: Likewise.
18169         * doc/posix-functions/swprintf.texi: Likewise.
18170         * doc/posix-functions/swscanf.texi: Likewise.
18171         * doc/posix-functions/towctrans.texi: Likewise.
18172         * doc/posix-functions/vfwprintf.texi: Likewise.
18173         * doc/posix-functions/vswprintf.texi: Likewise.
18174         * doc/posix-functions/vwprintf.texi: Likewise.
18175         * doc/posix-functions/wcrtomb.texi: Likewise.
18176         * doc/posix-functions/wcsrtombs.texi: Likewise.
18177         * doc/posix-functions/wcsstr.texi: Likewise.
18178         * doc/posix-functions/wctob.texi: Likewise.
18179         * doc/posix-functions/wctrans.texi: Likewise.
18180         * doc/posix-functions/wmemchr.texi: Likewise.
18181         * doc/posix-functions/wmemcmp.texi: Likewise.
18182         * doc/posix-functions/wmemcpy.texi: Likewise.
18183         * doc/posix-functions/wmemmove.texi: Likewise.
18184         * doc/posix-functions/wmemset.texi: Likewise.
18185         * doc/posix-functions/wprintf.texi: Likewise.
18186         * doc/posix-functions/wscanf.texi: Likewise.
18187
18188 2008-12-21  Bruno Haible  <bruno@clisp.org>
18189
18190         Work around a portability problem.
18191         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
18192         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
18193
18194 2008-12-20  Bruno Haible  <bruno@clisp.org>
18195
18196         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
18197         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
18198         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
18199         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
18200         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
18201
18202         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
18203         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
18204         set.
18205         (GNULIB_defined_mbstate_t): New macro.
18206         (mbsinit): Redefine if REPLACE_MBSINIT is set.
18207         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
18208         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
18209         reuses the system's mbrtowc function but works around the bugs.
18210         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
18211         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
18212         macros.
18213         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
18214         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
18215         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
18216         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
18217         REPLACE_MBSINIT if mbsinit needs to be overridden.
18218         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
18219         REPLACE_MBSINIT, REPLACE_MBRTOWC.
18220         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
18221         REPLACE_MBSINIT, REPLACE_MBRTOWC.
18222         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
18223         m4/locale-zh.m4.
18224         (Depends): Add mbsinit.
18225         * modules/mbsinit (Depends): Add mbrtowc.
18226         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
18227
18228 2008-12-20  Bruno Haible  <bruno@clisp.org>
18229
18230         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
18231         so that there are no conversion errors on AIX.
18232         * tests/test-mbsrtowcs.c (main): LIkewise.
18233
18234 2008-12-20  Bruno Haible  <bruno@clisp.org>
18235
18236         Work around wctob bug on Solaris <= 9.
18237         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
18238         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
18239         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
18240         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
18241         * modules/wctob (Files): Add m4/locale-fr.m4.
18242         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
18243
18244 2008-12-20  Bruno Haible  <bruno@clisp.org>
18245
18246         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
18247         /dev/null.
18248         * tests/test-select-in.sh: Likewise.
18249         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
18250
18251 2008-12-20  Bruno Haible  <bruno@clisp.org>
18252
18253         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
18254         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
18255         Cygwin 1.5.x.
18256
18257 2008-12-20  Bruno Haible  <bruno@clisp.org>
18258
18259         Ensure mbstate_t is defined on HP-UX 11.11.
18260         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
18261         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
18262         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
18263         AC_USE_SYSTEM_EXTENSIONS.
18264         * modules/fnmatch (Depends-on): Add extensions.
18265         * modules/mbrlen (Depends-on): Likewise.
18266         * modules/mbrtowc (Depends-on): Likewise.
18267         * modules/mbsinit (Depends-on): Likewise.
18268         * modules/mbsrtowcs (Depends-on): Likewise.
18269         * modules/mbswidth (Depends-on): Likewise.
18270         * modules/quotearg (Depends-on): Likewise.
18271         * modules/strftime (Depends-on): Likewise.
18272
18273 2008-12-20  Bruno Haible  <bruno@clisp.org>
18274
18275         Ensure wctob is declared on IRIX 6.5.
18276         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
18277         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
18278         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
18279         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
18280         of HAVE_WCTOB.
18281         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
18282         HAVE_WCTOB.
18283         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
18284
18285 2008-12-19  Bruno Haible  <bruno@clisp.org>
18286
18287         * modules/mbsrtowcs-tests: New file.
18288         * tests/test-mbsrtowcs1.sh: New file.
18289         * tests/test-mbsrtowcs2.sh: New file.
18290         * tests/test-mbsrtowcs3.sh: New file.
18291         * tests/test-mbsrtowcs4.sh: New file.
18292         * tests/test-mbsrtowcs.c: New file.
18293
18294         New module 'mbsrtowcs'.
18295         * lib/wchar.in.h (mbsrtowcs): New declaration.
18296         * lib/mbsrtowcs.c: New file.
18297         * m4/mbsrtowcs.m4: New file.
18298         * modules/mbsrtowcs: New file.
18299         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
18300         HAVE_MBSRTOWCS.
18301         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
18302         HAVE_MBSRTOWCS.
18303         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
18304
18305 2008-12-19  Bruno Haible  <bruno@clisp.org>
18306
18307         New module 'mbrlen'.
18308         * lib/wchar.in.h (mbrlen): New declaration.
18309         * lib/mbrlen.c: New file.
18310         * m4/mbrlen.m4: New file.
18311         * modules/mbrlen: New file.
18312         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
18313         HAVE_MBRLEN.
18314         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
18315         HAVE_MBRLEN.
18316         * doc/posix-functions/mbrlen.texi: Document the new module.
18317
18318 2008-12-19  Bruno Haible  <bruno@clisp.org>
18319
18320         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
18321         * modules/mbrtowc (Depends-on): Add verify.
18322         Suggested by Paul Eggert.
18323
18324 2008-12-18  Bruno Haible  <bruno@clisp.org>
18325
18326         * modules/mbsinit-tests: New file.
18327         * tests/test-mbsinit.sh: New file.
18328         * tests/test-mbsinit.c: New file.
18329
18330 2008-12-18  Bruno Haible  <bruno@clisp.org>
18331
18332         * modules/mbrtowc-tests: New file.
18333         * tests/test-mbrtowc1.sh: New file.
18334         * tests/test-mbrtowc2.sh: New file.
18335         * tests/test-mbrtowc3.sh: New file.
18336         * tests/test-mbrtowc4.sh: New file.
18337         * tests/test-mbrtowc.c: New file.
18338
18339         New module 'mbrtowc'.
18340         * lib/wchar.in.h (mbstate_t): Override when the system does not have
18341         mbsinit and mbrtowc.
18342         (mbrtowc): New declaration.
18343         * lib/mbrtowc.c: New file.
18344         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
18345         * modules/mbrtowc: New file.
18346         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
18347         HAVE_MBRTOWC.
18348         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
18349         HAVE_MBRTOWC.
18350         * doc/posix-functions/mbrtowc.texi: Document the new module.
18351
18352 2008-12-18  Bruno Haible  <bruno@clisp.org>
18353
18354         New module 'wctob'.
18355         * lib/wchar.in.h (wctob): New declaration.
18356         * lib/wctob.c: New file.
18357         * m4/wctob.m4: New file.
18358         * modules/wctob: New file.
18359         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
18360         HAVE_WCTOB.
18361         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
18362         * doc/posix-functions/wctob.texi: Document the new module.
18363
18364 2008-12-18  Bruno Haible  <bruno@clisp.org>
18365
18366         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
18367         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
18368
18369 2008-12-18  Simon Josefsson  <simon@josefsson.org>
18370
18371         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
18372         G. Christensen" <tgc@jupiterrise.com>.
18373
18374         * lib/flock.c: Need to include errno.h.  Reported by "Tom
18375         G. Christensen" <tgc@jupiterrise.com>.
18376
18377         * lib/flock.c: Need to include string.h.  Reported by "Tom
18378         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
18379         <ebb9@byu.net>.
18380
18381 2008-12-18  Bruno Haible  <bruno@clisp.org>
18382
18383         * m4/locale-ja.m4: New file, from GNU gettext.
18384
18385 2008-12-17  Bruno Haible  <bruno@clisp.org>
18386
18387         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
18388         Suggested by Eric Blake.
18389
18390 2008-12-17  Bruno Haible  <bruno@clisp.org>
18391
18392         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
18393
18394 2008-12-17  Bruno Haible  <bruno@clisp.org>
18395
18396         * lib/mbsinit.c: Include verify.h. Verify an assumption.
18397         * modules/mbsinit (Depends-on): Add verify.
18398         Suggested by Paul Eggert.
18399
18400 2008-12-17  Bruno Haible  <bruno@clisp.org>
18401
18402         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
18403         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
18404         gl_FUNC_MBRTOWC.
18405         * m4/mbiter.m4 (gl_MBITER): LIkewise.
18406         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
18407         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
18408         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
18409         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
18410         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
18411         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
18412         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
18413         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
18414         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
18415         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
18416         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
18417         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
18418         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
18419         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
18420         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
18421         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
18422         * modules/trim (configure.ac): Likewise.
18423
18424 2008-12-17  Bruno Haible  <bruno@clisp.org>
18425
18426         * modules/btowc-tests: New file.
18427         * tests/test-btowc1.sh: New file.
18428         * tests/test-btowc2.sh: New file.
18429         * tests/test-btowc.c: New file.
18430
18431         New module 'btowc'.
18432         * lib/wchar.in.h (btowc): New declaration.
18433         * lib/btowc.c: New file.
18434         * m4/btowc.m4: New file.
18435         * modules/btowc: New file.
18436         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
18437         HAVE_BTOWC.
18438         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
18439         * doc/posix-functions/btowc.texi: Document the new module.
18440
18441 2008-12-17  Bruno Haible  <bruno@clisp.org>
18442
18443         New module 'mbsinit'.
18444         * lib/wchar.in.h (mbsinit): New declaration.
18445         * lib/mbsinit.c: New file.
18446         * m4/mbsinit.m4: New file.
18447         * modules/mbsinit: New file.
18448         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
18449         HAVE_MBSINIT.
18450         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
18451         HAVE_MBSINIT.
18452         * doc/posix-functions/mbsinit.texi: Document the new module.
18453
18454 2008-12-16  Bruno Haible  <bruno@clisp.org>
18455
18456         * lib/unistd.in.h: Add comment.
18457         * tests/test-environ.c: Don't include <stdlib.h>.
18458
18459 2008-12-16  Bruno Haible  <bruno@clisp.org>
18460
18461         * lib/parse-duration.h (parse_duration): Document return value
18462         convention.
18463         * lib/parse-duration.c: Include specification header first. Add
18464         comments.
18465         (_): Remove macro.
18466         (parse_year_month_day, parse_hour_minute_second): Move side effects
18467         outside of strchr call.
18468         (parse_non_iso8601): Move side effects outside of isspace call.
18469         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
18470         call.
18471
18472 2008-12-16  Bruno Haible  <bruno@clisp.org>
18473
18474         * tests/test-parse-duration.sh: Produce no output when the test
18475         succeeds.
18476
18477 2008-12-16  Bruno Haible  <bruno@clisp.org>
18478
18479         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
18480         expressions.
18481
18482 2008-12-15  Bruno Haible  <bruno@clisp.org>
18483
18484         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
18485         * doc/glibc-functions/flistxattr.texi: Likewise.
18486         * doc/glibc-functions/fopencookie.texi: Likewise.
18487         * doc/glibc-functions/fremovexattr.texi: Likewise.
18488         * doc/glibc-functions/fsetxattr.texi: Likewise.
18489         * doc/glibc-functions/getxattr.texi: Likewise.
18490         * doc/glibc-functions/lgetxattr.texi: Likewise.
18491         * doc/glibc-functions/listxattr.texi: Likewise.
18492         * doc/glibc-functions/llistxattr.texi: Likewise.
18493         * doc/glibc-functions/lremovexattr.texi: Likewise.
18494         * doc/glibc-functions/lsetxattr.texi: Likewise.
18495         * doc/glibc-functions/removexattr.texi: Likewise.
18496         * doc/glibc-functions/setxattr.texi: Likewise.
18497         * doc/posix-functions/open_memstream.texi: Likewise.
18498
18499 2008-12-15  Eric Blake  <ebb9@byu.net>
18500
18501         Update doc for cygwin 1.7.
18502         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
18503         functions.
18504         * doc/posix-functions/fchmodat.texi: Likewise.
18505         * doc/posix-functions/fchownat.texi: Likewise.
18506         * doc/posix-functions/fdopendir.texi: Likewise.
18507         * doc/posix-functions/fmemopen.texi: Likewise.
18508         * doc/posix-functions/freeaddrinfo.texi: Likewise.
18509         * doc/posix-functions/fstatat.texi: Likewise.
18510         * doc/posix-functions/futimens.texi: Likewise.
18511         * doc/posix-functions/gai_strerror.texi: Likewise.
18512         * doc/posix-functions/getaddrinfo.texi: Likewise.
18513         * doc/posix-functions/getnameinfo.texi: Likewise.
18514         * doc/posix-functions/if_freenameindex.texi: Likewise.
18515         * doc/posix-functions/if_indextoname.texi: Likewise.
18516         * doc/posix-functions/if_nameindex.texi: Likewise.
18517         * doc/posix-functions/if_nametoindex.texi: Likewise.
18518         * doc/posix-functions/insque.texi: Likewise.
18519         * doc/posix-functions/linkat.texi: Likewise.
18520         * doc/posix-functions/llrint.texi: Likewise.
18521         * doc/posix-functions/llrintf.texi: Likewise.
18522         * doc/posix-functions/llrintl.texi: Likewise.
18523         * doc/posix-functions/lockf.texi: Likewise.
18524         * doc/posix-functions/lrintl.texi: Likewise.
18525         * doc/posix-functions/mkdirat.texi: Likewise.
18526         * doc/posix-functions/mkfifoat.texi: Likewise.
18527         * doc/posix-functions/mknodat.texi: Likewise.
18528         * doc/posix-functions/mq_close.texi: Likewise.
18529         * doc/posix-functions/mq_getattr.texi: Likewise.
18530         * doc/posix-functions/mq_notify.texi: Likewise.
18531         * doc/posix-functions/mq_open.texi: Likewise.
18532         * doc/posix-functions/mq_receive.texi: Likewise.
18533         * doc/posix-functions/mq_send.texi: Likewise.
18534         * doc/posix-functions/mq_setattr.texi: Likewise.
18535         * doc/posix-functions/mq_timedreceive.texi: Likewise.
18536         * doc/posix-functions/mq_timedsend.texi: Likewise.
18537         * doc/posix-functions/mq_unlink.texi: Likewise.
18538         * doc/posix-functions/open_memstream.texi: Likewise.
18539         * doc/posix-functions/openat.texi: Likewise.
18540         * doc/posix-functions/posix_fadvise.texi: Likewise.
18541         * doc/posix-functions/posix_fallocate.texi: Likewise.
18542         * doc/posix-functions/posix_madvise.texi: Likewise.
18543         * doc/posix-functions/posix_memalign.texi: Likewise.
18544         * doc/posix-functions/posix_openpt.texi: Likewise.
18545         * doc/posix-functions/readlinkat.texi: Likewise.
18546         * doc/posix-functions/remque.texi: Likewise.
18547         * doc/posix-functions/renameat.texi: Likewise.
18548         * doc/posix-functions/rintl.texi: Likewise.
18549         * doc/posix-functions/sem_unlink.texi: Likewise.
18550         * doc/posix-functions/shm_open.texi: Likewise.
18551         * doc/posix-functions/shm_unlink.texi: Likewise.
18552         * doc/posix-functions/signgam.texi: Likewise.
18553         * doc/posix-functions/sigset.texi: Likewise.
18554         * doc/posix-functions/stpcpy.texi: Likewise.
18555         * doc/posix-functions/stpncpy.texi: Likewise.
18556         * doc/posix-functions/strerror.texi: Likewise.
18557         * doc/posix-functions/strtod.texi: Likewise.
18558         * doc/posix-functions/symlinkat.texi: Likewise.
18559         * doc/posix-functions/unlinkat.texi: Likewise.
18560         * doc/posix-functions/utimensat.texi: Likewise.
18561         * doc/glibc-functions/bindresvport.texi: Likewise.
18562         * doc/glibc-functions/dn_expand.texi: Likewise.
18563         * doc/glibc-functions/exp10.texi: Likewise.
18564         * doc/glibc-functions/exp10f.texi: Likewise.
18565         * doc/glibc-functions/fgetxattr.texi: Likewise.
18566         * doc/glibc-functions/flistxattr.texi: Likewise.
18567         * doc/glibc-functions/fopencookie.texi: Likewise.
18568         * doc/glibc-functions/freeifaddrs.texi: Likewise.
18569         * doc/glibc-functions/fremovexattr.texi: Likewise.
18570         * doc/glibc-functions/fsetxattr.texi: Likewise.
18571         * doc/glibc-functions/getifaddrs.texi: Likewise.
18572         * doc/glibc-functions/getxattr.texi: Likewise.
18573         * doc/glibc-functions/lgetxattr.texi: Likewise.
18574         * doc/glibc-functions/listxattr.texi: Likewise.
18575         * doc/glibc-functions/llistxattr.texi: Likewise.
18576         * doc/glibc-functions/lremovexattr.texi: Likewise.
18577         * doc/glibc-functions/lsetxattr.texi: Likewise.
18578         * doc/glibc-functions/pow10.texi: Likewise.
18579         * doc/glibc-functions/pow10f.texi: Likewise.
18580         * doc/glibc-functions/rcmd_af.texi: Likewise.
18581         * doc/glibc-functions/removexattr.texi: Likewise.
18582         * doc/glibc-functions/res_init.texi: Likewise.
18583         * doc/glibc-functions/res_mkquery.texi: Likewise.
18584         * doc/glibc-functions/res_query.texi: Likewise.
18585         * doc/glibc-functions/res_querydomain.texi: Likewise.
18586         * doc/glibc-functions/res_send.texi: Likewise.
18587         * doc/glibc-functions/rresvport_af.texi: Likewise.
18588         * doc/glibc-functions/setxattr.texi: Likewise.
18589         * doc/glibc-functions/strcasestr.texi: Likewise.
18590
18591 2008-12-15  Bruno Haible  <bruno@clisp.org>
18592
18593         Fix compilation error on OSF/1 4.0.
18594         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
18595         <sys/time.h>, simply delegate to the system header.
18596         Reported by Daniel Richard G. <oss@teragram.com>.
18597
18598 2008-12-15  Bruno Haible  <bruno@clisp.org>
18599
18600         * doc/posix-functions/openat.texi: Mention the 'openat' module.
18601         * doc/posix-functions/fchmodat.texi: Likewise.
18602         * doc/posix-functions/fchownat.texi: Likewise.
18603         * doc/posix-functions/fdopendir.texi: Likewise.
18604         * doc/posix-functions/fstatat.texi: Likewise.
18605         * doc/posix-functions/mkdirat.texi: Likewise.
18606         * doc/posix-functions/unlinkat.texi: Likewise.
18607
18608 2008-12-14  Bruno Haible  <bruno@clisp.org>
18609
18610         Update doc for POSIX:2008.
18611         * doc/posix-functions/faccessat.texi: New file.
18612         * doc/posix-functions/fchmodat.texi: New file.
18613         * doc/posix-functions/fchownat.texi: New file.
18614         * doc/posix-functions/fdopendir.texi: New file.
18615         * doc/posix-functions/fstatat.texi: New file.
18616         * doc/posix-functions/futimens.texi: New file.
18617         * doc/posix-functions/linkat.texi: New file.
18618         * doc/posix-functions/mkdirat.texi: New file.
18619         * doc/posix-functions/mkfifoat.texi: New file.
18620         * doc/posix-functions/mknodat.texi: New file.
18621         * doc/posix-functions/open_wmemstream.texi: New file.
18622         * doc/posix-functions/openat.texi: New file.
18623         * doc/posix-functions/psiginfo.texi: New file.
18624         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
18625         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
18626         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
18627         * doc/posix-functions/readlinkat.texi: New file.
18628         * doc/posix-functions/renameat.texi: New file.
18629         * doc/posix-functions/strerror_l.texi: New file.
18630         * doc/posix-functions/symlinkat.texi: New file.
18631         * doc/posix-functions/unlinkat.texi: New file.
18632         * doc/posix-functions/utimensat.texi: New file.
18633         * doc/gnulib.texi (Function Substitutes): Add these subsections.
18634
18635 2008-12-14  Bruno Haible  <bruno@clisp.org>
18636
18637         Update doc for POSIX:2008.
18638         * doc/posix-functions/alphasort.texi: Renamed from
18639         doc/glibc-functions/alphasort.texi.
18640         * doc/posix-functions/dirfd.texi: Renamed from
18641         doc/glibc-functions/dirfd.texi.
18642         * doc/posix-functions/dprintf.texi: Renamed from
18643         doc/glibc-functions/dprintf.texi.
18644         * doc/posix-functions/duplocale.texi: Renamed from
18645         doc/glibc-functions/duplocale.texi.
18646         * doc/posix-functions/fexecve.texi: Renamed from
18647         doc/glibc-functions/fexecve.texi.
18648         * doc/posix-functions/fmemopen.texi: Renamed from
18649         doc/glibc-functions/fmemopen.texi.
18650         * doc/posix-functions/freelocale.texi: Renamed from
18651         doc/glibc-functions/freelocale.texi.
18652         * doc/posix-functions/getdate_err.texi: Renamed from
18653         doc/glibc-functions/getdate_err.texi.
18654         * doc/posix-functions/isalnum_l.texi: Renamed from
18655         doc/glibc-functions/isalnum_l.texi.
18656         * doc/posix-functions/isalpha_l.texi: Renamed from
18657         doc/glibc-functions/isalpha_l.texi.
18658         * doc/posix-functions/isblank_l.texi: Renamed from
18659         doc/glibc-functions/isblank_l.texi.
18660         * doc/posix-functions/iscntrl_l.texi: Renamed from
18661         doc/glibc-functions/iscntrl_l.texi.
18662         * doc/posix-functions/isdigit_l.texi: Renamed from
18663         doc/glibc-functions/isdigit_l.texi.
18664         * doc/posix-functions/isgraph_l.texi: Renamed from
18665         doc/glibc-functions/isgraph_l.texi.
18666         * doc/posix-functions/islower_l.texi: Renamed from
18667         doc/glibc-functions/islower_l.texi.
18668         * doc/posix-functions/isprint_l.texi: Renamed from
18669         doc/glibc-functions/isprint_l.texi.
18670         * doc/posix-functions/ispunct_l.texi: Renamed from
18671         doc/glibc-functions/ispunct_l.texi.
18672         * doc/posix-functions/isspace_l.texi: Renamed from
18673         doc/glibc-functions/isspace_l.texi.
18674         * doc/posix-functions/isupper_l.texi: Renamed from
18675         doc/glibc-functions/isupper_l.texi.
18676         * doc/posix-functions/iswalnum_l.texi: Renamed from
18677         doc/glibc-functions/iswalnum_l.texi.
18678         * doc/posix-functions/iswalpha_l.texi: Renamed from
18679         doc/glibc-functions/iswalpha_l.texi.
18680         * doc/posix-functions/iswblank_l.texi: Renamed from
18681         doc/glibc-functions/iswblank_l.texi.
18682         * doc/posix-functions/iswcntrl_l.texi: Renamed from
18683         doc/glibc-functions/iswcntrl_l.texi.
18684         * doc/posix-functions/iswctype_l.texi: Renamed from
18685         doc/glibc-functions/iswctype_l.texi.
18686         * doc/posix-functions/iswdigit_l.texi: Renamed from
18687         doc/glibc-functions/iswdigit_l.texi.
18688         * doc/posix-functions/iswgraph_l.texi: Renamed from
18689         doc/glibc-functions/iswgraph_l.texi.
18690         * doc/posix-functions/iswlower_l.texi: Renamed from
18691         doc/glibc-functions/iswlower_l.texi.
18692         * doc/posix-functions/iswprint_l.texi: Renamed from
18693         doc/glibc-functions/iswprint_l.texi.
18694         * doc/posix-functions/iswpunct_l.texi: Renamed from
18695         doc/glibc-functions/iswpunct_l.texi.
18696         * doc/posix-functions/iswspace_l.texi: Renamed from
18697         doc/glibc-functions/iswspace_l.texi.
18698         * doc/posix-functions/iswupper_l.texi: Renamed from
18699         doc/glibc-functions/iswupper_l.texi.
18700         * doc/posix-functions/iswxdigit_l.texi: Renamed from
18701         doc/glibc-functions/iswxdigit_l.texi.
18702         * doc/posix-functions/isxdigit_l.texi: Renamed from
18703         doc/glibc-functions/isxdigit_l.texi.
18704         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
18705         doc/glibc-functions/mbsnrtowcs.texi.
18706         * doc/posix-functions/mkdtemp.texi: Renamed from
18707         doc/glibc-functions/mkdtemp.texi.
18708         * doc/posix-functions/newlocale.texi: Renamed from
18709         doc/glibc-functions/newlocale.texi.
18710         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
18711         doc/glibc-functions/nl_langinfo_l.texi.
18712         * doc/posix-functions/open_memstream.texi: Renamed from
18713         doc/glibc-functions/open_memstream.texi.
18714         * doc/posix-functions/opterr.texi: Renamed from
18715         doc/glibc-functions/opterr.texi.
18716         * doc/posix-functions/optind.texi: Renamed from
18717         doc/glibc-functions/optind.texi.
18718         * doc/posix-functions/optopt.texi: Renamed from
18719         doc/glibc-functions/optopt.texi.
18720         * doc/posix-functions/psignal.texi: Renamed from
18721         doc/glibc-functions/psignal.texi.
18722         * doc/posix-functions/scandir.texi: Renamed from
18723         doc/glibc-functions/scandir.texi.
18724         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
18725         doc/glibc-functions/sched_get_priority_min.texi.
18726         * doc/posix-functions/signgam.texi: Renamed from
18727         doc/glibc-functions/signgam.texi.
18728         * doc/posix-functions/stpcpy.texi: Renamed from
18729         doc/glibc-functions/stpcpy.texi.
18730         * doc/posix-functions/stpncpy.texi: Renamed from
18731         doc/glibc-functions/stpncpy.texi.
18732         * doc/posix-functions/strcasecmp_l.texi: Renamed from
18733         doc/glibc-functions/strcasecmp_l.texi.
18734         * doc/posix-functions/strcoll_l.texi: Renamed from
18735         doc/glibc-functions/strcoll_l.texi.
18736         * doc/posix-functions/strfmon_l.texi: Renamed from
18737         doc/glibc-functions/strfmon_l.texi.
18738         * doc/posix-functions/strftime_l.texi: Renamed from
18739         doc/glibc-functions/strftime_l.texi.
18740         * doc/posix-functions/strncasecmp_l.texi: Renamed from
18741         doc/glibc-functions/strncasecmp_l.texi.
18742         * doc/posix-functions/strndup.texi: Renamed from
18743         doc/glibc-functions/strndup.texi.
18744         * doc/posix-functions/strnlen.texi: Renamed from
18745         doc/glibc-functions/strnlen.texi.
18746         * doc/posix-functions/strsignal.texi: Renamed from
18747         doc/glibc-functions/strsignal.texi.
18748         * doc/posix-functions/strxfrm_l.texi: Renamed from
18749         doc/glibc-functions/strxfrm_l.texi.
18750         * doc/posix-functions/timer_gettime.texi: Renamed from
18751         doc/glibc-functions/timer_gettime.texi.
18752         * doc/posix-functions/tolower_l.texi: Renamed from
18753         doc/glibc-functions/tolower_l.texi.
18754         * doc/posix-functions/toupper_l.texi: Renamed from
18755         doc/glibc-functions/toupper_l.texi.
18756         * doc/posix-functions/towctrans_l.texi: Renamed from
18757         doc/glibc-functions/towctrans_l.texi.
18758         * doc/posix-functions/towlower_l.texi: Renamed from
18759         doc/glibc-functions/towlower_l.texi.
18760         * doc/posix-functions/towupper_l.texi: Renamed from
18761         doc/glibc-functions/towupper_l.texi.
18762         * doc/posix-functions/uselocale.texi: Renamed from
18763         doc/glibc-functions/uselocale.texi.
18764         * doc/posix-functions/vdprintf.texi: Renamed from
18765         doc/glibc-functions/vdprintf.texi.
18766         * doc/posix-functions/wcpcpy.texi:
18767         Renamed from doc/glibc-functions/wcpcpy.texi.
18768         * doc/posix-functions/wcpncpy.texi: Renamed from
18769         doc/glibc-functions/wcpncpy.texi.
18770         * doc/posix-functions/wcscasecmp.texi: Renamed from
18771         doc/glibc-functions/wcscasecmp.texi.
18772         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
18773         doc/glibc-functions/wcscasecmp_l.texi.
18774         * doc/posix-functions/wcscoll_l.texi: Renamed from
18775         doc/glibc-functions/wcscoll_l.texi.
18776         * doc/posix-functions/wcsdup.texi: Renamed from
18777         doc/glibc-functions/wcsdup.texi.
18778         * doc/posix-functions/wcsncasecmp.texi: Renamed from
18779         doc/glibc-functions/wcsncasecmp.texi.
18780         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
18781         doc/glibc-functions/wcsncasecmp_l.texi.
18782         * doc/posix-functions/wcsnlen.texi: Renamed from
18783         doc/glibc-functions/wcsnlen.texi.
18784         * doc/posix-functions/wcsnrtombs.texi: Renamed from
18785         doc/glibc-functions/wcsnrtombs.texi.
18786         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
18787         doc/glibc-functions/wcsxfrm_l.texi.
18788         * doc/posix-functions/wctrans_l.texi: Renamed from
18789         doc/glibc-functions/wctrans_l.texi.
18790         * doc/posix-functions/wctype_l.texi: Renamed from
18791         doc/glibc-functions/wctype_l.texi.
18792         * doc/gnulib.texi (Function Substitutes): Add these subsections.
18793         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
18794         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
18795         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
18796         these subsections.
18797         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
18798         Remove sections.
18799
18800 2008-12-14  Bruno Haible  <bruno@clisp.org>
18801
18802         Update doc for POSIX:2008.
18803         * doc/posix-functions/*.texi: Update URL of POSIX specification.
18804
18805 2008-12-14  Bruno Haible  <bruno@clisp.org>
18806
18807         Update doc for POSIX:2008.
18808         * doc/pastposix-functions/bcmp.texi: Renamed from
18809         doc/posix-functions/bcmp.texi.
18810         * doc/pastposix-functions/bcopy.texi: Renamed from
18811         doc/posix-functions/bcopy.texi.
18812         * doc/pastposix-functions/bsd_signal.texi: Renamed from
18813         doc/posix-functions/bsd_signal.texi.
18814         * doc/pastposix-functions/bzero.texi: Renamed from
18815         doc/posix-functions/bzero.texi.
18816         * doc/pastposix-functions/ecvt.texi: Renamed from
18817         doc/posix-functions/ecvt.texi.
18818         * doc/pastposix-functions/fcvt.texi: Renamed from
18819         doc/posix-functions/fcvt.texi.
18820         * doc/pastposix-functions/ftime.texi: Renamed from
18821         doc/posix-functions/ftime.texi.
18822         * doc/pastposix-functions/gcvt.texi: Renamed from
18823         doc/posix-functions/gcvt.texi.
18824         * doc/pastposix-functions/getcontext.texi: Renamed from
18825         doc/posix-functions/getcontext.texi.
18826         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
18827         doc/posix-functions/gethostbyaddr.texi.
18828         * doc/pastposix-functions/gethostbyname.texi: Renamed from
18829         doc/posix-functions/gethostbyname.texi.
18830         * doc/pastposix-functions/getwd.texi: Renamed from
18831         doc/posix-functions/getwd.texi.
18832         * doc/pastposix-functions/h_errno.texi: Renamed from
18833         doc/posix-functions/h_errno.texi.
18834         * doc/pastposix-functions/index.texi: Renamed from
18835         doc/posix-functions/index.texi.
18836         * doc/pastposix-functions/makecontext.texi: Renamed from
18837         doc/posix-functions/makecontext.texi.
18838         * doc/pastposix-functions/mktemp.texi: Renamed from
18839         doc/posix-functions/mktemp.texi.
18840         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
18841         doc/posix-functions/pthread_attr_getstackaddr.texi.
18842         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
18843         doc/posix-functions/pthread_attr_setstackaddr.texi.
18844         * doc/pastposix-functions/rindex.texi: Renamed from
18845         doc/posix-functions/rindex.texi.
18846         * doc/pastposix-functions/scalb.texi: Renamed from
18847         doc/posix-functions/scalb.texi.
18848         * doc/pastposix-functions/setcontext.texi: Renamed from
18849         doc/posix-functions/setcontext.texi.
18850         * doc/pastposix-functions/swapcontext.texi: Renamed from
18851         doc/posix-functions/swapcontext.texi.
18852         * doc/pastposix-functions/ualarm.texi: Renamed from
18853         doc/posix-functions/ualarm.texi.
18854         * doc/pastposix-functions/usleep.texi: Renamed from
18855         doc/posix-functions/usleep.texi.
18856         * doc/pastposix-functions/vfork.texi: Renamed from
18857         doc/posix-functions/vfork.texi.
18858         * doc/pastposix-functions/wcswcs.texi: Renamed from
18859         doc/posix-functions/wcswcs.texi.
18860         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
18861         (Function Substitutes): Update.
18862
18863 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18864
18865         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
18866         m4/strerror.m4.
18867
18868 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18869             Bruno Haible  <bruno@clisp.org>
18870
18871         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
18872
18873 2008-12-13  Bruno Haible  <bruno@clisp.org>
18874
18875         * modules/strtoull (Depends-on): Remove unistd.
18876
18877 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18878
18879         * modules/strtoull (Depends-on): Add stdlib.
18880
18881 2008-12-11  Simon Josefsson  <simon@josefsson.org>
18882
18883         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
18884
18885 2008-12-10  Jim Meyering  <meyering@redhat.com>
18886
18887         gl_ASSERT: don't say assertions are disabled when they're not
18888         * m4/assert.m4 (gl_ASSERT): Do not make configure report
18889         "checking whether to enable assertions... no", when they are in
18890         fact enabled.  This is solely a bug in the output of configure.
18891         In spite of saying "no", NDEBUG was not defined in that case.
18892         Also, as noted by Eric Blake, leave assertions enabled upon
18893         --enable-assert=INVALID.
18894
18895 2008-12-10  Bruno Haible  <bruno@clisp.org>
18896
18897         Change MODULES.html to refer to POSIX:2008 where possible.
18898         * MODULES.html.sh (POSIX2008_URL): New variable.
18899         (posix_headers): Remove sys/timeb, ucontext.
18900         (posix2001_headers): New variable.
18901         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
18902         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
18903         index, makecontext, mktemp, pthread_attr_getstackaddr,
18904         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
18905         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
18906         (posix2001_functions): New variable.
18907         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
18908         otherwise.
18909
18910 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18911
18912         add missing include to parse-duration.c
18913         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
18914         * modules/parse-duration (Depends-on): Add xalloc.
18915
18916         fix sed script reading maint.mk
18917         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
18918         (syntax-check-rules): Use it.
18919
18920 2008-12-09  Bruno Haible  <bruno@clisp.org>
18921
18922         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
18923         MacOS X 10.4/PowerPC.
18924         Reported by Simon Josefsson.
18925
18926 2008-12-08  Jim Meyering  <meyering@redhat.com>
18927
18928         work around mingw's lack of some S_IF definitions
18929         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
18930         Reported by Simon Josefsson.
18931
18932 2008-12-08  Bruno Haible  <bruno@clisp.org>
18933
18934         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
18935         applied to variables. Needed on MacOS X 10.4/PowerPC.
18936         Reported by Simon Josefsson.
18937
18938 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
18939         and Eric Blake  <ebb9@byu.net>
18940
18941         assert: honor --enable-assert
18942         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
18943         order to honor --enable-assert, rather than treating it as a
18944         synonym for --disable-assert.
18945
18946 2008-12-08  Jim Meyering  <meyering@redhat.com>
18947
18948         * lib/posixtm.c: Remove now-useless declaration of mktime.
18949
18950         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
18951
18952 2008-12-07  Bruno Haible  <bruno@clisp.org>
18953
18954         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
18955         test_once): Mark functions as static.
18956         * tests/test-tls.c (test_tls): Likewise.
18957
18958 2008-12-07  Bruno Haible  <bruno@clisp.org>
18959
18960         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
18961         iconv_register_autodetect.
18962
18963 2008-12-07  Jim Meyering  <meyering@redhat.com>
18964
18965         posixtm.c: avoid a warning
18966         * lib/posixtm.c (posixtime): Don't initialize tm0.
18967         It's no longer needed to placate gcc4's -Wuninitialized,
18968         and the attempt to placate would elicit a new warning.
18969
18970         unicodeio.c: mark unused parameters
18971         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
18972         (fallback_failure_callback): Likewise.
18973
18974 2008-12-07  Bruno Haible  <bruno@clisp.org>
18975
18976         * gnulib-tool (func_create_testdir): When building the tests
18977         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
18978         Reported by Simon Josefsson.
18979
18980 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18981
18982         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
18983
18984 2008-12-06  Bruno Haible  <bruno@clisp.org>
18985
18986         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
18987         Suggested by Eric Blake.
18988
18989 2008-12-06  Bruno Haible  <bruno@clisp.org>
18990
18991         Fix a c-stack test failure on MacOS X.
18992         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
18993         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
18994         handler for SIGBUS as well.
18995         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
18996         install a signal handler for SIGBUS as well.
18997         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
18998
18999 2008-12-06  Bruno Haible  <bruno@clisp.org>
19000
19001         Advocacy documentation.
19002         * doc/gnulib-intro.texi (Benefits): New section.
19003         * doc/gnulib.texi: Update.
19004
19005 2008-12-06  Bruno Haible  <bruno@clisp.org>
19006
19007         Document the 'manywarnings' module.
19008         * doc/manywarnings.texi: New file.
19009         * doc/gnulib.texi: Include it.
19010
19011 2008-12-05  Eric Blake  <ebb9@byu.net>
19012
19013         tests: silence some gcc warnings
19014         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
19015         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
19016         type mismatches.
19017
19018 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19019             Bruno Haible  <bruno@clisp.org>
19020
19021         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
19022
19023 2008-11-29  Jim Meyering  <meyering@redhat.com>
19024
19025         unicodeio.c: mark unused parameters
19026         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
19027         (fallback_failure_callback): Likewise.
19028
19029         fts: fix a thinko
19030         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
19031         (set_stat_type): Return S_IF*-valued "type" directly.
19032         Prompted by James Youngman's spotting a related bug.
19033         Confirmed by further testing through find.
19034
19035         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
19036         * lib/fts.c (D_TYPE): Define.
19037         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
19038         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
19039         (s_ifmt_shift_bits): New function.
19040         (set_stat_type): New function.
19041         (fts_build): When not calling fts_stat, call set_stat_type
19042         to propagate dirent.d_type info to fts_read caller.
19043         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
19044         fts_statp->st_mode type information may be valid.
19045
19046 2008-11-28  Simon Josefsson  <simon@josefsson.org>
19047
19048         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
19049         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
19050         <sds@gnu.org>.
19051
19052 2008-11-20  Bruno Haible  <bruno@clisp.org>
19053
19054         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
19055         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
19056         INCLUDE_NEXT.
19057         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
19058         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
19059         * modules/math (Makefile.am): Substitute
19060         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
19061         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
19062
19063 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
19064             Bruno Haible  <bruno@clisp.org>
19065
19066         * lib/stdint.in.h: Define all type macros so that their expansion is
19067         a single typedef'ed token. Fixes a compilation failure in Boost which
19068         does "using ::int8_t;".
19069
19070 2008-11-18  Simon Josefsson  <simon@josefsson.org>
19071
19072         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
19073         gl_MANYWARN_ALL_GCC.
19074         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
19075         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
19076         * modules/manywarnings: New file.
19077         * MODULES.html.sh: Mention manywarnings module.
19078
19079 2008-11-18  Bruno Haible  <bruno@clisp.org>
19080
19081         * doc/gnulib-tool.texi (Unit tests): New section.
19082
19083 2008-11-18  Simon Josefsson  <simon@josefsson.org>
19084
19085         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
19086         paths like 'lib/po/foo.po'.
19087
19088 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19089
19090         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
19091         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
19092
19093 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19094
19095         * m4/warnings.m4: Use CPPFLAGS to really check whether the
19096         parameter works.
19097
19098 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19099
19100         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
19101
19102 2008-11-17  Bruce Korb  <bkorb@gnu.org>
19103
19104         * modules/parse-duration-tests: New file.
19105         * tests/test-parse-duration.sh: New file.
19106         * tests/test-parse-duration.c: New file.
19107
19108         New module 'parse-duration'.
19109         * lib/parse-duration.h: New file.
19110         * lib/parse-duration.c: New file.
19111         * modules/parse-duration: New file.
19112
19113 2008-11-17  Bruno Haible  <bruno@clisp.org>
19114
19115         * tests/test-select-out.sh: Comment out the first pipe test.
19116         Reported by Simon Josefsson.
19117
19118 2008-11-17  Bruno Haible  <bruno@clisp.org>
19119
19120         * modules/getaddrinfo (Depends-on): Add servent, hostent.
19121         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
19122         gl_HOSTENT.
19123
19124 2008-11-17  Bruno Haible  <bruno@clisp.org>
19125
19126         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
19127         -lnetwork and -lnet. Needed for Haiku and BeOS.
19128
19129 2008-11-16  Bruno Haible  <bruno@clisp.org>
19130
19131         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
19132
19133 2008-11-16  Bruno Haible  <bruno@clisp.org>
19134
19135         Avoid test failure on Haiku.
19136         * tests/test-fsync.c: Include <errno.h>.
19137         (main): Don't require that fsync (0) fails.
19138
19139 2008-11-15  Bruno Haible  <bruno@clisp.org>
19140
19141         New module 'hostent'.
19142         * modules/hostent: New file.
19143         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
19144
19145 2008-11-15  Bruno Haible  <bruno@clisp.org>
19146
19147         New module 'servent'.
19148         * modules/servent: New file.
19149         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
19150
19151 2008-11-15  Bruno Haible  <bruno@clisp.org>
19152
19153         Avoid generating same test program with two different rules.
19154         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
19155         test-frexp to test-frexp-nolibm.
19156         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
19157         test-frexpl to test-frexpl-nolibm.
19158
19159 2008-11-15  Bruno Haible  <bruno@clisp.org>
19160
19161         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
19162         $(FREXPL_LIBM).
19163
19164 2008-11-15  Bruno Haible  <bruno@clisp.org>
19165
19166         * lib/netdb.in.h: Activate the definitions also when the system's
19167         <netdb.h> has 'struct addrinfo'.
19168         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
19169         EAI_OVERFLOW or AI_NUMERICSERV.
19170         * doc/posix-headers/netdb.texi: Document the problem.
19171
19172 2008-11-15  Bruno Haible  <bruno@clisp.org>
19173
19174         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
19175
19176         Make the 'sched' module work on platforms where <sched.h> exists but
19177         is incomplete (such as Haiku).
19178         * lib/sched.in.h; Include the system's <sched.h> if it exists.
19179         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
19180         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
19181         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
19182         HAVE_STRUCT_SCHED_PARAM.
19183         * modules/sched (Depends-on): Add include_next.
19184         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
19185         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
19186         * doc/posix-headers/sched.texi: Document the issue.
19187
19188 2008-11-13  Jim Meyering  <meyering@redhat.com>
19189
19190         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
19191         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
19192         test would fail due to the difference in the Report bugs to ...
19193         line.  The expected address is empty, "<>", while the actual
19194         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
19195
19196 2008-11-12  Bruno Haible  <bruno@clisp.org>
19197
19198         lstat: don't compile lstat.c on systems lacking lstat
19199         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
19200         which don't have lstat; this is handled by lib/sys_stat.in.h already.
19201         Reported by Daniel P. Berrange via Jim Meyering.
19202
19203 2008-11-12  Jim Meyering  <meyering@redhat.com>
19204
19205         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
19206
19207 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19208
19209         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
19210         instead.
19211
19212 2008-11-12  Bruno Haible  <bruno@clisp.org>
19213
19214         * lib/unicodeio.c: Include unistr.h.
19215         (utf8_wctomb): Remove function.
19216         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
19217
19218 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19219
19220         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
19221         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
19222         <bruno@clisp.org>.
19223         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
19224
19225 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19226
19227         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
19228         * doc/gnulib.texi: Add section for warnings.
19229
19230 2008-11-11  Bruno Haible  <bruno@clisp.org>
19231
19232         * lib/sockets.h: Add a comment.
19233
19234 2008-11-11  Karl Berry  <karl@gnu.org>
19235
19236         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
19237
19238 2008-11-11  Eric Blake  <ebb9@byu.net>
19239
19240         fdl.texi: avoid git symlinks
19241         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
19242
19243 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19244
19245         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
19246
19247 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19248
19249         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
19250         (gl_WARN_ADD): Substitute $2 if literal.
19251
19252 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19253
19254         * m4/warning.m4: Remove.
19255
19256 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19257
19258         * m4/warnings.m4: Almost complete rewrite. :-)
19259
19260 2008-11-10  Simon Josefsson  <simon@josefsson.org>
19261
19262         * modules/warnings: New module.
19263         * m4/warnings.m4: New file.
19264         * MODULES.html.sh: Mention warnings module.
19265         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
19266         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
19267
19268 2008-11-10  Eric Blake  <ebb9@byu.net>
19269
19270         fdl.texi: make a symlink to the latest version
19271         * doc/standards.texi: Revert today's earlier change.
19272         * doc/fdl-1.2.texi: Rename from old fdl.texi...
19273         * doc/fdl.texi: ...and replace this with a symlink to the newer
19274         fdl-1.3.texi.
19275
19276 2008-11-10  Bruno Haible  <bruno@clisp.org>
19277
19278         * tests/test-select-fd.c (main): Accept the result file name as fourth
19279         argument.
19280         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
19281         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
19282
19283 2008-11-10  Bruno Haible  <bruno@clisp.org>
19284
19285         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
19286         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
19287         as autoconf-substituted macros.
19288         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
19289         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
19290         gl_NETDB_H_DEFAULTS. Set these variables.
19291         * modules/netdb (Makefile.am): Substitute these variables.
19292
19293 2008-11-10  Eric Blake  <ebb9@byu.net>
19294
19295         standards.texi: include correct file for FDL 1.3
19296         * doc/standards.texi (GNU Free Documentation License): Change
19297         include file to pull in FDL 1.3, not 1.2.
19298
19299         fdl.texi: revert accidental change to license
19300         * doc/fdl.texi: This is FDL 1.2, not 1.3.
19301
19302 2008-11-10  Bruno Haible  <bruno@clisp.org>
19303
19304         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
19305         cross-compiling guesses also when the native compile gives no result.
19306
19307 2008-11-10  Bruno Haible  <bruno@clisp.org>
19308
19309         * lib/spawni.c (__spawni): Force variable into the stack.
19310
19311 2008-11-10  Bruno Haible  <bruno@clisp.org>
19312
19313         Add support for Haiku.
19314         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
19315         glibc and BeOS, but also on Haiku.
19316         * lib/fpurge.c (fpurge): Likewise.
19317         * lib/freadable.c (freadable): Likewise.
19318         * lib/freadahead.c (freadahead): Likewise.
19319         * lib/freading.c (freading): Likewise.
19320         * lib/freadptr.c (freadptr): Likewise.
19321         * lib/freadseek.c (freadptrinc): Likewise.
19322         * lib/fseeko.c (rpl_fseeko): Likewise.
19323         * lib/fseterr.c (fseterr): Likewise.
19324         * lib/fwritable.c (fwritable): Likewise.
19325         * lib/fwriting.c (fwriting): Likewise.
19326         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
19327
19328 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
19329
19330         * lib/config.charset: Treat Haiku like BeOS.
19331
19332 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
19333
19334         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
19335         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
19336
19337 2008-11-08  Bruno Haible  <bruno@clisp.org>
19338
19339         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
19340         AC_CACHE_CHECK.
19341
19342 2008-11-08  Bruno Haible  <bruno@clisp.org>
19343
19344         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
19345
19346 2008-11-08  Bruno Haible  <bruno@clisp.org>
19347
19348         * tests/test-select-fd.c: New file.
19349         * tests/test-select-in.sh: New file.
19350         * tests/test-select-out.sh: New file.
19351         * tests/test-select-stdin.c: New file.
19352         * modules/select-tests (Files): Add the new files.
19353         (Depends-on): Add gettimeofday.
19354         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
19355         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
19356         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
19357
19358 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
19359             Bruno Haible  <bruno@clisp.org>
19360
19361         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
19362
19363 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
19364
19365         * build-aux/pmccabe2html: Added support for C++ source files.
19366
19367 2008-11-05  Ben Pfaff  <blp@gnu.org>
19368
19369         Fix lib/close.c build on Windows.
19370         * modules/close (Files): Add lib/w32sock.h.
19371
19372 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
19373
19374         Accept Bison's NEWS format.
19375         * build-aux/announce-gen (print_news_deltas): Tweak
19376         $re_prefix.
19377
19378 2008-11-04  Bruno Haible  <bruno@clisp.org>
19379
19380         * modules/random_r (Maintainer): Add glibc.
19381
19382 2008-11-04  Simon Josefsson  <simon@josefsson.org>
19383
19384         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
19385         by karl@freefriends.org (Karl Berry).
19386         * doc/alloca.texi: Likewise.
19387         * doc/c-ctype.texi: Likewise.
19388         * doc/c-strcase.texi: Likewise.
19389         * doc/c-strcaseeq.texi: Likewise.
19390         * doc/c-strcasestr.texi: Likewise.
19391         * doc/c-strstr.texi: Likewise.
19392         * doc/c-strtod.texi: Likewise.
19393         * doc/c-strtold.texi: Likewise.
19394         * doc/ctime.texi: Likewise.
19395         * doc/error.texi: Likewise.
19396         * doc/fdl.texi: Likewise.
19397         * doc/gcd.texi: Likewise.
19398         * doc/getdate.texi: Likewise.
19399         * doc/gnulib-intro.texi: Likewise.
19400         * doc/gnulib-tool.texi: Likewise.
19401         * doc/gnulib.texi: Likewise.
19402         * doc/inet_ntoa.texi: Likewise.
19403         * doc/maintain.texi: Likewise.
19404         * doc/make-stds.texi: Likewise.
19405         * doc/quote.texi: Likewise.
19406         * doc/regexprops-generic.texi: Likewise.
19407         * doc/standards.texi: Likewise.
19408         * doc/verify.texi: Likewise.
19409         * doc/visibility.texi: Likewise.
19410         * doc/gnulib.texi (GNU Free Documentation License): Include
19411         fdl-1.3.texi instead of fdl.texi.
19412
19413 2008-11-04  Simon Josefsson  <simon@josefsson.org>
19414
19415         * doc/fdl-1.3.texi: New file, from
19416         <http://www.gnu.org/licenses/fdl-1.3.texi>.
19417         * modules/fdl-1.3: Add.
19418         * MODULES.html.sh: Add fdl-1.3.
19419
19420 2008-11-03  Bruno Haible  <bruno@clisp.org>
19421
19422         Make determination of absolute name of header file work with AIX xlc.
19423         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
19424         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
19425         preprocessing.
19426         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
19427         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
19428
19429 2008-11-03  Simon Josefsson  <simon@josefsson.org>
19430
19431         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
19432         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
19433         <ludo@gnu.org>.
19434
19435 2008-11-02  Bruno Haible  <bruno@clisp.org>
19436
19437         Mark 'strpbrk' obsolete.
19438         * modules/strpbrk (Status, Notice): New sections.
19439         * modules/strtok_r (Depends-on): Add strpbrk.
19440
19441 2008-11-02  Bruno Haible  <bruno@clisp.org>
19442
19443         Mark 'strdup' obsolete.
19444         * modules/strdup (Status, Notice): New sections.
19445         * modules/findprog (Depends-on): Add strdup.
19446         * modules/getaddrinfo (Depends-on): Likewise.
19447         * modules/localename (Depends-on): Likewise.
19448         * modules/relocatable-lib (Depends-on): Likewise.
19449         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
19450         * modules/relocatable-prog (Depends-on): Likewise.
19451         * modules/trim (Depends-on): Likewise.
19452         * modules/unictype/gen-ctype (Depends-on): Likewise.
19453         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
19454
19455 2008-11-02  Bruno Haible  <bruno@clisp.org>
19456
19457         Mark 'strcspn' obsolete.
19458         * modules/strcspn (Status, Notice): New sections.
19459
19460 2008-11-02  Bruno Haible  <bruno@clisp.org>
19461
19462         Mark 'rmdir' obsolete.
19463         * modules/rmdir (Status, Notice): New sections.
19464         * modules/clean-temp (Depends-on): Add rmdir.
19465         * modules/openat (Depends-on): Likewise.
19466
19467 2008-11-02  Bruno Haible  <bruno@clisp.org>
19468
19469         Mark 'raise' obsolete.
19470         * modules/raise (Status, Notice): New sections.
19471         (Include): Specify <signal.h>.
19472         * modules/stdio (Depends-on): Add raise.
19473         * modules/write (Depends-on): Likewise.
19474
19475 2008-11-02  Bruno Haible  <bruno@clisp.org>
19476
19477         Mark 'memset' obsolete.
19478         * modules/memset (Status, Notice): New sections.
19479
19480 2008-11-02  Bruno Haible  <bruno@clisp.org>
19481
19482         Mark 'memmove' obsolete.
19483         * modules/memmove (Status, Notice): New sections.
19484         * modules/argp (Depends-on): Add memmove.
19485         * modules/argz (Depends-on): Likewise.
19486         * modules/canonicalize (Depends-on): Likewise.
19487         * modules/canonicalize-lgpl (Depends-on): Likewise.
19488         * modules/fts (Depends-on): Likewise.
19489         * modules/getcwd (Depends-on): Likewise.
19490         * modules/human (Depends-on): Likewise.
19491         * modules/regex (Depends-on): Likewise.
19492         * modules/striconveh (Depends-on): Likewise.
19493         * modules/trim (Depends-on): Likewise.
19494         * modules/unistr/u8-move (Depends-on): Likewise.
19495         * modules/unistr/u16-move (Depends-on): Likewise.
19496         * modules/unistr/u32-move (Depends-on): Likewise.
19497
19498 2008-11-02  Bruno Haible  <bruno@clisp.org>
19499
19500         Mark 'memcpy' obsolete.
19501         * modules/memcpy (Status, Notice): New sections.
19502
19503 2008-11-02  Bruno Haible  <bruno@clisp.org>
19504
19505         Mark 'memcmp' obsolete.
19506         * modules/memcmp (Status, Notice): New sections.
19507         * modules/argmatch (Depends-on): Add memchr.
19508         * modules/backupfile (Depends-on): Likewise.
19509         * modules/c-strcasestr (Depends-on): Likewise.
19510         * modules/crypto/des (Depends-on): Likewise.
19511         * modules/csharpcomp (Depends-on): Likewise.
19512         * modules/fnmatch (Depends-on): Likewise.
19513         * modules/git-merge-changelog (Depends-on): Likewise.
19514         * modules/isnand (Depends-on): Likewise.
19515         * modules/isnand-nolibm (Depends-on): Likewise.
19516         * modules/isnanf (Depends-on): Likewise.
19517         * modules/isnanf-nolibm (Depends-on): Likewise.
19518         * modules/isnanl (Depends-on): Likewise.
19519         * modules/isnanl-nolibm (Depends-on): Likewise.
19520         * modules/mbchar (Depends-on): Likewise.
19521         * modules/memcoll (Depends-on): Likewise.
19522         * modules/quotearg (Depends-on): Likewise.
19523         * modules/regex (Depends-on): Likewise.
19524         * modules/relocatable-prog (Depends-on): Likewise.
19525         * modules/same (Depends-on): Likewise.
19526         * modules/signbit (Depends-on): Likewise.
19527         * modules/strcasestr-simple (Depends-on): Likewise.
19528         * modules/unictype/gen-ctype (Depends-on): Likewise.
19529         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
19530         * modules/uniname/uniname (Depends-on): Likewise.
19531         * modules/unistr/u8-cmp (Depends-on): Likewise.
19532
19533 2008-11-02  Bruno Haible  <bruno@clisp.org>
19534
19535         Mark 'memchr' obsolete.
19536         * modules/memchr (Status, Notice): New sections.
19537         * modules/argp (Depends-on): Add memchr.
19538         * modules/base64 (Depends-on): Likewise.
19539         * modules/c-strcasestr (Depends-on): Likewise.
19540         * modules/chdir-long (Depends-on): Likewise.
19541         * modules/fnmatch (Depends-on): Likewise.
19542         * modules/getsubopt (Depends-on): Likewise.
19543         * modules/git-merge-changelog (Depends-on): Likewise.
19544         * modules/glob (Depends-on): Likewise.
19545         * modules/strcasestr-simple (Depends-on): Likewise.
19546         * modules/strnlen (Depends-on): Likewise.
19547
19548 2008-11-02  Bruno Haible  <bruno@clisp.org>
19549
19550         Mark 'atexit' obsolete.
19551         * modules/atexit (Status, Notice): New sections.
19552         * modules/chdir-long (Depends-on): Add atexit.
19553         * modules/wait-process (Depends-on): Likewise.
19554
19555 2008-11-02  Bruno Haible  <bruno@clisp.org>
19556
19557         * gnulib-tool: New option --with-obsolete.
19558         (func_usage): Document it.
19559         (func_modules_transitive_closure): Drop obsolete dependencies if
19560         incobsolete is not true.
19561         (func_import): Read and save the incobsolete variable to the cache.
19562
19563 2008-11-02  Bruno Haible  <bruno@clisp.org>
19564
19565         * modules/TEMPLATE-EXTENDED: New field 'Status'.
19566         * gnulib-tool: New option --extract-status.
19567         (func_usage): Document it.
19568         (sed_extract_prog): Recognize it.
19569         (func_get_status): New function.
19570
19571 2008-10-30  Simon Josefsson  <simon@josefsson.org>
19572
19573         * modules/sockets (License): Change from LGPL to LGPLv2+.
19574
19575 2008-10-28  Simon Josefsson  <simon@josefsson.org>
19576
19577         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
19578
19579 2008-10-28  Simon Josefsson  <simon@josefsson.org>
19580
19581         * MODULES.html.sh (Support for systems lacking POSIX:2001):
19582         Mention times and sys_times.
19583         * modules/sys_times, modules/sys_times-tests: New modules.
19584         * modules/times, modules/times-tests: Likewise
19585         * m4/sys_times_h.m4: New file.
19586         * lib/sys_times.in.h: Likewise
19587         * lib/times.c: Likewise.
19588         * tests/test-sys_times.c: Likewise.
19589         * tests/test-times.c: Likewise.
19590         * doc/posix-headers/sys_times.texi: Update.
19591         * doc/posix-functions/times.texi: Update.
19592
19593 2008-10-28  Jim Meyering  <meyering@redhat.com>
19594
19595         * modules/tempname (Depends-on): Add lstat.
19596
19597         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
19598
19599 2008-10-28  Simon Josefsson  <simon@josefsson.org>
19600
19601         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
19602         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
19603         using idiom used elsewhere in gnulib.
19604
19605 2008-10-27  Jim Meyering  <meyering@redhat.com>
19606
19607         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
19608
19609 2008-10-27  Simon Josefsson  <simon@josefsson.org>
19610
19611         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
19612         TESTS_ENVIRONMENT, for shell scripts that needs to call built
19613         programs.
19614         * tests/test-argp-2.sh: Use $EXEEXT when needed.
19615
19616 2008-10-27  Simon Josefsson  <simon@josefsson.org>
19617
19618         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
19619
19620 2008-10-27  Bruno Haible  <bruno@clisp.org>
19621
19622         * tests/test-lstat.c: Include <stdio.h>.
19623
19624 2008-10-27  Simon Josefsson  <simon@josefsson.org>
19625
19626         * modules/lstat-tests: New module.
19627         * tests/test-lstat.c: New file.
19628
19629 2008-10-26  Jim Meyering  <meyering@redhat.com>
19630
19631         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
19632
19633 2008-10-26  Simon Josefsson  <simon@josefsson.org>
19634             Bruno Haible  <bruno@clisp.org>
19635
19636         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
19637         * modules/configmake (Include): Add a note that the include must come
19638         after all system headers.
19639         * lib/javaversion.c: Include configmake.h after all other includes.
19640
19641 2008-10-26  Bruno Haible  <bruno@clisp.org>
19642
19643         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
19644         HAVE_STRUCT_RANDOM_DATA to 1.
19645         (gl_STDLIB_H): Simplify.
19646
19647 2008-10-26  Simon Josefsson  <simon@josefsson.org>
19648
19649         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
19650         substitute HAVE_STRUCT_RANDOM_DATA.
19651         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
19652         random_data.
19653         * modules/stdlib (Makefile.am): Substitute
19654         HAVE_STRUCT_RANDOM_DATA.
19655
19656 2008-10-26  Simon Josefsson  <simon@josefsson.org>
19657
19658         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
19659         * doc/gnulib-intro.texi (Copyright): Likewise.
19660
19661 2008-10-26  Simon Josefsson  <simon@josefsson.org>
19662
19663         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
19664         findings.
19665
19666 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
19667             Bruno Haible  <bruno@clisp.org>
19668
19669         * lib/unistd.in.h: Include <winsock2.h>.
19670         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
19671         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
19672         Provide dummy declarations.
19673         (gethostname): Override.
19674         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
19675         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
19676         gl_PREREQ_SYS_H_WINSOCK2.
19677         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
19678         * doc/posix-functions/gethostname.texi: More details.
19679
19680 2008-10-25  Bruno Haible  <bruno@clisp.org>
19681
19682         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
19683         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
19684         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
19685
19686         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
19687         here ...
19688         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
19689         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
19690         gl_UNISTD_H_DEFAULTS.
19691
19692 2008-10-25  Eric Blake  <ebb9@byu.net>
19693
19694         signbit: avoid spurious compiler failure
19695         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
19696         declarations inside function.
19697
19698 2008-10-24  Simon Josefsson  <simon@josefsson.org>
19699             Bruno Haible  <bruno@clisp.org>
19700
19701         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
19702         * modules/random_r (Depends-on): Add stdint.
19703
19704 2008-10-24  Bruno Haible  <bruno@clisp.org>
19705
19706         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
19707         Eggert.
19708         * modules/strerror (License): Likewise.
19709
19710 2008-10-24  Jim Meyering  <meyering@redhat.com>
19711
19712         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
19713         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
19714
19715 2008-10-24  Eric Blake  <ebb9@byu.net>
19716
19717         getgroups: fix compilation when getgroups is available
19718         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
19719         but with <config.h> override of getgroups disabled.
19720
19721 2008-10-24  Simon Josefsson  <simon@josefsson.org>
19722
19723         * doc/gnulib.texi (Header files): Add note about C++ problems.
19724         Explained by Bruno Haible <bruno@clisp.org>.
19725
19726 2008-10-23  Bruno Haible  <bruno@clisp.org>
19727
19728         Define a dummy SA_NODEFER macro on Interix.
19729         * lib/signal.in.h (SA_NODEFER): Define fallback.
19730         Reported by Aleksey Cheusov <cheusov@tut.by> via
19731         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
19732
19733 2008-10-23  Bruno Haible  <bruno@clisp.org>
19734
19735         * modules/freadahead (License): Change to LGPLv2+.
19736         Suggested by Simon Josefsson.
19737
19738 2008-10-23  Jim Meyering  <meyering@redhat.com>
19739
19740         random_r: new module
19741         * modules/random_r: New file.
19742         * m4/random_r.m4: New file.
19743         * lib/random_r.c: New file, from glibc.
19744         * modules/random_r-tests: New file.
19745         * tests/test-random_r.c: New file.
19746         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
19747          Declare.
19748         (RAND_MAX): Define.
19749         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
19750         * modules/stdlib: Substitute them, too.
19751         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
19752         * doc/glibc-functions/initstate_r.texi: Mention the new module.
19753         * doc/glibc-functions/random_r.texi: Likewise.
19754         * doc/glibc-functions/setstate_r.texi: Likewise.
19755         * doc/glibc-functions/srandom_r.texi: Likewise.
19756         * config/srclist.txt: Mention it.
19757
19758 2008-10-23  David Lutterkort  <lutter@redhat.com>
19759
19760         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
19761         link requirement
19762
19763 2008-10-23  Jim Meyering  <meyering@redhat.com>
19764
19765         selinux-h: mark parameters of stub functions as intentionally unused
19766         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
19767         * lib/se-context.in.h: Likewise.
19768
19769 2008-10-22  Simon Josefsson  <simon@josefsson.org>
19770
19771         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
19772
19773 2008-10-22  Simon Josefsson  <simon@josefsson.org>
19774
19775         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
19776
19777 2008-10-22  Eric Blake  <ebb9@byu.net>
19778
19779         glthread/thread: avoid compiler warning
19780         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
19781         Add unreachable abort to silence compiler.
19782
19783 2008-10-22  Eric Blake  <ebb9@byu.net>
19784
19785         netdb: also supply struct addrinfo for cygwin 1.5.x
19786         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
19787         older cygwin.
19788         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
19789         cygwin.
19790         * doc/posix-headers/netdb.texi (netdb.h): Document this.
19791
19792 2008-10-22  Bruno Haible  <bruno@clisp.org>
19793
19794         * users.txt: Update entry about pspp.
19795
19796 2008-10-21  Bruno Haible  <bruno@clisp.org>
19797
19798         Simplification.
19799         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
19800         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
19801
19802         Simplification.
19803         * lib/ioctl.c (ioctl): Don't undefine.
19804         * lib/socket.c (socket): Don't undefine.
19805
19806         Remove unused module indicator macros.
19807         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
19808         GNULIB_$1 as a C macro.
19809
19810         * doc/posix-functions/close.texi: Undo last change.
19811         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
19812         Windows platforms.
19813
19814 2008-10-21  Bruno Haible  <bruno@clisp.org>
19815
19816         Add gethostname() declaration to <unistd.h>.
19817         * lib/unistd.in.h (gethostname): New declaration.
19818         * lib/gethostname.c: Include <unistd.h>.
19819         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
19820         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
19821         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
19822         and HAVE_GETHOSTNAME.
19823         * modules/gethostname (Depends-on): Add unistd.
19824         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
19825         (Include): Specify <unistd.h>.
19826         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
19827         HAVE_GETHOSTNAME.
19828         * tests/test-gethostname.c: Include <unistd.h> first.
19829
19830 2008-10-21  Bruno Haible  <bruno@clisp.org>
19831
19832         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
19833         * modules/select-tests (Depends-on): Likewise.
19834         Reported by Simon Josefsson.
19835
19836 2008-10-21  Simon Josefsson  <simon@josefsson.org>
19837
19838         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
19839         * lib/accept.c: New file, based on winsock.c.
19840         * lib/bind.c: New file, based on winsock.c.
19841         * lib/connect.c: New file, based on winsock.c.
19842         * lib/getpeername.c: New file, based on winsock.c.
19843         * lib/getsockname.c: New file, based on winsock.c.
19844         * lib/getsockopt.c: New file, based on winsock.c.
19845         * lib/ioctl.c: New file, based on winsock.c.
19846         * lib/listen.c: New file, based on winsock.c.
19847         * lib/recv.c: New file, based on winsock.c.
19848         * lib/recvfrom.c: New file, based on winsock.c.
19849         * lib/send.c: New file, based on winsock.c.
19850         * lib/sendto.c: New file, based on winsock.c.
19851         * lib/setsockopt.c: New file, based on winsock.c.
19852         * lib/shutdown.c: New file, based on winsock.c.
19853         * lib/socket.c: New file, based on winsock.c.
19854         * lib/w32sock.h: New file, based on winsock.c.
19855         * lib/winsock.c: Remove file.
19856         * modules/accept: Likewise.
19857         * modules/bind: Likewise.
19858         * modules/connect: Likewise.
19859         * modules/getpeername: Likewise.
19860         * modules/getsockname: Likewise.
19861         * modules/getsockopt: Likewise.
19862         * modules/ioctl: Likewise.
19863         * modules/listen: Likewise.
19864         * modules/recv: Likewise.
19865         * modules/recvfrom: Likewise.
19866         * modules/send: Likewise.
19867         * modules/sendto: Likewise.
19868         * modules/setsockopt: Likewise.
19869         * modules/shutdown: Likewise.
19870         * modules/socket: Use socket.c instead of winsock.c.
19871         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
19872         * doc/posix-functions/accept.texi: Doc fix.
19873         * doc/posix-functions/bind.texi: Doc fix.
19874         * doc/posix-functions/close.texi: Doc fix.
19875         * doc/posix-functions/connect.texi: Doc fix.
19876         * doc/posix-functions/getpeername.texi: Doc fix.
19877         * doc/posix-functions/getsockname.texi: Doc fix.
19878         * doc/posix-functions/getsockopt.texi: Doc fix.
19879         * doc/posix-functions/ioctl.texi: Doc fix.
19880         * doc/posix-functions/listen.texi: Doc fix.
19881         * doc/posix-functions/recv.texi: Doc fix.
19882         * doc/posix-functions/recvfrom.texi: Doc fix.
19883         * doc/posix-functions/send.texi: Doc fix.
19884         * doc/posix-functions/sendto.texi: Doc fix.
19885         * doc/posix-functions/setsockopt.texi: Doc fix.
19886         * doc/posix-functions/shutdown.texi: Doc fix.
19887         * doc/posix-functions/socket.texi: Doc fix.
19888
19889 2008-10-20  Bruno Haible  <bruno@clisp.org>
19890
19891         Take into account the role of SIGABRT_COMPAT on Windows 2008.
19892         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
19893         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
19894         as an alias for SIGABRT.
19895         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
19896         (sigaction): Map it to SIGABRT.
19897         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
19898
19899 2008-10-20  Bruno Haible  <bruno@clisp.org>
19900
19901         * lib/fts.c: Don't include lstat.h.
19902         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
19903
19904         Move the lstat() declaration to <sys/stat.h>.
19905         * lib/lstat.h: Remove file.
19906         * lib/sys_stat.in.h: Add special invocation convention.
19907         (lstat): New declaration.
19908         * lib/lstat.c (orig_lstat): New function.
19909         (rpl_lstat): Use orig_lstat instead of lstat.
19910         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
19911         AC_C_INLINE. Set REPLACE_LSTAT.
19912         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
19913         and REPLACE_LSTAT.
19914         * modules/lstat (Files): Remove lib/lstat.h.
19915         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
19916         (Include): Specify <sys/stat.h> instead of lstat.h.
19917         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
19918         REPLACE_LSTAT.
19919         * NEWS: Mention the change.
19920
19921 2008-10-20  Bruno Haible  <bruno@clisp.org>
19922
19923         * modules/posix_spawn-tests: New file.
19924         * tests/test-posix_spawn3.c: New file.
19925
19926 2008-10-20  Bruno Haible  <bruno@clisp.org>
19927
19928         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
19929         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
19930         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
19931         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
19932         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
19933
19934 2008-10-20  Bruno Haible  <bruno@clisp.org>
19935
19936         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
19937         of posix_spawn on AIX 5.3.
19938
19939 2008-10-20  Bruno Haible  <bruno@clisp.org>
19940
19941         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
19942
19943 2008-10-20  Bruno Haible  <bruno@clisp.org>
19944
19945         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
19946         of AC_LANG_PROGRAM.
19947
19948 2008-10-20  Simon Josefsson  <simon@josefsson.org>
19949
19950         * lib/netdb.in.h: Don't define GNU specific constants until they
19951         are supported or needed.  Reported by Bruno Haible
19952         <bruno@clisp.org>.
19953
19954 2008-10-20  Simon Josefsson  <simon@josefsson.org>
19955
19956         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
19957
19958 2008-10-20  Simon Josefsson  <simon@josefsson.org>
19959
19960         * lib/getaddrinfo.h: Remove file.
19961         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
19962         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
19963         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
19964         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
19965         * modules/netdb: Substitute GNULIB_GETADDRINFO.
19966         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
19967         * tests/test-getaddrinfo.c: Likewise.
19968         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
19969         * NEWS: Mention change.
19970
19971 2008-10-19  Bruno Haible  <bruno@clisp.org>
19972
19973         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
19974
19975 2008-10-19  Bruno Haible  <bruno@clisp.org>
19976
19977         * lib/wait-process.c: Include simply <sys/wait.h>.
19978         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
19979         WIFSTOPPED): Remove fallback definitions.
19980         * modules/wait-process (Depends-on): Add sys_wait.
19981
19982         New module 'sys_wait'.
19983         * modules/sys_wait: New file.
19984         * lib/sys_wait.in.h: New file, partially copied from
19985         lib/wait-process.c.
19986         * m4/sys_wait_h.m4: New file.
19987         * doc/posix-headers/sys_wait.texi: Mention the new module.
19988
19989 2008-10-19  Bruno Haible  <bruno@clisp.org>
19990
19991         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
19992
19993 2008-10-19  Bruno Haible  <bruno@clisp.org>
19994
19995         Assume that waitpid() fills an 'int' status, not a 'union wait'.
19996         * lib/wait-process.c (WAIT_T): Remove type.
19997         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
19998         (wait_subprocess): Update.
19999
20000 2008-10-19  Bruno Haible  <bruno@clisp.org>
20001
20002         New module 'atoll'.
20003         * modules/atoll: New file.
20004         * lib/stdlib.in.h (atoll): New declaration.
20005         * lib/atoll.c: New file, from glibc with modifications.
20006         * m4/atoll.m4: New file.
20007         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
20008         HAVE_ATOLL.
20009         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
20010         * doc/posix-functions/atoll.texi: Mention the new module.
20011
20012 2008-10-19  Bruno Haible  <bruno@clisp.org>
20013
20014         Add strtoull() declaration to <stdlib.h>.
20015         * lib/stdlib.in.h (strtoull): New declaration.
20016         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
20017         Set HAVE_STRTOULL.
20018         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
20019         HAVE_STRTOULL.
20020         * modules/strtoull (Depends-on): Add stdlib.
20021         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20022         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
20023         HAVE_STRTOULL.
20024
20025 2008-10-19  Bruno Haible  <bruno@clisp.org>
20026
20027         Add strtoll() declaration to <stdlib.h>.
20028         * lib/stdlib.in.h (strtoll): New declaration.
20029         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
20030         Set HAVE_STRTOLL.
20031         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
20032         HAVE_STRTOLL.
20033         * modules/strtoll (Depends-on): Add stdlib.
20034         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20035         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
20036
20037 2008-10-19  Bruno Haible  <bruno@clisp.org>
20038
20039         * modules/bcopy (Depends-on): Add strings.
20040         (Include): Specify <strings.h>.
20041
20042 2008-10-19  Bruno Haible  <bruno@clisp.org>
20043
20044         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
20045
20046 2008-10-19  Bruno Haible  <bruno@clisp.org>
20047
20048         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
20049         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
20050         mingw.
20051
20052 2008-10-19  Bruno Haible  <bruno@clisp.org>
20053
20054         * lib/atanl.c: Don't include isnanl.h.
20055         * lib/cosl.c: Likewise.
20056         * lib/ldexpl.c: Likewise.
20057         * lib/logl.c: Likewise.
20058         * lib/sinl.c: Likewise.
20059         * lib/sqrtl.c: Likewise.
20060         * lib/tanl.c: Likewise.
20061
20062         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
20063         * lib/isnanf.h: Remove file.
20064         * lib/isnand.h: Remove file.
20065         * lib/isnanl.h: Remove file.
20066         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
20067         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
20068         macros.
20069         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
20070         HAVE_ISNANF, don't define it as a C macro.
20071         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
20072         HAVE_ISNAND, don't define it as a C macro.
20073         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
20074         HAVE_ISNANL, don't define it as a C macro.
20075         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
20076         HAVE_ISNAN[FDL].
20077         * modules/isnanf (Files): Remove lib/isnanf.h.
20078         (Depends-on): Add math.
20079         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20080         (Include): Specify <math.h> instead of isnanf.h.
20081         * modules/isnand (Files): Remove lib/isnand.h.
20082         (Depends-on): Add math.
20083         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20084         (Include): Specify <math.h> instead of isnand.h.
20085         * modules/isnanl (Files): Remove lib/isnanl.h.
20086         (Depends-on): Add math.
20087         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20088         (Include): Specify <math.h> instead of isnanl.h.
20089         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
20090         HAVE_ISNAN[FDL].
20091         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
20092         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
20093         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
20094         * NEWS: Mention the change.
20095
20096 2008-10-18  Bruno Haible  <bruno@clisp.org>
20097
20098         Add getusershell(), setusershell(), endusershell() declarations to
20099         <unistd.h>.
20100         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
20101         declarations.
20102         * lib/getusershell.c: Include unistd.h.
20103         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
20104         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
20105         HAVE_GETUSERSHELL.
20106         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
20107         and HAVE_GETUSERSHELL.
20108         * modules/getusershell (Depends-on): Add unistd, extensions.
20109         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20110         (Include): Specify <unistd.h>.
20111         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
20112         HAVE_GETUSERSHELL.
20113
20114 2008-10-18  Bruno Haible  <bruno@clisp.org>
20115
20116         Add a getloadavg() declaration to <stdlib.h>.
20117         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
20118         getloadavg declaration.
20119         (getloadavg): New declaration.
20120         * lib/getloadavg.c: Include <stdlib.h> first.
20121         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
20122         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
20123         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
20124         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
20125         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
20126         * modules/getloadavg (Depends-on): Add stdlib, extensions.
20127         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20128         (Include): Specify <stdlib.h>.
20129         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
20130         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
20131
20132 2008-10-18  Bruno Haible  <bruno@clisp.org>
20133
20134         * lib/dirchownmod.c: Don't include lchmod.h.
20135
20136         Move the lchmod() declaration to <sys/stat.h>.
20137         * lib/lchmod.h: Remove file.
20138         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
20139         (lchmod): New declaration, moved here from lib/lchown.h.
20140         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
20141         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
20142         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
20143         and HAVE_LCHMOD.
20144         * modules/lchmod (Files): Remove lib/lchmod.h.
20145         (Depends-on): Add sys_stat, extensions.
20146         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
20147         (Include): Specify <sys/stat.h> instead of lchmod.h.
20148         * modules/sys_stat (Depends-on): Add link-warning.
20149         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
20150         definition of GL_LINK_WARNING.
20151         * NEWS: Mention the change.
20152
20153 2008-10-18  Bruno Haible  <bruno@clisp.org>
20154
20155         * lib/fchdir.c: Don't include dirfd.h.
20156         * lib/fts.c: Likewise.
20157         * lib/getcwd.c: Likewise.
20158         * lib/glob.c: Likewise.
20159
20160         Move the dirfd() declaration to <dirent.h>.
20161         * lib/dirfd.h: Remove file.
20162         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
20163         (dirfd): New declaration.
20164         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
20165         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
20166         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
20167         HAVE_DECL_DIRFD.
20168         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
20169         HAVE_DECL_DIRFD.
20170         * modules/dirfd (Files): Remove lib/dirfd.h.
20171         (Depends-on): Add dirent, extensions.
20172         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
20173         (Include): Specify <dirent.h> instead of dirfd.h.
20174         * modules/dirent (Depends-on): Add link-warning.
20175         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
20176         definition of GL_LINK_WARNING.
20177         * NEWS: Mention the change.
20178
20179 2008-10-18  Bruno Haible  <bruno@clisp.org>
20180
20181         Move the euidaccess() declaration to <unistd.h>.
20182         * lib/euidaccess.h: Remove file.
20183         * lib/unistd.in.h (euidaccess): New declaration.
20184         * lib/euidaccess.c: Don't include euidaccess.h.
20185         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
20186         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
20187         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
20188         and HAVE_EUIDACCESS.
20189         * modules/euidaccess (Files): Remove lib/euidaccess.h.
20190         (Depends-on): Add unistd.
20191         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20192         (Include): Specify <unistd.h> instead of euidaccess.h.
20193         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
20194         HAVE_EUIDACCESS.
20195         * NEWS: Mention the change.
20196
20197 2008-10-18  Bruno Haible  <bruno@clisp.org>
20198
20199         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
20200
20201         Move the getdomainname() declaration to <unistd.h>.
20202         * lib/getdomainname.h: Remove file.
20203         * lib/unistd.in.h (getdomainname): New declaration.
20204         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
20205         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
20206         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
20207         HAVE_GETDOMAINNAME.
20208         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
20209         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
20210         * modules/getdomainname (Files): Remove lib/getdomainname.h.
20211         (Depends-on): Add unistd, extensions.
20212         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20213         (Includes): Specify <unistd.h> instead of getdomainname.h.
20214         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
20215         HAVE_GETDOMAINNAME.
20216         * NEWS: Mention the change.
20217
20218 2008-10-18  Bruno Haible  <bruno@clisp.org>
20219
20220         * modules/dirent: New file.
20221         * m4/dirent_h.m4: New file.
20222         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
20223         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
20224         * modules/fchdir (Files): Remove lib/dirent.in.h.
20225         (Depends-on): Add dirent.
20226         (Makefile.am): Move rules to modules/dirent.
20227         * doc/posix-headers/dirent.texi: Mention the new module.
20228
20229 2008-10-18  Bruno Haible  <bruno@clisp.org>
20230
20231         Avoid -Wunused-parameter warnings in public gnulib header files.
20232         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
20233         macro.
20234         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
20235
20236 2008-10-18  Bruno Haible  <bruno@clisp.org>
20237
20238         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
20239         * doc/glibc-functions/error.texi: Mention the module 'error'.
20240         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
20241         * doc/glibc-functions/getdomainname.texi: Mention the module
20242         'getdomainname'.
20243         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
20244         * doc/glibc-functions/getpagesize.texi: Mention the module
20245         'getpagesize'.
20246         * doc/glibc-functions/getusershell.texi: Mention the module
20247         'getusershell'.
20248         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
20249         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
20250         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
20251         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
20252         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
20253         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
20254         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
20255         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
20256         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
20257         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
20258         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
20259         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
20260         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
20261         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
20262
20263 2008-10-17  Bruno Haible  <bruno@clisp.org>
20264
20265         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
20266         HP-UX and IRIX, use -0.0L.
20267         * tests/test-ceill.c (minus_zero): Likewise.
20268         * tests/test-floorl.c (minus_zero): Likewise.
20269         * tests/test-frexpl.c (minus_zero): Likewise.
20270         * tests/test-isnan.c (minus_zerol): Likewise.
20271         * tests/test-isnanl.h (minus_zero): Likewise.
20272         * tests/test-ldexpl.c (minus_zero): Likewise.
20273         * tests/test-roundl.c (minus_zero): Likewise.
20274         * tests/test-signbit.c (minus_zerol): Likewise.
20275         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
20276         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
20277         * tests/test-truncl.c (minus_zero): Likewise.
20278         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
20279         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
20280         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
20281         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
20282
20283 2008-10-17  Bruno Haible  <bruno@clisp.org>
20284
20285         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
20286         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
20287         that it gets activated only for gcc >= 3.0.
20288         * lib/dirent.in.h: Likewise.
20289         * lib/errno.in.h: Likewise.
20290         * lib/fcntl.in.h: Likewise.
20291         * lib/float.in.h: Likewise.
20292         * lib/iconv.in.h: Likewise.
20293         * lib/inttypes.in.h: Likewise.
20294         * lib/locale.in.h: Likewise.
20295         * lib/math.in.h: Likewise.
20296         * lib/netdb.in.h: Likewise.
20297         * lib/netinet_in.in.h: Likewise.
20298         * lib/search.in.h: Likewise.
20299         * lib/signal.in.h: Likewise.
20300         * lib/spawn.in.h: Likewise.
20301         * lib/stdarg.in.h: Likewise.
20302         * lib/stdint.in.h: Likewise.
20303         * lib/stdio.in.h: Likewise.
20304         * lib/stdlib.in.h: Likewise.
20305         * lib/string.in.h: Likewise.
20306         * lib/strings.in.h: Likewise.
20307         * lib/sys_file.in.h: Likewise.
20308         * lib/sys_ioctl.in.h: Likewise.
20309         * lib/sys_select.in.h: Likewise.
20310         * lib/sys_socket.in.h: Likewise.
20311         * lib/sys_stat.in.h: Likewise.
20312         * lib/sys_time.in.h: Likewise.
20313         * lib/sysexits.in.h: Likewise.
20314         * lib/time.in.h: Likewise.
20315         * lib/unistd.in.h: Likewise.
20316         * lib/wchar.in.h: Likewise.
20317         * lib/wctype.in.h: Likewise.
20318         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
20319
20320 2008-10-17  Jim Meyering  <meyering@redhat.com>
20321
20322         ignore-value: don't depend on inline module
20323         * modules/ignore-value (Depends-on): Remove 'inline'.
20324         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
20325         Suggestion from Bruno Haible.
20326
20327 2008-10-17  Bruno Haible  <bruno@clisp.org>
20328
20329         New implementation of condition variables for Win32.
20330         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
20331         (gl_linked_waitqueue_t): New type.
20332         (gl_cond_t): Use it.
20333         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
20334         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
20335         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
20336         (glthread_cond_init_func, glthread_cond_wait_func,
20337         glthread_cond_timedwait_func, glthread_cond_signal_func,
20338         glthread_cond_broadcast_func, glthread_cond_destroy_func):
20339         Reimplemented on the basis of gl_linked_waitqueue_t.
20340         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
20341         gl_waitqueue_t.
20342         (gl_rwlock_t): Update.
20343         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
20344
20345 2008-10-17  Simon Josefsson  <simon@josefsson.org>
20346
20347         * modules/recvfrom (Depends-on): Add dependency on getpeername.
20348         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
20349
20350 2008-10-17  Jim Meyering  <meyering@redhat.com>
20351
20352         ignore-value: new module
20353         * modules/ignore-value: New file.
20354         * lib/ignore-value.h: New file.
20355         * MODULES.html.sh (Compiler warning management): New section,
20356         just for this module.  More to come.
20357
20358 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
20359
20360         open-safer.c: avoid 'signed and unsigned in conditional...' warning
20361         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
20362         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
20363
20364 2008-10-16  Jim Meyering  <meyering@redhat.com>
20365
20366         openat-die.c: avoid 'no previous prototype' warning
20367         * lib/openat-die.c: Include "openat.h".
20368         Reported by Reuben Thomas <rrt@sc3d.org>.
20369
20370 2008-10-16  Simon Josefsson  <simon@josefsson.org>
20371
20372         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
20373         * lib/netdb.in.h: Fix typo.
20374         Reported by Bruno Haible  <bruno@clisp.org>
20375
20376         * lib/netdb.in.h: Include sys/socket.h for platforms without
20377         netdb.h, to get structures like hostent on MinGW.
20378         * modules/netdb (Depends-on): Add sys_socket.
20379
20380 2008-10-15  Simon Josefsson  <simon@josefsson.org>
20381
20382         * modules/netdb, modules/netdb-tests: New file.
20383         * m4/netdb_h.m4: New file.
20384         * lib/netdb.in.h: Add, currently just an empty file pending
20385         definitions.
20386         * tests/test-netdb.c: New file.
20387         * doc/posix-headers/netdb.texi: Mention that we replace it if
20388         needed.
20389         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
20390         netdb.
20391
20392 2008-10-15  Simon Josefsson  <simon@josefsson.org>
20393
20394         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
20395         with code.
20396
20397 2008-10-13  Bruno Haible  <bruno@clisp.org>
20398
20399         * lib/glthread/cond.c (glthread_cond_wait_func,
20400         glthread_cond_timedwait_func): Add a comment.
20401
20402 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20403
20404         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
20405         * tests/test-select.c: Likewise,
20406
20407 2008-10-13  Bruno Haible  <bruno@clisp.org>
20408
20409         * lib/glthread/cond.c (glthread_cond_wait_func,
20410         glthread_cond_timedwait_func): Fix variable name.
20411         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
20412
20413 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
20414
20415         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
20416         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
20417         struct sockaddr.sa_len.
20418         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
20419
20420 2008-10-13  Simon Josefsson  <simon@josefsson.org>
20421
20422         * build-aux/pmccabe2html: Add css and css_url parameters.
20423
20424 2008-10-12  Bruno Haible  <bruno@clisp.org>
20425
20426         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
20427         calling aclx_get.
20428         Reported by Rainer Tammer <tammer@tammer.net>.
20429
20430 2008-10-12  Bruno Haible  <bruno@clisp.org>
20431
20432         Use msvcrt aware primitives for creation/termination of Win32 threads.
20433         * lib/glthread/thread.c: Include <process.h>.
20434         (glthread_create_func): Use _beginthreadex instead of CreateThread.
20435         (wrapper_func): Update signature.
20436         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
20437
20438 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20439             Bruno Haible  <bruno@clisp.org>
20440
20441         Provide a Win32 implementation of the 'cond' module.
20442         * lib/glthread/cond.h [USE_WIN32]: New implementation.
20443         * lib/glthread/cond.c (glthread_cond_init_func,
20444         glthread_cond_wait_func, glthread_cond_timedwait_func,
20445         glthread_cond_signal_func, glthread_cond_broadcast_func,
20446         glthread_cond_destroy_func) [USE_WIN32]: New functions.
20447         * modules/cond (Dependencies): Add gettimeofday.
20448
20449 2008-10-11  Bruno Haible  <bruno@clisp.org>
20450
20451         Make sleep work on older versions of mingw.
20452         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
20453         only whether it exists.
20454         * doc/posix-functions/sleep.texi: Mention the problem with older
20455         versions of mingw.
20456
20457 2008-10-11  Bruno Haible  <bruno@clisp.org>
20458
20459         New module 'shutdown'.
20460         * modules/shutdown: New file.
20461         * lib/sys_socket.in.h (shutdown): New declaration.
20462         * lib/winsock.c (shutdown): New function.
20463         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
20464         GNULIB_SHUTDOWN.
20465         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
20466         * doc/posix-functions/shutdown.texi: Document the new module.
20467
20468 2008-10-11  Jim Meyering  <meyering@redhat.com>
20469
20470         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
20471
20472 2008-10-11  Bruno Haible  <bruno@clisp.org>
20473
20474         New module 'fclose'.
20475         * modules/fclose: New file.
20476         * lib/stdio.in.h (fclose): New declaration.
20477         * lib/fclose.c: New file.
20478         * m4/fclose.m4: New file.
20479         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
20480         REPLACE_FCLOSE.
20481         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
20482         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
20483         REPLACE_FCLOSE.
20484         * modules/close (Depends-on): fclose.
20485         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
20486
20487 2008-10-11  Bruno Haible  <bruno@clisp.org>
20488
20489         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
20490         set errno and don't call _close.
20491
20492 2008-10-10  Bruno Haible  <bruno@clisp.org>
20493
20494         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
20495         ACL, not afterwards. Fixes test failure on Cygwin.
20496
20497 2008-10-09  Ben Pfaff  <blp@gnu.org>
20498
20499         * build-aux/announce-gen: Fix gnulib version related part of usage
20500         message.  Die with a useful error message if no tarballs are
20501         found.
20502
20503 2008-10-10  Jim Meyering  <meyering@redhat.com>
20504
20505         bootstrap: use git's --depth=N option only if it's supported
20506         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
20507         recognize the --depth option.  Reported by Pádraig Brady.
20508
20509 2008-10-09  Bruno Haible  <bruno@clisp.org>
20510
20511         New module 'ioctl'.
20512         * modules/ioctl: New file.
20513         * lib/sys_socket.in.h (ioctl): Remove declaration.
20514         * lib/winsock.c: Include <sys/ioctl.h>.
20515         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
20516         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
20517         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
20518         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
20519         * doc/posix-functions/ioctl.texi: Mention the new module.
20520
20521 2008-10-09  Bruno Haible  <bruno@clisp.org>
20522
20523         New module 'sys_ioctl'.
20524         * lib/sys_ioctl.in.h: New file.
20525         * m4/sys_ioctl_h.m4: New file.
20526         * modules/sys_ioctl: New file.
20527         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
20528
20529 2008-10-09  Bruno Haible  <bruno@clisp.org>
20530
20531         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
20532         * lib/winsock.c: Include <stdarg.h>.
20533         (rpl_ioctl): Change to second argument 'int' and then varargs.
20534
20535 2008-10-09  Bruno Haible  <bruno@clisp.org>
20536
20537         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
20538         when the sys_socket module is present and the system has <winsock2.h>.
20539
20540 2008-10-09  Bruno Haible  <bruno@clisp.org>
20541
20542         * doc/posix-functions/close.texi: Mention module 'close' instead of
20543         module 'sys_socket'.
20544
20545 2008-10-09  Bruno Haible  <bruno@clisp.org>
20546
20547         * doc/glibc-headers/sys_ioctl.texi: New file.
20548         * doc/gnulib.texi: Include it.
20549
20550 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20551             Bruno Haible  <bruno@clisp.org>
20552
20553         Combine the two replacements of 'close'.
20554         * lib/sys_socket.in.h (close): Define to a reminder to include
20555         <unistd.h>.
20556         (_gl_close_fd_maybe_socket): New declaration.
20557         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
20558         * lib/winsock.c (close): Remove undefinition.
20559         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
20560         needed for the gnulib module 'close'.
20561         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
20562         define to an error symbol or to a warning, if suitable.
20563         * lib/close.c: Include <sys/socket.h>.
20564         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
20565         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
20566         UNISTD_H_HAVE_WINSOCK2_H.
20567         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
20568         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
20569         UNISTD_H_HAVE_WINSOCK2_H.
20570         * modules/sys_socket (Files): Add m4/unistd_h.m4.
20571         (configure.ac): Set a module indicator.
20572         (Makefile.am): Substitute GNULIB_CLOSE.
20573         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
20574         * modules/poll-tests (Depends-on): Add close.
20575         * modules/select-tests (Depends-on): Likewise.
20576
20577 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20578             Bruno Haible  <bruno@clisp.org>
20579
20580         New module 'close'.
20581         * modules/close: New file.
20582         * lib/unistd.in.h (close): Move declaration out of the
20583         FCHDIR_REPLACEMENT scope.
20584         (_gl_unregister_fd): New declaration.
20585         * lib/close.c: New file.
20586         * lib/fchdir.c (rpl_close): Remove function.
20587         * m4/close.m4: New file.
20588         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
20589         close.
20590         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
20591         REPLACE_CLOSE.
20592         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
20593         REPLACE_CLOSE.
20594         * modules/fchdir (Depends-on): Add close.
20595
20596 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20597             Bruno Haible  <bruno@clisp.org>
20598
20599         * lib/fcntl.in.h (open): Simplify conditionals.
20600         (_gl_register_fd): New declaration.
20601         * lib/fchdir.c (rpl_open): Remove function.
20602         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
20603         also.
20604         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
20605         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
20606         open.
20607
20608 2008-10-09  Jim Meyering  <meyering@redhat.com>
20609
20610         GNUmakefile: use the more name-space-friendly "_version"
20611         * top/GNUmakefile (_dummy): Update.
20612         (_version): Rename from "version".
20613
20614 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20615             Bruno Haible  <bruno@clisp.org>
20616
20617         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
20618         rpl_close.
20619         (_gl_register_fd): New function, extracted from rpl_open.
20620         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
20621         (rpl_open, rpl_opendir): Use _gl_register_fd.
20622
20623 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20624
20625         Fix organization of 'open' replacement.
20626         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
20627         (gl_FUNC_OPEN): Use it.
20628         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
20629
20630 2008-10-08  Bruno Haible  <bruno@clisp.org>
20631
20632         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
20633
20634 2008-10-08  Simon Josefsson  <simon@josefsson.org>
20635
20636         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
20637         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
20638         listen).
20639
20640 2008-10-08  Eric Blake  <ebb9@byu.net>
20641
20642         GNUmakefile: add 'make version' target
20643         * top/GNUmakefile (_curr-ver): Split version update rules...
20644         (version): ...into a target.
20645
20646 2008-10-07  Bruno Haible  <bruno@clisp.org>
20647
20648         Use a more portable replacement expression for -0.0L.
20649         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
20650         instead of -0.0L. Fix m4 quotation.
20651
20652         * tests/test-signbit.c: Include <float.h>.
20653         (minus_zero): New variable.
20654         (test_signbitl): Use minus_zero instead of -zero.
20655         * modules/signbit-tests (Depends-on): Add float.
20656
20657         * tests/test-ceill.c: Include <float.h>.
20658         (zero): Remove variable.
20659         (minus_zero): New variable.
20660         (main): Use minus_zero instead of -zero.
20661         * modules/ceill-tests (Depends-on): Add float.
20662
20663         * tests/test-floorl.c: Include <float.h>.
20664         (zero): Remove variable.
20665         (minus_zero): New variable.
20666         (main): Use minus_zero instead of -zero.
20667         * modules/floorl-tests (Depends-on): Add float.
20668
20669         * tests/test-roundl.c: Include <float.h>.
20670         (zero): Remove variable.
20671         (minus_zero): New variable.
20672         (main): Use minus_zero instead of -zero.
20673         * modules/roundl-tests (Depends-on): Add float.
20674
20675         * tests/test-truncl.c: Include <float.h>.
20676         (zero): Remove variable.
20677         (minus_zero): New variable.
20678         (main): Use minus_zero instead of -zero.
20679         * modules/truncl-tests (Depends-on): Add float.
20680
20681         * tests/test-frexpl.c (zero): Remove variable.
20682         (minus_zero): New variable.
20683         (main): Use minus_zero instead of -zero.
20684         * modules/frexpl-tests (Depends-on): Add float.
20685
20686         * tests/test-isnan.c (zerol): Remove variable.
20687         (minus_zerol): New variable.
20688         (test_long_double): Use minus_zerol instead of -zerol.
20689         * modules/isnan-tests (Depends-on): Add float.
20690
20691         * tests/test-isnanl.h (zero): Remove variable.
20692         (minus_zero): New variable.
20693         (main): Use minus_zero instead of -zero.
20694         * modules/isnanl-nolibm-tests (Depends-on): Add float.
20695         * modules/isnanl-tests (Depends-on): Add float.
20696
20697         * tests/test-ldexpl.c (zero): Remove variable.
20698         (minus_zero): New variable.
20699         (main): Use minus_zero instead of -zero.
20700         * modules/ldexpl-tests (Depends-on): Add float.
20701
20702         * tests/test-snprintf-posix.h (zerol): Remove variable.
20703         (minus_zerol): New variable.
20704         (test_function): Use minus_zerol instead of -zerol.
20705         * modules/snprintf-posix-tests (Depends-on): Add float.
20706         * modules/vsnprintf-posix-tests (Depends-on): Add float.
20707
20708         * tests/test-sprintf-posix.h (zerol): Remove variable.
20709         (minus_zerol): New variable.
20710         (test_function): Use minus_zerol instead of -zerol.
20711         * modules/sprintf-posix-tests (Depends-on): Add float.
20712         * modules/vsprintf-posix-tests (Depends-on): Add float.
20713
20714         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
20715         (minus_zerol): New variable.
20716         (test_function): Use minus_zerol instead of -zerol.
20717         * modules/vasnprintf-posix-tests (Depends-on): Add float.
20718
20719         * tests/test-vasprintf-posix.c (zerol): Remove variable.
20720         (minus_zerol): New variable.
20721         (test_function): Use minus_zerol instead of -zerol.
20722         * modules/vasprintf-posix-tests (Depends-on): Add float.
20723
20724 2008-10-07  Simon Josefsson  <simon@josefsson.org>
20725
20726         * MODULES.html.sh (Support for building documentation): Mention
20727         pmccabe2html.  Sort entries.
20728
20729         Add pmccabe2html module, from gnupdf.
20730         * build-aux/pmccabe.css: New file.
20731         * build-aux/pmccabe2html: New file.
20732         * m4/pmccabe2html.m4: New file.
20733         * modules/pmccabe2html: New file.
20734
20735 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
20736
20737         flock: new module
20738         * MODULES.html.sh: Add to list of modules.
20739         * lib/flock.c: flock implementation for Windows and Unix systems
20740         which have fcntl.
20741         * doc/glibc-functions/flock.texi: Update documentation.
20742         * lib/sys_file.in.h: <sys/file.h> header file.
20743         * m4/flock.m4: M4 macros.
20744         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
20745         * modules/flock: flock module.
20746         * modules/flock-tests: flock tests module.
20747         * modules/sys_file: sys/file.h module.
20748         * tests/test-flock.c: test suite for flock.
20749
20750 2008-10-06  Jim Meyering  <meyering@redhat.com>
20751
20752         bootstrap: check for LT_INIT more portably still ;-)
20753         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
20754         Spotted by Bruno Haible.
20755
20756 2008-10-06  Eric Blake  <ebb9@byu.net>
20757
20758         test-signbit: avoid tripping Irix cc bug on -0.0L
20759         * tests/test-signbit.c (minus_zerol): Delete, and replace with
20760         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
20761         entire testsuite consistent and avoids an Irix 6.2 bug.
20762
20763 2008-10-05  Bruno Haible  <bruno@clisp.org>
20764             Jim Meyering  <jim@meyering.net>
20765
20766         Add an option for ignoring EPIPE during close_stdout.
20767         * lib/closeout.h: Include <stdbool.h>.
20768         (close_stdout_set_ignore_EPIPE): New declaration.
20769         * lib/closeout.c: Include <stdbool.h>.
20770         (ignore_EPIPE): New variable.
20771         (close_stdout_set_ignore_EPIPE): New function.
20772         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
20773         * lib/close-stream.c (close_stream): Mention the possible EPIPE
20774         failure.
20775         * modules/closeout (Depends-on): Add stdbool.
20776
20777 2008-10-05  Bruno Haible  <bruno@clisp.org>
20778
20779         * modules/accept: New file.
20780         * modules/bind: New file.
20781         * modules/connect: New file.
20782         * modules/getpeername: New file.
20783         * modules/getsockname: New file.
20784         * modules/getsockopt: New file.
20785         * modules/listen: New file.
20786         * modules/recv: New file.
20787         * modules/recvfrom: New file.
20788         * modules/send: New file.
20789         * modules/sendto: New file.
20790         * modules/setsockopt: New file.
20791         * modules/socket: New file.
20792         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
20793         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
20794         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
20795         the particular module is requested. Add a link warning when the
20796         particular module is not requested.
20797         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
20798         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
20799         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
20800         the particular module is requested.
20801         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
20802         gl_SYS_SOCKET_H_DEFAULTS): New macros.
20803         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
20804         * modules/sys_socket (Depends-on): Add link-warning.
20805         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
20806         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
20807         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
20808         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
20809         GL_LINK_WARNING.
20810         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
20811         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
20812         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
20813         * doc/posix-functions/getpeername.texi: Mention the new module
20814         'getpeername'.
20815         * doc/posix-functions/getsockname.texi: Mention the new module
20816         'getsockname'.
20817         * doc/posix-functions/getsockopt.texi: Mention the new module
20818         'getsockopt'.
20819         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
20820         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
20821         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
20822         * doc/posix-functions/send.texi: Mention the new module 'send'.
20823         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
20824         * doc/posix-functions/setsockopt.texi: Mention the new module
20825         'setsockopt'.
20826         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
20827         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
20828         listen, connect, accept.
20829         * modules/select-tests (Depends-on): Likewise.
20830
20831 2008-10-05  Bruno Haible  <bruno@clisp.org>
20832
20833         * lib/winsock.c (strerror): Remove unused #undef.
20834         (rpl_close): Remove unused local variable.
20835
20836         * modules/sys_socket (Depends-on); Add errno.
20837
20838 2008-10-05  Bruno Haible  <bruno@clisp.org>
20839
20840         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
20841         (select): Add a link warning when the 'select' module is not used.
20842         * modules/sys_select (Depends-on): Add link-warning.
20843         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
20844         Suggested by Paolo Bonzini.
20845
20846 2008-10-05  Jim Meyering  <meyering@redhat.com>
20847
20848         bootstrap: check for LT_INIT more portably
20849         * build-aux/bootstrap: Avoid using grep -E, since it's not
20850         portable enough.  Suggestion from Bruno Haible.
20851
20852 2008-10-05  Bruno Haible  <bruno@clisp.org>
20853
20854         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
20855         as being fixed by gnulib.
20856
20857 2008-10-05  Bruno Haible  <bruno@clisp.org>
20858
20859         * modules/select-tests: New file, mostly copied from
20860         modules/sys_select-tests.
20861         * tests/test-select.c: New file, mostly copied from
20862         tests/test-sys_select.c.
20863         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
20864         * modules/sys_select-tests (Depends-on): Remove all dependencies.
20865         (Makefile.am): Remove test_sys_select_LDADD.
20866
20867         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
20868         to an undefined symbol, for an error message.
20869         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
20870         (gl_SYS_SELECT_H_DEFAULTS): New macro.
20871         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
20872         winsock-select.c here.
20873         * modules/sys_select (Files): Remove lib/winsock-select.c.
20874         (Depends-on): Remove alloca.
20875         (Makefile.am): Substitute GNULIB_SELECT.
20876         * modules/select: New file.
20877         * doc/posix-functions/select.texi: Update.
20878
20879 2008-10-05  Bruno Haible  <bruno@clisp.org>
20880
20881         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
20882         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
20883         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
20884         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
20885         getdtablesize.
20886         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
20887         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
20888
20889 2008-10-05  Bruno Haible  <bruno@clisp.org>
20890
20891         * modules/getdtablesize-tests: New file.
20892         * tests/test-getdtablesize.c: New file.
20893
20894         New module 'getdtablesize'.
20895         * lib/unistd.in.h (getdtablesize): New declaration.
20896         * lib/getdtablesize.c: New file.
20897         * m4/getdtablesize.m4: New file.
20898         * modules/getdtablesize: New file.
20899         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
20900         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
20901         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
20902         HAVE_GETDTABLESIZE.
20903         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
20904
20905 2008-10-05  Bruno Haible  <bruno@clisp.org>
20906
20907         * modules/sched (Makefile.am): Fix typo.
20908         Reported by Simon Josefsson.
20909
20910 2008-10-05  Jim Meyering  <meyering@redhat.com>
20911
20912         bootstrap: check for LT_INIT, too
20913         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
20914         are deprecated.  Suggestion from Ralf Wildenhues.
20915
20916 2008-10-05  Bruno Haible  <bruno@clisp.org>
20917
20918         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
20919         overriding them by ours.
20920         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
20921
20922 2008-10-05  Jim Meyering  <meyering@redhat.com>
20923
20924         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
20925         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
20926         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
20927
20928 2008-10-04  Bruno Haible  <bruno@clisp.org>
20929
20930         * modules/dup2 (License): Change to LGPLv2+.
20931         * modules/sleep (License): Likewise.
20932         * modules/perror (License): Likewise.
20933         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
20934         Blake.
20935         * modules/signal (License): Likewise.
20936         * modules/sigprocmask (License): Likewise.
20937         * modules/raise (License): Change to LGPLv2+, with approval by Jim
20938         Meyering.
20939
20940 2008-10-04  Bruno Haible  <bruno@clisp.org>
20941
20942         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
20943         Reported by Rainer Tammer <tammer@tammer.net>.
20944
20945 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
20946             Bruno Haible  <bruno@clisp.org>
20947
20948         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
20949         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
20950         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
20951
20952 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
20953
20954         filevercmp: new module
20955         * lib/filevercmp.h: New function filevercmp comparing version strings.
20956         * lib/filevercmp.c: Implementation of filevercmp function.
20957         * modules/filevercmp: Module metadata.
20958         * tests/test-filevercmp.c: Unit test for new module.
20959         * modules/filevercmp-tests: Unit test metadata.
20960         * MODULES.html.sh: Add filevercmp module.
20961
20962 2008-10-03  Bruno Haible  <bruno@clisp.org>
20963
20964         * lib/c-ctype.h: Add comment.
20965         Reported by Jim Meyering.
20966
20967 2008-10-02  Bruno Haible  <bruno@clisp.org>
20968
20969         * modules/posix_spawn-internal (Depends-on): Add 'open'.
20970
20971 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
20972
20973         * build-aux/bootstrap: Allow renaming bootstrap, and change the
20974         name of bootstrap.conf accordingly.
20975
20976 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
20977
20978         * build-aux/bootstrap: Install git-merge-changelog configuration
20979         items into .gitconfig if needed.
20980
20981 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
20982
20983         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
20984         git repository, and initialize/update it accordingly.
20985
20986 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
20987
20988         * modules/fsync-tests: New file.
20989         * tests/test-fsync.c: New file.
20990
20991         New module 'fsync'.
20992         * lib/fsync.c: New file.
20993         * m4/fsync.m4: New file.
20994         * modules/fsync: New file.
20995         * lib/unistd.in.h (fsync): New declaration.
20996         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
20997         GNULIB_FSYNC and HAVE_FSYNC.
20998         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
20999         * MODULES.html.sh (posix_functions): Add fsync.
21000         * doc/posix-functions/fsync.texi: Mention the new module.
21001
21002 2008-10-02  Jim Meyering  <meyering@redhat.com>
21003
21004         fts.c: sync with similar code from coreutils' remove.c
21005         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
21006         Guard also with "#if defined __linux__", since for now at least,
21007         this code is Linux-kernel-specific.
21008
21009 2008-10-02  Jim Meyering  <meyering@redhat.com>
21010
21011         fts: bug fixes
21012         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
21013         Include <sys/vfs.h>, not <sys/statfs.h>.
21014
21015         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
21016         Include <sys/vfs.h>, not <sys/statfs.h>.
21017
21018 2008-10-01  Bruno Haible  <bruno@clisp.org>
21019
21020         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
21021         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
21022         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
21023         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
21024         * doc/posix-functions/posix_spawnp.texi: Likewise.
21025         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
21026         whether posix_spawn actually works.
21027         * m4/pipe.m4 (gl_PIPE): Likewise.
21028         * modules/execute (Files): Add m4/posix_spawn.m4.
21029         * modules/pipe (Files): Add m4/posix_spawn.m4.
21030         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
21031
21032 2008-10-01  Jim Meyering  <meyering@redhat.com>
21033
21034         remove trailing spaces
21035         * NEWS: Likewise.
21036         * lib/poll.c (poll): Likewise.
21037         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
21038         * lib/winsock.c (rpl_close): Likewise.
21039         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
21040         * modules/yield: Likewise.
21041         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
21042         * tests/test-sys_select.c (connect_to_socket): Likewise.
21043
21044         fts.c: adjust a new interface to be more generally useful
21045         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
21046         (fts_build): Adjust caller.
21047
21048 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21049
21050         * modules/cond-tests: New file.
21051         * tests/test-cond.c: New file.
21052
21053 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21054             Bruno Haible  <bruno@clisp.org>
21055
21056         * modules/cond (Dependencies): Add errno, time.
21057         * lib/glthread/cond.h: Include <time.h>.
21058         (gl_cond_define, gl_cond_define_initialized): Use the same definition
21059         across platforms.
21060
21061 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21062             Bruno Haible  <bruno@clisp.org>
21063
21064         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
21065
21066 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21067             Bruno Haible  <bruno@clisp.org>
21068
21069         * modules/tls-tests (Depends-on): Add thread, yield.
21070         (configure.ac): Remove all checks.
21071         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
21072         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
21073         gl_thread_self): Remove definitions. Include glthread/thread.h and
21074         glthread/yield.h instead.
21075         (test_tls): Pass an additional NULL argument to gl_thread_join.
21076
21077 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21078             Bruno Haible  <bruno@clisp.org>
21079
21080         * modules/lock-tests (Depends-on): Add thread, yield.
21081         (configure.ac): Remove all checks.
21082         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
21083         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
21084         gl_thread_self): Remove definitions. Include glthread/thread.h and
21085         glthread/yield.h instead.
21086         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
21087         additional NULL argument to gl_thread_join.
21088
21089 2008-09-30  Bruno Haible  <bruno@clisp.org>
21090
21091         Fix the Win32 implementation of the 'thread' module.
21092         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
21093         pointer type.
21094         (gl_thread_self): Invoke gl_thread_self_func.
21095         (gl_thread_self_func): New declaration.
21096         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
21097         (do_init_self_key, init_self_key): New functions.
21098         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
21099         Remove some fields.
21100         (running_threads, running_lock): Remove variables.
21101         (get_current_thread_handle): New function.
21102         (gl_thread_self_func, wrapper_func, glthread_create_func,
21103         glthread_join_func, gl_thread_exit_func): Largely rewritten and
21104         simplified.
21105
21106 2008-09-30  Bruno Haible  <bruno@clisp.org>
21107
21108         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
21109         files.
21110
21111 2008-09-30  Jim Meyering  <meyering@redhat.com>
21112
21113         fts.m4: correct the test for statfs.f_type
21114         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
21115         when checking for statfs.f_type.
21116
21117 2008-09-15  Simon Josefsson  <simon@josefsson.org>
21118
21119         tests: avoid some compiler warnings
21120         * tests/test-memchr.c (main): Pass NULL indirectly.
21121         * tests/test-getdate.c (main): Remove unused variable 'ret'.
21122
21123 2008-09-29  Ondřej Vašík  <ovasik@redhat.com>
21124
21125         getdate.y: disallow countable dayshifts like "4 yesterday ago"
21126         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
21127         exactly specified dayshifts.
21128         (dayshift): New rule.
21129         (rel): Add dayshift.
21130         (relative_time_table) [tomorrow, yesterday, today, now]:
21131         Use tDAY_SHIFT in place of tDAY_UNIT.
21132         * tests/test-getdate.c: Add tests for now-disallowed countable
21133         dayshifts, e.g., "4 yesterday ago".
21134
21135 2008-09-29  Bruno Haible  <bruno@clisp.org>
21136
21137         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
21138         * tests/test-posix_spawn1.in.sh: Renamed from
21139         tests/test-posix_spawn.in.sh.
21140         * tests/test-posix_spawn2.c: New file.
21141         * tests/test-posix_spawn2.in.sh: New file.
21142         * modules/posix_spawnp-tests (Files): Update.
21143         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
21144
21145 2008-09-29  Bruno Haible  <bruno@clisp.org>
21146
21147         Propagate effects of putenv/setenv/unsetenv to child processes.
21148         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
21149         * lib/pipe.c (create_pipe): Likewise.
21150
21151 2008-09-29  Bruno Haible  <bruno@clisp.org>
21152
21153         Enable use of shell scripts as executables in mingw.
21154         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
21155         run the program as a shell script.
21156         * lib/pipe.c (create_pipe): Likewise.
21157         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
21158         resulting array.
21159
21160 2008-09-29  Eric Blake  <ebb9@byu.net>
21161
21162         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
21163
21164 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
21165
21166         * doc/posix-functions/accept.texi: Update mingw problems.
21167         * doc/posix-functions/bind.texi: Update mingw problems.
21168         * doc/posix-functions/close.texi: Update mingw problems.
21169         * doc/posix-functions/connect.texi: Update mingw problems.
21170         * doc/posix-functions/getpeername.texi: Update mingw problems.
21171         * doc/posix-functions/getsockname.texi: Update mingw problems.
21172         * doc/posix-functions/getsockopt.texi: Update mingw problems.
21173         * doc/posix-functions/ioctl.texi: Update mingw problems.
21174         * doc/posix-functions/listen.texi: Update mingw problems.
21175         * doc/posix-functions/recv.texi: Update mingw problems.
21176         * doc/posix-functions/recvfrom.texi: Update mingw problems.
21177         * doc/posix-functions/select.texi: Update mingw problems.
21178         * doc/posix-functions/send.texi: Update mingw problems.
21179         * doc/posix-functions/sendto.texi: Update mingw problems.
21180         * doc/posix-functions/setsockopt.texi: Update mingw problems.
21181         * doc/posix-functions/socket.texi: Update mingw problems.
21182
21183 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
21184             Bruno Haible  <bruno@clisp.org>
21185
21186         * lib/sys_select.in.h: Include sys/time.h.
21187         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
21188         * modules/sys_select: Depend on sys_time.
21189         * tests/test-sys_select.c: Test that sys/select.h defines struct
21190         timeval fully.
21191
21192 2008-09-29  Bruno Haible  <bruno@clisp.org>
21193
21194         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
21195         * lib/sys_select.in.h: Likewise.
21196
21197 2008-09-29  Bruno Haible  <bruno@clisp.org>
21198
21199         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
21200
21201 2008-09-29  Bruno Haible  <bruno@clisp.org>
21202
21203         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
21204         Set LIBSOCKET instead of augmenting LIBS.
21205         * modules/sockets (Link): New section.
21206         * modules/sockets-tests (test_sockets_LDADD): New variable.
21207         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
21208         * modules/poll-tests (test_poll_LDADD): New variable.
21209         * NEWS: Document the change.
21210
21211 2008-09-29  Bruno Haible  <bruno@clisp.org>
21212
21213         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
21214         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
21215         ARPA_INET_H directly.
21216         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
21217
21218 2008-09-28  Bruno Haible  <bruno@clisp.org>
21219
21220         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
21221         from gl_HEADER_SYS_SOCKET.
21222         (gl_HEADER_SYS_SOCKET): Invoke it.
21223         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
21224
21225 2008-09-28  Bruno Haible  <bruno@clisp.org>
21226
21227         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
21228         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
21229         Needed on OSF/1 4.0.
21230
21231 2008-09-28  Bruno Haible  <bruno@clisp.org>
21232
21233         Override open more carefully.
21234         * lib/open.c (orig_open): New function.
21235         (rpl_open): Use orig_open instead of open.
21236         * lib/fcntl.in.h: Add special invocation convention.
21237         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
21238         (gl_FUNC_OPEN): Invoke it.
21239
21240         Override freopen more carefully.
21241         * lib/freopen.c (orig_freopen): New function.
21242         (rpl_freopen): Use orig_freopen instead of freopen.
21243         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
21244         (gl_FUNC_FREOPEN): Invoke it.
21245
21246         Override fopen more carefully.
21247         * lib/fopen.c (orig_fopen): New function.
21248         (rpl_fopen): Use orig_fopen instead of fopen.
21249         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
21250         (gl_FUNC_FOPEN): Invoke it.
21251         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
21252
21253 2008-09-28  Bruno Haible  <bruno@clisp.org>
21254
21255         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
21256         SIGPIPE.
21257
21258 2008-09-28  Bruno Haible  <bruno@clisp.org>
21259
21260         * tests/test-sigaction.c (handler, main): Disable the check whether
21261         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
21262         glibc systems with LinuxThreads.
21263
21264 2008-09-28  Bruno Haible  <bruno@clisp.org>
21265
21266         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
21267
21268         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
21269         with AIX xlc.
21270         * lib/fcntl.in.h (open): Likewise.
21271         Reported by Rainer Tammer <tammer@tammer.net>.
21272
21273 2008-09-28  Bruno Haible  <bruno@clisp.org>
21274
21275         * modules/posix_spawnp-tests: New file.
21276         * tests/test-posix_spawn.c: New file.
21277         * tests/test-posix_spawn.in.sh: New file.
21278
21279         New module 'posix_spawnp'.
21280         * modules/posix_spawnp: New file.
21281         * lib/spawnp.c: New file, from GNU libc with modifications.
21282         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
21283
21284         New module 'posix_spawn'.
21285         * modules/posix_spawn: New file.
21286         * lib/spawn.c: New file, from GNU libc with modifications.
21287         * doc/posix-functions/posix_spawn.texi: Mention the new module.
21288
21289         New module 'posix_spawnattr_destroy'.
21290         * modules/posix_spawnattr_destroy: New file.
21291         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
21292         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
21293         module.
21294
21295         New module 'posix_spawnattr_setsigmask'.
21296         * modules/posix_spawnattr_setsigmask: New file.
21297         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
21298         modifications.
21299         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
21300         new module.
21301
21302         New module 'posix_spawnattr_getsigmask'.
21303         * modules/posix_spawnattr_getsigmask: New file.
21304         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
21305         modifications.
21306         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
21307         new module.
21308
21309         New module 'posix_spawnattr_setsigdefault'.
21310         * modules/posix_spawnattr_setsigdefault: New file.
21311         * lib/spawnattr_setdefault.c: New file, from GNU libc with
21312         modifications.
21313         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
21314         new module.
21315
21316         New module 'posix_spawnattr_getsigdefault'.
21317         * modules/posix_spawnattr_getsigdefault: New file.
21318         * lib/spawnattr_getdefault.c: New file, from GNU libc with
21319         modifications.
21320         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
21321         new module.
21322
21323         New module 'posix_spawnattr_setschedpolicy'.
21324         * modules/posix_spawnattr_setschedpolicy: New file.
21325         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
21326         modifications.
21327         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
21328         new module.
21329
21330         New module 'posix_spawnattr_getschedpolicy'.
21331         * modules/posix_spawnattr_getschedpolicy: New file.
21332         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
21333         modifications.
21334         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
21335         new module.
21336
21337         New module 'posix_spawnattr_setschedparam'.
21338         * modules/posix_spawnattr_setschedparam: New file.
21339         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
21340         modifications.
21341         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
21342         new module.
21343
21344         New module 'posix_spawnattr_getschedparam'.
21345         * modules/posix_spawnattr_getschedparam: New file.
21346         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
21347         modifications.
21348         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
21349         new module.
21350
21351         New module 'posix_spawnattr_setpgroup'.
21352         * modules/posix_spawnattr_setpgroup: New file.
21353         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
21354         modifications.
21355         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
21356         module.
21357
21358         New module 'posix_spawnattr_getpgroup'.
21359         * modules/posix_spawnattr_getpgroup: New file.
21360         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
21361         modifications.
21362         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
21363         module.
21364
21365         New module 'posix_spawnattr_setflags'.
21366         * modules/posix_spawnattr_setflags: New file.
21367         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
21368         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
21369         module.
21370
21371         New module 'posix_spawnattr_getflags'.
21372         * modules/posix_spawnattr_getflags: New file.
21373         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
21374         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
21375         module.
21376
21377         New module 'posix_spawnattr_init'.
21378         * modules/posix_spawnattr_init: New file.
21379         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
21380         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
21381         module.
21382
21383         New module 'posix_spawn_file_actions_destroy'.
21384         * modules/posix_spawn_file_actions_destroy: New file.
21385         * lib/spawn_faction_destroy.c: New file, from GNU libc with
21386         modifications.
21387         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
21388         the new module.
21389
21390         New module 'posix_spawn_file_actions_addopen'.
21391         * modules/posix_spawn_file_actions_addopen: New file.
21392         * lib/spawn_faction_addopen.c: New file, from GNU libc with
21393         modifications.
21394         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
21395         the new module.
21396
21397         New module 'posix_spawn_file_actions_adddup2'.
21398         * modules/posix_spawn_file_actions_adddup2: New file.
21399         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
21400         modifications.
21401         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
21402         the new module.
21403
21404         New module 'posix_spawn_file_actions_addclose'.
21405         * modules/posix_spawn_file_actions_addclose: New file.
21406         * lib/spawn_faction_addclose.c: New file, from GNU libc with
21407         modifications.
21408         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
21409         the new module.
21410
21411         New module 'posix_spawn_file_actions_init'.
21412         * modules/posix_spawn_file_actions_init: New file.
21413         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
21414         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
21415         new module.
21416
21417         New module 'posix_spawn-internal'.
21418         * modules/posix_spawn-internal: New file.
21419         * lib/spawn_int.h: New file, from GNU libc with modifications.
21420         * lib/spawni.c: New file, from GNU libc with modifications.
21421         * m4/posix_spawn.m4: New file.
21422
21423         New module 'spawn'.
21424         * modules/spawn: New file.
21425         * lib/spawn.in.h: New file, from GNU libc with modifications.
21426         * m4/spawn_h.m4: New file.
21427         * doc/posix-headers/spawn.texi: Mention the new module.
21428
21429 2008-09-28  Bruno Haible  <bruno@clisp.org>
21430
21431         * modules/sched-tests: New file.
21432         * tests/test-sched.c: New file.
21433
21434         New module 'sched'.
21435         * modules/sched: New file.
21436         * lib/sched.in.h: New file.
21437         * m4/sched_h.m4: New file.
21438         * doc/posix-headers/sched.texi: Mention the new module.
21439
21440 2008-09-27  Eric Blake  <ebb9@byu.net>
21441
21442         Fix previous patch, and tweak references to $0.
21443         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
21444         (func_version, func_gnulib_dir): Don't call this program
21445         gnulib-tool.
21446         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
21447         with using $0 in function.
21448         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
21449         (func_fatal_error): Reuse the name the user invoked us with.
21450
21451 2008-09-27  Bruno Haible  <bruno@clisp.org>
21452
21453         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
21454         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
21455         (gl_ICONV_H): Not here.
21456         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
21457         instead of assigning ICONV_H directly.
21458
21459         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
21460         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
21461         WCHAR_H directly.
21462
21463 2008-09-27  Bruno Haible  <bruno@clisp.org>
21464
21465         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
21466         * modules/arpa_inet (Depends-on): Add link-warning.
21467         (Makefile.am): Insert the definition of GL_LINK-WARNING.
21468         * modules/unistd (Makefile.am): Likewise.
21469
21470 2008-09-26  Bruno Haible  <bruno@clisp.org>
21471
21472         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
21473         variables.
21474         (func_version): Essentially copied from gnulib-tool.
21475         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
21476         func_readlink): Copied from gnulib-tool.
21477
21478 2008-09-26  Bruno Haible  <bruno@clisp.org>
21479
21480         * gnulib-tool (func_version): Change directory to $gnulib_dir before
21481         invoking git-version-gen.
21482
21483 2008-09-26  Bruno Haible  <bruno@clisp.org>
21484
21485         * posix-modules: Update to directory names changed on 2008-01-19.
21486         Remove commas in output before splitting into words. No more need to
21487         avoid 'ftruncate' since 2007-02-19.
21488
21489 2008-09-26  Bruno Haible  <bruno@clisp.org>
21490
21491         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
21492
21493 2008-09-26  Bruno Haible  <bruno@clisp.org>
21494
21495         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
21496         * modules/fwriteerror (Depends-on): Add errno.
21497
21498 2008-09-26  Bruno Haible  <bruno@clisp.org>
21499
21500         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
21501         * tests/test-vc-list-files-cvs.sh: Likewise.
21502
21503 2008-09-26  Bruno Haible  <bruno@clisp.org>
21504
21505         * doc/posix-headers/sys_resource.texi: Reorder items.
21506
21507 2008-09-26  Jim Meyering  <meyering@redhat.com>
21508
21509         fts: tweak inode comparison function
21510         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
21511         inode numbers, as documented.
21512
21513         fts: sort dirent entries on inode number before traversing
21514         This avoids a quadratic, seek-related performance penalty when
21515         operating on a directory containing many entries (measurable at 10k;
21516         3.5 hours at 2 million entries with a cold cache) on certain types
21517         of file systems, including ext3 and ext4, but not tmpfs.
21518         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
21519         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
21520         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
21521         (fs_handles_readdir_ordered_dirents_efficiently): New function.
21522         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
21523         (fts_build): Set the stat.st_ino member from D_INO.
21524         If it is likely to be useful, sort dirent entries on inode number.
21525
21526         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
21527         and the struct statfs.f_type member.
21528         * modules/fts (Depends-on): Add d-ino.
21529
21530 2008-09-26  Bruno Haible  <bruno@clisp.org>
21531
21532         * modules/sigpipe-die (Depends-on): Add sigpipe.
21533
21534         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
21535         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
21536         and GNULIB_STDIO_H_SIGPIPE are set.
21537         * lib/stdio-write.c: New file.
21538         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
21539         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
21540         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
21541         REPLACE_STDIO_WRITE_FUNCS.
21542         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
21543         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
21544         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
21545         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
21546         * modules/stdio (Files): Add lib/stdio-write.c.
21547         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
21548         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
21549         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
21550         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
21551         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
21552         REPLACE_FPRINTF_POSIX.
21553         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
21554         REPLACE_PRINTF_POSIX.
21555         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
21556         REPLACE_VFPRINTF_POSIX.
21557         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
21558         REPLACE_VPRINTF_POSIX.
21559         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
21560         SIGPIPE issue.
21561         * doc/posix-functions/fputc.texi: Likewise.
21562         * doc/posix-functions/fputs.texi: Likewise.
21563         * doc/posix-functions/fwrite.texi: Likewise.
21564         * doc/posix-functions/printf.texi: Likewise.
21565         * doc/posix-functions/putc.texi: Likewise.
21566         * doc/posix-functions/putchar.texi: Likewise.
21567         * doc/posix-functions/puts.texi: Likewise.
21568         * doc/posix-functions/vfprintf.texi: Likewise.
21569         * doc/posix-functions/vprintf.texi: Likewise.
21570
21571         * modules/safe-write (Depends-on): Add write.
21572
21573         * modules/sigpipe-tests: New file.
21574         * tests/test-sigpipe.c: New file.
21575         * tests/test-sigpipe.sh: New file.
21576
21577         * modules/write: New file.
21578         * lib/unistd.in.h: Include <sys/types.h>.
21579         (write): New declaration.
21580         * lib/write.c: New file.
21581         * m4/write.m4: New file.
21582         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21583         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
21584         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
21585         GNULIB_WRITE, REPLACE_WRITE.
21586         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
21587         and the SIGPIPE issue.
21588
21589         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
21590         (raise): New declaration.
21591         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
21592         (ext_signal): New function.
21593         (rpl_raise): New function.
21594         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
21595         GNULIB_SIGNAL_H_SIGPIPE.
21596         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
21597         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
21598
21599         * modules/sigpipe: New file.
21600         * m4/sigpipe.m4: New file.
21601
21602 2008-09-25  Derek Price  <derek@ximbiot.com>
21603             Bruno Haible  <bruno@clisp.org>
21604
21605         * gnulib-tool (func_import): Report all license incompatibilities, not
21606         just the first one.
21607
21608 2008-09-25  Bruno Haible  <bruno@clisp.org>
21609
21610         * gnulib-tool (func_import): When computing the edits, consider not
21611         only the Makefile.ams that exist but also those that will be generated.
21612
21613 2008-09-25  Simon Josefsson  <simon@josefsson.org>
21614
21615         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
21616         fixes gnulib-tool --test warning about duplicate dependency.
21617
21618 2008-09-25  Bruno Haible  <bruno@clisp.org>
21619
21620         * gnulib-tool: Don't ask the user to perform edits in the generated
21621         Makefile.ams.
21622         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
21623         apply to the Makefile.am being generated.
21624         (func_emit_tests_Makefile_am): Execute edits that apply to the
21625         Makefile.am being generated.
21626         (func_import): Setup list of Makefile.am edits before emitting the
21627         Makefile.ams, not at the end.
21628         (func_create_testdir): Update.
21629         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21630
21631 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21632
21633         * gnulib-tool (func_import): Store the --tests-base option in the
21634         comment in gnulib-cache.m4.
21635
21636 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
21637
21638         * NEWS: Document increased portability that sys_select now provides.
21639
21640         * lib/sys_select.in.h: Install select wrapper.
21641         * lib/sys_socket.in.h: Use more descriptive name when there is no
21642         select wrapper.
21643         * lib/winsock-select.c: New.
21644         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
21645         Require gl_HEADER_SYS_SOCKET.
21646         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
21647         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
21648         * tests/test-sys_select.c: Add functional tests.
21649
21650 2008-09-24  Eric Blake  <ebb9@byu.net>
21651
21652         open, fopen: close fd leak in last patch
21653         * lib/open.c (rpl_open): Close fd before returning error.
21654         * lib/fopen.c (rpl_fopen): Close fd before returning error.
21655         * doc/posix-functions/open.texi (open): Document that Irix also
21656         has the bug.
21657         * doc/posix-functions/fopen.texi (fopen): Likewise.
21658         Reported by Paolo Bonzini.
21659
21660 2008-09-24  Bruno Haible  <bruno@clisp.org>
21661
21662         Ensure that a filename ending in a slash cannot be used to access a
21663         non-directory.
21664         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
21665         to check whether it's really a directory.
21666         * lib/fopen.c: Include fcntl.h, unistd.h.
21667         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
21668         and fdopen().
21669         * modules/fopen (Depends-on): Add unistd.
21670         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
21671         * tests/test-fopen.c (main): Likewise.
21672         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
21673         * doc/posix-functions/fopen.texi: Likewise.
21674         Reported by Eric Blake.
21675
21676 2008-09-23  Eric Blake  <ebb9@byu.net>
21677
21678         c-stack: avoid compiler optimizations when provoking overflow
21679         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
21680         recursion harder to optimize, to ensure a stack overflow occurs.
21681         * tests/test-c-stack.c (recurse): Likewise.
21682         Borrowed from libsigsegv.
21683
21684         c-stack: work around Irix sigaltstack bug
21685         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
21686         whether sigaltstack uses wrong end of stack_t (copied in part from
21687         libsigsegv).
21688         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
21689         Irix bug, without requiring an over-allocation.
21690         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
21691         bug.
21692
21693         fopen: document mingw bug on directories
21694         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
21695         not allowing a stream visiting a directory, even though reading
21696         from such a stream is not portable.
21697
21698 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
21699
21700         * lib/poll.c: Rewrite.
21701         * modules/poll: Depend on alloca.
21702
21703 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
21704
21705         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
21706         instead define prototypes for a full set of wrappers.  Ensure
21707         that Cygwin does not use the compatibility code, which is only
21708         for MinGW.
21709         * lib/winsock.c: New.
21710         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
21711         * modules/sys_socket: Add lib/winsock.c.
21712
21713         * modules/poll-tests: Add errno and perror.
21714         * tests/test-poll.c: Use ioctl, not ioctlsocket.
21715
21716 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
21717
21718         * tests/test-poll.c: Downgrade minimum needed Winsock version.
21719
21720 2008-09-23  Bruno Haible  <bruno@clisp.org>
21721
21722         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
21723         * doc/glibc-functions/*: Likewise.
21724
21725 2008-09-23  Simon Josefsson  <simon@josefsson.org>
21726
21727         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
21728         success.
21729
21730 2008-09-22  Eric Blake  <ebb9@byu.net>
21731             Bruno Haible  <bruno@clisp.org>
21732
21733         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
21734         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
21735         supply %A but mishandle pseudo-NaN.
21736         Reported by Simon Josefsson.
21737
21738 2008-09-21  Bruno Haible  <bruno@clisp.org>
21739
21740         * tests/test-lock.c (main): Tweak skip message.
21741         * tests/test-tls.c (main): Likewise.
21742
21743 2008-09-21  Bruno Haible  <bruno@clisp.org>
21744
21745         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
21746         whether 'struct sigaction' has sa_sigaction here...
21747         (gl_PREREQ_SIG_HANDLER_H): ... not here.
21748         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
21749
21750 2008-09-21  Bruno Haible  <bruno@clisp.org>
21751
21752         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
21753         section.
21754         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
21755         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
21756         the new section.
21757         (Support for obsolete systems lacking POSIX:2001): New section.
21758         (String handling <string.h>): Move strdup to the new section.
21759         Suggested by Simon Josefsson and Paolo Bonzini.
21760
21761 2008-09-21  Bruno Haible  <bruno@clisp.org>
21762
21763         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
21764         exponents in %e and %g results on 'long double'. Needed for mingw's
21765         improved *printf functions.
21766         * tests/test-vasprintf-posix.c (test_function): Likewise.
21767         * tests/test-snprintf-posix.h (test_function): Likewise.
21768         * tests/test-sprintf-posix.h (test_function): Likewise.
21769         Reported by Eric Blake.
21770
21771 2008-09-21  Bruno Haible  <bruno@clisp.org>
21772
21773         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
21774         * tests/test-sprintf-posix.h (test_function): Likewise.
21775
21776 2008-09-21  Bruno Haible  <bruno@clisp.org>
21777
21778         * modules/getpass (Depends-on): Add strdup-posix.
21779
21780         New module 'strdup-posix'.
21781         * modules/strdup-posix: New file.
21782         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
21783         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
21784         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
21785         REPLACE_STRDUP.
21786         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
21787         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
21788         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
21789         strdup-posix.
21790
21791         * modules/strdup (Depends-on): Remove malloc-posix.
21792
21793 2008-09-20  Bruno Haible  <bruno@clisp.org>
21794
21795         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
21796         Wildenhues.
21797
21798 2008-09-20  Bruno Haible  <bruno@clisp.org>
21799
21800         Ensure that wint_t gets defined on IRIX 5.3.
21801         * lib/wchar.in.h (wint_t): Define if not defined by the system.
21802         * lib/wctype.in.h (wint_t): Likewise.
21803         (__wctype_wint_t): Remove type.
21804         (isw*): Use wint_t instead of __wctype_wint_t.
21805         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
21806         * modules/wchar (Files): Add m4/wint_t.m4.
21807         (Makefile.am): Substitute HAVE_WINT_T.
21808         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
21809         * tests/test-wctype.c: Check that wint_t is defined.
21810         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
21811         * doc/posix-headers/wctype.texi: Likewise.
21812         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
21813
21814 2008-09-18  Bruno Haible  <bruno@clisp.org>
21815
21816         * gnulib-tool (func_exit): Update comment.
21817
21818 2008-09-18  Simon Josefsson  <simon@josefsson.org>
21819
21820         * modules/getaddrinfo (Depends-on): Remove strdup, this module
21821         assumes strdup exists and does not depend on strdup to return
21822         ENOMEM on out of memory conditions.
21823
21824 2008-09-18  Bruno Haible  <bruno@clisp.org>
21825
21826         * lib/vasnprintf.c (VASNPRINTF): When printing ±0.0L in
21827         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
21828         digits for the exponent.
21829
21830 2008-09-18  Jim Meyering  <meyering@redhat.com>
21831             Bruno Haible  <bruno@clisp.org>
21832
21833         * lib/vasnprintf.c (decimal_point_char): Define also if
21834         NEED_PRINTF_INFINITE_LONG_DOUBLE.
21835
21836 2008-09-16  Bruno Haible  <bruno@clisp.org>
21837         and Eric Blake  <ebb9@byu.net>
21838
21839         vasnprintf: support Irix 5.3
21840         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
21841         that mishandle long double infinity.
21842         Reported by Tom G. Christensen.
21843
21844 2008-09-16  Bruno Haible  <bruno@clisp.org>
21845
21846         * doc/glibc-functions/scandir.texi: Mention the function is missing on
21847         Solaris 9.
21848         * doc/glibc-functions/alphasort.texi: Likewise.
21849         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
21850
21851 2008-09-16  Jim Meyering  <meyering@redhat.com>
21852
21853         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
21854         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
21855         a umask modification leak out of a subshell.  Otherwise, the
21856         opensolaris /bin/sh would be accepted and thus cause unwarranted
21857         failures in the coreutils test suite.
21858
21859 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
21860
21861         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
21862         to succeed.
21863
21864 2008-09-16  Jim Meyering  <meyering@redhat.com>
21865
21866         avoid spurious test failure when library is built without ACL support
21867         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
21868         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
21869         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
21870         * tests/test-copy-acl.sh: Likewise.
21871
21872 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21873
21874         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
21875         based on character occurrence counts.
21876
21877 2008-09-15  Eric Blake  <ebb9@byu.net>
21878
21879         tests: avoid some compiler warnings
21880         * tests/test-memchr.c (main): Pass NULL indirectly.
21881         * tests/test-closein.c (main): Avoid unused variable.
21882
21883 2008-09-15  Bruno Haible  <bruno@clisp.org>
21884
21885         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
21886         are missing on OpenBSD 4.0 individually.
21887         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21888
21889 2008-09-15  Bruno Haible  <bruno@clisp.org>
21890
21891         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
21892         * doc/posix-functions/strerror.texi: Mention also Cygwin.
21893         * doc/posix-functions/perror.texi: Likewise.
21894         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
21895         is missing.
21896         Reported by Eric Blake.
21897
21898         * lib/errno.in.h: Use replacement values >= 2000.
21899         Reported by Eric Blake.
21900
21901 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21902
21903         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
21904         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
21905         limit.
21906         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
21907         compareseq was aborted.
21908
21909 2008-09-14  Bruno Haible  <bruno@clisp.org>
21910
21911         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
21912         yvec_edit_count.
21913         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
21914         (fstrcmp_bounded): Simplify result computation accordingly.
21915
21916 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21917
21918         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
21919         (fstrcmp): Define in terms of fstrcmp_bounded.
21920         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
21921         lower_bound argument.
21922         Return quickly if the result is certainly < lower_bound.
21923         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
21924
21925 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21926
21927         * lib/diffseq.h (EARLY_ABORT): New macro.
21928         (compareseq): Change return type to bool. Return true when EARLY_ABORT
21929         evaluates to true.
21930
21931 2008-09-14  Bruno Haible  <bruno@clisp.org>
21932
21933         * modules/perror-tests: New file.
21934         * tests/test-perror.sh: New file.
21935         * tests/test-perror.c: New file.
21936
21937         New module 'perror'.
21938         * lib/stdio.in.h (perror): New declaration.
21939         * lib/perror.c: New file.
21940         * m4/perror.m4: New file.
21941         * modules/perror: New file.
21942         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
21943         * doc/posix-functions/perror.texi: Mention the perror module.
21944         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
21945         REPLACE_PERROR.
21946         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
21947         REPLACE_PERROR.
21948
21949 2008-09-14  Bruno Haible  <bruno@clisp.org>
21950
21951         * modules/stdio (Makefile.am): Reorder to match the order in
21952         lib/stdio.in.h.
21953         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
21954
21955 2008-09-13  Bruno Haible  <bruno@clisp.org>
21956
21957         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
21958
21959 2008-09-13  Bruno Haible  <bruno@clisp.org>
21960
21961         Extend strerror to cover the added errno values.
21962         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
21963         (rpl_strerror): Provide error messages for the added errno values and
21964         for the WSA* values.
21965         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
21966         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
21967         strerror.
21968         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
21969         * modules/strerror (Depends-on): Add errno.
21970         * doc/posix-functions/strerror.texi: Document the change.
21971         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
21972         and EOVERFLOW.
21973
21974 2008-09-13  Bruno Haible  <bruno@clisp.org>
21975
21976         * modules/EOVERFLOW: Remove file.
21977         * m4/eoverflow.m4: Remove file.
21978         * modules/EOVERFLOW-tests: Remove file.
21979         * tests/test-EOVERFLOW.c: Remove file.
21980         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
21981         * modules/ftell (Depends-on): Likewise.
21982         * modules/getdelim (Depends-on): Likewise.
21983         * modules/getugroups (Depends-on): Likewise.
21984         * modules/poll (Depends-on): Likewise.
21985         * modules/snprintf (Depends-on): Likewise.
21986         * modules/sprintf-posix (Depends-on): Likewise.
21987         * modules/vasnprintf (Depends-on): Likewise.
21988         * modules/vasprintf (Depends-on): Likewise.
21989         * modules/vfprintf-posix (Depends-on): Likewise.
21990         * modules/vsnprintf (Depends-on): Likewise.
21991         * modules/vsprintf-posix (Depends-on): Likewise.
21992         * modules/xvasprintf (Depends-on): Likewise.
21993         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
21994         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
21995         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
21996         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
21997         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
21998         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
21999         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
22000         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
22001         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
22002         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
22003         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
22004         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
22005         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
22006         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
22007         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
22008         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
22009         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
22010         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
22011         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
22012         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
22013         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
22014         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
22015         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
22016         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
22017         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
22018         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
22019         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
22020         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
22021         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
22022         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
22023         * MODULES.html.sh: Remove EOVERFLOW.
22024         * NEWS: Mention the change.
22025
22026 2008-09-13  Bruno Haible  <bruno@clisp.org>
22027
22028         * modules/errno-tests: New file.
22029         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
22030
22031         * lib/errno.in.h: New file.
22032         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
22033         * modules/errno: New file.
22034         * doc/posix-headers/errno.texi: Update documentation.
22035         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
22036
22037 2008-09-13  Bruno Haible  <bruno@clisp.org>
22038
22039         * tests/test-poll.c: Use #if for native Windows, rather than testing
22040         __MSVCRT__.
22041
22042 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22043             Bruno Haible  <bruno@clisp.org>
22044
22045         * lib/glob.c: Don't include <pwd.h> on native Windows.
22046         (WINDOWS32): New macro.
22047         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
22048
22049 2008-09-13  Bruno Haible  <bruno@clisp.org>
22050
22051         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
22052         (ETIMEDOUT): Remove macro.
22053         (glthread_cond_timedwait_multithreaded): New declaration.
22054         (glthread_cond_timedwait): Use it.
22055         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
22056         (glthread_cond_timedwait_multithreaded): New function.
22057
22058 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22059
22060         * modules/poll-tests: Do not check for io.h.
22061         * tests/test-poll.c: Check for __MSVCRT__ instead.
22062
22063 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22064
22065         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
22066         * modules/poll-tests: Add inet_pton, stdbool, sockets.
22067         * tests/test-poll.c: Use them.  Use _pipe on Windows.
22068
22069 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22070
22071         * modules/poll-tests: New.
22072         * tests/test-poll.c: New.
22073
22074 2008-09-12  Eric Blake  <ebb9@byu.net>
22075
22076         frexp: test for NetBSD failure on -0.0
22077         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
22078         not all, bugs from NetBSD 3.0 have been fixed.
22079         * doc/posix-functions/frexp.texi (frexp): Document bug.
22080         Reported by Thomas Klausner.
22081
22082         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
22083         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
22084         literal -0.0.
22085         Reported by Jonathan C. Patschke <jp@centtech.com>.
22086
22087 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22088
22089         * lib/glthread/cond.h: Use dummy implementation also if
22090         USE_WIN32_THREADS.
22091
22092 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22093
22094         * modules/fnmatch-posix (License): Change to LGPLv2+.
22095         * modules/fnmatch-gnu (License): Likewise.
22096
22097 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22098
22099         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
22100
22101 2008-09-11  Jim Meyering  <meyering@redhat.com>
22102
22103         * users.txt: Add gtk-vnc.
22104
22105 2008-09-08  Simon Josefsson  <simon@josefsson.org>
22106
22107         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
22108         rotate amounts.
22109
22110         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
22111         required for 16-bit and 8-bit rotates.
22112         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
22113         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
22114         UINT8_MAX instead of hard-coded constants.
22115         Suggested by Paul Eggert.
22116
22117 2008-09-07  Bruno Haible  <bruno@clisp.org>
22118
22119         * tests/test-striconveh.c (main): Check behaviour when converting from
22120         UTF-7.
22121
22122         Make striconveh work better with stateful encodings.
22123         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
22124         that iconv does not increment the inptr when returning -1/EINVAL.
22125
22126 2008-09-07  Bruno Haible  <bruno@clisp.org>
22127
22128         * build-aux/config.rpath: Update according to libtool-2.2.6.
22129         * build-aux/config.libpath: Likewise.
22130
22131 2008-09-06  Bruno Haible  <bruno@clisp.org>
22132
22133         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
22134         * lib/freadptr.c (freadptr): Likewise.
22135         * lib/freadseek.c (freadptrinc): Likewise.
22136         Reported by Simon Josefsson.
22137
22138 2008-09-06  Bruno Haible  <bruno@clisp.org>
22139
22140         * modules/freadptr (License): Change to LGPLv2+.
22141         * modules/freadseek (License): Likewise.
22142         Suggested by Eric Blake.
22143
22144         * modules/memchr2 (License): Change to LGPLv2+.
22145         Approved by Eric Blake.
22146
22147 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22148             Bruno Haible  <bruno@clisp.org>
22149
22150         Make gnulib-tool work with native 'sed' on AIX.
22151         * gnulib-tool (sed_noop): New variable.
22152         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
22153         func_add_or_update, func_create_testdir): Use it to initialize sed
22154         script variables.
22155         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
22156
22157 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
22158             Bruno Haible  <bruno@clisp.org>
22159
22160         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
22161         also works after #include directives.
22162
22163 2008-09-04  Ondřej Vašík  <ovasik@redhat.com>
22164
22165         getdate.y: reject an out-of-range timezone value
22166         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
22167         the range [-24...+24].  When specified with only one or two digits,
22168         * tests/test-getdate.c: Tests for the fix.
22169         * doc/getdate.texi: Document this change.
22170
22171 2008-09-03  Bruno Haible  <bruno@clisp.org>
22172
22173         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
22174
22175 2008-09-02  Simon Josefsson  <simon@josefsson.org>
22176
22177         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
22178         <bruce.korb@gmail.com> with ideas from Ben Pfaff
22179         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
22180         Blake <ebb9@byu.net>.
22181
22182         * tests/test-bitrotate.c: Add more test vectors.
22183
22184 2008-09-02  Eric Blake  <ebb9@byu.net>
22185
22186         vasnprintf-posix: handle large precision via %.*d
22187         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
22188         when handling it ourselves.
22189         * tests/test-vasnprintf-posix.c (test_function): Add test.
22190         * tests/test-snprintf-posix.h (test_function): Likewise.
22191         * tests/test-sprintf-posix.h (test_function): Likewise.
22192         * tests/test-vasprintf-posix.c (test_function): Likewise.
22193         Reported by Alain Guibert.
22194
22195 2008-09-01  Eric Blake  <ebb9@byu.net>
22196
22197         c-stack: make configure-time check more robust
22198         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
22199         successful sigaction call.
22200         Reported by Tom G. Christensen.
22201
22202 2008-09-01  Bruno Haible  <bruno@clisp.org>
22203
22204         New module 'findprog-lgpl'.
22205         * modules/findprog-lgpl: New file.
22206         * lib/findprog-lgpl.c: New file.
22207         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
22208         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
22209         to decide whether to use strdup or xstrdup, concatenated_filename or
22210         xconcatenated_filename.
22211
22212 2008-09-01  Bruno Haible  <bruno@clisp.org>
22213
22214         Split module 'concat-filename' into 'concat-filename' (LGPL) and
22215         'xconcat-filename' (GPL).
22216         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
22217         (License): Change to LGPLv2+.
22218         * modules/xconcat-filename: New file.
22219         * lib/concat-filename.h (concatenated_filename): Change specification.
22220         (xconcatenated_filename): New declaration.
22221         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
22222         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
22223         memory situations.
22224         * lib/xconcat-filename.c: New file.
22225         * NEWS: Mention the change.
22226         * lib/findprog.c: Include concat-filename.h, not filename.h.
22227         (find_in_path): Use xconcatenated_filename instead of
22228         concatenated_filename.
22229         * lib/javacomp.c: Include concat-filename.h, not filename.h.
22230         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
22231         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
22232         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
22233         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
22234         instead of concatenated_filename.
22235         * lib/javaexec.c: Include concat-filename.h, not filename.h.
22236         (execute_java_class): Use xconcatenated_filename instead of
22237         concatenated_filename.
22238         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
22239         * modules/javacomp (Depends-on): Likewise.
22240         * modules/javaexec (Depends-on): Likewise.
22241
22242 2008-09-01  Bruno Haible  <bruno@clisp.org>
22243
22244         Split module 'filename' into 'filename' and 'concat-filename'.
22245         * modules/filename: Keep only lib/filename.h.
22246         (License): Change to LGPLv2+.
22247         * modules/concat-filename: New file, extracted from modules/filename.
22248         * lib/filename.h (concatenated_filename): Remove declaration.
22249         * lib/concat-filename.h: New file, extracted from lib/filename.h.
22250         * lib/concat-filename.c: Include concat-filename.h.
22251         * NEWS: Mention the change.
22252
22253 2008-09-01  Simon Josefsson  <simon@josefsson.org>
22254
22255         * lib/bitrotate.h (rotl8, rotr8): Add.
22256
22257         * modules/bitrotate (configure.ac): Need
22258         AC_REQUIRE([AC_C_INLINE]).
22259         (Description): Mention stdint.h.  Reported by Bruno Haible
22260         <bruno@clisp.org>.
22261
22262         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
22263         Paolo Bonzini <bonzini@gnu.org>.
22264
22265 2008-08-31  Bruno Haible  <bruno@clisp.org>
22266
22267         Assume Solaris specific bi-arch conventions on Solaris systems.
22268         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
22269         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
22270         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
22271         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
22272         like acl_libdirstem.
22273         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
22274         acl_libdirstem.
22275         * NEWS: Mention the change.
22276         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
22277
22278 2008-08-31  Jim Meyering  <meyering@redhat.com>
22279
22280         * lib/strftime.h: Add comments describing the two added arguments.
22281
22282         remove duplicate #include directives
22283         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
22284         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
22285
22286 2008-08-31  Bruno Haible  <bruno@clisp.org>
22287
22288         New module 'sigpipe-die'.
22289         * modules/sigpipe-die: New file.
22290         * lib/sigpipe-die.h: New file.
22291         * lib/sigpipe-die.c: New file.
22292         * MODULES.html.sh (Signal handling): Add sigpipe-die.
22293
22294 2008-08-31  Bruno Haible  <bruno@clisp.org>
22295
22296         Don't override previously installed signal handlers.
22297         * lib/fatal-signal.c (saved_sigactions): New variable.
22298         (uninstall_handlers): Reset the signal to the saved handler, not
22299         to SIG_DFL (except when ignored).
22300         (install_handlers): Save the previous handlers.
22301
22302 2008-08-30  Bruno Haible  <bruno@clisp.org>
22303
22304         * gnulib-tool (func_reset_sigpipe): New function.
22305         (func_get_automake_snippet, func_modules_transitive_closure,
22306         func_import): Invoke it before a join command that reads from stdin,
22307         to avoid "echo: write error: Broken pipe" error messages on stderr.
22308         Reported by Sam Steingold <sds@gnu.org>.
22309
22310 2008-08-30  Bruno Haible  <bruno@clisp.org>
22311
22312         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
22313         Code copied from m4/open.m4.
22314         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
22315         access and the filename ends in a slash. Code copied from lib/open.c.
22316         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
22317         * tests/test-fopen.c (main): Check against bug with trailing slash.
22318
22319 2008-08-29  Bruno Haible  <bruno@clisp.org>
22320
22321         Avoid some "gcc -pedantic" warnings.
22322         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
22323         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
22324         * lib/dirent.in.h: Likewise.
22325         * lib/fcntl.in.h: Likewise.
22326         * lib/float.in.h: Likewise.
22327         * lib/iconv.in.h: Likewise.
22328         * lib/inttypes.in.h: Likewise.
22329         * lib/locale.in.h: Likewise.
22330         * lib/math.in.h: Likewise.
22331         * lib/netinet_in.in.h: Likewise.
22332         * lib/search.in.h: Likewise.
22333         * lib/signal.in.h: Likewise.
22334         * lib/stdarg.in.h: Likewise.
22335         * lib/stdint.in.h: Likewise.
22336         * lib/stdio.in.h: Likewise.
22337         * lib/stdlib.in.h: Likewise.
22338         * lib/string.in.h: Likewise.
22339         * lib/strings.in.h: Likewise.
22340         * lib/sys_select.in.h: Likewise.
22341         * lib/sys_socket.in.h: Likewise.
22342         * lib/sys_stat.in.h: Likewise.
22343         * lib/sys_time.in.h: Likewise.
22344         * lib/sysexits.in.h: Likewise.
22345         * lib/time.in.h: Likewise.
22346         * lib/unistd.in.h: Likewise.
22347         * lib/wchar.in.h: Likewise.
22348         * lib/wctype.in.h: Likewise.
22349         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
22350         * modules/fchdir (Makefile.am): Likewise.
22351         * modules/fcntl (Makefile.am): Likewise.
22352         * modules/float (Makefile.am): Likewise.
22353         * modules/iconv_open (Makefile.am): Likewise.
22354         * modules/inttypes (Makefile.am): Likewise.
22355         * modules/locale (Makefile.am): Likewise.
22356         * modules/math (Makefile.am): Likewise.
22357         * modules/netinet_in (Makefile.am): Likewise.
22358         * modules/search (Makefile.am): Likewise.
22359         * modules/signal (Makefile.am): Likewise.
22360         * modules/stdarg (Makefile.am): Likewise.
22361         * modules/stdint (Makefile.am): Likewise.
22362         * modules/stdio (Makefile.am): Likewise.
22363         * modules/stdlib (Makefile.am): Likewise.
22364         * modules/string (Makefile.am): Likewise.
22365         * modules/strings (Makefile.am): Likewise.
22366         * modules/sys_select (Makefile.am): Likewise.
22367         * modules/sys_socket (Makefile.am): Likewise.
22368         * modules/sys_stat (Makefile.am): Likewise.
22369         * modules/sys_time (Makefile.am): Likewise.
22370         * modules/sysexits (Makefile.am): Likewise.
22371         * modules/time (Makefile.am): Likewise.
22372         * modules/unistd (Makefile.am): Likewise.
22373         * modules/wchar (Makefile.am): Likewise.
22374         * modules/wctype (Makefile.am): Likewise.
22375         Reported by Reuben Thomas <rrt@sc3d.org>.
22376
22377 2008-08-29  Bruno Haible  <bruno@clisp.org>
22378
22379         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
22380         any more.
22381
22382 2008-08-29  Simon Josefsson  <simon@josefsson.org>
22383
22384         * MODULES.html.sh (Misc): Add bitrotate.
22385
22386         * modules/bitrotate: New file.
22387
22388         * lib/bitrotate.h: New file.
22389
22390         * modules/bitrotate-tests: New file.
22391
22392         * tests/test-bitrotate.c: New file.
22393
22394         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
22395         on the bitrotate module.
22396
22397         * lib/arctwo.c: Use new bitrotate module.
22398
22399 2008-08-29  Jim Meyering  <meyering@redhat.com>
22400
22401         bootstrap: merge changes from coreutils
22402         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
22403         of copied files.  Remove a kludge, now that this is fixed.
22404         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
22405         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
22406         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
22407
22408 2008-08-29  Bruno Haible  <bruno@clisp.org>
22409
22410         * MODULES.html.sh: Remove --cvs-urls option.
22411
22412 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
22413
22414         maint.mk: adjust to file name change
22415         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
22416
22417 2008-08-28  Jim Meyering  <meyering@redhat.com>
22418
22419         * modules/getndelim2 (License): Relicense to LGPLv2+.
22420         Approved by Richard Stallman for the version of 1995, and by
22421         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
22422
22423 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
22424
22425         * lib/getdelim.c (flockfile, funlockfile): Make all of them
22426         dummy if one is not available.  Do not touch them if
22427         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
22428         (getc_maybe_unlocked): New.
22429         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
22430
22431 2008-08-26  Eric Blake  <ebb9@byu.net>
22432
22433         doc/INSTALL: resync from autoconf
22434         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
22435         (INSTALL_PRELUDE): Delete; this is done more efficiently by
22436         moving...
22437         * install.texi [!autoconf]: ...here.  Resync from autoconf.
22438         * INSTALL: Regenerate.
22439         * INSTALL.ISO: New file.
22440         * INSTALL.UTF-8: Likewise.
22441
22442 2008-08-26  Jim Meyering  <meyering@redhat.com>
22443
22444         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
22445         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
22446         these definitions conditional, so that they may be overridden, too.
22447
22448 2008-08-26  Bruno Haible  <bruno@clisp.org>
22449
22450         Generate INSTALL file variants with prettier quotes.
22451         * doc/Makefile (INSTALL_PRELUDE): New macro.
22452         (INSTALL): Use it.
22453         (INSTALL.ISO, INSTALL.UTF-8): New rules.
22454
22455 2008-08-26  Bruno Haible  <bruno@clisp.org>
22456
22457         Run makeinfo in an English locale.
22458         * doc/Makefile (MAKEINFO): New variable.
22459
22460 2008-08-26  Bruno Haible  <bruno@clisp.org>
22461
22462         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
22463         Suggested by Eric Blake.
22464
22465 2008-08-25  Bruno Haible  <bruno@clisp.org>
22466
22467         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
22468
22469 2008-08-25  Eric Blake  <ebb9@byu.net>
22470
22471         c-stack: test that stack overflow can be caught
22472         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
22473         that platform allows handling stack overflow; at least OS/2 EMX
22474         has sigaltstack, but crashes before transferring control to
22475         handler on stack overflow.
22476         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
22477         check for HAVE_STACK_OVERFLOW_HANDLING.
22478         Reported by Elbert Pol.
22479
22480 2008-08-25  Bruno Haible  <bruno@clisp.org>
22481
22482         * doc/posix-functions/strftime.texi: Fix description of strftime
22483         module.
22484
22485 2008-08-24  Bruno Haible  <bruno@clisp.org>
22486
22487         * tests/uniwidth/test-uc_width2.c: New file.
22488         * tests/uniwidth/test-uc_width2.sh: New file.
22489         * modules/uniwidth/width-tests (Files): Add the new files.
22490         (TESTS): Add uniwidth/test-uc_width2.sh.
22491         (TESTS_ENVIRONMENT): New variable.
22492         (check_PROGRAMS): Add test-uc_width2.
22493         (test_uc_width2_SOURCES): New variable.
22494
22495         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
22496         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
22497         not 0x00AB.
22498         Reported by Alexander V. Lukyanov <lav@netis.ru>.
22499
22500 2008-08-22  Eric Blake  <ebb9@byu.net>
22501
22502         test-lock, test-tls: mention why a test is skipped
22503         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
22504         skipped.
22505         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
22506
22507         count-one-bits: relax license
22508         * modules/count-one-bits (License): Relicense to LGPLv2+.
22509         Suggested by Ludovic Courtès, approved by Ben Pfaff.
22510
22511 2008-08-22  Andreas Schwab  <schwab@suse.de>
22512
22513         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
22514         Remove spurious space in assignment.
22515
22516 2008-08-21  Simon Josefsson  <simon@josefsson.org>
22517
22518         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
22519         Paul Eggert <eggert@CS.UCLA.EDU>.
22520
22521 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
22522
22523         * modules/gettext: Add m4/threadlib.m4.
22524
22525 2008-08-19  Eric Blake  <ebb9@byu.net>
22526
22527         test-c-stack: fix compilation failure on FreeBSD 5.0
22528         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
22529         headers before <sys/resource.h>.
22530         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
22531         the bug.
22532         Reported by Nelson H. F. Beebe.
22533
22534         strverscmp: migrate from "strverscmp.h" to <string.h>
22535         * modules/string (Makefile.am): Add new hooks.
22536         * modules/strverscmp (Files): Remove strverscmp.h.
22537         (Depends-on): Add string.
22538         (configure.ac): Add indicator.
22539         (Include): Mention new header.
22540         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
22541         defaults.
22542         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
22543         results.
22544         * lib/strverscmp.h: Delete.
22545         * lib/string.in.h (strverscmp): Provide declaration, when needed.
22546         * tests/test-strverscmp.c (includes): Adjust client.
22547         * lib/check-version.c (includes): Likewise.
22548         * NEWS: Document the change.
22549
22550         strverscmp: add unit test
22551         * modules/strverscmp-tests: New file.
22552         * tests/test-strverscmp.c: Likewise.
22553
22554 2008-08-19  Simon Josefsson  <simon@josefsson.org>
22555
22556         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
22557         regarding Windows crypto stuff, from Mono.
22558
22559 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
22560
22561         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
22562         if present, for intel RND.  Return error on failures.
22563
22564 2008-08-18  Ben Pfaff  <blp@gnu.org>
22565
22566         gitlog-to-changelog: give better diagnostic for failed pipe-open
22567         * build-aux/gitlog-to-changelog: Improve error message: suggest
22568         that the version of Git may be too old.
22569
22570 2008-08-18  Simon Josefsson  <simon@josefsson.org>
22571
22572         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
22573         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
22574
22575 2008-08-18  Bruno Haible  <bruno@clisp.org>
22576
22577         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
22578         pthread_in_use().
22579
22580 2008-08-18  Bruno Haible  <bruno@clisp.org>
22581
22582         * lib/glthread/threadlib.c: Include <pthread.h>.
22583
22584 2008-08-18  Bruno Haible  <bruno@clisp.org>
22585
22586         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
22587         glthread_recursive_lock_* macros.
22588         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
22589         Fix syntax error.
22590
22591 2008-08-18  Bruno Haible  <bruno@clisp.org>
22592
22593         * lib/glthread/thread.c: Avoid forcing a context switch right after
22594         thread creation.
22595
22596 2008-08-17  Bruno Haible  <bruno@clisp.org>
22597
22598         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
22599         * lib/glthread/thread.h: Provide Win32 specific implementation.
22600         * modules/thread (Files): Add lib/glthread/thread.c.
22601         (Depends-on): Add lock.
22602         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
22603
22604 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22605
22606         New module 'yield'.
22607         * modules/yield: New file.
22608         * lib/glthread/yield.h: New file.
22609         * m4/yield.m4: New file.
22610         * MODULES.html.sh (Multithreading): Add yield.
22611
22612 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22613
22614         New module 'thread'.
22615         * modules/thread: New file.
22616         * lib/glthread/thread.h: New file.
22617         * m4/thread.m4: New file.
22618         * MODULES.html.sh (Multithreading): Add thread.
22619
22620 2008-08-17  Bruno Haible  <bruno@clisp.org>
22621
22622         * lib/glthread/lock.h: Include <stdlib.h> always.
22623         * lib/glthread/tls.h: Likewise.
22624         * lib/glthread/cond.h: Likewise.
22625
22626 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22627
22628         New module 'cond'.
22629         * modules/cond: New file.
22630         * lib/glthread/cond.h: New file.
22631         * lib/glthread/cond.c: New file.
22632         * m4/cond.m4: New file.
22633         * MODULES.html.sh (Multithreading): Add cond.
22634
22635 2008-08-16  Eric Blake  <ebb9@byu.net>
22636
22637         c-stack: fix regression on Irix 5.3 from 2008-06-21
22638         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
22639         sa_sigaction...
22640         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
22641         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
22642         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
22643         * modules/signal (Makefile.am): Use the value.
22644         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
22645         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
22646         * doc/posix-headers/signal.texi (signal.h): Document this
22647         portability issue.
22648         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
22649         Reported by Tom G. Christensen.
22650
22651 2008-08-17  Bruno Haible  <bruno@clisp.org>
22652
22653         New module 'threadlib'.
22654         * modules/threadlib: New file.
22655         * lib/glthread/threadlib.c: New file, extracted from
22656         lib/glthread/lock.c.
22657         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
22658         functions.
22659         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
22660         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
22661         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
22662         macros.
22663         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
22664         (gl_DISABLE_THREADS): Remove macro.
22665         * modules/lock (Files): Remove build-aux/config.rpath.
22666         (Depends-on): Remove havelib. Add threadlib.
22667         (configure.ac-early): Remove section.
22668         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
22669         * modules/tls (Depends-on): Remove lock. Add threadlib.
22670         (Link): New section, copied from threadlib.
22671         * MODULES.html.sh (Multithreading): Add threadlib.
22672
22673 2008-08-14  Bruno Haible  <bruno@clisp.org>
22674
22675         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
22676         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
22677         glthread_rwlock_unlock, glthread_rwlock_destroy,
22678         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
22679         glthread_recursive_lock_destroy): Define as macros always.
22680         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
22681         glthread_lock_lock.
22682         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
22683         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
22684         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
22685         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
22686         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
22687         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
22688         (glthread_recursive_lock_lock_func): Renamed from
22689         glthread_recursive_lock_lock.
22690         (glthread_recursive_lock_unlock_func): Renamed from
22691         glthread_recursive_lock_unlock.
22692         (glthread_recursive_lock_destroy_func): Renamed from
22693         glthread_recursive_lock_destroy.
22694
22695 2008-08-14  Bruno Haible  <bruno@clisp.org>
22696
22697         * lib/glthread/lock.h: Renamed from lib/lock.h.
22698         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
22699         * lib/glthread/tls.h: Renamed from lib/tls.h.
22700         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
22701         * lib/fstrcmp.c: Update includes.
22702         * lib/strsignal.c: Update includes.
22703         * modules/lock (Files, Makefile.am): Update.
22704         (Include): Change to "glthread/lock.h".
22705         * modules/tls (Files, Makefile.am): Update.
22706         (Include): Change to "glthread/tls.h".
22707         * tests/test-lock.c: Update includes.
22708         * tests/test-tls.c: Update includes.
22709         * NEWS: Mention the renamed header files.
22710
22711 2008-08-11  Jim Meyering  <meyering@redhat.com>
22712
22713         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
22714
22715 2008-08-11  Eric Blake  <ebb9@byu.net>
22716
22717         test-c-stack: avoid C99-ism
22718         * tests/test-c-stack.c (main): Fix whitespace, move declaration
22719         before statement.
22720         Reported by Alain Guibert.
22721
22722 2008-08-10  Jim Meyering  <meyering@redhat.com>
22723
22724         ensure that return value of uinttostr et al are not ignored
22725         * lib/inttostr.h (__GNUC_PREREQ): Define.
22726         (__attribute_warn_unused_result__): Define.
22727         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
22728
22729 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
22730
22731         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
22732         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
22733
22734 2008-08-07  Jim Meyering  <meyering@redhat.com>
22735
22736         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
22737
22738         * modules/mkstemp (License): Relicense under LGPLv2+.
22739         * modules/tempname (License): Likewise.
22740
22741 2008-08-06  Bruno Haible  <bruno@clisp.org>
22742
22743         * lib/poll.c (poll): Further micro-optimization.
22744
22745 2008-08-06  Jim Meyering  <meyering@redhat.com>
22746
22747         inet_pton.c: use locale-independent tolower
22748         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
22749         (inet_pton6): Use c_tolower rather than tolower.
22750         * modules/inet_pton (Depends-on): Add c-ctype.
22751
22752 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
22753
22754         * lib/poll.c (poll): Avoid division when timeout is 0, cache
22755         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
22756
22757 2008-08-06  Jim Meyering  <meyering@redhat.com>
22758
22759         * modules/inet_pton (License): Relicense under LGPLv2+.
22760
22761 2008-08-03  Bruno Haible  <bruno@clisp.org>
22762
22763         Additional non-aborting API for lock and tls.
22764         * lib/lock.h: Include <errno.h>.
22765         (glthread_lock_init): New macro/function.
22766         (gl_lock_init): Define as wrapper around glthread_lock_init.
22767         (glthread_lock_lock): New macro/function.
22768         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
22769         (glthread_lock_unlock): New macro/function.
22770         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
22771         (glthread_lock_destroy): New macro/function.
22772         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
22773         (glthread_rwlock_init): New macro/function.
22774         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
22775         (glthread_rwlock_rdlock): New macro/function.
22776         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
22777         (glthread_rwlock_wrlock): New macro/function.
22778         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
22779         (glthread_rwlock_unlock): New macro/function.
22780         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
22781         (glthread_rwlock_destroy): New macro/function.
22782         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
22783         (glthread_recursive_lock_init): New macro/function.
22784         (gl_recursive_lock_init): Define as wrapper around
22785         glthread_recursive_lock_init.
22786         (glthread_recursive_lock_lock): New macro/function.
22787         (gl_recursive_lock_lock): Define as wrapper around
22788         glthread_recursive_lock_lock.
22789         (glthread_recursive_lock_unlock): New macro/function.
22790         (gl_recursive_lock_unlock): Define as wrapper around
22791         glthread_recursive_lock_unlock.
22792         (glthread_recursive_lock_destroy): New macro/function.
22793         (gl_recursive_lock_destroy): Define as wrapper around
22794         glthread_recursive_lock_destroy.
22795         (glthread_once): New macro/function.
22796         (gl_once): Define as wrapper around glthread_once.
22797         Update function declarations.
22798         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
22799         glthread_rwlock_init. Return error code.
22800         (glthread_rwlock_rdlock_multithreaded): Renamed from
22801         glthread_rwlock_rdlock. Return error code.
22802         (glthread_rwlock_wrlock_multithreaded): Renamed from
22803         glthread_rwlock_wrlock. Return error code.
22804         (glthread_rwlock_unlock_multithreaded): Renamed from
22805         glthread_rwlock_unlock. Return error code.
22806         (glthread_rwlock_destroy_multithreaded): Renamed from
22807         glthread_rwlock_destroy. Return error code.
22808         (glthread_recursive_lock_init_multithreaded): Renamed from
22809         glthread_recursive_lock_init. Return error code.
22810         (glthread_recursive_lock_lock_multithreaded): Renamed from
22811         glthread_recursive_lock_lock. Return error code.
22812         (glthread_recursive_lock_unlock_multithreaded): Renamed from
22813         glthread_recursive_lock_unlock. Return error code.
22814         (glthread_recursive_lock_destroy_multithreaded): Renamed from
22815         glthread_recursive_lock_destroy. Return error code.
22816         (glthread_once_call): Make static.
22817         (glthread_once_multithreaded): Renamed from glthread_once.
22818         * lib/tls.h: Include <errno.h>.
22819         (glthread_tls_key_init): New macro/function.
22820         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
22821         (glthread_tls_set): New macro/function.
22822         (gl_tls_set): Define as wrapper around glthread_tls_set.
22823         (glthread_tls_key_destroy): New macro/function.
22824         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
22825         Update function declarations.
22826         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
22827         glthread_tls_get.
22828         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
22829
22830 2008-08-04  Eric Blake  <ebb9@byu.net>
22831
22832         gnumakefile: use space, not TAB, outside of targets
22833         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
22834
22835 2008-08-02  Jim Meyering  <meyering@redhat.com>
22836
22837         getdate.y: avoid locale-dependent date parsing failure
22838         In Turkish locales, getdate would fail to recognize keywords
22839         containing a lowercase "i".  The solution is not to rely on
22840         locale-sensitive case-conversion.
22841         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
22842         (lookup_word): Use c_toupper in place of toupper.
22843         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
22844         Reported by Vefa Bicakci <bicave@superonline.com> in
22845         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
22846         * modules/getdate (Depends-on): Add c-ctype.
22847
22848 2008-08-02  Bruno Haible  <bruno@clisp.org>
22849
22850         * gnulib-tool (func_import): When updating or creating a .gitignore
22851         file, prepend each added line with a slash, and ignore leading slashes
22852         from the existing lines.
22853         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
22854
22855 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22856
22857         Portability fix for GNU make 3.79.1.
22858         * top/GNUmakefile: Avoid 'else COND', which older GNU make
22859         versions do not understand.
22860
22861 2008-08-01  Bruno Haible  <bruno@clisp.org>
22862
22863         Work around bug of HP-UX 10.20 cc with -0.0 literal.
22864         * tests/test-isnanf.h (zero): New variable.
22865         (main): Avoid literal -0.0f.
22866         * tests/test-isnand.h (zero): New variable.
22867         (main): Avoid literal -0.0.
22868         * tests/test-isnanl.h (zero): New variable.
22869         (main): Avoid literal -0.0L.
22870         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
22871         (test_float, test_double, test_long_double): Avoid literals -0.0f,
22872         -0.0, -0.0L.
22873         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
22874         (test_signbitd): Avoid literal -0.0.
22875         (test_signbitl): Avoid literal -0.0L.
22876         * tests/test-ceilf1.c (zero): New variable.
22877         (main): Avoid literal -0.0f.
22878         * tests/test-ceill.c (zero): New variable.
22879         (main): Avoid literal -0.0L.
22880         * tests/test-floorf1.c (zero): New variable.
22881         (main): Avoid literal -0.0f.
22882         * tests/test-floorl.c (zero): New variable.
22883         (main): Avoid literal -0.0L.
22884         * tests/test-roundf1.c (zero): New variable.
22885         (main): Avoid literal -0.0f.
22886         * tests/test-round1.c (zero): New variable.
22887         (main): Avoid literal -0.0.
22888         * tests/test-roundl.c (zero): New variable.
22889         (main): Avoid literal -0.0L.
22890         * tests/test-truncf1.c (zero): New variable.
22891         (main): Avoid literal -0.0f.
22892         * tests/test-trunc1.c (zero): New variable.
22893         (main): Avoid literal -0.0.
22894         * tests/test-truncl.c (zero): New variable.
22895         (main): Avoid literal -0.0L.
22896         * tests/test-frexp.c (zero): New variable.
22897         (main): Avoid literal -0.0.
22898         * tests/test-frexpl.c (zero): New variable.
22899         (main): Avoid literal -0.0L.
22900         * tests/test-ldexpl.c (zero): New variable.
22901         (main): Avoid literal -0.0L.
22902         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
22903         (zerod, zerol): New variables.
22904         (test_function): Avoid literals -0.0, -0.0L.
22905         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
22906         (zerod, zerol): New variables.
22907         (test_function): Avoid literals -0.0, -0.0L.
22908         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
22909         (zerod, zerol): New variables.
22910         (test_function): Avoid literals -0.0, -0.0L.
22911         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
22912         (zerod, zerol): New variables.
22913         (test_function): Avoid literals -0.0, -0.0L.
22914         * tests/test-strtod.c (zero): New variable.
22915         (main): Avoid literal -0.0.
22916         Reported by Jonathan C. Patschke <jp@centtech.com>.
22917
22918 2008-07-31  Jim Meyering  <meyering@redhat.com>
22919
22920         sha256.h: correct definition of SHA224_DIGEST_SIZE
22921         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
22922         Reported by Paulie Pena IV <paulie4@gmail.com>.
22923         Define as 224 / 8, rather than as a literal.
22924         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
22925         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
22926         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
22927
22928 2008-07-31  Bruno Haible  <bruno@clisp.org>
22929
22930         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
22931         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
22932         Reported by Jonathan Patschke <jp@centtech.com>.
22933
22934 2008-07-31  Bruno Haible  <bruno@clisp.org>
22935
22936         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
22937         Reported by Paolo Bonzini <bonzini@gnu.org>.
22938
22939 2008-07-30  Eric Blake  <ebb9@byu.net>
22940
22941         test-strtod: allow compilation without -lm
22942         * tests/test-strtod.c (main): Avoid link dependence on fabs.
22943         Reported by Dennis Clarke <blastwave@gmail.com>.
22944
22945 2008-07-28  Jim Meyering  <meyering@redhat.com>
22946
22947         bootstrap: work also when there are no .po files in po/
22948         * build-aux/bootstrap (update_po_files): Complete the change
22949         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
22950
22951 2008-07-27  Jim Meyering  <meyering@redhat.com>
22952
22953         * users.txt: Add zile.
22954
22955 2008-07-26  Ben Pfaff  <blp@gnu.org>
22956
22957         Add missing dependencies on new m4/exponent[fdl].m4 files.
22958         * modules/isnanf-nolibm: Add m4/exponentf.m4.
22959         * modules/isnand-nolibm: Add m4/exponentd.m4.
22960         * modules/isnanl-nolibm: Add m4/exponentl.m4.
22961         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
22962         m4/isnan[fdl].m4, because the macros actually used moved.
22963         Reported by Jim Meyering.
22964
22965 2008-07-14  Ben Pfaff  <blp@gnu.org>
22966
22967         Add isinf module.
22968         * lib/isinf.c: New file.
22969         * lib/math.in.h: Define isinf macro if we have decided to replace
22970         it.
22971         * m4/isinf.m4: New file.
22972         * m4/math_h.m4: Initialize and substitute variables for isinf
22973         module.
22974         * modules/isinf: New file.
22975         * modules/isinf-tests: New file.
22976         * modules/math: Add substitutions for new module.
22977         * tests/test-isinf.c: New file.
22978         * doc/posix-functions/isinf.texi: Mention new module.
22979         * MODULES.html.sh: Mention new module.
22980
22981 2008-07-14  Ben Pfaff  <blp@gnu.org>
22982
22983         Factor out some macros for use by additional modules.
22984         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
22985         exponentf.m4.
22986         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
22987         exponentd.m4.
22988         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
22989         file exponentl.m4.
22990         * m4/exponentf.m4: New file.
22991         * m4/exponentd.m4: New file.
22992         * m4/exponentl.m4: New file.
22993         * modules/isnanf: Use new file m4/exponentf.m4.
22994         * modules/isnand: Use new file m4/exponentd.m4.
22995         * modules/isnanl: Use new file m4/exponentl.m4.
22996
22997 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
22998
22999         mktime.c: normalize tp->tm_isdst value to -1/0/1.
23000         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
23001         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
23002         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
23003
23004         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
23005         readlink on platforms without PATH_MAX.
23006
23007 2008-07-21  Eric Blake  <ebb9@byu.net>
23008
23009         Warn, not fail, on stale version.
23010         * top/GNUmakefile (_curr-ver): Tone down previous patch.
23011
23012         Don't allow installation with stale devel version number.
23013         * top/GNUmakefile (_is-install-target): New macro.
23014         (_curr-ver): Forbid installation with stale version number.
23015
23016 2008-07-20  Bruno Haible  <bruno@clisp.org>
23017
23018         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
23019         TESTS_ENVIRONMENT.
23020         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
23021
23022 2008-07-20  Bruno Haible  <bruno@clisp.org>
23023
23024         * lib/c-stack.h (c_stack_action): Add documentation.
23025         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
23026
23027 2008-07-20  Bruno Haible  <bruno@clisp.org>
23028
23029         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
23030         * modules/readlink (License): Likewise.
23031
23032 2008-07-17  Eric Blake  <ebb9@byu.net>
23033
23034         * modules/c-stack (Link): Fix typo.
23035
23036         Make c-stack use libsigsegv, when available.
23037         * modules/c-stack (Depends-on): Add libsigsegv.
23038         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
23039         needed.
23040         * lib/c-stack.c (SIGSTKSZ): Define fallback.
23041         (segv_handler, overflow_handler, c_stack_action)
23042         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
23043         implementation when libsigsegv is available, but only when using
23044         the library is necessary.
23045         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
23046         comment, explaining why XSI check fails on Linux.
23047         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
23048         * tests/test-c-stack2.sh: Tweak skip message.
23049         * NEWS: Document new link-time requirements.
23050
23051 2008-07-16  Eric Blake  <ebb9@byu.net>
23052
23053         c-stack: Expose false positives when not using libsigsegv.
23054         * modules/c-stack-tests (Files): Expand test.
23055         * tests/test-c-stack.c (main): Add means to conditionally trigger
23056         non-overflow SIGSEGV.
23057         * tests/test-c-stack2.sh: New file.
23058
23059 2008-07-14  Bruno Haible  <bruno@clisp.org>
23060
23061         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
23062         Reported by Eric Blake.
23063
23064 2008-07-14  Sam Steingold  <sds@gnu.org>
23065             Bruno Haible  <bruno@clisp.org>
23066
23067         New module libsigsegv.
23068         * modules/libsigsegv: New file.
23069         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
23070         modifications.
23071         * MODULES.html.sh (Signal handling): New section.
23072
23073 2008-07-14  Bruno Haible  <bruno@clisp.org>
23074
23075         * modules/unictype/ctype-* (Description): Add the word "function".
23076         Improves the resulting doc in MODULES.html.
23077
23078 2008-07-12  Ben Pfaff  <blp@gnu.org>
23079
23080         Add longlong module.
23081         * modules/longlong: New file.
23082
23083 2008-07-12  Bruno Haible  <bruno@clisp.org>
23084
23085         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
23086         to empty.
23087
23088 2008-07-10  Ben Pfaff  <blp@gnu.org>
23089
23090         Add isnan module.
23091         * doc/posix-functions/isnan.texi: Mention new module.
23092         * lib/math.in.h: Define isnan macro if we have decided to replace
23093         it.
23094         * m4/isnan.m4: New file.
23095         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
23096         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
23097         also.
23098         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
23099         redundancy.
23100         * m4/math_h.m4: Initialize and substitute variables for isnan
23101         module.
23102         * modules/isnan: New file.
23103         * modules/isnan-tests: New file.
23104         * modules/math: Add substitutions for new module.
23105         * tests/test-isnan.c: New file.
23106         * MODULES.html.sh: Mention new module.
23107
23108 2008-07-10  Ben Pfaff  <blp@gnu.org>
23109
23110         Add isnanf module.
23111         * lib/isnanf.m4: New file.
23112         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
23113         (gl_HAVE_ISNANF_IN_LIBM): New macro.
23114         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
23115         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
23116         * modules/isnanf: New file.
23117         * modules/isnanf-tests: New file.
23118         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
23119         files.
23120         * tests/test-isnanf-nolibm.c: factored most of its contents into
23121         new file tests/test-isnanf.h.
23122         * tests/test-isnanf.h: New file.
23123         * tests/test-isnanf.c: New file.
23124         * MODULES.html.sh: Mention new module.
23125         * doc/glibc-functions/isnanf.texi: Mention new module.
23126
23127 2008-07-10  Ben Pfaff  <blp@gnu.org>
23128
23129         Add isnand module.
23130         * lib/isnand.h: New file.
23131         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
23132         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
23133         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
23134         functionality also.
23135         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
23136         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
23137         (gl_HAVE_ISNAND_IN_LIBM): New macro.
23138         * modules/isnand: New file.
23139         * modules/isnand-tests: New file.
23140         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
23141         files.
23142         * tests/test-isnand-nolibm.c: factored most of its contents into
23143         new file tests/test-isnand.h.
23144         * tests/test-isnand.h: New file.
23145         * tests/test-isnand.c: New file.
23146         * MODULES.html.sh: Mention new module.
23147
23148 2008-07-10  Ben Pfaff  <blp@gnu.org>
23149
23150         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
23151         * lib/isnand.h: Rename lib/isnand-nolibm.h.
23152         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
23153         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
23154         * modules/isnanf-nolibm: Update references to renamed files.
23155         * modules/isnand-nolibm: Likewise.
23156         * modules/isnanf-nolibm-tests: Likewise.
23157         * modules/isnand-nolibm-tests: Likewise.
23158         * lib/frexp.c: Likewise.
23159         * lib/isfinite.c: Likewise.
23160         * lib/signbitd.c: Likewise.
23161         * lib/signbitf.c: Likewise.
23162         * lib/vasnprintf.c: Likewise.
23163         * tests/test-ceilf1.c: Likewise.
23164         * tests/test-ceilf2.c: Likewise.
23165         * tests/test-floorf1.c: Likewise.
23166         * tests/test-floorf2.c: Likewise.
23167         * tests/test-frexp.c: Likewise.
23168         * tests/test-round1.c: Likewise.
23169         * tests/test-round2.c: Likewise.
23170         * tests/test-roundf1.c: Likewise.
23171         * tests/test-strtod.c: Likewise.
23172         * tests/test-trunc1.c: Likewise.
23173         * tests/test-trunc2.c: Likewise.
23174         * tests/test-truncf1.c: Likewise.
23175         * tests/test-truncf2.c: Likewise.
23176         * NEWS: Mention the renamed header files.
23177
23178 2008-07-11  Jim Meyering  <meyering@redhat.com>
23179
23180         vc-list-files: make the last-resort awk code more portable
23181         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
23182         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
23183         does not support it.
23184
23185 2008-07-10  Eric Blake  <ebb9@byu.net>
23186
23187         Work with tar's bootstrap.
23188         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
23189         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
23190         an m4 comment.
23191
23192 2008-07-09  Jim Meyering  <meyering@redhat.com>
23193
23194         posix-shell.m4: fix typo that made this test malfunction
23195         * m4/posix-shell.m4: Remove capitalization in variable name.
23196
23197 2008-07-08  Bruno Haible  <bruno@clisp.org>
23198
23199         * m4/onceonly.m4: Update comments.
23200         Reported by Ben Pfaff <blp@cs.stanford.edu>.
23201
23202 2008-07-04  Jim Meyering  <meyering@redhat.com>
23203
23204         * users.txt: Add vc-dwim.
23205         (bison, coreutils): Use the gitweb URL.
23206
23207 2008-07-03  Jim Meyering  <meyering@redhat.com>
23208
23209         * users.txt: Add libffcall.  From Sam Steingold.
23210
23211 2008-07-03  Ondřej Vašík  <ovasik@redhat.com>
23212
23213         getdate.y: do not ignore TZ with relative day, month or year offset
23214         * lib/getdate.y (get_date): Move the tz-handling block to follow the
23215         relative-date-handling, since otherwise, the latter would clobber the
23216         sole output (an updated Start value) of the tz-handling block.
23217         * tests/test-getdate.c: Tests for the fix
23218
23219 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23220
23221         Recognize 'foo_LIBRARIES += libgnu.a'.
23222         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
23223         makefile snippet has already specified an installation location,
23224         also using '+='.
23225
23226 2008-07-02  Ondřej Vašík  <ovasik@redhat.com>
23227
23228         getdate.y: factor out common actions
23229         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
23230         Use them in place of open-coded actions.
23231
23232 2008-07-01  Simon Josefsson  <simon@josefsson.org>
23233
23234         Add self-test for getdate module.
23235         * modules/getdate-tests: New file.
23236         * tests/test-getdate.c: New file.
23237
23238 2008-06-29  Bruno Haible  <bruno@clisp.org>
23239
23240         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
23241         .gitignore.
23242         Reported by Sylvain Beucler <beuc@beuc.net>.
23243
23244 2008-06-29  Bruno Haible  <bruno@clisp.org>
23245
23246         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
23247         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
23248
23249 2008-06-29  Bruno Haible  <bruno@clisp.org>
23250
23251         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
23252         EXTRA_DIST.
23253         Reported by Sylvain Beucler <beuc@beuc.net>.
23254
23255 2008-06-26  Jim Meyering  <meyering@redhat.com>
23256
23257         make several modules depend on the "open" module
23258         This provides slightly increased consistency when opening-for-write
23259         the name of a non-directory spelled with a trailing slash.
23260         * modules/chdir-safer: Likewise.
23261         * modules/chown: Likewise.
23262         * modules/clean-temp: Likewise.
23263         * modules/copy-file: Likewise.
23264         * modules/fchdir: Likewise.
23265         * modules/fcntl-safer: Likewise.
23266         * modules/pipe: Likewise.
23267         * modules/utime: Likewise.
23268         Prompted by Eric Blake and Bruno Haible.
23269
23270 2008-06-24  Andreas Schwab  <schwab@suse.de>
23271
23272         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
23273         literals can be used as initializers for global variables.
23274
23275 2008-06-23  Eric Blake  <ebb9@byu.net>
23276
23277         Make gnulib-cache.m4 easier to diff.
23278         * gnulib-tool (func_import): Allow newlines when reading cached
23279         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
23280
23281 2008-06-23  Bruno Haible  <bruno@clisp.org>
23282
23283         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
23284         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
23285         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
23286         m4/signalblocking.m4.
23287         (gl_PREREQ_SIGACTION): Don't invoke it.
23288         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
23289         gl_PREREQ_SIG_HANDLER_H.
23290         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
23291         Don't check for sigaction here.
23292
23293 2008-06-23  Bruno Haible  <bruno@clisp.org>
23294
23295         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
23296         (install_handlers): Don't set the SA_RESETHAND flag.
23297
23298 2008-06-23  Bruno Haible  <bruno@clisp.org>
23299
23300         * m4/sigaction.m4: Comment fixes.
23301         * lib/signal.in.h: Likewise.
23302
23303 2008-06-23  Eric Blake  <ebb9@byu.net>
23304
23305         Fix typo.
23306         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
23307
23308         Avoid SA_ namespace.
23309         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
23310         Reported by Ralf Wildenhues.
23311
23312         Avoid test failure due to SA_RESTORER.
23313         * tests/test-sigaction.c (SA_MASK): New macro.
23314         (main): Avoid failing due to extension flags being set.
23315         Reported by Jim Meyering.
23316
23317         Revert use of sig-handler.h in sigprocmask.c.
23318         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
23319         it requires the existence of struct sigaction.
23320         * lib/sigprocmask.c (handler_t): Restore typedef.
23321         (rpl_signal, old_handlers): Use local type.
23322
23323 2008-06-22  Bruno Haible  <bruno@clisp.org>
23324
23325         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
23326         conditionally.
23327         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
23328
23329 2008-06-22  Bruno Haible  <bruno@clisp.org>
23330
23331         * doc/posix-functions/siginterrupt.texi: Move note.
23332
23333         * lib/signal.in.h (SA_RESTART): New macro.
23334         * lib/sigaction.c: Update comment.
23335
23336         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
23337
23338         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
23339         (gl_PREREQ_SIGPROCMASK): Invoke it.
23340         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
23341
23342         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
23343
23344         * lib/sigprocmask.c: Update a comment.
23345
23346 2008-06-21  Eric Blake  <ebb9@byu.net>
23347
23348         Use sigaction module rather than signal().
23349         * modules/c-stack (Depends-on): Add sigaction.
23350         * modules/fatal-signal (Depends-on): Likewise.
23351         * modules/nanosleep (Depends-on): Likewise.
23352         * modules/sigprocmask (Files): Add sig-handler.h.
23353         * modules/sigaction (Files): Likewise.
23354         * lib/sig-handler.h (get_handler): New file, suggested by Paul
23355         Eggert.
23356         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
23357         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
23358         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
23359         (init_fatal_signals): Likewise.
23360         * lib/nanosleep.c (rpl_nanosleep): Likewise.
23361         (siginterrupt): Delete fallback.
23362         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
23363         instead.
23364         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
23365         siginterrupt.
23366
23367         New module sigaction, for mingw.
23368         * modules/sigaction: New module...
23369         * modules/sigaction-tests: ...and its test.
23370         * m4/sigaction.m4: New file.
23371         * lib/sigaction.c: Likewise.
23372         * tests/test-sigaction.c: Likewise.
23373         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
23374         * modules/signal (Makefile.am): Likewise.
23375         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
23376         needed.
23377         * doc/posix-headers/signal.texi (signal.h): Mention provided
23378         types.
23379         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
23380         that sigaction is preferable.
23381         * doc/posix-functions/sigaction.texi (sigaction): Mention new
23382         module.
23383         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
23384         sigaction.
23385
23386         Improve robustness of sigprocmask by overriding signal.
23387         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
23388         is in use.
23389         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
23390         (SIGKILL, SIGSTOP): Provide fallbacks.
23391         (rpl_signal): Implement.
23392         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
23393         signal can be called inside handlers.
23394
23395         Fix nanosleep module on mingw.
23396         * modules/nanosleep (Depends-on): Add sys_select.
23397         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
23398
23399         Fix licensing of sigprocmask.
23400         * modules/raise (License): Relicense as LGPL.
23401
23402 2008-06-21  Bruno Haible  <bruno@clisp.org>
23403
23404         * lib/propername.c (proper_name_utf8): Don't use the transliterated
23405         result if it contains question marks.
23406         Reported by Michael Geng <linux@michaelgeng.de>.
23407
23408 2008-06-19  Bruno Haible  <bruno@clisp.org>
23409
23410         Fix CVS-ism.
23411         * doc/gnulib.texi: Include updated-stamp.texi.
23412         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
23413         (updated-stamp.texi): New rule.
23414         (gnulib.info): Depend on it.
23415         * doc/.gitignore: Add updated-stamp.texi.
23416         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
23417
23418 2008-06-19  Bruno Haible  <bruno@clisp.org>
23419
23420         * doc/Makefile (gnulib.info): Update and simplify dependencies.
23421         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
23422
23423 2008-06-19  Eric Blake  <ebb9@byu.net>
23424
23425         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
23426         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
23427         Reported by Stepan Kasal.
23428
23429 2008-06-18  Bruno Haible  <bruno@clisp.org>
23430
23431         * lib/fatal-signal.c (init_fatal_signals): Add comment.
23432         Reported by Eric Blake.
23433
23434 2008-06-18  Eric Blake  <ebb9@byu.net>
23435
23436         Work around cygwin 1.5.25 strsignal bug.
23437         * tests/test-strsignal.c: Allow for const char *.
23438         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
23439
23440 2008-06-18  Simon Josefsson  <simon@josefsson.org>
23441
23442         * users.txt: Update URL to article and add author/date
23443         information.
23444
23445 2008-06-17  Bruno Haible  <bruno@clisp.org>
23446
23447         New macro gl_DISABLE_THREADS.
23448         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
23449         if the user did not pass --enable-threads or --disable-threads option.
23450         (gl_DISABLE_THREADS): New macro.
23451         Reported by Eric Blake <ebb9@byu.net>.
23452
23453 2008-06-17  Bruno Haible  <bruno@clisp.org>
23454
23455         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
23456         when the macro ignores it.
23457         Based on a patch by Eric Blake <ebb9@byu.net>.
23458
23459 2008-06-17  Bruno Haible  <bruno@clisp.org>
23460
23461         * modules/tls (License): Change to LGPLv2+.
23462         Reported by Eric Blake.
23463
23464 2008-06-17  Eric Blake  <ebb9@byu.net>
23465
23466         Simplify c-stack prerequisites.
23467         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
23468         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
23469         no longer requires <ucontext.h> to exist.  Optimize setrlimit
23470         check.
23471         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
23472         <sys/resource.h>.
23473
23474         Move c-stack test into testsuite.
23475         * modules/c-stack-tests: New file.
23476         * lib/c-stack.c [DEBUG]: Move test program...
23477         * tests/test-c-stack.c: ...into this new file.  Skip rather than
23478         fail test if sigaltstack is lacking.
23479         * tests/test-c-stack.sh: New driver file.
23480
23481 2008-06-16  Eric Blake  <ebb9@byu.net>
23482
23483         Use raise module consistently.
23484         * modules/fatal-signal (Depends-on): Add raise.
23485         * modules/sigprocmask (Depends-on): Likewise.
23486         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
23487         * lib/sigprocmask.c (sigprocmask): Likewise.
23488         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
23489         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
23490
23491         Fix compliance bug in sigpending.
23492         * lib/sigprocmask.c (sigpending): Return pending array via
23493         parameter, not return value.
23494
23495 2008-06-14  Eric Blake  <ebb9@byu.net>
23496
23497         Improve obstack-printf test code.
23498         * tests/test-obstack-printf.c (test_function): Fix comment, and
23499         simplify usage of obstack_* in macros.  Add a test for coverage.
23500         Reported by Bruno Haible.
23501
23502 2008-06-14  Bruno Haible  <bruno@clisp.org>
23503
23504         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
23505         array size as a constant, not as a const variable.
23506         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
23507         AC_USE_SYSTEM_EXTENSIONS.
23508         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
23509         Test whether the obstack_printf function actually exists.
23510         * modules/obstack-printf (Depends-on): Add extensions.
23511         (Include): Remove obstack.h.
23512         * modules/obstack-printf-posix (Depends-on): Add extensions.
23513         (Include): Remove obstack.h.
23514
23515 2008-06-13  Eric Blake  <ebb9@byu.net>
23516
23517         Add obstack-printf and obstack-printf-posix modules.
23518         * modules/obstack-printf: New file.
23519         * modules/obstack-printf-posix: Likewise.
23520         * MODULES.html.sh (Misc): Mention them.
23521         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
23522         Likewise.
23523         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
23524         Likewise.
23525         * modules/stdio (Makefile.am): Accomodate new modules.
23526         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
23527         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
23528         Declare.
23529         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
23530         functions.
23531         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
23532         (gl_REPLACE_OBSTACK_PRINTF): New macros
23533         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
23534         * tests/test-obstack-printf.c: New file.
23535         * modules/obstack-printf-tests: Likewise.
23536         * modules/obstack-printf-posix-tests: Likewise.
23537
23538 2008-06-11  Bruno Haible  <bruno@clisp.org>
23539
23540         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
23541         * lib/open.c: Include errno.h.
23542         (open): Fail when attempting to write to a file that has a trailing
23543         slash.
23544         * tests/test-open.c (main): Test against trailing slash bug.
23545         * doc/posix-functions/open.texi: Mention the trailing slash bug.
23546
23547 2008-06-10  Bruno Haible  <bruno@clisp.org>
23548
23549         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
23550         for $? to work inside the trap command, with various /bin/sh-s.
23551         * tests/test-vc-list-files-cvs.sh: Likewise.
23552
23553 2008-06-10  Bruno Haible  <bruno@clisp.org>
23554
23555         * lib/acl-internal.h: Don't include gettext.h here.
23556         * lib/set-mode-acl.c: Include gettext.h here.
23557         * lib/copy-acl.c: Likewise.
23558
23559 2008-06-10  Bruno Haible  <bruno@clisp.org>
23560
23561         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
23562         * lib/wait-process.c (wait_subprocess): Likewise.
23563         * lib/execute.h (execute): Add termsigp argument.
23564         * lib/execute.c (execute): Likewise.
23565         * lib/csharpcomp.c (compile_csharp_using_pnet,
23566         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
23567         * lib/csharpexec.c (execute_csharp_using_pnet,
23568         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
23569         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
23570         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
23571         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
23572         is_jikes_present): Update.
23573         * lib/javaexec.c (execute_java_class): Update.
23574         * lib/javaversion.c (execute_and_read_line): Update.
23575         * NEWS: Document the changes.
23576         Reported by Eric Blake.
23577
23578 2008-06-10  Eric Blake  <ebb9@byu.net>
23579
23580         Add missing include.
23581         * tests/test-strstr.c (includes): Add <signal.h>.
23582         * tests/test-strcasestr.c (includes): Likewise.
23583         * tests/test-memmem.c (includes): Likewise.
23584
23585 2008-06-10  Bruno Haible  <bruno@clisp.org>
23586
23587         * lib/wait-process.c (wait_subprocess): Add an assertion.
23588
23589 2008-06-10  Bruno Haible  <bruno@clisp.org>
23590
23591         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
23592
23593 2008-06-10  Bruno Haible  <bruno@clisp.org>
23594
23595         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
23596         using alarm().
23597         * tests/test-strcasestr.c (main): Likewise.
23598         * tests/test-strstr.c (main): Likewise.
23599
23600 2008-06-09  Bruno Haible  <bruno@clisp.org>
23601
23602         Work around the Solaris 10 ACE ACLs ABI change.
23603         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
23604         declare if ACL_NO_TRIVIAL is present.
23605         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
23606         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
23607         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
23608         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
23609         define if ACL_NO_TRIVIAL is present.
23610         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
23611         and use the current ABI.
23612         (file_has_acl): Use same #if condition as elsewhere.
23613         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
23614         in use, and use the current ABI.
23615         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
23616         Reported by Jim Meyering.
23617
23618 2008-06-09  Eric Blake  <ebb9@byu.net>
23619
23620         Work around environments that (stupidly) ignore SIGALRM.
23621         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
23622         before using alarm().
23623         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
23624         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
23625         Reported by Ian Beckwith <ianb@erislabs.net>.
23626
23627         Produce autobuild blurb earlier in log.
23628         * modules/autobuild (configure.ac-early): Move AB_INIT here.
23629
23630 2008-06-09  Jim Meyering  <meyering@redhat.com>
23631         and Ondřej Vašík  <ovasik@redhat.com>
23632
23633         utimens.c: correct kernel bug work-around
23634         Ondřej Vašík found that the invalid return value of 280 indicates
23635         failure, not success, and the kernel bug we're trying to work
23636         around affects not just the utimensat call, but also the fallback
23637         futimens call.
23638         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
23639         not success.
23640         [HAVE_FUTIMENS]: Use the same work-around, here.
23641
23642 2008-06-09  Jim Meyering  <meyering@redhat.com>
23643
23644         add more guards around definition of ACE_-related code
23645         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
23646         ALLOW and ACE_OWNER are also defined.
23647
23648 2008-06-08  Bruno Haible  <bruno@clisp.org>
23649
23650         * lib/acl-internal.h: Add me as co-author.
23651         * lib/file-has-acl.c: Likewise.
23652         * lib/set-mode-acl.c: Likewise.
23653         * lib/copy-acl.c: Likewise.
23654
23655 2008-06-08  Bruno Haible  <bruno@clisp.org>
23656
23657         Add support for AIX ACLs.
23658         * lib/acl-internal.h (acl_nontrivial): New declaration.
23659         * lib/file-has-acl.c (acl_nontrivial): New function.
23660         (file_has_acl): Add implementation using AIX 4 ACL API.
23661         * lib/set-mode-acl.c (qset_acl): Likewise.
23662         * lib/copy-acl.c (qcopy_acl): Likewise.
23663
23664 2008-06-08  Bruno Haible  <bruno@clisp.org>
23665
23666         Add support for HP-UX ACLs.
23667         * lib/acl-internal.h (acl_nontrivial): New declaration.
23668         * lib/file-has-acl.c (acl_nontrivial): New function.
23669         (file_has_acl): Add implementation using HP-UX 11 ACL API.
23670         * lib/set-mode-acl.c (qset_acl): Likewise.
23671         * lib/copy-acl.c (qcopy_acl): Likewise.
23672
23673 2008-06-08  Bruno Haible  <bruno@clisp.org>
23674
23675         Add support for Cygwin ACLs.
23676         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
23677         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
23678         the chmod_or_fchmod call.
23679         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
23680
23681 2008-06-08  Bruno Haible  <bruno@clisp.org>
23682
23683         Fix bug with setuid modes in Solaris 10+ code.
23684         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
23685         succeeded, when the mode contains some special bits.
23686
23687 2008-06-08  Bruno Haible  <bruno@clisp.org>
23688
23689         Add support for Solaris 7..10 ACLs.
23690         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
23691         declarations.
23692         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
23693         functions.
23694         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
23695         * lib/set-mode-acl.c (qset_acl): Likewise.
23696         * lib/copy-acl.c (qcopy_acl): Likewise.
23697
23698 2008-06-08  Bruno Haible  <bruno@clisp.org>
23699
23700         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
23701         declaration.
23702         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
23703         (acl_access_nontrivial): Remove MacOS X case.
23704         (file_has_acl): Use acl_extended_nontrivial.
23705         * lib/copy-acl.c (qcopy_acl): Likewise.
23706
23707 2008-06-08  Bruno Haible  <bruno@clisp.org>
23708
23709         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
23710
23711 2008-06-08  Jim Meyering  <meyering@redhat.com>
23712
23713         * modules/acl (Maintainer): Add Bruno Haible.
23714
23715 2008-06-07  Bruno Haible  <bruno@clisp.org>
23716
23717         Improve support for Tru64 ACLs.
23718         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
23719         ACL on OSF/1.
23720
23721 2008-06-07  Bruno Haible  <bruno@clisp.org>
23722
23723         Add support for MacOS X ACLs.
23724         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
23725         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
23726         * lib/set-mode-acl.c (qset_acl): Likewise.
23727         * lib/copy-acl.c (qcopy_acl): Likewise.
23728
23729 2008-06-07  Bruno Haible  <bruno@clisp.org>
23730
23731         Fix memory leak introduced on 2008-05-22.
23732         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
23733         use.
23734
23735 2008-06-07  Bruno Haible  <bruno@clisp.org>
23736
23737         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
23738         to construct an empty ACL.
23739
23740 2008-06-07  Bruno Haible  <bruno@clisp.org>
23741
23742         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
23743         precisely.
23744         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
23745
23746 2008-06-07  Bruno Haible  <bruno@clisp.org>
23747
23748         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
23749         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
23750
23751 2008-06-07  Bruno Haible  <bruno@clisp.org>
23752
23753         * doc/posix-functions/_setjmp.texi: Explain the use of this function
23754         regardless of POSIX.
23755         * doc/posix-functions/_longjmp.texi: Likewise.
23756         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
23757         SystemV platform in this case.
23758
23759 2008-06-06  Eric Blake  <ebb9@byu.net>
23760
23761         Document abort() bugs.
23762         * doc/posix-functions/abort.texi (abort): Mention anomalies.
23763
23764         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
23765         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
23766         sigsetjmp.
23767         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
23768         siglongjmp, but only as a macro.
23769         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
23770         is obsolete.
23771         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
23772
23773         Tweak documentation to cover cygwin argz bugs.
23774         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
23775         argz bug fix; no code change needed since no cygwin releases
23776         occurred between the last fix and the bug being tested.
23777         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
23778         module and recently fixed cygwin bugs.
23779         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
23780         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
23781         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
23782         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
23783         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
23784         Likewise.
23785         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
23786         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
23787         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
23788         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
23789         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
23790         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
23791         Likewise.
23792
23793         Avoid gcc warning on cygwin.
23794         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
23795         !ACL_NO_TRIVIAL]: Avoid unused variable.
23796
23797 2008-06-05  Eric Blake  <ebb9@byu.net>
23798
23799         Be tolerant of UNKNOWN version in gnulib-tool test dir.
23800         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
23801         git-version-gen fails to come up with a version.
23802         Reported by Simon Josefsson.
23803
23804 2008-06-05  Jim Meyering  <meyering@redhat.com>
23805             Paul Eggert  <eggert@cs.ucla.edu>
23806
23807         utimens.c: work around a probable Linux kernel bug
23808         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
23809         appears to be a kernel bug that causes utimensat to return 280
23810         instead of 0, indicating success.
23811
23812 2008-06-04  Bruno Haible  <bruno@clisp.org>
23813
23814         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
23815         2008-06-01 commit.
23816
23817 2008-06-04  Bruno Haible  <bruno@clisp.org>
23818
23819         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
23820         * lib/file-has-acl.c (acl_access_nontrivial): New function.
23821         (file_has_acl): Use it. Save errno afterwards.
23822         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
23823
23824 2008-06-03  Bruno Haible  <bruno@clisp.org>
23825
23826         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
23827         draft code. Simplify #ifs.
23828         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
23829         Put Solaris code after POSIX-draft code. Fix comments regarding
23830         Solaris 10, HP-UX. Mention Cygwin.
23831         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
23832
23833 2008-06-03  Eric Blake  <ebb9@byu.net>
23834
23835         Provide fallback for older kernels.
23836         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
23837         Provide runtime fallback if kernel lacks support.
23838         Reported by Mike Frysinger.
23839
23840 2008-06-02  Bruno Haible  <bruno@clisp.org>
23841
23842         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
23843         it exists.
23844
23845 2008-06-02  Bruno Haible  <bruno@clisp.org>
23846
23847         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
23848         * lib/copy-acl.c (qcopy_acl): Update comment.
23849
23850 2008-06-02  Bruno Haible  <bruno@clisp.org>
23851
23852         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
23853         like ACL APIs.
23854
23855 2008-06-02  Bruno Haible  <bruno@clisp.org>
23856
23857         * tests/test-file-has-acl.sh: Use different code for Cygwin.
23858         * tests/test-set-mode-acl.sh: Likewise.
23859         * tests/test-copy-acl.sh: Likewise.
23860         * tests/test-copy-file.sh: Likewise.
23861
23862 2008-06-02  Bruno Haible  <bruno@clisp.org>
23863
23864         * tests/test-file-has-acl.sh: Remove unused code.
23865
23866 2008-06-01  Bruno Haible  <bruno@clisp.org>
23867
23868         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
23869         (copy_acl): Just a wrapper around qcopy_acl that emits the error
23870         messages.
23871         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
23872
23873 2008-06-01  Bruno Haible  <bruno@clisp.org>
23874
23875         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
23876         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
23877         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
23878         APIs.
23879         * modules/acl-tests (configure.ac): Remove tests now contained in
23880         m4/acl.m4.
23881
23882 2008-06-02  Jim Meyering  <meyering@redhat.com>
23883
23884         announce-gen: use a better key-server host name
23885         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
23886         it may be more consistently reliable.  Suggested by Werner Koch
23887         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
23888
23889 2008-06-01  Bruno Haible  <bruno@clisp.org>
23890
23891         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
23892         Reported by Voroskoi Andras <voroskoi@gmail.com>.
23893
23894 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
23895
23896         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
23897
23898 2008-06-01  Bruno Haible  <bruno@clisp.org>
23899
23900         New ACL tests.
23901         * tests/test-file-has-acl.sh: New file.
23902         * tests/test-file-has-acl.c: New file.
23903         * tests/test-set-mode-acl.sh: New file.
23904         * tests/test-set-mode-acl.c: New file.
23905         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
23906         * tests/test-copy-acl.c: New file.
23907         * modules/acl-tests: New file, based on modules/copy-file-tests.
23908         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
23909         (Depends-on): Add acl-tests.
23910         (configure.ac): Remove checks.
23911         (Makefile.am): Don't create test-sameacls program here any more.
23912
23913 2008-06-01  Bruno Haible  <bruno@clisp.org>
23914
23915         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
23916         * tests/test-sameacls.c: Include progname.h.
23917         (main): Invoke set_program_name. Portability fixes for MacOS X,
23918         Solaris, HP-UX.
23919
23920 2008-06-01  Bruno Haible  <bruno@clisp.org>
23921
23922         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
23923         function.
23924         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
23925
23926 2008-06-01  Bruno Haible  <bruno@clisp.org>
23927
23928         * modules/rpmatch (Depends-on): Add strdup.
23929
23930 2008-06-01  Bruno Haible  <bruno@clisp.org>
23931
23932         * lib/pipe.c: Include unistd-safer.h.
23933         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
23934         * modules/pipe (Depends-on): Add unistd-safer.
23935
23936 2008-05-30  Simon Josefsson  <simon@josefsson.org>
23937
23938         * modules/autobuild (configure.ac): Call AB_INIT.
23939
23940 2008-05-30  Simon Josefsson  <simon@josefsson.org>
23941
23942         * tests/test-getaddrinfo.c: Don't print debug messages by default.
23943         Suggested by Bruno Haible <bruno@clisp.org>.
23944
23945 2008-05-30  Simon Josefsson  <simon@josefsson.org>
23946
23947         * tests/test-base64.c: Cast size_t to unsigned long when invoking
23948         printf.  Use %lu instead of %d.  Reported by Bruno Haible
23949         <bruno@clisp.org>.
23950
23951 2008-05-29  Eric Blake  <ebb9@byu.net>
23952
23953         Prefer new POSIX 200x interfaces over futimesat.
23954         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
23955         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
23956         when available.
23957         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
23958
23959 2008-05-28  Bruno Haible  <bruno@clisp.org>
23960
23961         * modules/stpcpy (License): Change to LGPLv2+.
23962         Requested by David Lutterkort <dlutter@redhat.com>.
23963
23964 2008-05-27  Bruno Haible  <bruno@clisp.org>
23965
23966         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
23967         current mingw.
23968         Reported by Jose E. Marchesi <jemarch@gnu.org>.
23969
23970 2008-05-27  Bruno Haible  <bruno@clisp.org>
23971
23972         * modules/iconv_open (Link): New section, from module 'iconv'.
23973         * modules/striconv (Link): Likewise.
23974         * modules/striconveh (Link): Likewise.
23975         * modules/xstriconv (Link): Likewise.
23976         * modules/unicodeio (Link): Likewise.
23977         * modules/propername (Link): Likewise.
23978         Reported by Jim Meyering.
23979
23980 2008-05-26  Jim Meyering  <meyering@redhat.com>
23981
23982         sha256: do not artificially restrict buffer length to be < 2^32
23983         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
23984         uint32_t to size_t.
23985         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
23986         to match.
23987
23988         avoid unaligned access errors, e.g., on sparc
23989         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
23990         direct access through a possibly-unaligned uint64* pointer.
23991         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
23992         direct access through a possibly-unaligned uint32* pointer.
23993         Prompted by this patch from Tom "spot" Callaway:
23994         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
23995
23996         sha512.c: fix typo in comment
23997         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
23998
23999 2008-05-25  Bruno Haible  <bruno@clisp.org>
24000
24001         * lib/set-mode-acl.c: Renamed from lib/acl.c.
24002         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
24003         (Makefile.am): Update lib_SOURCES.
24004
24005 2008-05-25  Bruno Haible  <bruno@clisp.org>
24006
24007         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
24008
24009 2008-05-25  Jim Meyering  <meyering@redhat.com>
24010
24011         useless-if-before-free: freed expr may have white-space differences
24012         * build-aux/useless-if-before-free: Recognize cases in which the
24013         freed expression differs from the tested one in embedded white
24014         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
24015         $1 was used, so we can't make any regexp shy.  Improved tests now
24016         detect this.
24017
24018         useless-if-before-free: accept white space in the expression.
24019         * build-aux/useless-if-before-free: For now, any white space
24020         in the expression must be identical in the free argument.
24021
24022         useless-if-before-free: efficiency tweak
24023         * build-aux/useless-if-before-free: Make the expression-matching
24024         regexp "shy".
24025         Make the *outer* regexp shy, not the expr-matching one.
24026
24027         update code-in-comment to accept cast of free arg
24028         * build-aux/useless-if-before-free: Update regexp.
24029
24030 2008-05-25  Bruno Haible  <bruno@clisp.org>
24031
24032         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
24033         * modules/copy-file-tests (Files, Makefile.am): Update.
24034         * tests/test-copy-file.c (func_test_copy): Update.
24035
24036 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
24037
24038         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
24039
24040 2008-05-23  Bruno Haible  <bruno@clisp.org>
24041
24042         Improve support for ACLs on OSF/1.
24043         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
24044         Remove fallback for unknown flavors of ACLs.
24045
24046 2008-05-22  Bruno Haible  <bruno@clisp.org>
24047
24048         Add support for ACLs on OSF/1.
24049         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
24050         replacements.
24051         (acl_free_text): New macro fallback.
24052         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
24053         acl_free.
24054         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
24055         acl_free_text function. Require AC_C_INLINE.
24056
24057 2008-05-22  Bruno Haible  <bruno@clisp.org>
24058
24059         Make copy_acl work on MacOS X 10.5.
24060         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
24061         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
24062         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
24063         If MODE_INSIDE_ACL, don't assume that every system has the same text
24064         representation for ACLs as FreeBSD.
24065         * lib/copy-acl.c (copy_acl): Add support for platforms with
24066         !MODE_INSIDE_ACL.
24067         * lib/file-has-acl.c (file_has_acl): Likewise.
24068         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
24069         FreeBSD, MacOS X, or IRIX, respectively.
24070
24071 2008-05-22  Bruno Haible  <bruno@clisp.org>
24072
24073         * lib/acl.h: Don't include <sys/acl.h>.
24074         (GETACLCNT): Move fallback to lib/acl-internal.h.
24075         * lib/acl-internal.h: Include <sys/acl.h> here.
24076         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
24077
24078 2008-05-22  Bruno Haible  <bruno@clisp.org>
24079
24080         Split off copy_acl function to separate file.
24081         * lib/copy-acl.c: New file, extracted from lib/acl.c.
24082         * lib/acl.c (copy_acl): Moved function to separate file.
24083         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
24084         * modules/acl (Files): Add lib/copy-acl.c.
24085         (Makefiles.am): Augment lib_SOURCES.
24086
24087 2008-05-22  Bruno Haible  <bruno@clisp.org>
24088
24089         * modules/copy-file-tests: New file.
24090         * tests/test-copy-file.sh: New file.
24091         * tests/test-copy-file.c: New file.
24092         * tests/test-copy-file-sameacls.c: New file.
24093
24094 2008-05-22  Eric Blake  <ebb9@byu.net>
24095
24096         Avoid gcc warning.
24097         * tests/test-memcmp.c (main): Pass NULL indirectly.
24098
24099 2008-05-21  Bruno Haible  <bruno@clisp.org>
24100
24101         Add reference doc about ACLs.
24102         * doc/acl-resources.txt: New file.
24103         * doc/acl-cygwin.txt: New file.
24104
24105 2008-05-21  Bruno Haible  <bruno@clisp.org>
24106
24107         Avoid one more warning from gcc.
24108         * lib/vasnprintf.c (IF_LINT): Update comments.
24109         (VASNPRINTF): Use it also for the 'prefix' array initializer.
24110
24111 2008-05-21  Jim Meyering  <meyering@redhat.com>
24112
24113         avoid a warning from gcc
24114         * lib/vasnprintf.c (IF_LINT): Define.
24115         (scale10_round_decimal_long_double):
24116         Use it to avoid a "may be used uninitialized" warning.
24117         (scale10_round_decimal_double): Likewise.
24118
24119 2008-05-21  Simon Josefsson  <simon@josefsson.org>
24120
24121         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
24122         declared.
24123
24124 2008-05-20  Bruno Haible  <bruno@clisp.org>
24125
24126         * tests/test-memcmp.c (main): Test also the sign of the result. Test
24127         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
24128
24129 2008-05-20  Simon Josefsson  <simon@josefsson.org>
24130
24131         * modules/memcmp-tests: New file.
24132         * tests/test-memcmp.c: New file.
24133
24134 2008-05-19  Bruno Haible  <bruno@clisp.org>
24135
24136         * modules/propername (Notice, configure.ac): Put quoted "..." into
24137         --keyword option.
24138         * lib/propername.h: Update comments accordingly.
24139         Reported by Eric Blake.
24140
24141 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
24142
24143         * modules/getpass-gnu (Depends-on): Add fseeko.
24144
24145 2008-05-19  Simon Josefsson  <simon@josefsson.org>
24146
24147         * modules/base64-tests: New file.
24148
24149 2008-05-19  Bo Borgerson <gigabo@gmail.com>
24150
24151         * lib/base64.c (base64_decode_ctx): If a decode context structure
24152         was passed in use it to ignore newlines.  If a context structure
24153         was _not_ passed in, continue to treat newlines as garbage (this
24154         is the historical behavior).  Formerly base64_decode.
24155         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
24156         takes a decode context structure.
24157         * lib/base64.h (base64_decode): Macro for four-argument calls.
24158         (base64_decode_alloc): Likewise.
24159         * lib/base64.c (base64_decode_ctx): If a decode context structure
24160         was passed in use it to ignore newlines.  If a context structure
24161         was _not_ passed in, continue to treat newlines as garbage (this
24162         is the historical behavior).  Formerly base64_decode.
24163         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
24164         takes a decode context structure.
24165         * lib/base64.h (base64_decode): Macro for four-argument calls.
24166         (base64_decode_alloc): Likewise.
24167
24168 2008-05-19  Jim Meyering  <meyering@redhat.com>
24169
24170         avoid a warning from gcc
24171         * lib/trim.c (IF_LINT): Define.
24172         (trim2): Use it to avoid a "may be used uninitialized" warning.
24173
24174         Fix doc typo.
24175         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
24176
24177 2008-05-19  Bruno Haible  <bruno@clisp.org>
24178
24179         * doc/glibc-functions/getpass.texi: Document limits of other
24180         implementations.
24181
24182 2008-05-19  Simon Josefsson  <simon@josefsson.org>
24183             Bruno Haible <bruno@clisp.org>
24184
24185         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
24186
24187 2008-05-18  Bruno Haible  <bruno@clisp.org>
24188
24189         * modules/propername: New file, from GNU gettext.
24190         * lib/propername.h: New file, from GNU gettext.
24191         * lib/propername.c: New file, from GNU gettext.
24192         * MODULES.html.sh (Internationalization functions): Add propername.
24193
24194 2008-05-16  Jim Meyering  <meyering@redhat.com>
24195             Bruno Haible  <bruno@clisp.org>
24196
24197         Avoid some warnings from "gcc -Wshadow".
24198         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
24199
24200 2008-05-15  Eric Blake  <ebb9@byu.net>
24201
24202         Extend previous patch to cygwin 1.7.0.
24203         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
24204         fast implementation in cygwin >= 1.7.0.
24205         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
24206         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
24207
24208 2008-05-15  Bruno Haible  <bruno@clisp.org>
24209
24210         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
24211         implementation in glibc >= 2.9.
24212         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
24213         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
24214
24215 2008-05-15  Bruno Haible  <bruno@clisp.org>
24216
24217         * MODULES.html.sh (Internationalization functions): Remove linebreak.
24218         (Unicode string functions): Add unilbrk/*.
24219         Reported by Karl Berry.
24220
24221 2008-05-15  Eric Blake  <ebb9@byu.net>
24222
24223         Fix violation of <stdbool.h> replacement in regex.
24224         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
24225         * lib/regexec.c (re_search_internal): Likewise.
24226         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
24227
24228 2008-05-15  Jim Meyering  <meyering@redhat.com>
24229
24230         avoid distracting test output when git or cvs is not found
24231         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
24232         * tests/test-vc-list-files-git.sh: Likewise.
24233
24234 2008-05-15  Eric Blake  <ebb9@byu.net>
24235
24236         Glibc finally accepted the memmem speedup code, bugzilla #5514.
24237         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
24238         glibc version.
24239         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
24240         * doc/posix-functions/strstr.texi (strstr): Likewise.
24241         * lib/str-two-way.h (MAX): Sychronize with glibc.
24242
24243 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
24244
24245         * lib/regcomp.c (optimize_utf8): Add a note on why we test
24246         opr.ctx_type.
24247         (calc_first): Initialize constraint field.
24248         (duplicate_node_closure): Use it instead of special casing ANCHORS.
24249         Fix grammar.
24250         (duplicate_node): Merge constraint field for all node types.
24251         (calc_eclosure_iter): Look at constraint field for all node types.
24252         * lib/regex_internal.c (create_cd_newstate): Don't look at
24253         opr.ctx_type.
24254
24255 2008-05-14  Bruno Haible  <bruno@clisp.org>
24256
24257         Help GCC to do better code generation.
24258         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
24259         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
24260         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
24261         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
24262         Declare with attribute 'malloc' if supported.
24263
24264 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
24265
24266         use "echo STR|wc -c" rather than unportable "expr length STR"
24267         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
24268         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
24269
24270 2008-05-14  Jim Meyering  <meyering@redhat.com>
24271
24272         use dd ibs=$n count=1 ... rather than less-portable head -c$n
24273         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
24274         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
24275         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
24276         via Collin Lasse.
24277
24278 2008-05-14  Eric Blake  <ebb9@byu.net>
24279
24280         Avoid quadratic growth in gl_LIBSOURCES.
24281         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
24282         Suggested by Bruno Haible.
24283
24284         Test xmemdup0.
24285         * modules/xmemdup0-tests: New file.
24286         * tests/test-xmemdup0.c: Likewise.
24287
24288 2008-05-13  Eric Blake  <ebb9@byu.net>
24289
24290         Split xmemdup0 into its own module.
24291         * modules/xmemdup0: New file.
24292         * lib/xmemdup0.h: Likewise.
24293         * lib/xmemdup0.c: Likewise.
24294         * MODULES.html.sh (Memory management functions): Add xmemdup0.
24295         * lib/xalloc.h (xmemdup0): Remove.
24296         * lib/xmalloc.c (xmemdup0): Likewise.
24297
24298 2008-05-13  Eric Blake  <ebb9@byu.net>
24299             Bruno Haible  <bruno@clisp.org>
24300
24301         Reduce number of forks required during autoconf.
24302         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
24303         and gl_LIBSOURCES_DIR.
24304         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
24305         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
24306         m4_syscmd per file.
24307         <m4_foreach_w>: Move...
24308         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
24309
24310 2008-05-13  Eric Blake  <ebb9@byu.net>
24311
24312         * gnulib-tool: Fix various comment typos.
24313
24314 2008-05-12  Bruno Haible  <bruno@clisp.org>
24315
24316         Tailor the linebreaking algorithm.
24317         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
24318
24319 2008-05-12  Bruno Haible  <bruno@clisp.org>
24320
24321         Update to Unicode 5.0.0.
24322         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
24323         LBP_JV, LBP_JT. Redistribute values.
24324         (unilbrk_table): Change size.
24325         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
24326         Unicode TR#14 rev. 22.
24327         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
24328         LBP_JV, LBP_JT. Redistribute values.
24329         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
24330         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
24331         Update.
24332         * lib/unilbrk/lbrkprop1.h: Regenerated.
24333         * lib/unilbrk/lbrkprop2.h: Regenerated.
24334         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
24335         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
24336         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
24337         Likewise.
24338         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
24339         Likewise.
24340         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
24341         result.
24342         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
24343         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
24344         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
24345         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
24346         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
24347         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
24348
24349 2008-05-11  Bruno Haible  <bruno@clisp.org>
24350
24351         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
24352
24353 2008-05-11  Bruno Haible  <bruno@clisp.org>
24354
24355         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
24356         * modules/unilbrk/gen-lbrk: New file.
24357
24358 2008-05-11  Bruno Haible  <bruno@clisp.org>
24359
24360         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
24361         * m4/sha512.m4 (gl_SHA512): Likewise.
24362
24363 2008-05-11  Jim Meyering  <meyering@redhat.com>
24364
24365         New modules: crypto/sha256, crypto/sha512 (from coreutils)
24366         * modules/crypto/sha256: New file.
24367         * modules/crypto/sha512: Likewise.
24368         * lib/sha256.c: Likewise.
24369         * lib/sha256.h: Likewise.
24370         * lib/sha512.c: Likewise.
24371         * lib/sha512.h: Likewise.
24372         * lib/u64.h: Likewise.
24373         * m4/sha256.m4: Likewise.
24374         * m4/sha512.m4: Likewise.
24375         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
24376
24377 2008-05-10  Bruno Haible  <bruno@clisp.org>
24378
24379         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
24380         (Input/Output <stdio.h>): Add xprintf.
24381         (Signal handling <signal.h>): Add strsignal.
24382         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
24383         (Core language properties): Add func.
24384         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
24385         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
24386         strings.
24387         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
24388         (Input/output): New section.
24389         (File system functions): Add openat-die, stat-macros.
24390         (Networking functions): Add sockets.
24391         (Unicode string functions): Add unictype/*.
24392         (Support for building libraries and executables): Add gperf.
24393         (Support for building documentation): Add agpl-3.0.
24394         (Misc): Add nocrash.
24395
24396 2008-05-10  Bruno Haible  <bruno@clisp.org>
24397
24398         * modules/unictype/gen-ctype: New file.
24399
24400 2008-05-10  Jim Meyering  <meyering@redhat.com>
24401
24402         Make chdir-safer.c more efficient on a system with no symlinks.
24403         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
24404         also if ELOOP is zero.  Suggested by Bruno Haible.
24405
24406         Make chdir-safer.c slightly safer.
24407         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
24408         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
24409
24410         Avoid compile failure on systems without ELOOP (like mingw).
24411         * lib/chdir-safer.c (ELOOP): Define if not already defined.
24412         Reported by Bruno Haible.
24413
24414 2008-05-10  Bruno Haible  <bruno@clisp.org>
24415
24416         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
24417         (is_utf8_encoding): Use a case-insensitive comparison.
24418         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
24419         streq.
24420
24421 2008-05-10  Bruno Haible  <bruno@clisp.org>
24422
24423         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
24424         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
24425         * lib/unilbrk/ulc-common.h (iconv_string_length,
24426         iconv_string_keeping_offsets): Remove declarations.
24427         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
24428         Don't include <iconv.h>, streq.h, xsize.h.
24429         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
24430         conversion.
24431         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
24432         <iconv.h>, streq.h, xsize.h.
24433         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
24434         conversion.
24435         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
24436         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
24437         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
24438         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
24439
24440 2008-05-10  Bruno Haible  <bruno@clisp.org>
24441
24442         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
24443         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
24444
24445         * modules/unilbrk/u32-width-linebreaks-tests: New file.
24446         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
24447
24448         * modules/unilbrk/u16-width-linebreaks-tests: New file.
24449         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
24450
24451         * modules/unilbrk/u8-width-linebreaks-tests: New file.
24452         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
24453
24454         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
24455         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
24456
24457         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
24458         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
24459
24460         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
24461         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
24462
24463         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
24464         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
24465
24466 2008-05-10  Bruno Haible  <bruno@clisp.org>
24467
24468         Split up 'linebreak' module.
24469         * lib/unilbrk.h: New file, based on lib/linebreak.h.
24470         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
24471         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
24472         modifications.
24473         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
24474         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
24475         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
24476         lib/linebreak.c.
24477         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
24478         lib/linebreak.c.
24479         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
24480         lib/linebreak.c.
24481         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
24482         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
24483         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
24484         lib/linebreak.c.
24485         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
24486         lib/linebreak.c.
24487         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
24488         lib/linebreak.c.
24489         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
24490         lib/linebreak.c.
24491         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
24492         lib/linebreak.c.
24493         * modules/unilbrk/base: New file.
24494         * modules/unilbrk/tables: New file.
24495         * modules/unilbrk/u8-possible-linebreaks: New file.
24496         * modules/unilbrk/u16-possible-linebreaks: New file.
24497         * modules/unilbrk/u32-possible-linebreaks: New file.
24498         * modules/unilbrk/ulc-common: New file.
24499         * modules/unilbrk/ulc-possible-linebreaks: New file.
24500         * modules/unilbrk/u8-width-linebreaks: New file.
24501         * modules/unilbrk/u16-width-linebreaks: New file.
24502         * modules/unilbrk/u32-width-linebreaks: New file.
24503         * modules/unilbrk/ulc-width-linebreaks: New file.
24504         * lib/linebreak.h: Remove file.
24505         * lib/linebreak.c: Remove file.
24506         * m4/linebreak.m4: Remove file.
24507         * modules/linebreak: Remove file.
24508         * NEWS: Mention the changes.
24509
24510 2008-05-09  Eric Blake  <ebb9@byu.net>
24511
24512         Add xmemdup0.
24513         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
24514         implementation.
24515         * lib/xmalloc.c (xmemdup0): New C implementation.
24516
24517 2008-05-08  Bruno Haible  <bruno@clisp.org>
24518
24519         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
24520
24521 2008-05-07  Eric Blake  <ebb9@byu.net>
24522
24523         Support cross-compilation of <wctype.h>.
24524         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
24525         AC_CACHE_CHECK.
24526
24527 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
24528
24529         * build-aux/vc-list-files: Add support for bzr.
24530
24531 2008-05-03  Jim Meyering  <meyering@redhat.com>
24532
24533         avoid failed assertion with tight malloc
24534         * tests/test-getndelim2.c: Correct an off-by-one assertion.
24535
24536 2008-05-03  Simon Josefsson  <simon@josefsson.org>
24537
24538         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
24539         are needed from arpa/inet.h.
24540         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
24541         Reported by Bruno Haible.
24542
24543 2008-05-02  Jim Meyering  <meyering@redhat.com>
24544
24545         avoid compilation error on FreeBSD 6
24546         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
24547
24548 2008-05-01  Jim Meyering  <meyering@redhat.com>
24549
24550         useless-if-before-free: correct --help's exit status description
24551         * build-aux/useless-if-before-free (usage): Like grep, exit 0
24552         for one or more matches, etc.  Reported by Bruno Haible.
24553
24554         vc-list-files: make the stand-alone gnulib test work
24555         * modules/vc-list-files-tests (configure.ac):
24556         Define and AC_SUBST abs_aux_dir.
24557         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
24558         $(abs_top_srcdir) to each script and having each of them
24559         duplicate the work of setting PATH, set PATH here, using
24560         the new variable, abs_aux_dir instead.
24561         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
24562         * tests/test-vc-list-files-git.sh: Likewise.
24563         Reported by Bruno Haible.
24564
24565 2008-05-01  Bruno Haible  <bruno@clisp.org>
24566
24567         * lib/getndelim2.c (getndelim2): Fix newsize computation during
24568         reallocation. Rename 'done' to 'found_delimiter'.
24569
24570 2008-05-01  Jim Meyering  <meyering@redhat.com>
24571
24572         vc-list-files: accommodate /bin/sh like the one from Solaris 10
24573         * build-aux/vc-list-files: Use `...`, not $(...).
24574
24575 2008-04-30  Jim Meyering  <meyering@redhat.com>
24576
24577         add tests for vc-list-files
24578         * modules/vc-list-files-tests: New module.
24579         * tests/test-vc-list-files-cvs.sh: New file.
24580         * tests/test-vc-list-files-git.sh: New file.
24581
24582         avoid a warning from gcc
24583         * lib/getndelim2.c (IF_LINT): Define.
24584         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
24585
24586         vc-list-files: work properly with build-aux/cvsu, too
24587         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
24588         to all cvs-based clauses.
24589
24590         vc-list-files: work properly in the CVS+awk case, too
24591         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
24592
24593         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
24594         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
24595         take more than one file argument, so .  Add quotes, just in case $dir
24596         ever contains a shell meta-character.  Prompted by Soren Hansen in
24597         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
24598
24599 2008-04-29  Eric Blake  <ebb9@byu.net>
24600
24601         Optimize getndelim2 to use block operations when possible.
24602         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
24603         freadseek, and memchr2.
24604         * lib/getndelim2.c (getndelim2): Use them for block reads.
24605
24606 2008-04-29  Bruno Haible  <bruno@clisp.org>
24607
24608         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
24609         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
24610         * modules/inet_ntop (Depends-on): Add extensions.
24611         * modules/inet_pton (Depends-on): Likewise.
24612         Reported by Simon Josefsson.
24613
24614 2008-04-29  Jim Meyering  <meyering@redhat.com>
24615
24616         When the is more than one match in a block, match all of them.
24617         * build-aux/useless-if-before-free: Iterate through each block
24618         until there are no more matches.
24619
24620         Fix broken useless-if-before-free script.
24621         * build-aux/useless-if-before-free: Fix typo: missing "?" after
24622         the expression to match cast of argument to free-like function.
24623
24624 2008-04-29  Eric Blake  <ebb9@byu.net>
24625
24626         Use new header.
24627         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
24628
24629 2008-04-29  Jim Meyering  <meyering@redhat.com>
24630
24631         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
24632         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
24633         by gnulib to exist and to declare e.g., inet_ntop.
24634         Don't include "inet_ntop.h", now removed.
24635
24636         * m4/arpa_inet_h.m4: Remove trailing blanks.
24637
24638 2008-04-29  Eric Blake  <ebb9@byu.net>
24639
24640         Silence valgrind on safe reads beyond potential array bounds.
24641         * lib/rawmemchr.valgrind: New file.
24642         * lib/strchrnul.valgrind: Likewise.
24643         * modules/rawmemchr (Files): Distribute new file.
24644         * modules/strchrnul (Files): Likewise.
24645         Suggested by Bruno Haible.
24646
24647 2008-04-29  Bruno Haible  <bruno@clisp.org>
24648
24649         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
24650         (inet_ntop, inet_pton): Change portability warning's wording.
24651         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
24652         Invoke gl_CHECK_NEXT_HEADERS.
24653         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
24654         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
24655         set ARPA_INET_H.
24656         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
24657         * modules/arpa_inet (Description): No longer only for systems that
24658         lack it.
24659         (Depends-on): Add include_next.
24660         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
24661         HAVE_ARPA_INET_H.
24662
24663 2008-04-29  Jim Meyering  <meyering@redhat.com>
24664
24665         * modules/mkdir (License): Re-license as LGPLv2+.
24666
24667 2008-04-29  Bruno Haible  <bruno@clisp.org>
24668
24669         * modules/rawmemchr (Maintainer): Set to Eric.
24670         * modules/strchrnul (Maintainer): Likewise.
24671
24672 2008-04-29  Simon Josefsson  <simon@josefsson.org>
24673
24674         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
24675         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
24676
24677         * modules/arpa_inet (arpa/inet.h): Use them.
24678
24679 2008-04-28  Eric Blake  <ebb9@byu.net>
24680
24681         Test getndelim2.
24682         * modules/getndelim2-tests: New file.
24683         * tests/test-getndelim2.c: Likewise.
24684         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
24685         stream.
24686         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
24687
24688         * MODULES.html.sh: Document new module.
24689
24690 2008-04-20  Bruno Haible  <bruno@clisp.org>
24691
24692         * lib/c-stack.c (die): Use raise.
24693         * modules/c-stack (Depends-on): Add raise.
24694
24695 2008-04-28  Bruno Haible  <bruno@clisp.org>
24696
24697         Expect rpmatch to be declared.
24698         * lib/yesno.c (rpmatch): Remove declaration.
24699
24700         Declare rpmatch.
24701         * lib/stdlib.in.h (rpmatch): New declaration.
24702         * lib/rpmatch.c: Include <stdlib.h> first.
24703         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
24704         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
24705         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
24706         HAVE_RPMATCH.
24707         * modules/rpmatch (Depends-on): Add stdlib, extensions.
24708         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
24709         (Include): Set to <stdlib.h>.
24710         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
24711         HAVE_RPMATCH.
24712         * NEWS: Document the change.
24713
24714 2008-04-28  Bruno Haible  <bruno@clisp.org>
24715
24716         Change rpmatch to use nl_langinfo when appropriate.
24717         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
24718         (N_): New macro.
24719         (localized_pattern): New function/macro.
24720         (try): Remove match, nomatch arguments. Copy the pattern into safe
24721         memory before caching it.
24722         (rpmatch): Use localized_pattern. Add translator comments.
24723         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
24724         Suggested by Eric Blake.
24725         * modules/rpmatch (Depends-on): Add stdbool.
24726
24727 2008-04-28  Eric Blake  <ebb9@byu.net>
24728
24729         Add rawmemchr module, matching glibc.
24730         * modules/string (Makefile.am): New indicator.
24731         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
24732         * lib/string.in.h (rawmemchr): Declare when appropriate.
24733         * modules/rawmemchr: New file.
24734         * m4/rawmemchr.m4: Likewise.
24735         * lib/rawmemchr.c: Likewise.
24736         * modules/rawmemchr-tests: Likewise.
24737         * tests/test-rawmemchr.c: Likewise.
24738         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
24739         module.
24740         * modules/strchrnul (Depends-on): Add rawmemchr.
24741         * lib/strchrnul.c (strchrnul): Optimize a corner case.
24742
24743         Whitespace cleanup.
24744         * tests/test-strchrnul.c: Reindent.
24745         * lib/strchrnul.c: Likewise.
24746
24747         Optimize and test strchrnul.
24748         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
24749         * modules/strchrnul-tests: New file.
24750         * tests/test-strchrnul.c: Likewise.
24751
24752         Remove intprops dependency.
24753         * modules/memchr (Depends-on): Remove intprops.
24754         * modules/memrchr (Depends-on): Likewise.
24755         * modules/memchr2 (Depends-on): Likewise.
24756         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
24757         * lib/memrchr.c (__memrchr): Likewise.
24758         * lib/memrchr2.c (memchr2): Likewise.
24759         Reported by Simon Josefsson.
24760
24761 2008-04-28  Simon Josefsson  <simon@josefsson.org>
24762
24763         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
24764         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
24765
24766 2008-04-28  Simon Josefsson  <simon@josefsson.org>
24767
24768         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
24769
24770         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
24771
24772         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
24773
24774         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
24775         declarations.
24776         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
24777
24778         * m4/inet_pton.m4: Don't check for header files.
24779
24780         * m4/inet_ntop.m4: Don't check for header files.
24781
24782 2008-04-28  Simon Josefsson  <simon@josefsson.org>
24783
24784         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
24785         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
24786         trigger for cygwin).
24787         Reported by Bruno Haible  <bruno@clisp.org>.
24788
24789 2008-04-28  Bruno Haible  <bruno@clisp.org>
24790
24791         * doc/posix-functions/strdup.texi: Mention mingw problem.
24792
24793 2008-04-27  Bruno Haible  <bruno@clisp.org>
24794
24795         * modules/stat-time-tests (Depends-on): Add sleep.
24796         * tests/test-stat-time.c (force_unlink): New function.
24797         (cleanup): Use it.
24798         (test_mtime): Remove the ctime related tests.
24799         (test_ctime): New function, containing the ctime related tests.
24800         (main): Call test_ctime, except on native Windows platforms.
24801
24802 2008-04-27  Bruno Haible  <bruno@clisp.org>
24803
24804         * lib/rpmatch.c (rpmatch): Add some comments.
24805         Reported by James Youngman <jay@gnu.org>.
24806
24807 2008-04-27  Bruno Haible  <bruno@clisp.org>
24808
24809         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
24810         quiet NaNs.
24811
24812 2008-04-27  Bruno Haible  <bruno@clisp.org>
24813
24814         Make test-yesno.sh work on mingw.
24815         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
24816         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
24817         (main): Set stdin to binary mode.
24818         * modules/yesno-tests (Depends-on): Add binary-io.
24819
24820 2008-04-27  Bruno Haible  <bruno@clisp.org>
24821
24822         Fix 'isfinite' on x86, x86_64, ia64 platforms.
24823         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
24824         argument that lie outside the IEEE 854 domain.
24825         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
24826         (gl_ISFINITE): Use it.
24827         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
24828
24829 2008-04-27  Bruno Haible  <bruno@clisp.org>
24830
24831         Allow local renaming in config.h.
24832         * lib/memrchr.c (memrchr): Don't undefine outside libc.
24833
24834 2008-04-27  Bruno Haible  <bruno@clisp.org>
24835
24836         * lib/memchr.c (__memchr): Change type of 'i'.
24837         * lib/memchr2.c (memchr2): Likewise.
24838
24839 2008-04-26  Eric Blake  <ebb9@byu.net>
24840         and Bruno Haible  <bruno@clisp.org>
24841
24842         Optimize and test memrchr.
24843         * modules/memrchr (Depends-on): Add intprops.
24844         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
24845         * modules/memrchr-tests: New file.
24846         * tests/test-memrchr.c: New file.
24847
24848 2008-04-26  Bruno Haible  <bruno@clisp.org>
24849
24850         Add tentative support for DragonFly BSD.
24851         * lib/stdio-impl.h: Add macros for DragonFly BSD.
24852         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
24853         fp.
24854         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
24855         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
24856         * lib/fpurge.c (fpurge): Likewise.
24857         * lib/freadable.c (freaadable): Likewise.
24858         * lib/freadahead.c (freadahead): Likewise.
24859         * lib/freading.c (freading): Likewise.
24860         * lib/freadptr.c (freadptr): Likewise.
24861         * lib/freadseek.c (freadptrinc): Likewise.
24862         * lib/fseeko.c (fseeko): Likewise.
24863         * lib/fseterr.c (fseterr): Likewise.
24864         * lib/fwritable.c (fwritable): Likewise.
24865         * lib/fwriting.c (fwriting): Likewise.
24866
24867 2008-04-26  Bruno Haible  <bruno@clisp.org>
24868
24869         * lib/stdio-impl.h: New file.
24870         * lib/fbufmode.c: Include stdio-impl.h.
24871         (fbufmode): Use fp_, remove redundant #defines.
24872         * lib/fflush.c: Include stdio-impl.h.
24873         (clear_ungetc_buffer): Remove redundant #defines.
24874         * lib/fpurge.c: Include stdio-impl.h.
24875         (fpurge): Remove redundant #defines.
24876         * lib/freadable.c: Include stdio-impl.h.
24877         (freadable): Remove redundant #defines.
24878         * lib/freadahead.c: Include stdio-impl.h.
24879         (freadahead): Remove redundant #defines.
24880         * lib/freading.c: Include stdio-impl.h.
24881         (freading): Remove redundant #defines.
24882         * lib/freadptr.c: Include stdio-impl.h.
24883         (freadptr): Remove redundant #defines.
24884         * lib/freadseek.c: Include stdio-impl.h.
24885         (freadptrinc): Remove redundant #defines.
24886         * lib/fseeko.c: Include stdio-impl.h.
24887         (rpl_fseeko): Remove redundant #defines.
24888         * lib/fseterr.c: Include stdio-impl.h.
24889         (fseterr): Remove redundant #defines.
24890         * lib/fwritable.c: Include stdio-impl.h.
24891         (fwritable: Remove redundant #defines.
24892         * lib/fwriting.c: Include stdio-impl.h.
24893         (fwriting): Remove redundant #defines.
24894         * modules/fbufmode (Files): Add lib/stdio-impl.h.
24895         * modules/fflush (Files): Likewise.
24896         * modules/fpurge (Files): Likewise.
24897         * modules/freadable (Files): Likewise.
24898         * modules/freadahead (Files): Likewise.
24899         * modules/freading (Files): Likewise.
24900         * modules/freadptr (Files): Likewise.
24901         * modules/freadseek (Files): Likewise.
24902         * modules/fseeko (Files): Likewise.
24903         * modules/fseterr (Files): Likewise.
24904         * modules/fwritable (Files): Likewise.
24905         * modules/fwriting (Files): Likewise.
24906
24907 2008-04-26  Bruno Haible  <bruno@clisp.org>
24908
24909         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
24910         restore_seek_optimization, update_fpos_cache): New functions, extracted
24911         from rpl_fflush.
24912         (rpl_fflush): Use them.
24913         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
24914         (gl_REPLACE_FFLUSH): Use it.
24915
24916 2008-04-26  Bruno Haible  <bruno@clisp.org>
24917
24918         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
24919         on Solaris.
24920         * tests/test-xstrtoimax.sh: Likewise.
24921         * tests/test-xstrtoumax.sh: Likewise.
24922         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
24923
24924 2008-04-26  Bruno Haible  <bruno@clisp.org>
24925
24926         * modules/memchr-tests: New file.
24927         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
24928
24929 2008-04-26  Eric Blake  <ebb9@byu.net>
24930             Bruno Haible  <bruno@clisp.org>
24931
24932         * lib/memchr.c: Include intprops.h.
24933         (__memchr): Optimize parallel detection of matching bytes. Rename local
24934         variables. Add explanatory comments.
24935
24936 2008-04-26  Bruno Haible  <bruno@clisp.org>
24937
24938         Fix module 'memchr', broken since 2000-10-28.
24939         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
24940
24941 2008-04-26  Bruno Haible  <bruno@clisp.org>
24942
24943         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
24944         comments.
24945
24946 2008-04-25  Eric Blake  <ebb9@byu.net>
24947
24948         Use native fstatat on cygwin 1.7.0.
24949         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
24950         first.
24951
24952 2008-04-23  Eric Blake  <ebb9@byu.net>
24953
24954         Improve memchr2 performance.
24955         * lib/memchr2.c (memchr2): Further optimize parallel detection of
24956         NUL bytes.
24957         * modules/memchr2 (Depends-on): Use intprops.h.
24958
24959 2008-04-23  Simon Josefsson  <simon@josefsson.org>
24960
24961         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
24962         an inline function instead of a CPP macro.  Patch by Ben Pfaff
24963         <blp@cs.stanford.edu>.
24964
24965 2008-04-23  Simon Josefsson  <simon@josefsson.org>
24966
24967         * lib/arpa_inet.in.h: New file.
24968
24969         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
24970         (Makefile.am): Sed in substitute header file.
24971
24972         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
24973         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
24974
24975         * modules/inet_ntop (configure.ac): Use
24976         gl_ARPA_INET_MODULE_INDICATOR.
24977
24978         * modules/inet_pton (configure.ac): Use
24979         gl_ARPA_INET_MODULE_INDICATOR.
24980
24981 2008-04-22  Jim Meyering  <meyering@redhat.com>
24982
24983         * modules/verify (License): Re-license as LGPLv2+.
24984
24985 2008-04-22  Simon Josefsson  <simon@josefsson.org>
24986
24987         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
24988         parameter to void* as per POSIX standard (MinGW uses char*).
24989
24990 2008-04-21  Bruno Haible  <bruno@clisp.org>
24991
24992         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
24993         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
24994         Define to replacements if REPLACE_ISWCNTRL is 1.
24995         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
24996         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
24997         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
24998         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
24999         what it fixes.
25000         * doc/posix-functions/iswalpha.texi: Likewise.
25001         * doc/posix-functions/iswblank.texi: Likewise.
25002         * doc/posix-functions/iswcntrl.texi: Likewise.
25003         * doc/posix-functions/iswdigit.texi: Likewise.
25004         * doc/posix-functions/iswgraph.texi: Likewise.
25005         * doc/posix-functions/iswlower.texi: Likewise.
25006         * doc/posix-functions/iswprint.texi: Likewise.
25007         * doc/posix-functions/iswpunct.texi: Likewise.
25008         * doc/posix-functions/iswspace.texi: Likewise.
25009         * doc/posix-functions/iswupper.texi: Likewise.
25010         * doc/posix-functions/iswxdigit.texi: Likewise.
25011         Reported by Alain Guibert.
25012
25013 2008-04-21  Bruno Haible  <bruno@clisp.org>
25014
25015         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
25016         Patch by Alain Guibert.
25017
25018 2008-04-21  Bruno Haible  <bruno@clisp.org>
25019
25020         Fix test failures on mingw.
25021         * tests/test-xstrtol.c (print_no_progname): New function.
25022         (main): Install it in error_print_progname hook.
25023         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
25024         * tests/test-xstrtoimax.sh: Likewise.
25025         * tests/test-xstrtoumax.sh: Likewise.
25026
25027 2008-04-21  Bruno Haible  <bruno@clisp.org>
25028
25029         Fix test failure on mingw.
25030         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
25031
25032 2008-04-21  Bruno Haible  <bruno@clisp.org>
25033
25034         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
25035         Actually assign a value.
25036
25037 2008-04-20  Bruno Haible  <bruno@clisp.org>
25038
25039         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
25040         take 2.
25041         * lib/canonicalize.c (canonicalize_file_name): Elide if the
25042         'canonicalize-lgpl' module is also used.
25043         * lib/canonicalize-lgpl.c: Undo last change.
25044         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
25045
25046 2008-04-20  Bruno Haible  <bruno@clisp.org>
25047
25048         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
25049         config.h. Provide _mkdir based fallback for mingw.
25050         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
25051         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
25052         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
25053         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
25054         rather than defining mkdir in config.h.
25055         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
25056         (gl_SYS_STAT_H_DEFAULTS): New macro.
25057         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
25058         HAVE_IO_H any more.
25059         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
25060         HAVE_DECL_MKDIR and HAVE_IO_H.
25061
25062 2008-04-20  Bruno Haible  <bruno@clisp.org>
25063
25064         * lib/isapipe.c: Port to native Windows platforms.
25065
25066 2008-04-20  Bruno Haible  <bruno@clisp.org>
25067
25068         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
25069
25070 2008-04-21  Eric Blake  <ebb9@byu.net>
25071
25072         Work around preprocessors that don't handle UINTMAX_MAX.
25073         * lib/memchr2.c (memchr2): Avoid embedded #if.
25074         Reported by Alain Guibert, fix suggested by Bruno Haible.
25075
25076 2008-04-21  Simon Josefsson  <simon@josefsson.org>
25077
25078         * doc/posix-functions/strftime.texi (strftime): Explain better
25079         Windows incompatibility.  Suggested by Micah Cowan
25080         <micah@cowan.name>.
25081
25082 2008-04-20  Bruno Haible  <bruno@clisp.org>
25083
25084         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
25085         unistr/u8-mblen.
25086
25087 2008-04-20  Bruno Haible  <bruno@clisp.org>
25088
25089         Fix test failure on platforms with non-GNU iconv.
25090         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
25091         (U_TO_U8): Use it, rather than u16_to_u8.
25092         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
25093         units at the end of the input string.
25094         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
25095
25096 2008-04-20  Bruno Haible  <bruno@clisp.org>
25097
25098         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
25099         when the resulting length is 0.
25100         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
25101
25102 2008-04-20  Bruno Haible  <bruno@clisp.org>
25103
25104         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
25105         works.
25106         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
25107
25108 2008-04-20  Bruno Haible  <bruno@clisp.org>
25109
25110         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
25111         * modules/tsearch-tests (configure.ac): Test for initstate function.
25112
25113 2008-04-20  Bruno Haible  <bruno@clisp.org>
25114
25115         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
25116         for nlink_t if missing.
25117         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
25118
25119 2008-04-19  Bruno Haible  <bruno@clisp.org>
25120
25121         Work around snprintf bug on Linux libc5.
25122         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
25123         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
25124         gl_SNPRINTF_SIZE1.
25125         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
25126         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
25127         that test failed.
25128         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
25129         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
25130         * modules/snprintf (Files): Add m4/printf.m4.
25131         * modules/vsnprintf (Files): Likewise.
25132         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
25133         * doc/posix-functions/vsnprintf.texi: Likewise.
25134
25135 2008-04-19  Bruno Haible  <bruno@clisp.org>
25136
25137         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
25138         from 0.0058 to less than 10^-7.
25139
25140 2008-04-19  Bruno Haible  <bruno@clisp.org>
25141
25142         Fix rounding when a precision is given.
25143         * lib/vasnprintf.c (is_borderline): New function.
25144         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
25145         9...9x.
25146         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
25147         %e, %g.
25148         * tests/test-vasprintf-posix.c (test_function): Likewise.
25149         * tests/test-snprintf-posix.h (test_function): Likewise.
25150         * tests/test-sprintf-posix.h (test_function): Likewise.
25151         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
25152         * tests/test-printf-posix.h (test_function): Likewise.
25153         * tests/test-printf-posix.output: Update.
25154         Reported by John Darrington <john@darrington.wattle.id.au> via
25155         Ben Pfaff <blp@cs.stanford.edu>.
25156
25157 2008-04-18  Simon Josefsson  <simon@josefsson.org>
25158
25159         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
25160         Suggested by Bruno Haible <bruno@clisp.org>.
25161
25162 2008-04-17  Bruno Haible  <bruno@clisp.org>
25163
25164         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
25165         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
25166         implementation.
25167         Patch by Bruce Merry <bmerry@gmail.com>.
25168
25169 2008-04-17  Simon Josefsson  <simon@josefsson.org>
25170
25171         * doc/posix-functions/strftime.texi (strftime): Mention that %e
25172         doesn't work under Windows.
25173
25174 2008-04-16  Bruno Haible  <bruno@clisp.org>
25175
25176         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
25177         New macros.
25178         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
25179         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
25180         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
25181         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
25182         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
25183         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
25184         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
25185         macros.
25186         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
25187         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
25188         Northern Sotho, Uighur.
25189
25190 2008-04-16  Bruno Haible  <bruno@clisp.org>
25191
25192         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
25193         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
25194         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
25195         Reported by Daniel Bergström <daniel@octocode.com>.
25196
25197 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
25198             Bruno Haible  <bruno@clisp.org>
25199
25200         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
25201         function.
25202         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
25203         New functions, mostly extracted from gl_locale_name_default.
25204         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
25205
25206 2008-04-16  Eric Blake  <ebb9@byu.net>
25207
25208         Adjust strtod detection to catch glibc 2.7 bug.
25209         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
25210         Reported by John Gatewood Ham.
25211
25212 2008-04-16  Bruno Haible  <bruno@clisp.org>
25213
25214         Add tentative support for Linux libc5.
25215         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
25216         * lib/fpurge.c (fpurge): Likewise.
25217         * lib/freadable.c (freadable): Likewise.
25218         * lib/freadahead.c (freadahead): Likewise.
25219         * lib/freading.c (freading): Likewise.
25220         * lib/freadptr.c (freadptr): Likewise.
25221         * lib/freadseek.c (freadptrinc): Likewise.
25222         * lib/fseeko.c (rpl_fseeko): Likewise.
25223         * lib/fseterr.c (fseterr): Likewise.
25224         * lib/fwritable.c (fwritable): Likewise.
25225         * lib/fwriting.c (fwriting): Likewise.
25226         Reported by Alain Guibert <alguibert+bts@free.fr>.
25227
25228 2008-04-15  Bruno Haible  <bruno@clisp.org>
25229
25230         * modules/mathl (configure.ac): Define module indicator.
25231
25232 2008-04-15  Bruno Haible  <bruno@clisp.org>
25233
25234         * lib/logl.c (logl): Remove unused variables.
25235
25236 2008-04-15  Bruno Haible  <bruno@clisp.org>
25237
25238         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
25239         fails.
25240
25241 2008-04-15  Bruno Haible  <bruno@clisp.org>
25242
25243         * lib/trim.c (trim2): Fix argument of isspace() macro.
25244
25245 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
25246
25247         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
25248         to 0.
25249         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
25250
25251 2008-04-14  Bruno Haible  <bruno@clisp.org>
25252
25253         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
25254         AC_LANG_PROGRAM argument.
25255         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
25256         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
25257         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
25258         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
25259         * m4/math_h.m4 (gl_MATH_H): Likewise.
25260         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
25261         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
25262         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
25263         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
25264         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
25265         * m4/regex.m4 (gl_REGEX): Likewise.
25266         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
25267         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
25268         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
25269         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
25270         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
25271         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
25272         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
25273         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
25274
25275 2008-04-14  Jim Meyering  <meyering@redhat.com>
25276
25277         test-strtod: fix typos: s/abs/fabs/
25278         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
25279
25280 2008-04-13  Bruno Haible  <bruno@clisp.org>
25281
25282         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
25283         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
25284         module is also used and while not building the reloc-wrapper.
25285
25286 2008-04-13  Bruno Haible  <bruno@clisp.org>
25287
25288         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
25289
25290 2008-04-13  Bruno Haible  <bruno@clisp.org>
25291
25292         Fix AIX compilation failure introduced on 2008-04-02.
25293         * tests/test-frexp.c (exp): Undefine before redefining.
25294         * tests/test-frexpl.c (exp): Likewise.
25295
25296 2008-04-13  Bruno Haible  <bruno@clisp.org>
25297
25298         Work around a HP-UX stdio bug.
25299         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
25300         * tests/test-ftello.c (main): Likewise.
25301         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
25302         * doc/posix-functions/ftello.texi: Likewise.
25303
25304 2008-04-13  Bruno Haible  <bruno@clisp.org>
25305
25306         Make test-signbit pass on HP-UX/hppa.
25307         * tests/test-signbit.c (minus_zerol): New variable.
25308         (test_signbitl): Use it.
25309
25310 2008-04-13  Bruno Haible  <bruno@clisp.org>
25311
25312         Make truncl work on OSF/1 4.0.
25313         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
25314         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
25315         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
25316         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
25317         HAVE_DECL_TRUNCL.
25318         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
25319         HAVE_DECL_TRUNCL.
25320         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
25321
25322 2008-04-13  Bruno Haible  <bruno@clisp.org>
25323
25324         * lib/unictype.h: Remove trailing comma from enumeration definitions.
25325
25326 2008-04-13  Bruno Haible  <bruno@clisp.org>
25327
25328         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
25329         expression, so as to avoid HP-UX 11 cc compiler bug.
25330
25331 2008-04-13  Bruno Haible  <bruno@clisp.org>
25332
25333         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
25334
25335 2008-04-13  Bruno Haible  <bruno@clisp.org>
25336
25337         * lib/git-merge-changelog.c: Remove empty declaration outside of
25338         functions.
25339
25340 2008-04-13  Bruno Haible  <bruno@clisp.org>
25341
25342         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
25343
25344 2008-04-13  Bruno Haible  <bruno@clisp.org>
25345
25346         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
25347         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
25348         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
25349         also if it exists but lacks definitions of the SHUT_* macros.
25350         * modules/sys_socket (Description): Update.
25351         Reported by Elbert Pol <e.pol@chello.nl>.
25352
25353 2008-04-13  Bruno Haible  <bruno@clisp.org>
25354
25355         * lib/localcharset.c (OS2): Don't redefine if already defined.
25356         Reported by Elbert Pol <e.pol@chello.nl>.
25357
25358 2008-04-13  Bruno Haible  <bruno@clisp.org>
25359
25360         * lib/binary-io.h [__EMX__]: Include <io.h>.
25361         Reported by Elbert Pol <e.pol@chello.nl>.
25362
25363 2008-04-12  Bruno Haible  <bruno@clisp.org>
25364
25365         * lib/fpucw.h: Enable the definitions also for x86_64.
25366         Needed for NetBSD/x86_64.
25367         Reported by Thomas Klausner <tk@giga.or.at>.
25368
25369 2008-04-12  Bruno Haible  <bruno@clisp.org>
25370
25371         * tests/test-strtod.c: Include isnand.h.
25372         (main): Use isnand instead of isnan.
25373         Reported by Jim Meyering.
25374
25375 2008-04-12  Bruno Haible  <bruno@clisp.org>
25376
25377         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
25378         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
25379
25380 2008-04-12  Jim Meyering  <meyering@redhat.com>
25381
25382         * m4/math_h.m4 (gl_MATH_H): Fix typos.
25383
25384 2008-04-12  Bruno Haible  <bruno@clisp.org>
25385
25386         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
25387         Reported by Elbert Pol <e.pol@chello.nl>.
25388
25389 2008-04-12  Eric Blake  <ebb9@byu.net>
25390
25391         Work around Solaris 10 math.h bug.
25392         * m4/math_h.m4 (gl_MATH_H): Check for bug.
25393         (gl_MATH_H_DEFAULTS): Set up default.
25394         * modules/math (Makefile.am): Replace new indicators.
25395         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
25396         * tests/test-math.c (main): Test this.
25397         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
25398         * doc/posix-headers/math.texi (math.h): Mention bug.
25399         Reported by Nelson H. F. Beebe and Jim Meyering.
25400
25401 2008-04-11  Bruno Haible  <bruno@clisp.org>
25402
25403         Adapt to future versions of Apple GCC.
25404         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
25405         Reported by Peter O'Gorman <peter@pogma.com>.
25406
25407 2008-04-11  Bruno Haible  <bruno@clisp.org>
25408
25409         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
25410
25411 2008-04-11  Bruno Haible  <bruno@clisp.org>
25412
25413         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
25414
25415         * modules/getaddrinfo-tests (Makefile.am): Define
25416         test_getaddrinfo_LDADD.
25417
25418 2008-04-11  Bruno Haible  <bruno@clisp.org>
25419
25420         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
25421         (init): Fix syntax error.
25422         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
25423         is declared.
25424
25425 2008-04-11  Bruno Haible  <bruno@clisp.org>
25426
25427         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
25428         * modules/glob (Depends-on): Add stdbool.
25429
25430 2008-04-11  Bruno Haible  <bruno@clisp.org>
25431
25432         * lib/trim.c: Include <string.h>.
25433
25434 2008-04-11  Eric Blake  <ebb9@byu.net>
25435
25436         Avoid compile failure on OS/2.
25437         * lib/regex_internal.h (internal_function): Disable optimization
25438         on OS/2 (__EMX__), where it caused compiler error.
25439         Reported by Elbert Pol.
25440
25441 2008-04-11  Bruno Haible  <bruno@clisp.org>
25442
25443         Flush the standard error stream before aborting. Needed on mingw.
25444         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
25445         * tests/test-array_list.c (ASSERT): Likewise.
25446         * tests/test-array_oset.c (ASSERT): Likewise.
25447         * tests/test-avltree_list.c (ASSERT): Likewise.
25448         * tests/test-avltree_oset.c (ASSERT): Likewise.
25449         * tests/test-avltreehash_list.c (ASSERT): Likewise.
25450         * tests/test-binary-io.c (ASSERT): Likewise.
25451         * tests/test-byteswap.c (ASSERT): Likewise.
25452         * tests/test-c-ctype.c (ASSERT): Likewise.
25453         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
25454         * tests/test-c-strcasestr.c (ASSERT): Likewise.
25455         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
25456         * tests/test-c-strstr.c (ASSERT): Likewise.
25457         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
25458         * tests/test-canonicalize.c (ASSERT): Likewise.
25459         * tests/test-carray_list.c (ASSERT): Likewise.
25460         * tests/test-ceilf1.c (ASSERT): Likewise.
25461         * tests/test-ceilf2.c (ASSERT): Likewise.
25462         * tests/test-ceill.c (ASSERT): Likewise.
25463         * tests/test-count-one-bits.c (ASSERT): Likewise.
25464         * tests/test-fbufmode.c (ASSERT): Likewise.
25465         * tests/test-fflush2.c (ASSERT): Likewise.
25466         * tests/test-floorf1.c (ASSERT): Likewise.
25467         * tests/test-floorf2.c (ASSERT): Likewise.
25468         * tests/test-floorl.c (ASSERT): Likewise.
25469         * tests/test-fopen.c (ASSERT): Likewise.
25470         * tests/test-fpending.c (ASSERT): Likewise.
25471         * tests/test-fprintf-posix.c (ASSERT): Likewise.
25472         * tests/test-fpurge.c (ASSERT): Likewise.
25473         * tests/test-freadable.c (ASSERT): Likewise.
25474         * tests/test-freadahead.c (ASSERT): Likewise.
25475         * tests/test-freading.c (ASSERT): Likewise.
25476         * tests/test-freadptr.c (ASSERT): Likewise.
25477         * tests/test-freadptr2.c (ASSERT): Likewise.
25478         * tests/test-freadseek.c (ASSERT): Likewise.
25479         * tests/test-freopen.c (ASSERT): Likewise.
25480         * tests/test-frexp.c (ASSERT): Likewise.
25481         * tests/test-frexpl.c (ASSERT): Likewise.
25482         * tests/test-fseek.c (ASSERT): Likewise.
25483         * tests/test-fseeko.c (ASSERT): Likewise.
25484         * tests/test-fstrcmp.c (ASSERT): Likewise.
25485         * tests/test-ftell.c (ASSERT): Likewise.
25486         * tests/test-ftello.c (ASSERT): Likewise.
25487         * tests/test-func.c (ASSERT): Likewise.
25488         * tests/test-fwritable.c (ASSERT): Likewise.
25489         * tests/test-fwriting.c (ASSERT): Likewise.
25490         * tests/test-getdelim.c (ASSERT): Likewise.
25491         * tests/test-getline.c (ASSERT): Likewise.
25492         * tests/test-i-ring.c (ASSERT): Likewise.
25493         * tests/test-iconv-utf.c (ASSERT): Likewise.
25494         * tests/test-iconv.c (ASSERT): Likewise.
25495         * tests/test-isfinite.c (ASSERT): Likewise.
25496         * tests/test-isnand.c (ASSERT): Likewise.
25497         * tests/test-isnanf.c (ASSERT): Likewise.
25498         * tests/test-isnanl.h (ASSERT): Likewise.
25499         * tests/test-ldexpl.c (ASSERT): Likewise.
25500         * tests/test-linked_list.c (ASSERT): Likewise.
25501         * tests/test-linkedhash_list.c (ASSERT): Likewise.
25502         * tests/test-localename.c (ASSERT): Likewise.
25503         * tests/test-lseek.c (ASSERT): Likewise.
25504         * tests/test-mbscasecmp.c (ASSERT): Likewise.
25505         * tests/test-mbscasestr1.c (ASSERT): Likewise.
25506         * tests/test-mbscasestr2.c (ASSERT): Likewise.
25507         * tests/test-mbscasestr3.c (ASSERT): Likewise.
25508         * tests/test-mbscasestr4.c (ASSERT): Likewise.
25509         * tests/test-mbschr.c (ASSERT): Likewise.
25510         * tests/test-mbscspn.c (ASSERT): Likewise.
25511         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
25512         * tests/test-mbspbrk.c (ASSERT): Likewise.
25513         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
25514         * tests/test-mbsrchr.c (ASSERT): Likewise.
25515         * tests/test-mbsspn.c (ASSERT): Likewise.
25516         * tests/test-mbsstr1.c (ASSERT): Likewise.
25517         * tests/test-mbsstr2.c (ASSERT): Likewise.
25518         * tests/test-mbsstr3.c (ASSERT): Likewise.
25519         * tests/test-memchr2.c (ASSERT): Likewise.
25520         * tests/test-memmem.c (ASSERT): Likewise.
25521         * tests/test-open.c (ASSERT): Likewise.
25522         * tests/test-printf-frexp.c (ASSERT): Likewise.
25523         * tests/test-printf-frexpl.c (ASSERT): Likewise.
25524         * tests/test-printf-posix.c (ASSERT): Likewise.
25525         * tests/test-quotearg.c (ASSERT): Likewise.
25526         * tests/test-rbtree_list.c (ASSERT): Likewise.
25527         * tests/test-rbtree_oset.c (ASSERT): Likewise.
25528         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
25529         * tests/test-round1.c (ASSERT): Likewise.
25530         * tests/test-roundf1.c (ASSERT): Likewise.
25531         * tests/test-roundl.c (ASSERT): Likewise.
25532         * tests/test-signbit.c (ASSERT): Likewise.
25533         * tests/test-sleep.c (ASSERT): Likewise.
25534         * tests/test-snprintf-posix.c (ASSERT): Likewise.
25535         * tests/test-snprintf.c (ASSERT): Likewise.
25536         * tests/test-sprintf-posix.c (ASSERT): Likewise.
25537         * tests/test-stat-time.c (ASSERT): Likewise.
25538         * tests/test-strcasestr.c (ASSERT): Likewise.
25539         * tests/test-strerror.c (ASSERT): Likewise.
25540         * tests/test-striconv.c (ASSERT): Likewise.
25541         * tests/test-striconveh.c (ASSERT): Likewise.
25542         * tests/test-striconveha.c (ASSERT): Likewise.
25543         * tests/test-strsignal.c (ASSERT): Likewise.
25544         * tests/test-strstr.c (ASSERT): Likewise.
25545         * tests/test-strtod.c (ASSERT): Likewise.
25546         * tests/test-trunc1.c (ASSERT): Likewise.
25547         * tests/test-trunc2.c (ASSERT): Likewise.
25548         * tests/test-truncf1.c (ASSERT): Likewise.
25549         * tests/test-truncf2.c (ASSERT): Likewise.
25550         * tests/test-truncl.c (ASSERT): Likewise.
25551         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
25552         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
25553         * tests/test-vasnprintf.c (ASSERT): Likewise.
25554         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
25555         * tests/test-vasprintf.c (ASSERT): Likewise.
25556         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
25557         * tests/test-vprintf-posix.c (ASSERT): Likewise.
25558         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
25559         * tests/test-vsnprintf.c (ASSERT): Likewise.
25560         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
25561         * tests/test-wcwidth.c (ASSERT): Likewise.
25562         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
25563         * tests/test-xprintf-posix.c (ASSERT): Likewise.
25564         * tests/test-xvasprintf.c (ASSERT): Likewise.
25565         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
25566         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
25567         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
25568         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
25569         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
25570         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
25571         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
25572         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
25573         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
25574         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
25575         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
25576         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
25577         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
25578         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
25579         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
25580         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
25581         * tests/unictype/test-block_list.c (ASSERT): Likewise.
25582         * tests/unictype/test-block_of.c (ASSERT): Likewise.
25583         * tests/unictype/test-block_test.c (ASSERT): Likewise.
25584         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
25585         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
25586         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
25587         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
25588         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
25589         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
25590         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
25591         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
25592         * tests/unictype/test-combining.c (ASSERT): Likewise.
25593         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
25594         * tests/unictype/test-digit.c (ASSERT): Likewise.
25595         * tests/unictype/test-mirror.c (ASSERT): Likewise.
25596         * tests/unictype/test-numeric.c (ASSERT): Likewise.
25597         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
25598         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
25599         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
25600         * tests/unictype/test-scripts.c (ASSERT): Likewise.
25601         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
25602         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
25603         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
25604         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
25605         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
25606         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
25607         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
25608         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
25609         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
25610         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
25611         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
25612         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
25613         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
25614         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
25615         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
25616         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
25617         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
25618         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
25619         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
25620         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
25621         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
25622         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
25623         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
25624         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
25625         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
25626         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
25627         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
25628         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
25629         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
25630         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
25631         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
25632         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
25633         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
25634         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
25635         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
25636         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
25637         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
25638         Reported by Eric Blake.
25639
25640 2008-04-11  Bruno Haible  <bruno@clisp.org>
25641
25642         * lib/wchar.in.h: Tweak comment.
25643
25644 2008-04-11  Bruno Haible  <bruno@clisp.org>
25645
25646         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
25647         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
25648         gl_COMMON.
25649         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
25650
25651 2008-04-11  Bruno Haible  <bruno@clisp.org>
25652
25653         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
25654
25655 2008-04-11  Simon Josefsson  <simon@josefsson.org>
25656
25657         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
25658         of attempting to use non-existing /dev/*random.  Based on patch
25659         from Adam Strzelecki <ono@java.pl> in
25660         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
25661
25662 2008-04-08  Bruno Haible  <bruno@clisp.org>
25663
25664         Add tentative support for emx+gcc.
25665         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
25666         * lib/fpurge.c (fpurge): Likewise.
25667         * lib/freadable.c (freadable): Likewise.
25668         * lib/freadahead.c (freadahead): Likewise.
25669         * lib/freading.c (freading): Likewise.
25670         * lib/freadptr.c (freadptr): Likewise.
25671         * lib/freadseek.c (freadptrinc): Likewise.
25672         * lib/fseeko.c (rpl_fseeko): Likewise.
25673         * lib/fseterr.c (fseterr): Likewise.
25674         * lib/fwritable.c (fwritable): Likewise.
25675         * lib/fwriting.c (fwriting): Likewise.
25676         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
25677
25678 2008-04-09  Eric Blake  <ebb9@byu.net>
25679
25680         Avoid some autoconf warnings.
25681         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
25682         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
25683         * m4/afs.m4 (gl_AFS): Likewise.
25684         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
25685         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
25686         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
25687         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
25688         (gl_INTEGER_TYPE_SUFFIX): Likewise.
25689         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
25690         (AC_CHECK_DECLS_ONCE): Likewise.
25691         Rename file...
25692         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
25693         gnulib-tool requires autoconf 2.59 or better.
25694         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
25695
25696 2008-04-08  Eric Blake  <ebb9@byu.net>
25697
25698         Use 'git describe --match' if present (added in git 1.5.5).
25699         * build-aux/git-version-gen: Limit result to tags that match 'v*'
25700         if possible.
25701
25702 2008-04-08  Bruno Haible  <bruno@clisp.org>
25703
25704         Add tentative support for OpenServer.
25705         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
25706         _ptr, _cnt.
25707         * lib/fpurge.c (fpurge): Likewise.
25708         * lib/freadable.c (freadable): Likewise.
25709         * lib/freadahead.c (freadahead): Likewise.
25710         * lib/freading.c (freading): Likewise.
25711         * lib/freadptr.c (freadptr): Likewise.
25712         * lib/freadseek.c (freadptrinc): Likewise.
25713         * lib/fseeko.c (rpl_fseeko): Likewise.
25714         * lib/fseterr.c (fseterr): Likewise.
25715         * lib/fwritable.c (fwritable): Likewise.
25716         * lib/fwriting.c (fwriting): Likewise.
25717         Reported by Roger Cornelius <rac@tenzing.org> and
25718         Brian K. White <brian@aljex.com>.
25719
25720 2008-04-06  Jim Meyering  <meyering@redhat.com>
25721
25722         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
25723
25724 2008-04-06  Bruno Haible  <bruno@clisp.org>
25725
25726         Avoid possible error with non-ASCII bytes in UTF-8 locales.
25727         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
25728         * tests/test-printf-posix.sh: Likewise.
25729         * tests/test-vfprintf-posix.sh: Likewise.
25730         * tests/test-vprintf-posix.sh: Likewise.
25731         * tests/test-xprintf-posix.sh: Likewise.
25732
25733 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25734
25735         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
25736         hide error from 'ls', needed on OS/2.
25737         Report by Elbert Pol <elbert.pol@gmail.com>.
25738
25739 2008-04-04  Eric Blake  <ebb9@byu.net>
25740
25741         Make test-fseeko.c failures meaningful.
25742         * tests/test-fseeko.c: Print line number on failure.
25743         * tests/test-fseek.c: Likewise.
25744         Reported by Nelson H. F. Beebe.
25745
25746         Improve strtod bug detection check.
25747         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
25748         required for Solaris 10.
25749         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
25750
25751 2008-04-04  Bruno Haible  <bruno@clisp.org>
25752
25753         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
25754         by m4/setenv.m4.
25755
25756 2008-04-03  Eric Blake  <ebb9@byu.net>
25757
25758         Ensure sane .version contents.
25759         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
25760         version string.
25761         * build-aux/git-version-gen: Improve documentation.
25762
25763         Make GNU make output nicer.
25764         * top/GNUmakefile [!_have-Makefile]: Add dependency on
25765         MAKECMDGOALS to enforce message for all command line targets.  Set
25766         srcdir for use in maint.mk.
25767
25768         Another maintainer tweak.
25769         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
25770         a target that regenerates version.
25771
25772 2008-04-03  Jim Meyering  <meyering@redhat.com>
25773
25774         vc-list-files: don't cause coreutils "make po-check" failure
25775         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
25776
25777 2008-04-03  Eric Blake  <ebb9@byu.net>
25778
25779         Allow VPATH usage of vc-list-files.
25780         * build-aux/vc-list-files (scriptversion): Add timestamp.
25781         (options): Add --help, --version, -C.
25782         (CVS): Support installed cvsu.
25783
25784 2008-04-02  Bruno Haible  <bruno@clisp.org>
25785
25786         Avoid some "statement with no effect" warnings from gcc.
25787         * tests/test-wctype.c (main): Explicitly ignore unused values.
25788         Reported by Jim Meyering.
25789
25790 2008-04-02  Jim Meyering  <meyering@redhat.com>
25791
25792         Avoid some warnings from "gcc -Wshadow".
25793         * tests/test-frexp.c (exp): Define to a different identifier.
25794         * tests/test-frexpl.c (exp): Likewise.
25795
25796 2008-04-03  Jim Meyering  <meyering@redhat.com>
25797
25798         bootstrap: remove dangling *.[ch] symlinks from lib
25799         * build-aux/bootstrap [dangling symlink removal]: Move find's
25800         -depth option to precede all others, to avoid a warning.
25801         Remove *.[ch] files too, and from "$source_base" (usually lib/).
25802
25803 2008-04-02  Bruno Haible  <bruno@clisp.org>
25804
25805         Avoid some warnings from "gcc -Wshadow".
25806         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
25807         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
25808         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
25809         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
25810         Reported by Jim Meyering.
25811
25812 2008-04-01  Bruno Haible  <bruno@clisp.org>
25813
25814         Fix test to work on IRIX 6.5 with cc.
25815         * tests/test-math.c (numeric_equal): New function.
25816         (main): Use it.
25817
25818 2008-04-01  Bruno Haible  <bruno@clisp.org>
25819
25820         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
25821
25822 2008-04-01  Bruno Haible  <bruno@clisp.org>
25823
25824         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
25825         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
25826         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
25827         (Depends-on): Remove math.
25828
25829         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
25830         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
25831         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
25832         (Depends-on): Remove math.
25833
25834         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
25835         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
25836         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
25837         (Depends-on): Remove math.
25838         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
25839         (Depends-on): Remove math.
25840
25841         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
25842         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
25843         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
25844         (Depends-on): Remove math.
25845         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
25846         (Depends-on): Remove math.
25847
25848         * tests/test-round1.c: Include nan.h.
25849         (main): Use NaNd instead of NAN.
25850         * modules/round-tests (Files): Add tests/nan.h.
25851
25852         * tests/test-trunc1.c: Include nan.h.
25853         (main): Use NaNd instead of NAN.
25854         * modules/trunc-tests (Files): Add tests/nan.h.
25855
25856         * tests/test-roundf1.c: Include nan.h.
25857         (main): Use NaNf instead of NAN.
25858         * modules/roundf-tests (Files): Add tests/nan.h.
25859
25860         * tests/test-truncf1.c: Include nan.h.
25861         (main): Use NaNf instead of NAN.
25862         * modules/truncf-tests (Files): Add tests/nan.h.
25863
25864         * tests/test-ceilf1.c: Include nan.h.
25865         (main): Use NaNf instead of NAN.
25866         * modules/ceilf-tests (Files): Add tests/nan.h.
25867
25868         * tests/test-floorf1.c: Include nan.h.
25869         (main): Use NaNf instead of NAN.
25870         * modules/floorf-tests (Files): Add tests/nan.h.
25871
25872         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
25873         (main): Use NaNf instead of NAN.
25874         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
25875
25876         * tests/test-isnand.c: Include nan.h instead of <math.h>.
25877         (main): Use NaNd instead of NAN.
25878         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
25879
25880         * tests/test-frexp.c: Include nan.h.
25881         (main): Use NaNd instead of NAN.
25882         * modules/frexp-tests (Files): Add tests/nan.h.
25883
25884         * lib/isnan.c: Don't include <math.h>.
25885         (FUNC): Don't use NAN macro.
25886         * modules/isnand-nolibm (Depends-on): Remove math.
25887         * modules/isnanf-nolibm (Depends-on): Remove math.
25888         * modules/isnanl (Depends-on): Remove math.
25889         * modules/isnanl-nolibm (Depends-on): Remove math.
25890
25891         * tests/nan.h: New file.
25892
25893 2008-04-01  Eric Blake  <ebb9@byu.net>
25894
25895         Fix typos.
25896         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
25897         values to be the right type.
25898
25899         For now, cater to gnulib strtod inaccuracies.
25900         * tests/test-strtod.c (main): Allow 1-ulp error on expected
25901         fractional results.  While not as nice from a QoI perspective, it
25902         is a quicker patch than correctly implementing decimal to binary
25903         rounding.
25904
25905 2008-03-31  Eric Blake  <ebb9@byu.net>
25906
25907         Guarantee a definition of NAN.
25908         * lib/math.in.h (NAN): Define if missing.
25909         * tests/test-math.c (main): Test it.
25910         * doc/posix-headers/math.texi (math.h): Document this.
25911         * lib/isnan.c (rpl_isnand): Use it.
25912         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
25913         * tests/test-floorf1.c (NaN): Likewise.
25914         * tests/test-frexp.c (NaN): Likewise.
25915         * tests/test-isnand.c (NaN): Likewise.
25916         * tests/test-isnanf.c (NaN): Likewise.
25917         * tests/test-round1.c (NaN): Likewise.
25918         * tests/test-roundf1.c (NaN): Likewise.
25919         * tests/test-snprintf-posix.h (NaN): Likewise.
25920         * tests/test-sprintf-posix.h (NaN): Likewise.
25921         * tests/test-trunc1.c (NaN): Likewise.
25922         * tests/test-truncf1.c (NaN): Likewise.
25923         * tests/test-vasnprintf-posix.c (NaN): Likewise.
25924         * tests/test-vasprintf-posix.c (NaN): Likewise.
25925         * modules/isnand-nolibm (Depends-on): Add math.
25926         * modules/isnanf-nolibm (Depends-on): Likewise.
25927         * modules/isnanl (Depends-on): Likewise.
25928         * modules/isnanl-nolibm (Depends-on): Likewise.
25929         * modules/snprintf-posix-tests (Depends-on): Likewise.
25930         * modules/sprintf-posix-tests (Depends-on): Likewise.
25931         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
25932         * modules/vsprintf-posix-tests (Depends-on): Likewise.
25933         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
25934         * modules/vasprintf-posix-tests (Depends-on): Likewise.
25935
25936 2008-03-31  Bruno Haible  <bruno@clisp.org>
25937
25938         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
25939         * doc/posix-functions/strtod.texi: Likewise.
25940
25941 2008-03-31  Bruno Haible  <bruno@clisp.org>
25942
25943         * tests/test-strtod.c (main): Don't use C99 syntax.
25944
25945 2008-03-31  Bruno Haible  <bruno@clisp.org>
25946
25947         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
25948         Reported by Eric Blake.
25949
25950 2008-03-31  Jim Meyering  <meyering@redhat.com>
25951
25952         Don't compare actual signbit return values.
25953         * tests/test-strtod.c (main): Rather, compare only their
25954         zero/non-zero nature.
25955
25956 2008-03-31  Eric Blake  <ebb9@byu.net>
25957
25958         More strtod documentation.
25959         * doc/posix-functions/strtod.texi (strtod): Interpret more test
25960         failures as distinct bugs.
25961
25962 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
25963
25964         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
25965         Problem reported by Erik Benada in
25966         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
25967
25968 2008-03-30  Bruno Haible  <bruno@clisp.org>
25969
25970         * tests/test-strtod.c: Add comments about which assertion fails on which
25971         platform.
25972         * doc/posix-functions/strtod.texi: Add info about many more platforms.
25973
25974 2008-03-30  Eric Blake  <ebb9@byu.net>
25975
25976         Test signbit behavior on zeros.
25977         * tests/test-signbit.c (test_signbitf): Add tests for zero.
25978         (test_signbitd, test_signbitl): Likewise.
25979
25980         More strtod touchups.
25981         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
25982         sign of negative underflow, for now.  Use .5, not .1.
25983         * doc/posix-functions/strtod.texi (strtod): Mention these
25984         limitations.
25985         Reported by Jim Meyering.
25986
25987 2008-03-30  Bruno Haible  <bruno@clisp.org>
25988
25989         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
25990         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
25991
25992 2008-03-30  Bruno Haible  <bruno@clisp.org>
25993
25994         Avoid failure when attempting to return empty iconv results on some
25995         platforms.
25996         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
25997         allocation, don't report ENOMEM when the resulting string is empty.
25998
25999 2008-03-30  Bruno Haible  <bruno@clisp.org>
26000
26001         Fix buffer overrun.
26002         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
26003         Don't consider the width for tmp_length. Check count against tmp_length
26004         before doing the padding. Ensure enough allocation during padding.
26005
26006 2008-03-30  Eric Blake  <ebb9@byu.net>
26007
26008         strtod touchups.
26009         * lib/strtod.c (strtod): Avoid compiler warnings.
26010         Reported by Jim Meyering.
26011
26012 2008-03-30  Bruno Haible  <bruno@clisp.org>
26013
26014         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
26015         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
26016         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
26017         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
26018         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
26019         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
26020         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
26021         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
26022
26023         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
26024         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
26025         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
26026         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
26027         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
26028         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
26029         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
26030         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
26031
26032         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
26033         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
26034         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
26035         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
26036         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
26037         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
26038         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
26039         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
26040
26041         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
26042         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
26043
26044         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
26045         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
26046
26047         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
26048         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
26049
26050         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
26051         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
26052         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
26053
26054         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
26055         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
26056         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
26057
26058         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
26059         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
26060         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
26061
26062         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
26063         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
26064         * modules/vasprintf (Depends-on): Add EOVERFLOW.
26065
26066         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
26067         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
26068         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
26069         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
26070         (Depends-on): Add EOVERFLOW.
26071         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
26072         (Depends-on): Add EOVERFLOW.
26073         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
26074         (Depends-on): Add EOVERFLOW.
26075         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
26076         (Depends-on): Add EOVERFLOW.
26077         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
26078         (Depends-on): Add EOVERFLOW.
26079         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
26080         (Depends-on): Add EOVERFLOW.
26081         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
26082         (Depends-on): Add EOVERFLOW.
26083         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
26084         (Depends-on): Add EOVERFLOW.
26085
26086         * lib/sprintf.c (EOVERFLOW): Remove fallback.
26087         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
26088         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
26089
26090         * lib/snprintf.c (EOVERFLOW): Remove fallback.
26091         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
26092         * modules/snprintf (Depends-on): Add EOVERFLOW.
26093
26094         * lib/poll.c (EOVERFLOW): Remove fallback.
26095         * modules/poll (Depends-on): Add EOVERFLOW.
26096
26097         * lib/getugroups.c (EOVERFLOW): Remove fallback.
26098         * modules/getugroups (Depends-on): Add EOVERFLOW.
26099
26100         * lib/getdelim.c (EOVERFLOW): Remove fallback.
26101         * modules/getdelim (Depends-on): Add EOVERFLOW.
26102
26103         * lib/ftell.c (EOVERFLOW): Remove fallback.
26104         * modules/ftell (Depends-on): Add EOVERFLOW.
26105
26106         * lib/fprintf.c (EOVERFLOW): Remove fallback.
26107         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
26108         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
26109
26110         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
26111
26112         * modules/EOVERFLOW-tests: New file.
26113         * tests/test-EOVERFLOW.c: New file.
26114
26115         * modules/EOVERFLOW: New file.
26116         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
26117
26118 2008-03-30  Bruno Haible  <bruno@clisp.org>
26119
26120         Fix bug introduced on 2007-06-10.
26121         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
26122         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
26123
26124 2008-03-30  Bruno Haible  <bruno@clisp.org>
26125
26126         Improve freadseek's efficiency after ungetc.
26127         * lib/freadseek.c: Include freadahead.h.
26128         (freadptrinc): New function, extracted from freadseek.
26129         (freadseek): Use it in a loop. Use freadahead to determine the number
26130         of loop iterations.
26131         * modules/freadseek (Depends-on): Add freadahead.
26132         (configure.ac): Require AC_C_INLINE.
26133
26134 2008-03-30  Bruno Haible  <bruno@clisp.org>
26135
26136         * lib/freadseek.c (freadseek): Don't ignore the return value of
26137         freadptr.
26138
26139 2008-03-29  Eric Blake  <ebb9@byu.net>
26140
26141         Add hex float support.
26142         * modules/strtod (Depends-on): Add c-ctype.
26143         (Link): Mention POW_LIB.
26144         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
26145         whitespace between 'e' and exponent.
26146         * tests/test-strtod.c (main): Enable hex float tests.
26147         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
26148         now provides.
26149
26150         Document various strtod bugs, with some fixes.
26151         * doc/posix-functions/strtod.texi (strtod): Document bugs with
26152         "-0x", "inf", "nan", and hex constants.
26153         * doc/posix-functions/atof.texi (atof): Likewise.
26154         * modules/stdlib (Makefile.am): Support strtod.
26155         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
26156         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
26157         detect additional strtod bugs.
26158         * lib/stdlib.in.h (rpl_strtod): Add declarations.
26159         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
26160         bool where appropriate.  Parse 'inf' and 'nan'.
26161         * tests/test-strtod.c: New file.
26162         * modules/strtod (Depends-on): Add stdbool, stdlib.
26163         (configure.ac): Turn on module indicator.
26164         * modules/strtod-tests: New module.
26165
26166 2008-03-29  Eric Blake  <ebb9@byu.net>
26167
26168         Fix ftell on mingw.
26169         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
26170         * modules/ftell-tests (Depends-on): Add binary-io.
26171         * modules/ftello-tests (Depends-on): Likewise.
26172         * tests/test-ftell.c (main): Enhance test to cover behavior after
26173         ungetc.  Enforce binary mode.
26174         * tests/test-ftello.c (main): Likewise.
26175
26176         Pass test-freadseek on cygwin.
26177         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
26178         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
26179         ungetc buffer.
26180
26181         * tests/test-fflush2.c (main): Fix typo.
26182
26183 2008-03-29  Bruno Haible  <bruno@clisp.org>
26184
26185         * tests/test-fflush2.c (main): Temporarily disable the contents of
26186         this test.
26187         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
26188         Reported by Eric Blake.
26189
26190 2008-03-28  Simon Josefsson  <simon@josefsson.org>
26191
26192         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
26193         (GC_SHA224_DIGEST_SIZE): Add.
26194
26195         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
26196         (gc_hash_digest_length): Likewise.
26197         (gc_hash_buffer): Likewise.
26198
26199 2008-03-25  Bruno Haible  <bruno@clisp.org>
26200
26201         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
26202         detail which gettext release to use.
26203         Reported by Simon Josefsson.
26204
26205 2008-03-26  Jim Meyering  <meyering@redhat.com>
26206
26207         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
26208         * modules/gnumakefile (clean-GNUmakefile): Also, use
26209         test ... && ... || : syntax rather than if-then ... fi.
26210
26211         gnumakefile: Don't double-quote-expand $(VPATH) value.
26212         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
26213
26214 2008-03-24  Eric Blake  <ebb9@byu.net>
26215
26216         Alter GNUmakefile to install into top directory.
26217         * modules/maintainer-makefile: Split, and add dependency...
26218         * modules/gnumakefile: to this new module.
26219         * build-aux/GNUmakefile: Move...
26220         * top/GNUmakefile: ...here.
26221         * build-aux/maint.mk: Move...
26222         * top/maint.mk: ...here.
26223         * MODULES.html.sh (Support for maintaining...): Document new
26224         module.
26225
26226 2008-03-23  Bruno Haible  <bruno@clisp.org>
26227
26228         * gnulib-tool: New options --vc-files, --no-vc-files.
26229         (func_usage): Document them.
26230         (vc_files): New variable.
26231         (func_import): Consider vc_files.
26232         (func_create_testdir): Set vc_files to empty.
26233         Suggested by Jim Meyering and Karl Berry.
26234
26235 2008-03-23  Bruno Haible  <bruno@clisp.org>
26236
26237         Fix regex compilation error on HP-UX 11.
26238         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
26239         * modules/regex (Files): Add m4/mbstate_t.m4.
26240         Reported by Ton Voon <ton.voon@altinity.com>.
26241
26242 2008-03-23  Bruno Haible  <bruno@clisp.org>
26243
26244         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
26245
26246 2008-03-23  Eric Blake  <ebb9@byu.net>
26247             Bruno Haible  <bruno@clisp.org>
26248
26249         Install files from top/ in the destination directory.
26250         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
26251         augmentation also for the files from top/.
26252         (func_import, func_create_testdir): Rewrite file names:
26253         top/filename -> filename.
26254
26255 2008-03-23  Bruno Haible  <bruno@clisp.org>
26256
26257         Tweak "gnulib --version" output.
26258         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
26259
26260 2008-03-23  Bruno Haible  <bruno@clisp.org>
26261
26262         Tweak "gnulib --version" output.
26263         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
26264         rather than contents of ChangeLog, when possible.
26265
26266 2008-03-21  Eric Blake  <ebb9@byu.net>
26267
26268         More --version tweaks.
26269         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
26270         date of last ChangeLog entry.
26271
26272 2008-03-21  Jim Meyering  <meyering@redhat.com>
26273
26274         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
26275
26276 2008-03-20  Eric Blake  <ebb9@byu.net>
26277
26278         VPATH fix.
26279         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
26280
26281 2008-03-20  Simon Josefsson  <simon@josefsson.org>
26282
26283         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
26284         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
26285
26286 2008-03-20  Eric Blake  <ebb9@byu.net>
26287
26288         Sync GNUmakefile with coreutils.
26289         * build-aux/GNUmakefile (have-Makefile): Rename...
26290         (_have-Makefile): ...to this, for namespace consideration.
26291         (GNUmakefile.cfg): Include, if present.
26292         (_autoreconf): Define a default.
26293         (_is-dist-target): New rule for rebuilds to pick up intra-release
26294         version.
26295         (maint-cfg.mk): Rename...
26296         (cfg.mk): ...to this.
26297
26298 2008-03-18  Jim Meyering  <meyering@redhat.com>
26299
26300         New script and module: mktempd
26301         * MODULES.html.sh (maint+release support): Add mktempd.
26302         * build-aux/mktempd: New file.
26303         * modules/mktempd: New file.
26304
26305 2008-03-15  Jim Meyering  <meyering@redhat.com>
26306
26307         Undo last change.
26308         * lib/sha1.c, lib/md5.c: 63 != ~63.
26309         Reported by Andreas Schwab.
26310
26311         sha1.c, md5.c: Hoist a redundant expression.
26312         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
26313         "ctx->buflen" only once, before calling *_process_block.
26314         * lib/md5.c (md5_process_bytes): Likewise.
26315
26316 2008-03-14  Eric Blake  <ebb9@byu.net>
26317
26318         Bump copyright year in files generated by gnulib-tool.
26319         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
26320         gnulib-tool, rather than hard-coding it.
26321
26322         Fix 'gnulib-tool --version' output to work with git.
26323         * gnulib-tool (func_gnulib_dir): New function, extracted from...
26324         (startup): ...here.
26325         (func_version): Use it to invoke git-version-gen, rather than
26326         relying on CVS keyword expansion.  Modernize wording.
26327         (cvsdatestamp, last_checkin_date, version): Kill unused
26328         variables.
26329
26330 2008-03-12  Jim Meyering  <meyering@redhat.com>
26331
26332         Recognize optional cast of the argument to free.
26333         * build-aux/useless-if-before-free: Update regexps.
26334
26335         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
26336
26337 2008-03-11  Bruno Haible  <bruno@clisp.org>
26338
26339         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
26340         by a single package.
26341         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
26342         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
26343         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
26344         Reported by Sam Steingold <sds@gnu.org>.
26345
26346 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
26347
26348         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
26349         repositories.
26350
26351 2008-03-11  Bruno Haible  <bruno@clisp.org>
26352
26353         Avoid conflicts between local macro definitions.
26354         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
26355         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
26356
26357 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
26358             Bruno Haible  <bruno@clisp.org>
26359
26360         Make va_copy work with some version of xlc on AIX 5.1.
26361         * lib/stdarg.in.h: New file.
26362         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
26363         On AIX, use a <stdarg.h> file substitute.
26364         * modules/stdarg (Files): Add lib/stdarg.in.h.
26365         (Depends-on): Add include_next.
26366         (Makefile.am): Build a stdarg.h substitute if requested.
26367         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
26368
26369 2008-03-10  Bruno Haible  <bruno@clisp.org>
26370
26371         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
26372         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
26373         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
26374
26375 2008-03-10  Bruno Haible  <bruno@clisp.org>
26376
26377         * modules/stdlib (Depends-on): Add include_next, remove
26378         absolute-header.
26379
26380 2008-03-09  Bruno Haible  <bruno@clisp.org>
26381
26382         * lib/freadahead.h (freadahead): Document more precisely.
26383         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
26384         the sum of both buffer sizes.
26385         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
26386         * NEWS: Document the change.
26387
26388 2008-03-09  Bruno Haible  <bruno@clisp.org>
26389
26390         Extend freadptr to return also the buffer size.
26391         * lib/freadptr.h (freadptr): Add sizep argument.
26392         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
26393         (freadptr): Add sizep argument. Determine buffer size like freadahead
26394         does.
26395         * tests/test-freadptr.c: Don't include freadahead.h.
26396         (main): Adapt for new calling convention of freadptr.
26397         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
26398         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
26399         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
26400         tests/test-freadptr2.sh.
26401         (Depends): Remove freadahead.
26402         (TESTS): Add test-freadptr2.sh.
26403         (check_PROGRAMS): Add test-freadptr2.
26404
26405 2008-03-09  Bruno Haible  <bruno@clisp.org>
26406
26407         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
26408         Report and solution by Simon Josefsson.
26409
26410 2008-03-06  Bruno Haible  <bruno@clisp.org>
26411
26412         Make fflush after ungetc work on BSD platforms.
26413         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
26414         * tests/test-fflush2.c: New file.
26415         * tests/test-fflush2.sh: New file.
26416         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
26417         tests/test-fflush2.c.
26418         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
26419         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
26420
26421 2008-03-06  Eric Blake  <ebb9@byu.net>
26422
26423         Likewise for ftello.
26424         * modules/ftello (Dependencies): Add extensions.
26425         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
26426
26427 2008-03-06  Bruno Haible  <bruno@clisp.org>
26428
26429         * modules/fseeko (Dependencies): Add extensions.
26430         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
26431         Needed on glibc systems.
26432
26433 2008-03-06  Bruno Haible  <bruno@clisp.org>
26434
26435         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
26436         email address.
26437         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
26438
26439 2008-03-06  Bruno Haible  <bruno@clisp.org>
26440
26441         * users.txt: Add libgnupdf.
26442
26443 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
26444
26445         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
26446         (Header File Substitutes, Function Substitutes,
26447         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
26448         (Build robot for gnulib): Fix typo.
26449
26450 2008-03-06  Bruno Haible  <bruno@clisp.org>
26451
26452         * doc/gnulib-tool.texi (VCS Issues): Small updates.
26453         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
26454
26455 2008-03-06  Bruno Haible  <bruno@clisp.org>
26456
26457         * doc/func.texi: New file, extracted from doc/gnulib.texi.
26458         * doc/gnulib.texi: Include it.
26459
26460 2008-03-06  Simon Josefsson  <simon@josefsson.org>
26461
26462         * modules/func (License): Change license to unlimited; there was
26463         no LGPL parts in the module anyway.
26464
26465 2008-03-06  Simon Josefsson  <simon@josefsson.org>
26466
26467         * modules/__func__: Renamed to modules/func.
26468         * modules/__func__-tests: Renamed to modules/func-tests.
26469         * tests/test-__func__.c: Renamed to tests/test-func.c.
26470         * m4/__func__.m4: Renamed to m4/func.m4.
26471         * doc/gnulib.texi (__func__): Section renamed to func.
26472         Suggested by Eric Blake <ebb9@byu.net>.
26473
26474 2008-03-06  Simon Josefsson  <simon@josefsson.org>
26475
26476         * doc/gnulib.texi (__func__): Use C99 terminology when talking
26477         about __func__.  Make example self-contained.  Suggested by Eric
26478         Blake <ebb9@byu.net>.
26479
26480         * tests/test-__func__.c (main): Avoid extraneous () around __func.
26481         Suggested by Eric Blake <ebb9@byu.net>.
26482
26483 2008-03-06  Simon Josefsson  <simon@josefsson.org>
26484
26485         * modules/__func__: New file.
26486         * modules/__func__-tests: New file.
26487         * tests/test-__func__.c: New file.
26488         * m4/__func__.m4: New file.
26489         * doc/gnulib.texi (__func__): Document __func__ module.
26490
26491 2008-03-05  Simon Josefsson  <simon@josefsson.org>
26492
26493         * modules/byteswap (License): Re-license as LGPLv2+.
26494
26495 2008-03-05  Simon Josefsson  <simon@josefsson.org>
26496
26497         * doc/Makefile: Add pdf target.
26498
26499 2008-03-05  Simon Josefsson  <simon@josefsson.org>
26500
26501         * modules/inline (License): Use 'unlimited', since there are only
26502         *.m4 files in this module.
26503
26504 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
26505             Bruno Haible  <bruno@clisp.org>
26506
26507         Add support for HP C 7.1 on OpenVMS 8.3.
26508         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
26509
26510 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
26511
26512         Update VMS specifics.
26513         * lib/getopt.c [VMS]: Remove include of unixlib.h.
26514
26515 2008-03-02  Jim Meyering  <meyering@redhat.com>
26516
26517         Remove the last dependency on the "free" module.
26518         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
26519         Reported by Bob Proulx.
26520
26521         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
26522
26523         Remove useless "if" tests before free.  Deprecate "free" module.
26524         * doc/posix-functions/free.texi: Mention that this
26525         module is no longer useful.
26526         * modules/free (Notice): Say this module is obsolete.
26527         * modules/readutmp (Depends-on): Remove free.
26528         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
26529         * lib/putenv.c (putenv): Likewise.
26530         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
26531         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
26532         * tests/test-c-strcasestr.c (main): Likewise.
26533         * tests/test-c-strstr.c (main): Likewise.
26534         * tests/test-mbscasestr1.c (main): Likewise.
26535         * tests/test-mbscasestr2.c (main): Likewise.
26536         * tests/test-mbsstr1.c (main): Likewise.
26537         * tests/test-mbsstr2.c (main): Likewise.
26538         * tests/test-memmem.c (main): Likewise.
26539         * tests/test-strcasestr.c (main): Likewise.
26540         * tests/test-striconv.c (main): Likewise.
26541         * tests/test-striconveh.c (main): Likewise.
26542         * tests/test-striconveha.c (main): Likewise.
26543         * tests/test-strstr.c (main): Likewise.
26544
26545         * build-aux/git-version-gen: Adjust a comment and the Usage string.
26546
26547         bootstrap: sync from coreutils again
26548         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
26549
26550 2008-03-01  Jim Meyering  <meyering@redhat.com>
26551
26552         bootstrap: sync from coreutils
26553         * build-aux/bootstrap (update_po_files): Copy a .po file into place
26554         also when the target doesn't exist.
26555
26556 2008-03-01  Eric Blake  <ebb9@byu.net>
26557
26558         Fix bugs in last patch.
26559         * lib/memchr2.c (memchr2): Fix typo.
26560         * tests/test-memchr2.c: Test previous bug, and don't use GNU
26561         extension.
26562         Reported by Bruce Korb.
26563
26564         New module 'memchr2'.
26565         * modules/memchr2: New file.
26566         * modules/memchr2-tests: Likewise.
26567         * lib/memchr2.h: Likewise.
26568         * lib/memchr2.c: Likewise, based on memchr.c.
26569         * tests/test-memchr2.c: New test.
26570         * MODULES.html.sh (String handling): Add memchr2.
26571
26572 2008-02-29  Bruno Haible  <bruno@clisp.org>
26573
26574         * modules/freadseek-tests: New file.
26575         * tests/test-freadseek.sh: New file.
26576         * tests/test-freadseek.c: New file.
26577
26578         New module 'freadseek'.
26579         * modules/freadseek: New file.
26580         * lib/freadseek.h: New file.
26581         * lib/freadseek.c: New file.
26582         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
26583
26584 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
26585
26586         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
26587         wydawca.
26588
26589         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
26590         program_invocation_name and program_invocation_short_name are
26591         present.
26592
26593 2008-02-28  Bruno Haible  <bruno@clisp.org>
26594
26595         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
26596         * tests/test-freadptr.sh: Also test non-seekable stdin.
26597
26598 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
26599
26600         * build-aux/bootstrap (source_base, m4_base)
26601         (doc_base, tests_base): New variables.
26602         (gnulib_tool_options): Do not hardcode base directories, use
26603         the above variables instead.
26604
26605 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
26606
26607         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
26608
26609 2008-02-28  Bruno Haible  <bruno@clisp.org>
26610
26611         * modules/freadptr-tests: New file.
26612         * tests/test-freadptr.sh: New file.
26613         * tests/test-freadptr.c: New file.
26614
26615         New module 'freadptr'.
26616         * modules/freadptr: New file.
26617         * lib/freadptr.h: New file.
26618         * lib/freadptr.c: New file.
26619         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
26620
26621 2008-02-26  Karl Berry  <karl@freefriends.org>
26622
26623         Sync from Libtool:
26624         * libltdl/argz.c (argz_add, argz_count): New functions.
26625         * libltdl/argz.in.h: Declare them.
26626         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
26627
26628 2008-02-22  Bruno Haible  <bruno@clisp.org>
26629
26630         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
26631         is a pointer type.  Needed for HP-UX 10.
26632         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
26633         * doc/posix-functions/gmtime_r.texi: Likewise.
26634         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
26635
26636 2008-02-24  Bruno Haible  <bruno@clisp.org>
26637
26638         * modules/environ-tests: New file.
26639         * tests/test-environ.c: New file.
26640
26641         New module 'environ'.
26642         * modules/environ: New file.
26643         * lib/unistd.in.h (environ): New declaration.
26644         * m4/environ.m4: New file.
26645         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
26646         after use.
26647         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
26648         HAVE_DECL_ENVIRON.
26649         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
26650         HAVE_DECL_ENVIRON.
26651         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
26652         wrong claim that 'environ' is missing on some systems.
26653         * modules/execute (Depends-on): Add environ.
26654         * lib/execute.c (environ): Remove fallback declaration.
26655         * modules/pipe (Depends-on): Add environ.
26656         * lib/pipe.c (environ): Remove fallback declaration.
26657         * modules/setenv (Depends-on): Add environ.
26658         * lib/setenv.c (environ): Remove fallback declaration.
26659         * modules/unsetenv (Depends-on): Add environ.
26660         * lib/unsetenv.c (environ): Remove fallback declaration.
26661         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
26662         m4/environ.m4.
26663         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
26664         (gl_PREREQ_UNSETENV): Likewise.
26665
26666 2008-02-24  Bruno Haible  <bruno@clisp.org>
26667
26668         * doc/posix-functions/environ.texi: Document the MacOS X problem.
26669
26670 2008-02-20  Bob Proulx  <bob@proulx.com>
26671
26672         Enable use of older two part flavor 'git describe'.
26673         * build-aux/git-version-gen: If using the older two part flavor of
26674         git version then recreate the third part now present in the
26675         newer three part flavor of git describe.
26676
26677 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
26678
26679         * lib/fts.c (fts_build): Typo correction to comment.
26680
26681 2008-02-17  Bruno Haible  <bruno@clisp.org>
26682
26683         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
26684         generating no-op conflicts.
26685
26686 2008-02-17  Bruno Haible  <bruno@clisp.org>
26687
26688         Speed up by 10%.
26689         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
26690         result_entries, rather than an index-based loop.
26691
26692 2008-02-17  Bruno Haible  <bruno@clisp.org>
26693
26694         Speed up by 25%.
26695         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
26696         'hashcode_cached'.
26697         (entry_create): New function.
26698         (entry_hashcode): Use the cached hashcode if possible.
26699         (read_changelog_file, try_split_merged_entry): Use entry_create.
26700
26701 2008-02-17  Bruno Haible  <bruno@clisp.org>
26702
26703         Speed up from O(n^2) to O(n) for long ChangeLog files.
26704         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
26705         (read_changelog_file): Change implementation of entries_reversed list
26706         to rbtreehash.
26707         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
26708
26709 2008-02-17  Bruno Haible  <bruno@clisp.org>
26710
26711         New option --split-merged-entry.
26712         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
26713         (find_paragraph_end, try_split_merged_entry): New functions.
26714         (long_options): Add option --split-merged-entry.
26715         (usage): Document option --split-merged-entry.
26716         (main): Implement option --split-merged-entry.
26717         Reported by Eric Blake.
26718
26719 2008-02-17  Bruno Haible  <bruno@clisp.org>
26720
26721         * lib/git-merge-changelog.c: Include c-strstr.h.
26722         (main): Support the "git pull --rebase" situation.
26723         * modules/git-merge-changelog (Depends-on): Add c-strstr.
26724         Reported by Eric Blake.
26725
26726 2008-02-16  Eric Blake  <ebb9@byu.net>
26727
26728         Avoid doubling \ in common case of "c-maybe" quoting style.
26729         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
26730         eliding outer quotes.
26731         * lib/quotearg.h: Document this.
26732         * tests/test-quotearg.c (result_strings, inputs, results_g)
26733         (flag_results, locale_results): Test it by adding a new string to
26734         each test group.
26735         (compare_strings): Test new string.
26736
26737 2008-02-13  Eric Blake  <ebb9@byu.net>
26738
26739         Avoid trigraph quoting in default output.
26740         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
26741         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
26742         unless explicitly requested.
26743         * tests/test-quotearg.c (flag_results, main): Add additional tests.
26744
26745 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
26746
26747         Don't rely on signed integer overflowing to negative value.
26748         * lib/getugroups.c (getugroups): Include <limits.h>.
26749         Instead, compare against INT_MAX, and increment only if the test passes.
26750
26751 2008-02-13  Jim Meyering  <meyering@redhat.com>
26752         and Eric Blake  <ebb9@byu.net>
26753
26754         Avoid shadowing warning and compile errors on Linux.
26755         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
26756         forwarding macros on Linux.
26757         (dcgettext): Define a stub, for Linux.
26758         (results_g, main): Avoid warnings.
26759
26760 2008-02-12  Eric Blake  <ebb9@byu.net>
26761
26762         Silence warning in last patch.
26763         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
26764
26765         Quotearg part 4: add tests, fix c-maybe colon quoting.
26766         * lib/quotearg.h: Improve documentation.
26767         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
26768         escapes when adding outer quotes.  When quoting trigraphs, use
26769         valid C notation.  When quoting NUL, omit extra characters if next
26770         character is not digit.  Alter prototype.
26771         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
26772         callers.
26773         * modules/quotearg-tests: New module.
26774         * tests/test-quotearg.c: New test.
26775
26776 2008-02-07  Eric Blake  <ebb9@byu.net>
26777
26778         Quotearg part 3: add flag to control outer quote elision.
26779         * lib/quotearg.h (c_maybe_quoting_style): New style.
26780         (enum quoting_flags): Better documentation of flags.
26781         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
26782         c-maybe style.
26783         (quotearg_buffer_restyled): Handle new flag to elide outer
26784         quotes.
26785
26786         Quotearg part 2: add flag that can control NUL elision.
26787         * lib/quotearg.h (set_quoting_flags): New prototype.
26788         * lib/quotearg.c (struct quoting_options): Add flag field.
26789         (set_quoting_flags): New function.
26790         (quotearg_buffer_restyled): Add flags parameter.
26791         (quotearg_alloc_mem): Set the flag if length cannot be returned.
26792         (quotearg_n_options): Set the flag, since length cannot be
26793         returned.
26794         (quoting_options_from_style): Default flags correctly.
26795
26796         Quotearg part 1: more wrappers, restore quotearg_char state.
26797         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
26798         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
26799         (quotearg_colon_mem): New wrappers.
26800         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
26801         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
26802         functions.
26803         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
26804         (quotearg_colon_mem): New functions.
26805
26806 2008-02-11  Bruno Haible  <bruno@clisp.org>
26807
26808         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
26809         library in the current directory: it does not work with parallel make.
26810         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26811
26812 2008-02-11  Bruno Haible  <bruno@clisp.org>
26813
26814         * .gitattributes: New file.
26815
26816 2008-02-11  Jim Meyering  <meyering@redhat.com>
26817
26818         useless-if-before-free: Fix reversed exit values.
26819         * build-aux/useless-if-before-free: Use correct values
26820         for EXIT_MATCH and EXIT_NO_MATCH.
26821
26822         * build-aux/useless-if-before-free: Close stdout carefully.
26823
26824 2008-02-10  Bruno Haible  <bruno@clisp.org>
26825
26826         New module 'git-merge-changelog'.
26827         * modules/git-merge-changelog: New file.
26828         * lib/git-merge-changelog.c: New file.
26829
26830 2008-02-10  Jim Meyering  <meyering@redhat.com>
26831
26832         useless-if-before-free: New option: --list (-l).
26833
26834         useless-if-before-free: Don't exit immediately upon open failure.
26835         * build-aux/useless-if-before-free: Exit 2 for errors.
26836         Upon failure to open a file, don't exit immediately.
26837         Rather, just warn and continue with any remaining files.
26838
26839 2008-02-10  Bruno Haible  <bruno@clisp.org>
26840
26841         New abstract list operation 'node_set_value'.
26842         * lib/gl_list.h (gl_list_node_set_value): New function.
26843         (struct gl_list_implementation): New field node_set_value.
26844         * lib/gl_list.c (gl_list_node_set_value): New function.
26845         * lib/gl_array_list.c (gl_array_node_set_value): New function.
26846         (gl_array_list_implementation): Update.
26847         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
26848         (gl_carray_list_implementation): Update.
26849         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
26850         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
26851         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
26852         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
26853         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
26854         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
26855         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
26856         Update.
26857         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
26858         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
26859         (gl_sublist_list_implementation): Update.
26860
26861 2008-02-10  Bruno Haible  <bruno@clisp.org>
26862
26863         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
26864         Needed when ELEMENT is #defined to 'some_type *'.
26865
26866 2008-02-10  Jim Meyering  <meyering@redhat.com>
26867
26868         New script and module: useless-if-before-free
26869         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
26870         * build-aux/useless-if-before-free: New file.
26871         * modules/useless-if-before-free: New file.
26872
26873         * build-aux/gitlog-to-changelog: Use committer date, not author date.
26874
26875         xstrtol_error: Fix typo.
26876         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
26877         s/exit_failure/exit_status/.
26878
26879 2008-02-09  Jim Meyering  <meyering@redhat.com>
26880
26881         New script and module: gitlog-to-changelog
26882         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
26883         * modules/gitlog-to-changelog: New file.
26884         * build-aux/gitlog-to-changelog: New file.
26885
26886 2008-02-08  Jim Meyering  <meyering@redhat.com>
26887
26888         Avoid two "parameter unused" warnings.
26889         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
26890         Mark "st" as used.
26891
26892         Use "git COMMAND", not "git-COMMAND".
26893         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
26894         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
26895         * build-aux/git-version-gen: Use "git status", not "git-status".
26896
26897 2008-02-07  Bruno Haible  <bruno@clisp.org>
26898
26899         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
26900         Avoids a crash on Windows Vista.
26901         Reported by Adam Strzelecki <ono@java.pl> via
26902         Simon Josefsson <simon@josefsson.org>.
26903
26904 2008-02-06  Bruno Haible  <bruno@clisp.org>
26905
26906         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
26907         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
26908         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
26909         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
26910         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
26911         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
26912         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
26913         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
26914         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
26915         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
26916         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
26917         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
26918         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
26919         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
26920         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
26921         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
26922         left-adjust flag.
26923         * tests/test-snprintf-posix.h (test_function): Likewise.
26924         * tests/test-sprintf-posix.h (test_function): Likewise.
26925         * tests/test-vasprintf-posix.c (test_function): Likewise.
26926         * doc/posix-functions/fprintf.texi: Update.
26927         * doc/posix-functions/printf.texi: Update.
26928         * doc/posix-functions/snprintf.texi: Update.
26929         * doc/posix-functions/sprintf.texi: Update.
26930         * doc/posix-functions/vfprintf.texi: Update.
26931         * doc/posix-functions/vprintf.texi: Update.
26932         * doc/posix-functions/vsnprintf.texi: Update.
26933         * doc/posix-functions/vsprintf.texi: Update.
26934         Reported by Peter Fales <psfales@alcatel-lucent.com>.
26935
26936 2008-02-06  Bruno Haible  <bruno@clisp.org>
26937
26938         Fix bug introduced on 2008-01-26.
26939         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
26940
26941 2008-02-06  Bruno Haible  <bruno@clisp.org>
26942
26943         Fix bug introduced on 2007-06-10.
26944         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
26945         !NEED_PRINTF_FLAG_ZERO.
26946
26947 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
26948
26949         getloadavg: use libperfstat on AIX5
26950         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
26951
26952 2008-02-03  Bruno Haible  <bruno@clisp.org>
26953
26954         * lib/diffseq.h: Add comments about required #includes.
26955         Reported by Michael Biggs <gnulib@doubleplum.net>.
26956
26957 2008-02-01  Bruno Haible  <bruno@clisp.org>
26958
26959         * users.txt: Add gnuit.
26960
26961 2008-01-31  Bruno Haible  <bruno@clisp.org>
26962
26963         * lib/md4.c (set_uint32): Mark as inline.
26964         * lib/md5.c (set_uint32): Likewise.
26965         * lib/sha1.c (set_uint32): Likewise.
26966         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
26967         * m4/md5.m4 (gl_MD5): Likewise.
26968         * m4/sha1.m4 (gl_SHA1): Likewise.
26969
26970 2008-01-31  Jim Meyering  <meyering@redhat.com>
26971
26972         Use "sizeof VAR", rather than a literal "4".
26973         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
26974         * lib/md4.c (md4_read_ctx): Likewise.
26975         * lib/sha1.c (sha1_read_ctx): Likewise.
26976
26977 2008-01-31  Simon Josefsson  <simon@josefsson.org>
26978
26979         * tests/test-sha1.c: New file, based on test-md5.c.
26980
26981         * modules/crypto/sha1-tests: New file.
26982
26983 2008-01-31  Simon Josefsson  <simon@josefsson.org>
26984
26985         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
26986
26987 2008-01-31  Jim Meyering  <meyering@redhat.com>
26988
26989         Prefer "sizeof v" over the equivalent "4".
26990         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
26991         * lib/md5.c (set_uint32): Likewise.
26992         * lib/sha1.c (set_uint32): Likewise.
26993
26994 2008-01-31  Simon Josefsson  <simon@josefsson.org>
26995
26996         * lib/sha1.c (set_uint32): Mark function as static.
26997
26998 2008-01-31  Simon Josefsson  <simon@josefsson.org>
26999
27000         md2: clarify comments to say that alignment is not required.
27001         * lib/md2.h: Remove warning about alignment in comment.
27002         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
27003         never been required.
27004
27005 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27006
27007         md4: adapt alignment constraint fix from sha1.
27008         * lib/md4.c (set_uint32): New function, from sha1.c
27009         (md4_read_ctx): Use it.
27010         (md4_finish_ctx): Doc fix.
27011         * lib/md4.h: Doc fix.
27012
27013 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27014
27015         md5: adapt alignment constraint fix from sha1.
27016         * lib/md5.c (set_uint32): New function, from sha1.c
27017         (md5_read_ctx): Use it.
27018         (md5_finish_ctx): Doc fix.
27019         * lib/md5.h: Doc fix.
27020
27021 2008-01-30  Peter Palfrader  <weasel@debian.org>
27022
27023         sha1: remove the result buffer alignment constraint
27024         * lib/sha1.c (set_uint32): New function.
27025         (sha1_read_ctx): Rewrite to remove the result buffer alignment
27026         constraint.
27027         (sha1_finish_ctx): Remove comment warning about alignment constraint.
27028         * lib/sha1.h: Likewise.
27029
27030 2008-01-30  Andreas Schwab  <schwab@suse.de>
27031             Bruno Haible  <bruno@clisp.org>
27032
27033         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
27034         correct definition of LDBL_MIN_EXP.
27035
27036 2008-01-30  Karl Berry  <karl@gnu.org>
27037
27038         * config/srclist-update: try to preserve x bit on updates.
27039         * config/srclistvars.sh: update for karl.
27040
27041 2008-01-29  Jim Meyering  <meyering@redhat.com>
27042
27043         vasnprintf.c: Avoid warning about unused label
27044         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
27045         "overflow" label definition and associated code with the
27046         same cpp condition that guards the sole use of that label.
27047
27048 2008-01-26  Bruno Haible  <bruno@clisp.org>
27049
27050         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
27051         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
27052         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
27053         * lib/isnanl-nolibm.h (isnanl): Likewise.
27054         Reported by Paul Eggert <eggert@cs.ucla.edu>.
27055
27056 2008-01-26  Bruno Haible  <bruno@clisp.org>
27057
27058         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
27059         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
27060
27061 2008-01-26  Bruno Haible  <bruno@clisp.org>
27062
27063         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
27064         GCC >= 4.0 built-in.
27065         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
27066
27067 2008-01-26  Bruno Haible  <bruno@clisp.org>
27068
27069         Rename isnan, applicable to 'double' only, to isnand.
27070         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
27071         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
27072         (configure.ac): Update.
27073         (Include): Replace "isnan.h" with "isnand.h".
27074         * m4/isnand.m4: Renamed from m4/isnan.m4.
27075         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
27076         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
27077         instead of isnan.c.
27078         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
27079         instead of HAVE_ISNAN_IN_LIBC.
27080         (isnand): Renamed from isnan.
27081         * lib/isnand.c: New file.
27082         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
27083         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
27084         (Makefile.am): Update.
27085         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
27086         Include isnand.h instead of isnan.h.
27087         (main): Test isnand instead of isnan.
27088         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
27089         isnan-nolibm.
27090         * modules/frexp (Depends-on): Likewise.
27091         * modules/frexp-tests (Depends-on): Likewise.
27092         * modules/frexp-nolibm (Depends-on): Likewise.
27093         * modules/frexp-nolibm-tests (Depends-on): Likewise.
27094         * modules/isfinite (Depends-on): Likewise.
27095         * modules/round-tests (Depends-on): Likewise.
27096         * modules/signbit (Depends-on): Likewise.
27097         * modules/signbit-tests (Depends-on): Likewise.
27098         * modules/snprintf-posix (Depends-on): Likewise.
27099         * modules/sprintf-posix (Depends-on): Likewise.
27100         * modules/trunc-tests (Depends-on): Likewise.
27101         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
27102         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
27103         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
27104         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
27105         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
27106         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
27107         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
27108         * modules/vasnprintf-posix (Depends-on): Likewise.
27109         * modules/vasprintf-posix (Depends-on): Likewise.
27110         * modules/vfprintf-posix (Depends-on): Likewise.
27111         * modules/vsnprintf-posix (Depends-on): Likewise.
27112         * modules/vsprintf-posix (Depends-on): Likewise.
27113         * lib/frexp.c: Include isnand.h instead of isnan.h.
27114         (ISNAN): Set to isnand instead of isnan.
27115         * lib/isfinite.c: Include isnand.h instead of isnan.h.
27116         (gl_isfinited): Use isnand instead of isnan.
27117         * lib/signbitd.c: Include isnand.h instead of isnan.h.
27118         (gl_signbitd): Use isnand instead of isnan.
27119         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
27120         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
27121         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
27122         (main): Use isnand instead of isnan.
27123         * tests/test-round1.c: Include isnand.h.
27124         (main): Use isnand instead of isnan.
27125         * tests/test-round2.c: Include isnand.h instead of isnan.h.
27126         (ISNAN): Set to isnand instead of isnan.
27127         * tests/test-trunc1.c: Include isnand.h.
27128         (main): Use isnand instead of isnan.
27129         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
27130         (equal): Use isnand instead of isnan.
27131         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
27132         isnand-nolibm.
27133         * NEWS: Mention the change.
27134
27135 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
27136             Bruno Haible  <bruno@clisp.org>
27137
27138         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
27139         the GCC builtins for signbits are present and set
27140         REPLACE_SIGNBIT_USING_GCC if so.
27141         * lib/math.in.h (signbit): Define using GCC builtins if
27142         REPLACE_SIGNBIT_USING_GCC is set.
27143         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
27144         REPLACE_SIGNBIT_USING_GCC.
27145         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
27146
27147 2008-01-25  Jim Meyering  <meyering@redhat.com>
27148
27149         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
27150         * lib/poll.c: Include <config.h>, not "config.h".
27151         * tests/test-getaddrinfo.c: Likewise.
27152
27153 2008-01-25  Simon Josefsson  <simon@josefsson.org>
27154
27155         * modules/sockets-tests: New file.
27156
27157 2008-01-24  Simon Josefsson  <simon@josefsson.org>
27158
27159         * modules/sockets: New module, can be used to call WSA_Startup and
27160         WSA_Cleanup when needed.
27161
27162         * lib/sockets.h, lib/sockets.c: New files.
27163
27164         * m4/sockets.m4: New file.
27165
27166         * tests/test-sockets.c: New file.
27167
27168 2008-01-19  Bruno Haible  <bruno@clisp.org>
27169
27170         * doc/posix-headers: Renamed from doc/headers.
27171         * doc/posix-functions: Renamed from doc/functions.
27172         * doc/gnulib.texi: Update.
27173
27174 2008-01-19  Bruno Haible  <bruno@clisp.org>
27175
27176         * doc/glibc-functions/strcasestr.texi: Include contents of
27177         doc/functions/strcasestr.texi, fixing the list of platforms.
27178         * doc/functions/strcasestr.texi: Remove file.
27179
27180 2008-01-19  Bruno Haible  <bruno@clisp.org>
27181
27182         * doc/glibc-functions/memmem.texi: Include contents of
27183         doc/functions/memmem.texi.
27184         * doc/functions/memmem.texi: Remove file.
27185
27186 2008-01-18  Bruno Haible  <bruno@clisp.org>
27187
27188         * doc/glibc-functions/*.texi: New files.
27189         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
27190         to use the new files.
27191
27192 2008-01-17  Bruno Haible  <bruno@clisp.org>
27193
27194         * tests/test-gethostname.c (main): Fix printf statement.
27195
27196 2008-01-17  Simon Josefsson  <simon@josefsson.org>
27197
27198         * modules/gethostname-tests: New file.
27199
27200         * tests/test-gethostname.c: New file.
27201
27202 2008-01-17  Simon Josefsson  <simon@josefsson.org>
27203
27204         * lib/gethostname.c: Include string.h unconditionally, strncpy is
27205         used by the UNAME case.  Reported by Bruno Haible
27206         <bruno@clisp.org>.
27207
27208 2008-01-17  Eric Blake  <ebb9@byu.net>
27209
27210         Convert c-strcasestr to be more efficient.
27211         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
27212         (Depends-on): Add c-strcase, remove malloca, strnlen.
27213         * tests/test-c-strcasestr.c (main): Enhance test.
27214         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
27215
27216 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
27217
27218         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
27219         Use it in creating po/Makevars.
27220
27221 2008-01-15  Simon Josefsson  <simon@josefsson.org>
27222
27223         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
27224         Applications that requires it should initialize libgcrypt
27225         manually.
27226
27227 2008-01-16  Simon Josefsson  <simon@josefsson.org>
27228
27229         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
27230
27231 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
27232
27233         Fix problem with getdate on mingw32 reported by Simon Josefsson
27234         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
27235         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
27236         tzname", when deciding whether to declare tzname.
27237         * lib/strftime.c (tzname): Likewise.
27238
27239 2008-01-15  Bruno Haible  <bruno@clisp.org>
27240
27241         Work around a MacOS X 10.5 bug in frexpl().
27242         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
27243         * doc/functions/frexpl.texi: Document the bug.
27244         Reported by Elias Pipping <pipping@gentoo.org>.
27245
27246 2008-01-14  Eric Blake  <ebb9@byu.net>
27247
27248         Touch up previous patch.
27249         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
27250         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
27251
27252         Convert strcasestr module to use Two-Way algorithm.
27253         * modules/strcasestr-simple: New module, based on the old
27254         strcasestr, but with Two-Way rather than KMP.
27255         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
27256         * lib/string.in.h (rpl_strcasestr): Declare.
27257         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
27258         performance.
27259         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
27260         * modules/string (Makefile.am): Support strcasestr.
27261         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
27262         * modules/strcasestr-tests (Depends-on): Check for alarm.
27263         * tests/test-strcasestr.c: Augment test.
27264         * lib/str-two-way.h: Clean up stray macro.
27265         * NEWS: Document new module.
27266         * MODULES.html.sh (string handling): Likewise.
27267         * doc/functions/strcasestr.texi: New file.
27268         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
27269         here, since it is not a POSIX function.
27270
27271 2008-01-14  Colin Watson  <cjwatson@debian.org>
27272             Bruno Haible  <bruno@clisp.org>
27273
27274         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
27275         works fine; if not, set REPLACE_STRSIGNAL.
27276         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
27277         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
27278         REPLACE_STRSIGNAL.
27279         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
27280         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
27281         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
27282
27283 2008-01-14  Bruno Haible  <bruno@clisp.org>
27284
27285         * modules/strsignal (Include): Change to <string.h>.
27286
27287 2008-01-14  Colin Watson  <cjwatson@debian.org>
27288
27289         * modules/argp (Notice): Add a notice recommending to change
27290         XGETTEXT_OPTIONS.
27291         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
27292
27293 2008-01-13  Colin Watson  <cjwatson@debian.org>
27294
27295         * modules/strsignal-tests: New file.
27296         * tests/test-strsignal.c: New file.
27297
27298         * lib/strsignal.c: New file, from glibc with modifications.
27299         * lib/siglist.h: New file, from glibc with modifications.
27300         * lib/string.in.h (strsignal): New declaration.
27301         * m4/strsignal.m4: New file.
27302         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
27303         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
27304         * modules/strsignal: New file.
27305         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
27306         HAVE_DECL_STRSIGNAL.
27307
27308 2008-01-13  Bruno Haible  <bruno@clisp.org>
27309
27310         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
27311         locale encoding is not ASCII. Needed for OpenBSD 4.0.
27312         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
27313         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
27314
27315 2008-01-13  Bruno Haible  <bruno@clisp.org>
27316
27317         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
27318         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
27319         * lib/argp.h (__attribute__): Likewise.
27320         * lib/c-stack.c (__attribute__): Likewise.
27321         * lib/error.h (__attribute__): Likewise.
27322         * lib/fts.c (__attribute__): Likewise.
27323         * lib/openat.h (__attribute__): Likewise.
27324         * lib/stdio.in.h (__attribute__): Likewise.
27325         * lib/string.in.h (__attribute__): Likewise.
27326         * lib/utimens.c (__attribute__): Likewise.
27327         * lib/vasnprintf.h (__attribute__): Likewise.
27328         * lib/xalloc.h (__attribute__): Likewise.
27329         * lib/xprintf.h (__attribute__): Likewise.
27330         * lib/xstrtol.h (__attribute__): Likewise.
27331         * lib/xvasprintf.h (__attribute__): Likewise.
27332
27333 2008-01-12  Bruno Haible  <bruno@clisp.org>
27334
27335         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
27336         * doc/glibc-headers/a.out.texi: New file.
27337         * doc/glibc-headers/aliases.texi: New file.
27338         * doc/glibc-headers/alloca.texi: New file.
27339         * doc/glibc-headers/ar.texi: New file.
27340         * doc/glibc-headers/argp.texi: New file.
27341         * doc/glibc-headers/argz.texi: New file.
27342         * doc/glibc-headers/byteswap.texi: New file.
27343         * doc/glibc-headers/crypt.texi: New file.
27344         * doc/glibc-headers/endian.texi: New file.
27345         * doc/glibc-headers/envz.texi: New file.
27346         * doc/glibc-headers/err.texi: New file.
27347         * doc/glibc-headers/error.texi: New file.
27348         * doc/glibc-headers/execinfo.texi: New file.
27349         * doc/glibc-headers/fpu_control.texi: New file.
27350         * doc/glibc-headers/fstab.texi: New file.
27351         * doc/glibc-headers/fts.texi: New file.
27352         * doc/glibc-headers/getopt.texi: New file.
27353         * doc/glibc-headers/ieee754.texi: New file.
27354         * doc/glibc-headers/ifaddrs.texi: New file.
27355         * doc/glibc-headers/libintl.texi: New file.
27356         * doc/glibc-headers/mcheck.texi: New file.
27357         * doc/glibc-headers/mntent.texi: New file.
27358         * doc/glibc-headers/obstack.texi: New file.
27359         * doc/glibc-headers/paths.texi: New file.
27360         * doc/glibc-headers/printf.texi: New file.
27361         * doc/glibc-headers/pty.texi: New file.
27362         * doc/glibc-headers/resolv.texi: New file.
27363         * doc/glibc-headers/shadow.texi: New file.
27364         * doc/glibc-headers/sysexits.texi: New file.
27365         * doc/glibc-headers/ttyent.texi: New file.
27366
27367 2008-01-12  Jim Meyering  <meyering@redhat.com>
27368
27369         announce-gen: emit Gnulib's git-based version string.
27370         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
27371         New option --gnulib-version=V, where V is expected to be
27372         the output of running git describe in the gnulib directory.
27373         (get_tool_versions): Request feedback on xdelta.  I suspect it's
27374         not useful, and plan to stop publishing an xdelta file with each
27375         coreutils release.
27376
27377         * build-aux/announce-gen: Also check for lzma-compressed files.
27378
27379 2008-01-11  Bruno Haible  <bruno@clisp.org>
27380
27381         * tests/test-memmem.c (main): Increase maximum allowed time.
27382         * tests/test-strstr.c (main): Likewise.
27383
27384 2008-01-11  Bruno Haible  <bruno@clisp.org>
27385
27386         * doc/functions/memmem.texi: Add more precisions about platforms.
27387         * doc/functions/strstr.texi: Likewise.
27388
27389 2008-01-10  Eric Blake  <ebb9@byu.net>
27390
27391         * m4/strstr.m4: Delete cruft from copy-n-paste.
27392         Reported by Bruno Haible.
27393
27394 2008-01-10  Bruno Haible  <bruno@clisp.org>
27395
27396         Make c-strstr rely on strstr.
27397         * lib/c-strstr.c: Don't include str-kmp.h.
27398         (c_strstr): Define in terms of strstr.
27399         * modules/c-strstr (Files): Remove lib/str-kmp.h.
27400         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
27401
27402 2008-01-10  Bruno Haible  <bruno@clisp.org>
27403
27404         * doc/gnulib.texi (String Functions in C Locale): New section.
27405         * doc/c-ctype.texi: New file.
27406         * doc/c-strcase.texi: New file.
27407         * doc/c-strcaseeq.texi: New file.
27408         * doc/c-strcasestr.texi: New file.
27409         * doc/c-strstr.texi: New file.
27410         * doc/c-strtod.texi: New file.
27411         * doc/c-strtold.texi: New file.
27412
27413 2008-01-10  Eric Blake  <ebb9@byu.net>
27414
27415         * lib/relocatable.h: Fix a comment.
27416
27417 2008-01-10  Eric Blake  <ebb9@byu.net>
27418
27419         Share two-way algorithm.
27420         * lib/str-two-way.h: New file, merged from...
27421         * lib/memmem.c: ...here...
27422         * lib/strstr.c: ...and here.
27423         * modules/memmem (Files): Use it.
27424         * modules/strstr (Files): Likewise.
27425
27426         Avoid quadratic strstr implementations.
27427         * lib/strstr.c: New file.
27428         * m4/strstr.m4: Likewise.
27429         * modules/strstr: Likewise.
27430         * modules/strstr-tests: Likewise.
27431         * tests/test-strstr.c: Likewise.
27432         * lib/string.in.h (rpl_strstr): Declare.
27433         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
27434         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
27435         * modules/string (Makefile.am): Likewise.
27436         * MODULES.html.sh (string handling): Mention new module.
27437         * doc/functions/strstr.texi (strstr): Document the bug.
27438
27439 2008-01-10  Bruno Haible  <bruno@clisp.org>
27440
27441         * lib/relocatable.h (relocate): State whether result is freshly
27442         allocated or not.
27443         * lib/relocatable.c (relocate): Return a freshly allocated string
27444         instead of a pointer to a privately held string.
27445         Reported by Sylvain Beucler <beuc@gnu.org>.
27446
27447 2008-01-10  Colin Watson  <cjwatson@debian.org>
27448
27449         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
27450         s/S_ISNLK/S_ISLNK/.
27451
27452 2008-01-09  Bruno Haible  <bruno@clisp.org>
27453
27454         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
27455         and other files.
27456         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
27457         if it's only a guess.
27458         * modules/memmem: Simplify by depending on memmem-simple.
27459
27460 2008-01-09  Bruno Haible  <bruno@clisp.org>
27461
27462         Work around OpenBSD 4.0 tdelete() bug.
27463         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
27464         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
27465         macros and don't redefine the enum values.
27466         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
27467         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
27468         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
27469
27470 2008-01-09  Bruno Haible  <bruno@clisp.org>
27471
27472         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
27473         (main): Don't perform the tests if setlocale did not install a UTF-8
27474         locale. Needed on OpenBSD 4.0.
27475         * modules/wcwidth-tests (Depends-on): Add localcharset.
27476
27477 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
27478
27479         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
27480         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
27481         * NEWS: announce this.
27482         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
27483
27484 2008-01-09  Simon Josefsson  <simon@josefsson.org>
27485         and Eric Blake  <ebb9@byu.net>
27486
27487         Add memmem-simple module.
27488         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
27489         (gl_FUNC_MEMMEM): Separate performance from presence checks.
27490         * modules/memmem-simple: New file.
27491         * modules/memmem (Description): Tweak.
27492         * MODULES.html.sh (string handling): Mention new module.
27493         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
27494         addressed by memmem-simple.
27495         * NEWS: Document the difference.
27496
27497 2008-01-09  Eric Blake  <ebb9@byu.net>
27498
27499         Give gcc some memmem optimization hints.
27500         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
27501         (strcasestr): Declare as pure.
27502         * modules/memmem (Maintainer): Claim my implementation.
27503
27504 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27505
27506         Support AIX 6.1 and higher.
27507         * build-aux/config.libpath: Likewise.
27508         * build-aux/config.rpath: Likewise.
27509
27510 2008-01-08  Jim Meyering  <meyering@redhat.com>
27511             Bruno Haible  <bruno@clisp.org>
27512
27513         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
27514         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
27515         Reported by Peter Fales in
27516         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
27517
27518 2008-01-08  Bruno Haible  <bruno@clisp.org>
27519
27520         * modules/unictype/category-of (Depends-on): Add
27521         unictype/category-none.
27522         * modules/unictype/category-and-tests (Depends-on): Add
27523         unictype/category-{L,N,Lu,Nd}.
27524         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
27525         * modules/unictype/category-or-tests (Depends-on): Add
27526         unictype/category-{L,N}.
27527         * modules/unictype/category-name-tests (Depends-on): Add
27528         unictype/category-{Z,Nl}.
27529         Reported by Simon Josefsson.
27530
27531 2008-01-08  Bruno Haible  <bruno@clisp.org>
27532
27533         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
27534         convention better.
27535         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
27536         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
27537         Reported by Peter Miller <millerp@canb.auug.org.au>.
27538
27539 2008-01-08  Eric Blake  <ebb9@byu.net>
27540
27541         Rewrite memmem to guarantee linear complexity without malloc.
27542         * lib/memmem.c (memmem): Use Two-Way rather than
27543         Knuth-Morris-Pratt, to allow O(1) space usage.
27544         (critical_factorization, two_way_short_needle)
27545         (two_way_long_needle): New functions.
27546         (knuth_morris_pratt): Delete.
27547         * modules/memmem (Depends-on): No longer need malloca or stdbool.
27548         Add stdint.
27549         * tests/test-memmem.c (main): Add tests for periodic needle and
27550         sublinear performance.
27551         * doc/functions/memmem.texi (memmem): Document other deficiencies
27552         in cygwin and older glibc.
27553
27554 2008-01-08  Bruno Haible  <bruno@clisp.org>
27555
27556         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
27557         augmentation.
27558
27559 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
27560
27561         Add a configure time option: --disable-acl.
27562         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
27563         AC_ARG_ENABLE(acl).
27564
27565 2008-01-06  Simon Josefsson  <simon@josefsson.org>
27566
27567         * tests/test-localename.c: Don't include obsolete "setenv.h".
27568
27569         * modules/localename-tests (Depends-on): Need unsetenv.
27570
27571 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27572
27573         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
27574
27575 2008-01-06  Colin Watson  <cjwatson@debian.org>
27576
27577         * users.txt: Add man-db.
27578
27579 2008-01-07  Bruno Haible  <bruno@clisp.org>
27580
27581         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
27582         previous section name.
27583
27584 2008-01-07  Bruno Haible  <bruno@clisp.org>
27585
27586         * lib/progname.c (set_program_name): Don't strip off a leading
27587         "lt-" prefix outside a .libs directory.
27588         Suggested by Paul Eggert.
27589
27590 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
27591             Bruno Haible  <bruno@clisp.org>
27592
27593         Improve memory cleanup in 'relocatable' module.
27594         * lib/relocatable.h (compute_curr_prefix): Change return type to
27595         'char *'.
27596         * lib/relocatable.c (compute_curr_prefix): Change return type to
27597         'char *'. Free curr_installdir after use.
27598         (relocate): Free curr_prefix_better after use.
27599         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
27600
27601 2008-01-01  Bruno Haible  <bruno@clisp.org>
27602
27603         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
27604         failure on older glibc systems.
27605         Reported by Peter Fales <psfales@alcatel-lucent.com>.
27606
27607 2008-01-05  Eric Blake  <ebb9@byu.net>
27608
27609         Avoid quadratic system memmem.
27610         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
27611         Reported by Ralf Wildenhues.
27612
27613         Fix memmem test for mingw.
27614         * modules/memmem-tests (configure.ac): Check for alarm.
27615         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
27616         it.
27617         * doc/functions/memmem.texi: New file.
27618         * doc/gnulib.texi (Function Substitutes): Add memmem.
27619         Reported by Bruno Haible.
27620
27621 2008-01-04  Bruno Haible  <bruno@clisp.org>
27622
27623         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
27624         Require gl_HEADER_STRINGS_H_DEFAULTS, not
27625         gl_HEADER_STRING_H_DEFAULTS.
27626
27627 2008-01-04  Eric Blake  <ebb9@byu.net>
27628
27629         Shorten duration of memmem test.
27630         * tests/test-memmem.c (main): Use alarm to declare failure if test
27631         is taking too long.
27632         Reported by Ralf Wildenhues.
27633
27634 2007-12-21  Simon Josefsson  <simon@josefsson.org>
27635
27636         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
27637         string, needed by strerror.
27638
27639 2008-01-03  Colin Watson  <cjwatson@debian.org>
27640             Bruno Haible  <bruno@clisp.org>
27641
27642         * doc/gnulib-tool.texi (Localization): New section.
27643
27644 2008-01-02  Bruno Haible  <bruno@clisp.org>
27645
27646         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
27647         variables to 'unsigned char *' type.
27648         Reported by Paul Eggert.
27649
27650 2008-01-02  Jim Meyering  <jim@meyering.net>
27651
27652         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
27653
27654 2007-12-31  Jim Meyering  <jim@meyering.net>
27655
27656         Avoid use of private FTS type name.
27657         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
27658
27659 2007-12-30  Karl Berry  <karl@gnu.org>
27660
27661         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
27662         work around defect in Texinfo and/or the standalone Info browser.
27663
27664 2007-12-30  Bruno Haible  <bruno@clisp.org>
27665
27666         Unify 5 copies of the KMP code.
27667         * lib/str-kmp.h: New file.
27668         * lib/c-strcasestr.c: Include str-kmp.h.
27669         (knuth_morris_pratt): Remove function.
27670         (c_strcasestr): Update.
27671         * lib/c-strstr.c: Include str-kmp.h.
27672         (knuth_morris_pratt): Remove function.
27673         (c_strcasestr): Update.
27674         * lib/mbscasestr.c: Include str-kmp.h.
27675         (knuth_morris_pratt_unibyte): Remove function.
27676         * lib/mbsstr.c: Include str-kmp.h.
27677         (knuth_morris_pratt_unibyte): Remove function.
27678         * lib/strcasestr.c: Include str-kmp.h.
27679         (knuth_morris_pratt): Remove function.
27680         (strcasestr): Update.
27681         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
27682         * modules/c-strstr (Files): Likewise.
27683         * modules/mbscasestr (Files): Likewise.
27684         * modules/mbsstr (Files): Likewise.
27685         * modules/strcasestr (Files): Likewise.
27686         Suggested by Paul Eggert.
27687
27688 2007-12-30  Bruno Haible  <bruno@clisp.org>
27689
27690         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
27691         defined.
27692
27693 2007-12-30  Bruno Haible  <bruno@clisp.org>
27694
27695         * lib/xmalloca.h: Include xalloc.h.
27696         (xnmalloca): New macro.
27697
27698 2007-12-30  Bruno Haible  <bruno@clisp.org>
27699
27700         * lib/malloca.h (nmalloca): New macro.
27701         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
27702         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
27703         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
27704         knuth_morris_pratt_multibyte): Likewise.
27705         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
27706         knuth_morris_pratt_multibyte): Likewise.
27707         * lib/memmem.c (knuth_morris_pratt): Likewise.
27708         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
27709
27710 2007-12-25  Bruno Haible  <bruno@clisp.org>
27711
27712         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
27713         * lib/glob.c: Don't include openat.h.
27714         (link_exists2_p): Add back the code that deals with the
27715         !GLOB_ALTDIRFUNC case.
27716         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
27717         let it do the filename concatenation.
27718         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
27719         * modules/glob (Depends-on): Remove openat.
27720
27721 2007-12-31  Bruno Haible  <bruno@clisp.org>
27722
27723         * modules/dirfd (License): Change to LGPLv2+.
27724         Approved by Jim Meyering.
27725
27726 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
27727
27728         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
27729         when multiplying M by sizeof (size_t).
27730
27731 2007-12-10  Martin Lambers  <marlam@marlam.de>
27732
27733         Override getpagesize on mingw.
27734         * lib/getpagesize.c: New file.
27735         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
27736         * modules/getpagesize (Files): Add lib/getpagesize.c.
27737         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
27738         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
27739         REPLACE_GETPAGESIZE.
27740         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
27741
27742 2007-12-25  Bruno Haible  <bruno@clisp.org>
27743
27744         * modules/localcharset (Notice): New field.
27745         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
27746         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
27747
27748 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
27749             Bruno Haible  <bruno@clisp.org>
27750
27751         Avoid using the syntax symbol() in formatted documentation.
27752         * MODULES.html.sh (func_module): When replacing symbol() with a
27753         hyperlink, remove the parentheses. Show an error if some remain.
27754         Recognize and render the '...' syntax.
27755         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
27756         Rework. Add paragraph about GCC's inlining.
27757         * doc/alloca.texi: Likewise.
27758         * doc/error.texi: Remove parentheses from symbol reference.
27759         * doc/gnulib-intro.texi: Likewise.
27760         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
27761         * modules/fnmatch (Description): Reword to say "the ... function".
27762         * modules/full-read (Description): Likewise.
27763         * modules/full-write (Description): Likewise.
27764         * modules/safe-read (Description): Likewise.
27765         * modules/safe-write (Description): Likewise.
27766         * modules/strchrnul (Description): Likewise.
27767         * modules/trim (Description): Likewise.
27768         * modules/error (Description): Remove parentheses from symbol
27769         references.
27770         * modules/verror (Description): Likewise.
27771         Reported by Karl Berry.
27772
27773 2007-12-25  Bruno Haible  <bruno@clisp.org>
27774
27775         Fixup after 2007-10-16 commit.
27776         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
27777
27778 2007-12-24  Bruno Haible  <bruno@clisp.org>
27779
27780         Make --enable-relocatable work with DESTDIR.
27781         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
27782         to compute installdir from destprog.
27783         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
27784         also set the RELOC_DESTDIR variable.
27785         Reported by Левашев Иван <octagram@bluebottle.com>.
27786
27787 2007-12-24  Bruno Haible  <bruno@clisp.org>
27788
27789         Fix link error due to xalloc_die().
27790         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
27791         of xreadlink.
27792         * lib/relocwrapper.c: Update comments.
27793         * build-aux/install-reloc: Remove xreadlink.c from file list.
27794         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
27795         xreadlink.c.
27796         Reported by Левашев Иван <octagram@bluebottle.com>.
27797
27798 2007-12-24  Bruno Haible  <bruno@clisp.org>
27799
27800         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
27801         * lib/setenv.h: Remove file.
27802         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
27803         lib/setenv.h.
27804         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
27805         (Depends-on): Add stdlib.
27806         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
27807         gl_FUNC_UNSETENV.
27808         (Include): Replace setenv.h with <stdlib.h>.
27809         * modules/unsetenv: New file.
27810         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
27811         * lib/unsetenv.c: Include <stdlib.h> first.
27812         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
27813         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
27814         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
27815         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
27816         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
27817         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
27818         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
27819         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
27820         * doc/functions/unsetenv.texi: Update.
27821         * modules/xsetenv (Depends-on): Add unsetenv.
27822         * modules/getdate (Depends-on): Likewise.
27823         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
27824         * lib/xsetenv.c: Don't include setenv.h.
27825         * lib/getdate.y: Likewise.
27826         * lib/relocwrapper.c: Likewise.
27827         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
27828         (Depends-on): Add stdlib.
27829         * NEWS: Mention the changes.
27830         Reported by Левашев Иван <octagram@bluebottle.com>.
27831
27832 2007-12-23  Bruno Haible  <bruno@clisp.org>
27833
27834         * lib/memmem.c (memmem): Use lowercase variable names. Tab
27835         indentation.
27836
27837 2007-12-23  Bruno Haible  <bruno@clisp.org>
27838
27839         * lib/c-strcasestr.c: Add more comments.
27840         * lib/c-strstr.c: Likewise.
27841         * lib/mbscasestr.c: Likewise.
27842         * lib/mbsstr.c: Likewise.
27843         * lib/strcasestr.c: Likewise.
27844         * lib/memmem.c: Likewise.
27845
27846 2007-12-23  Bruno Haible  <bruno@clisp.org>
27847
27848         * tests/test-memmem.c: Include <string.h> first.
27849
27850 2007-12-22  Bruno Haible  <bruno@clisp.org>
27851
27852         * gnulib-tool (func_create_testdir): Change $auxdir while generating
27853         the contents of $testsbase.
27854         Reported by Ralf Wildenhues.
27855
27856 2007-12-22  Bruno Haible  <bruno@clisp.org>
27857
27858         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
27859         two variables local_ldadd_before, local_ldadd_last.
27860
27861 2007-12-20  Eric Blake  <ebb9@byu.net>
27862
27863         Work around circular library issue when cross-compiling.
27864         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
27865         that progname.o does not need to pull in rpl_memcmp.
27866
27867 2007-12-19  Eric Blake  <ebb9@byu.net>
27868
27869         Fix memmem to avoid O(n^2) worst-case complexity.
27870         * lib/memmem.c (knuth_morris_pratt): New function.
27871         (memmem): Use it if first few naive iterations fail.
27872         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
27873         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
27874         * modules/memchr (License): Likewise.
27875         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
27876         malloca.
27877         * tests/test-memmem.c: Rewrite, borrowing ideas from
27878         test-mbsstr1.c; the old version wouldn't even compile!
27879         * modules/memmem-tests: New file.
27880         * lib/string.in.h (rpl_memmem): Add declaration.
27881         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
27882         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
27883         REPLACE_MEMMEM.
27884
27885 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
27886
27887         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
27888         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
27889         before any system include files, and undef after them all.  This
27890         should fix a problem on VMS reported by John E. Malmberg in
27891         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
27892
27893 2007-12-17  Eric Blake  <ebb9@byu.net>
27894
27895         Revert addition of verify, for BSD/OS.
27896         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
27897         can't handle large files, for the sake of obsolete platforms.
27898         * modules/fseeko (Depends-on): Remove verify.
27899         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
27900         * doc/functions/ftello.texi (ftello): Likewise.
27901         * doc/functions/fgetpos.texi (fgetpos): Likewise.
27902         Reported by Larry Jones.
27903
27904 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
27905
27906         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
27907         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
27908
27909 2007-12-17  Jim Meyering  <meyering@redhat.com>
27910
27911         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
27912         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
27913         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
27914         * modules/getcwd (Depends-on): Add openat.
27915         Reported by Petr Salinger.
27916
27917 2007-12-17  Bruno Haible  <bruno@clisp.org>
27918
27919         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
27920         avoid a segmentation fault of the configure test on x86_64 systems.
27921
27922 2007-12-15  Jim Meyering  <meyering@redhat.com>
27923
27924         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
27925
27926 2007-12-13  Eric Blake  <ebb9@byu.net>
27927
27928         Another fseek test.
27929         * tests/test-fseek.c (main): Also test ungetc handling.
27930         * tests/test-fseeko.c (main): Likewise.
27931         * modules/fseeko (Depends-on): Add verify.
27932         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
27933         large.
27934         Reported by Larry Jones.
27935
27936         Fix fseeko on mingw.
27937         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
27938         seek.
27939
27940         Beef up fseek tests.
27941         * tests/test-fseek.c (main): Also test eof handling.
27942         * tests/test-fseeko.c (main): Likewise.
27943         Reported by Larry Jones.
27944
27945 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
27946
27947         Fix fseeko on BSD-based platforms.
27948         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
27949         successful seek.
27950
27951 2007-12-12  Eric Blake  <ebb9@byu.net>
27952
27953         Allow circular dependency of separate libtests.a
27954         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
27955         when use_libtests.
27956
27957 2007-12-11  Eric Blake  <ebb9@byu.net>
27958
27959         Fix bug with -0.0L in previous patch.
27960         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
27961         * tests/test-isnan.c (main): Also test on zeroes.
27962         * tests/test-isnanf.c (main): Likewise.
27963         * tests/test-isnanl.h (main): Likewise.
27964
27965         Detect pseudo-denormals on x86 even when cross-compiling.
27966         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
27967         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
27968         invalid bit patterns that happen to satisfy ==.
27969
27970         Avoid link failures with separate libtests.a.
27971         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
27972         last, to satisfy circular dependencies.
27973
27974 2007-12-11  Eric Blake  <ebb9@byu.net>
27975         and Bruno Haible  <bruno@clisp.org>
27976
27977         Fix OpenBSD 4.0 <float.h> handling of long double.
27978         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
27979         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
27980         * doc/headers/float.texi (float.h): Document OpenBSD bug.
27981
27982 2007-12-11  Jim Meyering  <meyering@redhat.com>
27983
27984         * users.txt: Add libvirt.
27985
27986         Support versions of autoconf prior to 2.59c.
27987         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
27988         if it is not already defined.
27989
27990 2007-12-09  Bruno Haible  <bruno@clisp.org>
27991
27992         Let 'gnulib-tool --import' collect sources needed for the tests in
27993         tests/ rather than in lib/.
27994         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
27995         argument. If true, add rules to generate libtests.a, and put libtests.a
27996         into $(LDADD). Consider source files in subdirectories and set
27997         uses_subdirs.
27998         (func_emit_initmacro_start, func_emit_initmacro_end,
27999         func_emit_initmacro_done): Pass all arguments explicitly.
28000         (func_import): Determine two module lists main_modules,
28001         testsrelated_modules. Determine use_libtests. Determine two variables
28002         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
28003         instead of just sed_transform_lib_file. Determine two variables
28004         main_files and testsrelated_files. Compute 'files' as the union of
28005         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
28006         func_add_or_update. In the generated gnulib-comp.m4, collect the
28007         object files for tests/ in different variables than those for lib/.
28008         Substitute LIBTESTS_LIBDEPS.
28009         (func_create_testdir): Combine the uses_subdirs results from
28010         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
28011
28012 2007-12-09  Bruno Haible  <bruno@clisp.org>
28013
28014         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
28015         the build-aux directory.
28016
28017 2007-12-09  Bruno Haible  <bruno@clisp.org>
28018
28019         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
28020         introduced on 2006-09-09.
28021
28022 2007-12-07  Jim Meyering  <meyering@redhat.com>
28023
28024         Let these macros work also with autoconf-2.59.
28025         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
28026         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
28027         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
28028
28029 2007-12-06  Jim Meyering  <meyering@redhat.com>
28030
28031         Avoid a configure-time syntax error in gl_FUNC_ACL.
28032         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
28033         function in each branch, before testing the cache variable.
28034
28035 2007-12-04  Eric Blake  <ebb9@byu.net>
28036
28037         Make scripts executable.
28038         * build-aux/config.guess: Add execute permissions.
28039         * build-aux/config.sub: Likewise.
28040         * build-aux/gendocs.sh: Likewise.
28041
28042         Fix frexp on mingw.
28043         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
28044         cross-compiling.
28045         * doc/functions/frexp.texi (frexp): Document the bug.
28046
28047         Make cygwin fseeko check more reliable.
28048         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
28049         version numbers, rather than unrelated feature check.
28050         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
28051         * doc/functions/ftello.texi (ftello): Likewise.
28052         Reported by Bruno Haible.
28053
28054         * m4/strerror.m4: Bump version number.
28055
28056 2007-12-03  Bruno Haible  <bruno@clisp.org>
28057
28058         * doc/functions/mprotect.texi: Mention the mingw problem.
28059
28060 2007-12-03  Eric Blake  <ebb9@byu.net>
28061
28062         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
28063         REPLACE_STRERROR is initialized before this macro.
28064
28065 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
28066
28067         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
28068         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
28069         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
28070         put -lsec in even for programs other than 'ls'.  This fixes a problem
28071         for gettext reported by Bruno Haible in
28072         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
28073         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
28074         Add support for Solaris 10.  This isn't efficient, but should get the
28075         job done for now.
28076
28077 2007-12-03  James Youngman  <jay@gnu.org>
28078
28079         * doc/regexprops-generic.texi: change "an close-group" to "a
28080         close-group" and "illegal" to "not allowed".
28081
28082 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28083
28084         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
28085         pr_byname.h. Needed for the rare case when the maintainer has done
28086         "make maintainer-clean" in the source directory and then attempts a
28087         build outside the source directory.
28088         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
28089         scripts_byname.h.
28090
28091 2007-12-02  Martin Lambers <marlam@marlam.de>
28092             Bruno Haible  <bruno@clisp.org>
28093
28094         * lib/getpagesize.h: Remove file.
28095         * lib/unistd.in.h: Include declaration of getpagesize here.
28096         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
28097         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
28098         HAVE_SYS_PARAM_H.
28099         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
28100         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
28101         * modules/getpagesize (Files): Remove lib/getpagesize.h.
28102         (Depends-on): Add unistd.
28103         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
28104         (Include): Use <unistd.h> instead of getpagesize.h.
28105         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
28106         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
28107         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
28108         gl_GETPAGESIZE invocation, already handled by module dependency.
28109         * lib/pagealign_alloc.c: Don't include getpagesize.h.
28110
28111 2007-12-02  Bruno Haible  <bruno@clisp.org>
28112
28113         * modules/strings-tests: New file.
28114         * tests/test-strings.c: New file.
28115
28116         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
28117         * lib/strings.in.h: New file.
28118         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
28119         * m4/strings_h.m4: New file.
28120         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
28121         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
28122         * modules/strings: New file.
28123         * modules/string (Makefile.am): Update.
28124         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
28125         Reported by Karl Berry.
28126
28127 2007-12-01  Eric Blake  <ebb9@byu.net>
28128
28129         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
28130         accomodate fix in cygwin 1.5.25.
28131
28132 2007-12-01  Jim Meyering  <meyering@redhat.com>
28133
28134         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
28135         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
28136         that would inhibit utf8-optimization of a regexp containing line-
28137         or buffer-anchors, e.g., `^', `$'.
28138
28139 2007-11-30  Bruno Haible  <bruno@clisp.org>
28140
28141         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
28142         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
28143         glthread_recursive_lock_init.
28144         * lib/lock.c (glthread_recursive_lock_init)
28145         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
28146         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
28147
28148 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
28149
28150         New function qset_acl, like set_acl but with syscall semantics.
28151         * lib/acl.h (qset_acl): New decl.
28152         * lib/acl.c (qset_acl): New function.
28153         (set_acl): Use new function.  Use more-consistent diagnostics.
28154
28155 2007-11-28  Jim Meyering  <meyering@redhat.com>
28156
28157         * modules/physmem (License): Change from GPL to LGPLv2+.
28158
28159 2007-11-26  Bruno Haible  <bruno@clisp.org>
28160
28161         * lib/vasnprintf.c (decode_long_double): Don't abort if the
28162         'long double' type has excess precision.
28163         Reported by Jim Meyering in
28164         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
28165
28166 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28167
28168         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
28169         Sync from <http://gnu.org/licenses>.
28170         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
28171         with license text from same location.
28172         * doc/maintain.texi, doc/standards.texi:  Sync from
28173         <http://savannah.gnu.org/projects/gnustandards>.
28174
28175 2007-11-22  Ondřej Vašík  <ovasik@redhat.com>
28176         and Jim Meyering  <meyering@redhat.com>
28177
28178         Adjust getdate' grammar to accept a slightly more regular language.
28179         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
28180         Before, the former was rejected.
28181         * lib/getdate.y (digits_to_date_time): New function, factored
28182         out of ...
28183         (number): ...here.  Just call digits_to_date_time.
28184         (hybrid): New non-terminal to handle an <unsigned number,
28185         signed relative offset> sequence consistently.
28186
28187 2007-11-18  Jim Meyering  <meyering@redhat.com>
28188
28189         Pull my changes from coreutils:
28190         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
28191         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
28192         use of $gnulib_tool_option_extras, so that it's separated from the
28193         preceding argument.
28194
28195         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
28196         * build-aux/bootstrap (cp_mark_as_generated): Create any required
28197         parent destination directories before copying a file into place.
28198
28199 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
28200
28201         bootstrap: work also with 4-argument variant of AC_INIT
28202         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
28203
28204 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28205
28206         Port test-getaddrinfo to Solaris.
28207         Problem reported by Bruno Haible in
28208         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
28209         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
28210         explanation of setting 'hints'.
28211         Don't reject an implementation merely because it returns EAI_SERVICE.
28212         (EAI_SERVICE): Define to 0 if not defined.
28213
28214 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
28215
28216         The license of gnu-make and posix-shell is now "GPLed build tool".
28217         * modules/gnu-make (License): Likewise.
28218         * modules/posix-shell (License): Likewise.
28219
28220         New module posix-shell, for determining a POSIX shell
28221         or perhaps something that is close enough to a POSIX shell.
28222         * m4/posix-shell.m4: New file.
28223         * modules/posix-shell: New file.
28224
28225         * MODULES.html.sh: Mention new module.
28226
28227         New module gnu-make, for determining whether we're using GNU Make.
28228         * m4/gnu-make.m4: New file.
28229         * modules/gnu-make: New file.
28230         * MODULES.html.sh: Mention new module.
28231
28232 2007-11-14  Jim Meyering  <meyering@redhat.com>
28233
28234         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
28235         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
28236         use this macro to create a function _definition_.
28237         Remove useless "#undef ARGMATCH_DIE".
28238
28239 2007-11-14  Bruno Haible  <bruno@clisp.org>
28240
28241         * lib/config.charset: Update for OpenBSD 4.1.
28242         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
28243
28244 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
28245
28246         Document 64-bit #if problems in stdint.texi.
28247         * doc/headers/stdint.texi (stdint.h): Mention problems with
28248         64-bit-#if, and how to work around them.
28249
28250         Don't insist on 'long long int' support in the preprocessor.  It
28251         breaks too many things.  For example, PRIdMAX still uses a 'long
28252         long int' format with the latest Sun compiler, even though
28253         HAVE_LONG_LONG_INT isn't defined due to that compiler's
28254         preprocessor problem.  This causes the latest coreutils to dump
28255         core on Solaris 10 sparc with the Sun C compiler.
28256         Instead, fix the 2007-10-16 problem in a different way, by evaluating
28257         the troublesome expressions at configure-time, not at #if-time.
28258         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
28259         preprocessor.
28260         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
28261         compile-time C checks, done at 'configure'-time.
28262         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
28263         * modules/inttypes (Makefile): Substitute the new symbols that
28264         gl_INTTYPES_H now generates.
28265         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
28266
28267 2007-11-12  Bruno Haible  <bruno@clisp.org>
28268
28269         Tests for Unicode character classification functions.
28270
28271         * modules/unictype/bidicategory-byname-tests: New file.
28272         * modules/unictype/bidicategory-name-tests: New file.
28273         * modules/unictype/bidicategory-of-tests: New file.
28274         * modules/unictype/bidicategory-test-tests: New file.
28275         * modules/unictype/block-list-tests: New file.
28276         * modules/unictype/block-of-tests: New file.
28277         * modules/unictype/block-test-tests: New file.
28278         * modules/unictype/category-C-tests: New file.
28279         * modules/unictype/category-Cc-tests: New file.
28280         * modules/unictype/category-Cf-tests: New file.
28281         * modules/unictype/category-Cn-tests: New file.
28282         * modules/unictype/category-Co-tests: New file.
28283         * modules/unictype/category-Cs-tests: New file.
28284         * modules/unictype/category-L-tests: New file.
28285         * modules/unictype/category-Ll-tests: New file.
28286         * modules/unictype/category-Lm-tests: New file.
28287         * modules/unictype/category-Lo-tests: New file.
28288         * modules/unictype/category-Lt-tests: New file.
28289         * modules/unictype/category-Lu-tests: New file.
28290         * modules/unictype/category-M-tests: New file.
28291         * modules/unictype/category-Mc-tests: New file.
28292         * modules/unictype/category-Me-tests: New file.
28293         * modules/unictype/category-Mn-tests: New file.
28294         * modules/unictype/category-N-tests: New file.
28295         * modules/unictype/category-Nd-tests: New file.
28296         * modules/unictype/category-Nl-tests: New file.
28297         * modules/unictype/category-No-tests: New file.
28298         * modules/unictype/category-P-tests: New file.
28299         * modules/unictype/category-Pc-tests: New file.
28300         * modules/unictype/category-Pd-tests: New file.
28301         * modules/unictype/category-Pe-tests: New file.
28302         * modules/unictype/category-Pf-tests: New file.
28303         * modules/unictype/category-Pi-tests: New file.
28304         * modules/unictype/category-Po-tests: New file.
28305         * modules/unictype/category-Ps-tests: New file.
28306         * modules/unictype/category-S-tests: New file.
28307         * modules/unictype/category-Sc-tests: New file.
28308         * modules/unictype/category-Sk-tests: New file.
28309         * modules/unictype/category-Sm-tests: New file.
28310         * modules/unictype/category-So-tests: New file.
28311         * modules/unictype/category-Z-tests: New file.
28312         * modules/unictype/category-Zl-tests: New file.
28313         * modules/unictype/category-Zp-tests: New file.
28314         * modules/unictype/category-Zs-tests: New file.
28315         * modules/unictype/category-and-not-tests: New file.
28316         * modules/unictype/category-and-tests: New file.
28317         * modules/unictype/category-byname-tests: New file.
28318         * modules/unictype/category-name-tests: New file.
28319         * modules/unictype/category-none-tests: New file.
28320         * modules/unictype/category-of-tests: New file.
28321         * modules/unictype/category-or-tests: New file.
28322         * modules/unictype/category-test-withtable-tests: New file.
28323         * modules/unictype/combining-class-tests: New file.
28324         * modules/unictype/ctype-alnum-tests: New file.
28325         * modules/unictype/ctype-alpha-tests: New file.
28326         * modules/unictype/ctype-blank-tests: New file.
28327         * modules/unictype/ctype-cntrl-tests: New file.
28328         * modules/unictype/ctype-digit-tests: New file.
28329         * modules/unictype/ctype-graph-tests: New file.
28330         * modules/unictype/ctype-lower-tests: New file.
28331         * modules/unictype/ctype-print-tests: New file.
28332         * modules/unictype/ctype-punct-tests: New file.
28333         * modules/unictype/ctype-space-tests: New file.
28334         * modules/unictype/ctype-upper-tests: New file.
28335         * modules/unictype/ctype-xdigit-tests: New file.
28336         * modules/unictype/decimal-digit-tests: New file.
28337         * modules/unictype/digit-tests: New file.
28338         * modules/unictype/mirror-tests: New file.
28339         * modules/unictype/numeric-tests: New file.
28340         * modules/unictype/property-alphabetic-tests: New file.
28341         * modules/unictype/property-ascii-hex-digit-tests: New file.
28342         * modules/unictype/property-bidi-arabic-digit-tests: New file.
28343         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
28344         * modules/unictype/property-bidi-block-separator-tests: New file.
28345         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
28346         * modules/unictype/property-bidi-common-separator-tests: New file.
28347         * modules/unictype/property-bidi-control-tests: New file.
28348         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
28349         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
28350         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
28351         * modules/unictype/property-bidi-european-digit-tests: New file.
28352         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
28353         * modules/unictype/property-bidi-left-to-right-tests: New file.
28354         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
28355         * modules/unictype/property-bidi-other-neutral-tests: New file.
28356         * modules/unictype/property-bidi-pdf-tests: New file.
28357         * modules/unictype/property-bidi-segment-separator-tests: New file.
28358         * modules/unictype/property-bidi-whitespace-tests: New file.
28359         * modules/unictype/property-byname-tests: New file.
28360         * modules/unictype/property-combining-tests: New file.
28361         * modules/unictype/property-composite-tests: New file.
28362         * modules/unictype/property-currency-symbol-tests: New file.
28363         * modules/unictype/property-dash-tests: New file.
28364         * modules/unictype/property-decimal-digit-tests: New file.
28365         * modules/unictype/property-default-ignorable-code-point-tests: New file.
28366         * modules/unictype/property-deprecated-tests: New file.
28367         * modules/unictype/property-diacritic-tests: New file.
28368         * modules/unictype/property-extender-tests: New file.
28369         * modules/unictype/property-format-control-tests: New file.
28370         * modules/unictype/property-grapheme-base-tests: New file.
28371         * modules/unictype/property-grapheme-extend-tests: New file.
28372         * modules/unictype/property-grapheme-link-tests: New file.
28373         * modules/unictype/property-hex-digit-tests: New file.
28374         * modules/unictype/property-hyphen-tests: New file.
28375         * modules/unictype/property-id-continue-tests: New file.
28376         * modules/unictype/property-id-start-tests: New file.
28377         * modules/unictype/property-ideographic-tests: New file.
28378         * modules/unictype/property-ids-binary-operator-tests: New file.
28379         * modules/unictype/property-ids-trinary-operator-tests: New file.
28380         * modules/unictype/property-ignorable-control-tests: New file.
28381         * modules/unictype/property-iso-control-tests: New file.
28382         * modules/unictype/property-join-control-tests: New file.
28383         * modules/unictype/property-left-of-pair-tests: New file.
28384         * modules/unictype/property-line-separator-tests: New file.
28385         * modules/unictype/property-logical-order-exception-tests: New file.
28386         * modules/unictype/property-lowercase-tests: New file.
28387         * modules/unictype/property-math-tests: New file.
28388         * modules/unictype/property-non-break-tests: New file.
28389         * modules/unictype/property-not-a-character-tests: New file.
28390         * modules/unictype/property-numeric-tests: New file.
28391         * modules/unictype/property-other-alphabetic-tests: New file.
28392         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
28393         * modules/unictype/property-other-grapheme-extend-tests: New file.
28394         * modules/unictype/property-other-id-continue-tests: New file.
28395         * modules/unictype/property-other-id-start-tests: New file.
28396         * modules/unictype/property-other-lowercase-tests: New file.
28397         * modules/unictype/property-other-math-tests: New file.
28398         * modules/unictype/property-other-uppercase-tests: New file.
28399         * modules/unictype/property-paired-punctuation-tests: New file.
28400         * modules/unictype/property-paragraph-separator-tests: New file.
28401         * modules/unictype/property-pattern-syntax-tests: New file.
28402         * modules/unictype/property-pattern-white-space-tests: New file.
28403         * modules/unictype/property-private-use-tests: New file.
28404         * modules/unictype/property-punctuation-tests: New file.
28405         * modules/unictype/property-quotation-mark-tests: New file.
28406         * modules/unictype/property-radical-tests: New file.
28407         * modules/unictype/property-sentence-terminal-tests: New file.
28408         * modules/unictype/property-soft-dotted-tests: New file.
28409         * modules/unictype/property-space-tests: New file.
28410         * modules/unictype/property-terminal-punctuation-tests: New file.
28411         * modules/unictype/property-test-tests: New file.
28412         * modules/unictype/property-titlecase-tests: New file.
28413         * modules/unictype/property-unassigned-code-value-tests: New file.
28414         * modules/unictype/property-unified-ideograph-tests: New file.
28415         * modules/unictype/property-uppercase-tests: New file.
28416         * modules/unictype/property-variation-selector-tests: New file.
28417         * modules/unictype/property-white-space-tests: New file.
28418         * modules/unictype/property-xid-continue-tests: New file.
28419         * modules/unictype/property-xid-start-tests: New file.
28420         * modules/unictype/property-zero-width-tests: New file.
28421         * modules/unictype/scripts-tests: New file.
28422         * modules/unictype/syntax-c-ident-tests: New file.
28423         * modules/unictype/syntax-c-whitespace-tests: New file.
28424         * modules/unictype/syntax-java-ident-tests: New file.
28425         * modules/unictype/syntax-java-whitespace-tests: New file.
28426         * tests/unictype/test-bidi_byname.c: New file.
28427         * tests/unictype/test-bidi_name.c: New file.
28428         * tests/unictype/test-bidi_of.c: New file.
28429         * tests/unictype/test-bidi_test.c: New file.
28430         * tests/unictype/test-block_list.c: New file.
28431         * tests/unictype/test-block_of.c: New file.
28432         * tests/unictype/test-block_test.c: New file.
28433         * tests/unictype/test-categ_and.c: New file.
28434         * tests/unictype/test-categ_and_not.c: New file.
28435         * tests/unictype/test-categ_byname.c: New file.
28436         * tests/unictype/test-categ_name.c: New file.
28437         * tests/unictype/test-categ_none.c: New file.
28438         * tests/unictype/test-categ_of.c: New file.
28439         * tests/unictype/test-categ_or.c: New file.
28440         * tests/unictype/test-categ_test_withtable.c: New file.
28441         * tests/unictype/test-combining.c: New file.
28442         * tests/unictype/test-decdigit.c: New file.
28443         * tests/unictype/test-digit.c: New file.
28444         * tests/unictype/test-mirror.c: New file.
28445         * tests/unictype/test-numeric.c: New file.
28446         * tests/unictype/test-pr_byname.c: New file.
28447         * tests/unictype/test-pr_test.c: New file.
28448         * tests/unictype/test-predicate-part1.h: New file.
28449         * tests/unictype/test-predicate-part2.h: New file.
28450         * tests/unictype/test-scripts.c: New file.
28451         * tests/unictype/test-sy_c_ident.c: New file.
28452         * tests/unictype/test-sy_java_ident.c: New file.
28453
28454         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
28455         for Unicode 5.0.0.
28456         * tests/unictype/test-categ_Cc.c: Likewise.
28457         * tests/unictype/test-categ_Cf.c: Likewise.
28458         * tests/unictype/test-categ_Cn.c: Likewise.
28459         * tests/unictype/test-categ_Co.c: Likewise.
28460         * tests/unictype/test-categ_Cs.c: Likewise.
28461         * tests/unictype/test-categ_L.c: Likewise.
28462         * tests/unictype/test-categ_Ll.c: Likewise.
28463         * tests/unictype/test-categ_Lm.c: Likewise.
28464         * tests/unictype/test-categ_Lo.c: Likewise.
28465         * tests/unictype/test-categ_Lt.c: Likewise.
28466         * tests/unictype/test-categ_Lu.c: Likewise.
28467         * tests/unictype/test-categ_M.c: Likewise.
28468         * tests/unictype/test-categ_Mc.c: Likewise.
28469         * tests/unictype/test-categ_Me.c: Likewise.
28470         * tests/unictype/test-categ_Mn.c: Likewise.
28471         * tests/unictype/test-categ_N.c: Likewise.
28472         * tests/unictype/test-categ_Nd.c: Likewise.
28473         * tests/unictype/test-categ_Nl.c: Likewise.
28474         * tests/unictype/test-categ_No.c: Likewise.
28475         * tests/unictype/test-categ_P.c: Likewise.
28476         * tests/unictype/test-categ_Pc.c: Likewise.
28477         * tests/unictype/test-categ_Pd.c: Likewise.
28478         * tests/unictype/test-categ_Pe.c: Likewise.
28479         * tests/unictype/test-categ_Pf.c: Likewise.
28480         * tests/unictype/test-categ_Pi.c: Likewise.
28481         * tests/unictype/test-categ_Po.c: Likewise.
28482         * tests/unictype/test-categ_Ps.c: Likewise.
28483         * tests/unictype/test-categ_S.c: Likewise.
28484         * tests/unictype/test-categ_Sc.c: Likewise.
28485         * tests/unictype/test-categ_Sk.c: Likewise.
28486         * tests/unictype/test-categ_Sm.c: Likewise.
28487         * tests/unictype/test-categ_So.c: Likewise.
28488         * tests/unictype/test-categ_Z.c: Likewise.
28489         * tests/unictype/test-categ_Zl.c: Likewise.
28490         * tests/unictype/test-categ_Zp.c: Likewise.
28491         * tests/unictype/test-categ_Zs.c: Likewise.
28492         * tests/unictype/test-ctype_alnum.c: Likewise.
28493         * tests/unictype/test-ctype_alpha.c: Likewise.
28494         * tests/unictype/test-ctype_blank.c: Likewise.
28495         * tests/unictype/test-ctype_cntrl.c: Likewise.
28496         * tests/unictype/test-ctype_digit.c: Likewise.
28497         * tests/unictype/test-ctype_graph.c: Likewise.
28498         * tests/unictype/test-ctype_lower.c: Likewise.
28499         * tests/unictype/test-ctype_print.c: Likewise.
28500         * tests/unictype/test-ctype_punct.c: Likewise.
28501         * tests/unictype/test-ctype_space.c: Likewise.
28502         * tests/unictype/test-ctype_upper.c: Likewise.
28503         * tests/unictype/test-ctype_xdigit.c: Likewise.
28504         * tests/unictype/test-decdigit.h: Likewise.
28505         * tests/unictype/test-digit.h: Likewise.
28506         * tests/unictype/test-numeric.h: Likewise.
28507         * tests/unictype/test-pr_alphabetic.c: Likewise.
28508         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
28509         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
28510         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
28511         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
28512         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
28513         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
28514         * tests/unictype/test-pr_bidi_control.c: Likewise.
28515         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
28516         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
28517         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
28518         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
28519         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
28520         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
28521         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
28522         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
28523         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
28524         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
28525         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
28526         * tests/unictype/test-pr_combining.c: Likewise.
28527         * tests/unictype/test-pr_composite.c: Likewise.
28528         * tests/unictype/test-pr_currency_symbol.c: Likewise.
28529         * tests/unictype/test-pr_dash.c: Likewise.
28530         * tests/unictype/test-pr_decimal_digit.c: Likewise.
28531         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
28532         * tests/unictype/test-pr_deprecated.c: Likewise.
28533         * tests/unictype/test-pr_diacritic.c: Likewise.
28534         * tests/unictype/test-pr_extender.c: Likewise.
28535         * tests/unictype/test-pr_format_control.c: Likewise.
28536         * tests/unictype/test-pr_grapheme_base.c: Likewise.
28537         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
28538         * tests/unictype/test-pr_grapheme_link.c: Likewise.
28539         * tests/unictype/test-pr_hex_digit.c: Likewise.
28540         * tests/unictype/test-pr_hyphen.c: Likewise.
28541         * tests/unictype/test-pr_id_continue.c: Likewise.
28542         * tests/unictype/test-pr_id_start.c: Likewise.
28543         * tests/unictype/test-pr_ideographic.c: Likewise.
28544         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
28545         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
28546         * tests/unictype/test-pr_ignorable_control.c: Likewise.
28547         * tests/unictype/test-pr_iso_control.c: Likewise.
28548         * tests/unictype/test-pr_join_control.c: Likewise.
28549         * tests/unictype/test-pr_left_of_pair.c: Likewise.
28550         * tests/unictype/test-pr_line_separator.c: Likewise.
28551         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
28552         * tests/unictype/test-pr_lowercase.c: Likewise.
28553         * tests/unictype/test-pr_math.c: Likewise.
28554         * tests/unictype/test-pr_non_break.c: Likewise.
28555         * tests/unictype/test-pr_not_a_character.c: Likewise.
28556         * tests/unictype/test-pr_numeric.c: Likewise.
28557         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
28558         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
28559         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
28560         * tests/unictype/test-pr_other_id_continue.c: Likewise.
28561         * tests/unictype/test-pr_other_id_start.c: Likewise.
28562         * tests/unictype/test-pr_other_lowercase.c: Likewise.
28563         * tests/unictype/test-pr_other_math.c: Likewise.
28564         * tests/unictype/test-pr_other_uppercase.c: Likewise.
28565         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
28566         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
28567         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
28568         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
28569         * tests/unictype/test-pr_private_use.c: Likewise.
28570         * tests/unictype/test-pr_punctuation.c: Likewise.
28571         * tests/unictype/test-pr_quotation_mark.c: Likewise.
28572         * tests/unictype/test-pr_radical.c: Likewise.
28573         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
28574         * tests/unictype/test-pr_soft_dotted.c: Likewise.
28575         * tests/unictype/test-pr_space.c: Likewise.
28576         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
28577         * tests/unictype/test-pr_titlecase.c: Likewise.
28578         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
28579         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
28580         * tests/unictype/test-pr_uppercase.c: Likewise.
28581         * tests/unictype/test-pr_variation_selector.c: Likewise.
28582         * tests/unictype/test-pr_white_space.c: Likewise.
28583         * tests/unictype/test-pr_xid_continue.c: Likewise.
28584         * tests/unictype/test-pr_xid_start.c: Likewise.
28585         * tests/unictype/test-pr_zero_width.c: Likewise.
28586         * tests/unictype/test-sy_c_whitespace.c: Likewise.
28587         * tests/unictype/test-sy_java_whitespace.c: Likewise.
28588
28589 2007-11-12  Bruno Haible  <bruno@clisp.org>
28590
28591         Unicode character classification functions.
28592         * lib/unictype.h: New file.
28593         * modules/unictype/base: New file.
28594         * modules/unictype/category-L: New file.
28595         * modules/unictype/category-Lu: New file.
28596         * modules/unictype/category-Ll: New file.
28597         * modules/unictype/category-Lt: New file.
28598         * modules/unictype/category-Lm: New file.
28599         * modules/unictype/category-Lo: New file.
28600         * modules/unictype/category-M: New file.
28601         * modules/unictype/category-Mn: New file.
28602         * modules/unictype/category-Mc: New file.
28603         * modules/unictype/category-Me: New file.
28604         * modules/unictype/category-N: New file.
28605         * modules/unictype/category-Nd: New file.
28606         * modules/unictype/category-Nl: New file.
28607         * modules/unictype/category-No: New file.
28608         * modules/unictype/category-P: New file.
28609         * modules/unictype/category-Pc: New file.
28610         * modules/unictype/category-Pd: New file.
28611         * modules/unictype/category-Ps: New file.
28612         * modules/unictype/category-Pe: New file.
28613         * modules/unictype/category-Pi: New file.
28614         * modules/unictype/category-Pf: New file.
28615         * modules/unictype/category-Po: New file.
28616         * modules/unictype/category-S: New file.
28617         * modules/unictype/category-Sm: New file.
28618         * modules/unictype/category-Sc: New file.
28619         * modules/unictype/category-Sk: New file.
28620         * modules/unictype/category-So: New file.
28621         * modules/unictype/category-Z: New file.
28622         * modules/unictype/category-Zs: New file.
28623         * modules/unictype/category-Zl: New file.
28624         * modules/unictype/category-Zp: New file.
28625         * modules/unictype/category-C: New file.
28626         * modules/unictype/category-Cc: New file.
28627         * modules/unictype/category-Cf: New file.
28628         * modules/unictype/category-Cs: New file.
28629         * modules/unictype/category-Co: New file.
28630         * modules/unictype/category-Cn: New file.
28631         * modules/unictype/category-or: New file.
28632         * modules/unictype/category-of: New file.
28633         * modules/unictype/category-test: New file.
28634         * modules/unictype/category-test-withtable: New file.
28635         * modules/unictype/category-byname: New file.
28636         * modules/unictype/category-none: New file.
28637         * modules/unictype/category-and: New file.
28638         * modules/unictype/category-and-not: New file.
28639         * modules/unictype/category-name: New file.
28640         * modules/unictype/combining-class: New file.
28641         * modules/unictype/category-all: New file.
28642         * modules/unictype/bidicategory-all: New file.
28643         * modules/unictype/bidicategory-byname: New file.
28644         * modules/unictype/bidicategory-name: New file.
28645         * modules/unictype/bidicategory-of: New file.
28646         * modules/unictype/bidicategory-test: New file.
28647         * modules/unictype/decimal-digit: New file.
28648         * modules/unictype/digit: New file.
28649         * modules/unictype/numeric: New file.
28650         * modules/unictype/mirror: New file.
28651         * modules/unictype/property-white-space: New file.
28652         * modules/unictype/property-alphabetic: New file.
28653         * modules/unictype/property-other-alphabetic: New file.
28654         * modules/unictype/property-not-a-character: New file.
28655         * modules/unictype/property-default-ignorable-code-point: New file.
28656         * modules/unictype/property-other-default-ignorable-code-point: New
28657         file.
28658         * modules/unictype/property-deprecated: New file.
28659         * modules/unictype/property-logical-order-exception: New file.
28660         * modules/unictype/property-variation-selector: New file.
28661         * modules/unictype/property-private-use: New file.
28662         * modules/unictype/property-unassigned-code-value: New file.
28663         * modules/unictype/property-uppercase: New file.
28664         * modules/unictype/property-other-uppercase: New file.
28665         * modules/unictype/property-lowercase: New file.
28666         * modules/unictype/property-other-lowercase: New file.
28667         * modules/unictype/property-titlecase: New file.
28668         * modules/unictype/property-soft-dotted: New file.
28669         * modules/unictype/property-id-start: New file.
28670         * modules/unictype/property-other-id-start: New file.
28671         * modules/unictype/property-id-continue: New file.
28672         * modules/unictype/property-other-id-continue: New file.
28673         * modules/unictype/property-xid-start: New file.
28674         * modules/unictype/property-xid-continue: New file.
28675         * modules/unictype/property-pattern-white-space: New file.
28676         * modules/unictype/property-pattern-syntax: New file.
28677         * modules/unictype/property-join-control: New file.
28678         * modules/unictype/property-grapheme-base: New file.
28679         * modules/unictype/property-grapheme-extend: New file.
28680         * modules/unictype/property-other-grapheme-extend: New file.
28681         * modules/unictype/property-grapheme-link: New file.
28682         * modules/unictype/property-bidi-control: New file.
28683         * modules/unictype/property-bidi-left-to-right: New file.
28684         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
28685         * modules/unictype/property-bidi-arabic-right-to-left: New file.
28686         * modules/unictype/property-bidi-european-digit: New file.
28687         * modules/unictype/property-bidi-eur-num-separator: New file.
28688         * modules/unictype/property-bidi-eur-num-terminator: New file.
28689         * modules/unictype/property-bidi-arabic-digit: New file.
28690         * modules/unictype/property-bidi-common-separator: New file.
28691         * modules/unictype/property-bidi-block-separator: New file.
28692         * modules/unictype/property-bidi-segment-separator: New file.
28693         * modules/unictype/property-bidi-whitespace: New file.
28694         * modules/unictype/property-bidi-non-spacing-mark: New file.
28695         * modules/unictype/property-bidi-boundary-neutral: New file.
28696         * modules/unictype/property-bidi-pdf: New file.
28697         * modules/unictype/property-bidi-embedding-or-override: New file.
28698         * modules/unictype/property-bidi-other-neutral: New file.
28699         * modules/unictype/property-hex-digit: New file.
28700         * modules/unictype/property-ascii-hex-digit: New file.
28701         * modules/unictype/property-ideographic: New file.
28702         * modules/unictype/property-unified-ideograph: New file.
28703         * modules/unictype/property-radical: New file.
28704         * modules/unictype/property-ids-binary-operator: New file.
28705         * modules/unictype/property-ids-trinary-operator: New file.
28706         * modules/unictype/property-zero-width: New file.
28707         * modules/unictype/property-space: New file.
28708         * modules/unictype/property-non-break: New file.
28709         * modules/unictype/property-iso-control: New file.
28710         * modules/unictype/property-format-control: New file.
28711         * modules/unictype/property-dash: New file.
28712         * modules/unictype/property-hyphen: New file.
28713         * modules/unictype/property-punctuation: New file.
28714         * modules/unictype/property-line-separator: New file.
28715         * modules/unictype/property-paragraph-separator: New file.
28716         * modules/unictype/property-quotation-mark: New file.
28717         * modules/unictype/property-sentence-terminal: New file.
28718         * modules/unictype/property-terminal-punctuation: New file.
28719         * modules/unictype/property-currency-symbol: New file.
28720         * modules/unictype/property-math: New file.
28721         * modules/unictype/property-other-math: New file.
28722         * modules/unictype/property-paired-punctuation: New file.
28723         * modules/unictype/property-left-of-pair: New file.
28724         * modules/unictype/property-combining: New file.
28725         * modules/unictype/property-composite: New file.
28726         * modules/unictype/property-decimal-digit: New file.
28727         * modules/unictype/property-numeric: New file.
28728         * modules/unictype/property-diacritic: New file.
28729         * modules/unictype/property-extender: New file.
28730         * modules/unictype/property-ignorable-control: New file.
28731         * modules/unictype/property-test: New file.
28732         * modules/unictype/property-byname: New file.
28733         * modules/unictype/property-all: New file.
28734         * modules/unictype/scripts: New file.
28735         * modules/unictype/scripts-all: New file.
28736         * modules/unictype/block-of: New file.
28737         * modules/unictype/block-test: New file.
28738         * modules/unictype/block-list: New file.
28739         * modules/unictype/block-all: New file.
28740         * modules/unictype/syntax-c-whitespace: New file.
28741         * modules/unictype/syntax-java-whitespace: New file.
28742         * modules/unictype/syntax-c-ident: New file.
28743         * modules/unictype/syntax-java-ident: New file.
28744         * modules/unictype/ctype-alnum: New file.
28745         * modules/unictype/ctype-alpha: New file.
28746         * modules/unictype/ctype-cntrl: New file.
28747         * modules/unictype/ctype-digit: New file.
28748         * modules/unictype/ctype-graph: New file.
28749         * modules/unictype/ctype-lower: New file.
28750         * modules/unictype/ctype-print: New file.
28751         * modules/unictype/ctype-punct: New file.
28752         * modules/unictype/ctype-space: New file.
28753         * modules/unictype/ctype-upper: New file.
28754         * modules/unictype/ctype-xdigit: New file.
28755         * modules/unictype/ctype-blank: New file.
28756         * lib/unictype/bidi_byname.c: New file.
28757         * lib/unictype/bidi_name.c: New file.
28758         * lib/unictype/bidi_of.c: New file.
28759         * lib/unictype/bidi_test.c: New file.
28760         * lib/unictype/bitmap.h: New file.
28761         * lib/unictype/block_test.c: New file.
28762         * lib/unictype/blocks.c: New file.
28763         * lib/unictype/categ_C.c: New file.
28764         * lib/unictype/categ_Cc.c: New file.
28765         * lib/unictype/categ_Cf.c: New file.
28766         * lib/unictype/categ_Cn.c: New file.
28767         * lib/unictype/categ_Co.c: New file.
28768         * lib/unictype/categ_Cs.c: New file.
28769         * lib/unictype/categ_L.c: New file.
28770         * lib/unictype/categ_Ll.c: New file.
28771         * lib/unictype/categ_Lm.c: New file.
28772         * lib/unictype/categ_Lo.c: New file.
28773         * lib/unictype/categ_Lt.c: New file.
28774         * lib/unictype/categ_Lu.c: New file.
28775         * lib/unictype/categ_M.c: New file.
28776         * lib/unictype/categ_Mc.c: New file.
28777         * lib/unictype/categ_Me.c: New file.
28778         * lib/unictype/categ_Mn.c: New file.
28779         * lib/unictype/categ_N.c: New file.
28780         * lib/unictype/categ_Nd.c: New file.
28781         * lib/unictype/categ_Nl.c: New file.
28782         * lib/unictype/categ_No.c: New file.
28783         * lib/unictype/categ_P.c: New file.
28784         * lib/unictype/categ_Pc.c: New file.
28785         * lib/unictype/categ_Pd.c: New file.
28786         * lib/unictype/categ_Pe.c: New file.
28787         * lib/unictype/categ_Pf.c: New file.
28788         * lib/unictype/categ_Pi.c: New file.
28789         * lib/unictype/categ_Po.c: New file.
28790         * lib/unictype/categ_Ps.c: New file.
28791         * lib/unictype/categ_S.c: New file.
28792         * lib/unictype/categ_Sc.c: New file.
28793         * lib/unictype/categ_Sk.c: New file.
28794         * lib/unictype/categ_Sm.c: New file.
28795         * lib/unictype/categ_So.c: New file.
28796         * lib/unictype/categ_Z.c: New file.
28797         * lib/unictype/categ_Zl.c: New file.
28798         * lib/unictype/categ_Zp.c: New file.
28799         * lib/unictype/categ_Zs.c: New file.
28800         * lib/unictype/categ_and.c: New file.
28801         * lib/unictype/categ_and_not.c: New file.
28802         * lib/unictype/categ_byname.c: New file.
28803         * lib/unictype/categ_name.c: New file.
28804         * lib/unictype/categ_none.c: New file.
28805         * lib/unictype/categ_of.c: New file.
28806         * lib/unictype/categ_or.c: New file.
28807         * lib/unictype/categ_test.c: New file.
28808         * lib/unictype/combining.c: New file.
28809         * lib/unictype/ctype_alnum.c: New file.
28810         * lib/unictype/ctype_alpha.c: New file.
28811         * lib/unictype/ctype_blank.c: New file.
28812         * lib/unictype/ctype_cntrl.c: New file.
28813         * lib/unictype/ctype_digit.c: New file.
28814         * lib/unictype/ctype_graph.c: New file.
28815         * lib/unictype/ctype_lower.c: New file.
28816         * lib/unictype/ctype_print.c: New file.
28817         * lib/unictype/ctype_punct.c: New file.
28818         * lib/unictype/ctype_space.c: New file.
28819         * lib/unictype/ctype_upper.c: New file.
28820         * lib/unictype/ctype_xdigit.c: New file.
28821         * lib/unictype/decdigit.c: New file.
28822         * lib/unictype/digit.c: New file.
28823         * lib/unictype/identsyntaxmap.h: New file.
28824         * lib/unictype/mirror.c: New file.
28825         * lib/unictype/numeric.c: New file.
28826         * lib/unictype/pr_alphabetic.c: New file.
28827         * lib/unictype/pr_ascii_hex_digit.c: New file.
28828         * lib/unictype/pr_bidi_arabic_digit.c: New file.
28829         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
28830         * lib/unictype/pr_bidi_block_separator.c: New file.
28831         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
28832         * lib/unictype/pr_bidi_common_separator.c: New file.
28833         * lib/unictype/pr_bidi_control.c: New file.
28834         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
28835         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
28836         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
28837         * lib/unictype/pr_bidi_european_digit.c: New file.
28838         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
28839         * lib/unictype/pr_bidi_left_to_right.c: New file.
28840         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
28841         * lib/unictype/pr_bidi_other_neutral.c: New file.
28842         * lib/unictype/pr_bidi_pdf.c: New file.
28843         * lib/unictype/pr_bidi_segment_separator.c: New file.
28844         * lib/unictype/pr_bidi_whitespace.c: New file.
28845         * lib/unictype/pr_byname.c: New file.
28846         * lib/unictype/pr_byname.gperf: New file.
28847         * lib/unictype/pr_combining.c: New file.
28848         * lib/unictype/pr_composite.c: New file.
28849         * lib/unictype/pr_currency_symbol.c: New file.
28850         * lib/unictype/pr_dash.c: New file.
28851         * lib/unictype/pr_decimal_digit.c: New file.
28852         * lib/unictype/pr_default_ignorable_code_point.c: New file.
28853         * lib/unictype/pr_deprecated.c: New file.
28854         * lib/unictype/pr_diacritic.c: New file.
28855         * lib/unictype/pr_extender.c: New file.
28856         * lib/unictype/pr_format_control.c: New file.
28857         * lib/unictype/pr_grapheme_base.c: New file.
28858         * lib/unictype/pr_grapheme_extend.c: New file.
28859         * lib/unictype/pr_grapheme_link.c: New file.
28860         * lib/unictype/pr_hex_digit.c: New file.
28861         * lib/unictype/pr_hyphen.c: New file.
28862         * lib/unictype/pr_id_continue.c: New file.
28863         * lib/unictype/pr_id_start.c: New file.
28864         * lib/unictype/pr_ideographic.c: New file.
28865         * lib/unictype/pr_ids_binary_operator.c: New file.
28866         * lib/unictype/pr_ids_trinary_operator.c: New file.
28867         * lib/unictype/pr_ignorable_control.c: New file.
28868         * lib/unictype/pr_iso_control.c: New file.
28869         * lib/unictype/pr_join_control.c: New file.
28870         * lib/unictype/pr_left_of_pair.c: New file.
28871         * lib/unictype/pr_line_separator.c: New file.
28872         * lib/unictype/pr_logical_order_exception.c: New file.
28873         * lib/unictype/pr_lowercase.c: New file.
28874         * lib/unictype/pr_math.c: New file.
28875         * lib/unictype/pr_non_break.c: New file.
28876         * lib/unictype/pr_not_a_character.c: New file.
28877         * lib/unictype/pr_numeric.c: New file.
28878         * lib/unictype/pr_other_alphabetic.c: New file.
28879         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
28880         * lib/unictype/pr_other_grapheme_extend.c: New file.
28881         * lib/unictype/pr_other_id_continue.c: New file.
28882         * lib/unictype/pr_other_id_start.c: New file.
28883         * lib/unictype/pr_other_lowercase.c: New file.
28884         * lib/unictype/pr_other_math.c: New file.
28885         * lib/unictype/pr_other_uppercase.c: New file.
28886         * lib/unictype/pr_paired_punctuation.c: New file.
28887         * lib/unictype/pr_paragraph_separator.c: New file.
28888         * lib/unictype/pr_pattern_syntax.c: New file.
28889         * lib/unictype/pr_pattern_white_space.c: New file.
28890         * lib/unictype/pr_private_use.c: New file.
28891         * lib/unictype/pr_punctuation.c: New file.
28892         * lib/unictype/pr_quotation_mark.c: New file.
28893         * lib/unictype/pr_radical.c: New file.
28894         * lib/unictype/pr_sentence_terminal.c: New file.
28895         * lib/unictype/pr_soft_dotted.c: New file.
28896         * lib/unictype/pr_space.c: New file.
28897         * lib/unictype/pr_terminal_punctuation.c: New file.
28898         * lib/unictype/pr_test.c: New file.
28899         * lib/unictype/pr_titlecase.c: New file.
28900         * lib/unictype/pr_unassigned_code_value.c: New file.
28901         * lib/unictype/pr_unified_ideograph.c: New file.
28902         * lib/unictype/pr_uppercase.c: New file.
28903         * lib/unictype/pr_variation_selector.c: New file.
28904         * lib/unictype/pr_white_space.c: New file.
28905         * lib/unictype/pr_xid_continue.c: New file.
28906         * lib/unictype/pr_xid_start.c: New file.
28907         * lib/unictype/pr_zero_width.c: New file.
28908         * lib/unictype/scripts.c: New file.
28909         * lib/unictype/sy_c_ident.c: New file.
28910         * lib/unictype/sy_c_whitespace.c: New file.
28911         * lib/unictype/sy_java_ident.c: New file.
28912         * lib/unictype/sy_java_whitespace.c: New file.
28913
28914         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
28915         Unicode 5.0.0.
28916         * lib/unictype/blocks.h: Likewise.
28917         * lib/unictype/categ_C.h: Likewise.
28918         * lib/unictype/categ_Cc.h: Likewise.
28919         * lib/unictype/categ_Cf.h: Likewise.
28920         * lib/unictype/categ_Cn.h: Likewise.
28921         * lib/unictype/categ_Co.h: Likewise.
28922         * lib/unictype/categ_Cs.h: Likewise.
28923         * lib/unictype/categ_L.h: Likewise.
28924         * lib/unictype/categ_Ll.h: Likewise.
28925         * lib/unictype/categ_Lm.h: Likewise.
28926         * lib/unictype/categ_Lo.h: Likewise.
28927         * lib/unictype/categ_Lt.h: Likewise.
28928         * lib/unictype/categ_Lu.h: Likewise.
28929         * lib/unictype/categ_M.h: Likewise.
28930         * lib/unictype/categ_Mc.h: Likewise.
28931         * lib/unictype/categ_Me.h: Likewise.
28932         * lib/unictype/categ_Mn.h: Likewise.
28933         * lib/unictype/categ_N.h: Likewise.
28934         * lib/unictype/categ_Nd.h: Likewise.
28935         * lib/unictype/categ_Nl.h: Likewise.
28936         * lib/unictype/categ_No.h: Likewise.
28937         * lib/unictype/categ_P.h: Likewise.
28938         * lib/unictype/categ_Pc.h: Likewise.
28939         * lib/unictype/categ_Pd.h: Likewise.
28940         * lib/unictype/categ_Pe.h: Likewise.
28941         * lib/unictype/categ_Pf.h: Likewise.
28942         * lib/unictype/categ_Pi.h: Likewise.
28943         * lib/unictype/categ_Po.h: Likewise.
28944         * lib/unictype/categ_Ps.h: Likewise.
28945         * lib/unictype/categ_S.h: Likewise.
28946         * lib/unictype/categ_Sc.h: Likewise.
28947         * lib/unictype/categ_Sk.h: Likewise.
28948         * lib/unictype/categ_Sm.h: Likewise.
28949         * lib/unictype/categ_So.h: Likewise.
28950         * lib/unictype/categ_Z.h: Likewise.
28951         * lib/unictype/categ_Zl.h: Likewise.
28952         * lib/unictype/categ_Zp.h: Likewise.
28953         * lib/unictype/categ_Zs.h: Likewise.
28954         * lib/unictype/categ_of.h: Likewise.
28955         * lib/unictype/combining.h: Likewise.
28956         * lib/unictype/ctype_alnum.h: Likewise.
28957         * lib/unictype/ctype_alpha.h: Likewise.
28958         * lib/unictype/ctype_blank.h: Likewise.
28959         * lib/unictype/ctype_cntrl.h: Likewise.
28960         * lib/unictype/ctype_digit.h: Likewise.
28961         * lib/unictype/ctype_graph.h: Likewise.
28962         * lib/unictype/ctype_lower.h: Likewise.
28963         * lib/unictype/ctype_print.h: Likewise.
28964         * lib/unictype/ctype_punct.h: Likewise.
28965         * lib/unictype/ctype_space.h: Likewise.
28966         * lib/unictype/ctype_upper.h: Likewise.
28967         * lib/unictype/ctype_xdigit.h: Likewise.
28968         * lib/unictype/decdigit.h: Likewise.
28969         * lib/unictype/digit.h: Likewise.
28970         * lib/unictype/mirror.h: Likewise.
28971         * lib/unictype/numeric.h: Likewise.
28972         * lib/unictype/pr_alphabetic.h: Likewise.
28973         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
28974         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
28975         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
28976         * lib/unictype/pr_bidi_block_separator.h: Likewise.
28977         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
28978         * lib/unictype/pr_bidi_common_separator.h: Likewise.
28979         * lib/unictype/pr_bidi_control.h: Likewise.
28980         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
28981         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
28982         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
28983         * lib/unictype/pr_bidi_european_digit.h: Likewise.
28984         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
28985         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
28986         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
28987         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
28988         * lib/unictype/pr_bidi_pdf.h: Likewise.
28989         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
28990         * lib/unictype/pr_bidi_whitespace.h: Likewise.
28991         * lib/unictype/pr_combining.h: Likewise.
28992         * lib/unictype/pr_composite.h: Likewise.
28993         * lib/unictype/pr_currency_symbol.h: Likewise.
28994         * lib/unictype/pr_dash.h: Likewise.
28995         * lib/unictype/pr_decimal_digit.h: Likewise.
28996         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
28997         * lib/unictype/pr_deprecated.h: Likewise.
28998         * lib/unictype/pr_diacritic.h: Likewise.
28999         * lib/unictype/pr_extender.h: Likewise.
29000         * lib/unictype/pr_format_control.h: Likewise.
29001         * lib/unictype/pr_grapheme_base.h: Likewise.
29002         * lib/unictype/pr_grapheme_extend.h: Likewise.
29003         * lib/unictype/pr_grapheme_link.h: Likewise.
29004         * lib/unictype/pr_hex_digit.h: Likewise.
29005         * lib/unictype/pr_hyphen.h: Likewise.
29006         * lib/unictype/pr_id_continue.h: Likewise.
29007         * lib/unictype/pr_id_start.h: Likewise.
29008         * lib/unictype/pr_ideographic.h: Likewise.
29009         * lib/unictype/pr_ids_binary_operator.h: Likewise.
29010         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
29011         * lib/unictype/pr_ignorable_control.h: Likewise.
29012         * lib/unictype/pr_iso_control.h: Likewise.
29013         * lib/unictype/pr_join_control.h: Likewise.
29014         * lib/unictype/pr_left_of_pair.h: Likewise.
29015         * lib/unictype/pr_line_separator.h: Likewise.
29016         * lib/unictype/pr_logical_order_exception.h: Likewise.
29017         * lib/unictype/pr_lowercase.h: Likewise.
29018         * lib/unictype/pr_math.h: Likewise.
29019         * lib/unictype/pr_non_break.h: Likewise.
29020         * lib/unictype/pr_not_a_character.h: Likewise.
29021         * lib/unictype/pr_numeric.h: Likewise.
29022         * lib/unictype/pr_other_alphabetic.h: Likewise.
29023         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
29024         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
29025         * lib/unictype/pr_other_id_continue.h: Likewise.
29026         * lib/unictype/pr_other_id_start.h: Likewise.
29027         * lib/unictype/pr_other_lowercase.h: Likewise.
29028         * lib/unictype/pr_other_math.h: Likewise.
29029         * lib/unictype/pr_other_uppercase.h: Likewise.
29030         * lib/unictype/pr_paired_punctuation.h: Likewise.
29031         * lib/unictype/pr_paragraph_separator.h: Likewise.
29032         * lib/unictype/pr_pattern_syntax.h: Likewise.
29033         * lib/unictype/pr_pattern_white_space.h: Likewise.
29034         * lib/unictype/pr_private_use.h: Likewise.
29035         * lib/unictype/pr_punctuation.h: Likewise.
29036         * lib/unictype/pr_quotation_mark.h: Likewise.
29037         * lib/unictype/pr_radical.h: Likewise.
29038         * lib/unictype/pr_sentence_terminal.h: Likewise.
29039         * lib/unictype/pr_soft_dotted.h: Likewise.
29040         * lib/unictype/pr_space.h: Likewise.
29041         * lib/unictype/pr_terminal_punctuation.h: Likewise.
29042         * lib/unictype/pr_titlecase.h: Likewise.
29043         * lib/unictype/pr_unassigned_code_value.h: Likewise.
29044         * lib/unictype/pr_unified_ideograph.h: Likewise.
29045         * lib/unictype/pr_uppercase.h: Likewise.
29046         * lib/unictype/pr_variation_selector.h: Likewise.
29047         * lib/unictype/pr_white_space.h: Likewise.
29048         * lib/unictype/pr_xid_continue.h: Likewise.
29049         * lib/unictype/pr_xid_start.h: Likewise.
29050         * lib/unictype/pr_zero_width.h: Likewise.
29051         * lib/unictype/scripts.h: Likewise.
29052         * lib/unictype/scripts_byname.gperf: Likewise.
29053         * lib/unictype/sy_c_ident.h: Likewise.
29054         * lib/unictype/sy_c_whitespace.h: Likewise.
29055         * lib/unictype/sy_java_ident.h: Likewise.
29056         * lib/unictype/sy_java_whitespace.h: Likewise.
29057
29058         * lib/unictype/Makefile: New file.
29059         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
29060         glibc.
29061         * lib/unictype/3level.h: New file, copied from glibc.
29062         * lib/unictype/3levelbit.h: New file.
29063
29064 2007-11-11  Bruno Haible  <bruno@clisp.org>
29065
29066         * modules/gperf: New file.
29067         * modules/iconv_open (Depends-on): Add it.
29068         (Makefile.am): Remove the GPERF definition.
29069
29070 2007-11-11  Bruno Haible  <bruno@clisp.org>
29071
29072         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
29073         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
29074
29075 2007-11-11  Bruno Haible  <bruno@clisp.org>
29076
29077         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
29078         (usage): Remove function.
29079
29080 2007-11-11  Bruno Haible  <bruno@clisp.org>
29081
29082         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
29083         gl_FUNC_CEILF_LIBS.
29084         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
29085         gl_FUNC_CEIL_LIBS.
29086         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
29087         gl_FUNC_CEILL_LIBS.
29088         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
29089         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
29090         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
29091
29092 2007-11-11  Bruno Haible  <bruno@clisp.org>
29093
29094         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
29095         roundf were declared but do not exist on functions.
29096         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
29097         roundl were declared but do not exist on functions.
29098         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
29099         HAVE_FLOORL_AND_CEILL, respectively.
29100         Needed for Sun C on Solaris 10.
29101
29102 2007-11-11  Bruno Haible  <bruno@clisp.org>
29103
29104         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
29105         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
29106         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
29107         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
29108         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
29109         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
29110         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
29111         HAVE_DECL_ROUNDF.
29112         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
29113         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
29114         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
29115         of HAVE_DECL_ROUND*.
29116         * modules/math (Makefile.am): Update.
29117
29118 2007-11-10  Bruno Haible  <bruno@clisp.org>
29119
29120         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
29121         ptrdiff_t as m4/intl.m4.
29122
29123 2007-11-10  Jim Meyering  <meyering@redhat.com>
29124
29125         Avoid link failure for the argmatch test.
29126         * tests/test-argmatch.c (usage): Define function to avoid a link
29127         failure: argmatch_die requires a usage function.
29128
29129 2007-11-09  Bruno Haible  <bruno@clisp.org>
29130
29131         * doc/functions/snprintf.texi: Mention BeOS deficiency.
29132         * doc/functions/vsnprintf.texi: Likewise.
29133         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
29134         with a size argument < 2.
29135
29136 2007-11-09  Bruno Haible  <bruno@clisp.org>
29137
29138         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
29139         buffer. Fixes an inefficiency introduced on 2007-11-03.
29140
29141 2007-11-09  Bruno Haible  <bruno@clisp.org>
29142
29143         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
29144         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
29145
29146 2007-11-08  Jim Meyering  <meyering@redhat.com>
29147
29148         Change cache variable name prefix "jm_" to "gl_" everywhere.
29149         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
29150         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
29151         * m4/uptime.m4: s/gl_/jm_/
29152
29153 2007-11-07  Bruno Haible  <bruno@clisp.org>
29154
29155         Update to GNU gettext 0.17.
29156         * m4/intl.m4: Update to GNU gettext 0.17.
29157         * m4/po.m4: Likewise.
29158         * modules/gettext (Files): Remove m4/ulonglong.m4.
29159         (configure.ac): Require gettext infrastructure from version 0.17.
29160
29161 2007-11-06  Bruno Haible  <bruno@clisp.org>
29162
29163         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
29164         symbolic values are not defined in a public header.
29165         * lib/freadable.c (freadable) [QNX]: Likewise.
29166         * lib/freadahead.c (freadahead) [QNX]: Likewise.
29167         * lib/freading.c (freading) [QNX]: Likewise.
29168         * lib/fseterr.c (fseterr) [QNX]: Likewise.
29169         * lib/fwritable.c (fwritable) [QNX]: Likewise.
29170         * lib/fwriting.c (fwriting) [QNX]: Likewise.
29171         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
29172         Reported by Alain Magloire.
29173
29174         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
29175
29176 2007-11-05  Bruno Haible  <bruno@clisp.org>
29177
29178         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
29179         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
29180         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
29181         Reported by Eric Blake.
29182
29183 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29184             Bruno Haible  <bruno@clisp.org>
29185
29186         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
29187         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
29188         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
29189         (malloc): Undefine also before including <stdlib.h>.
29190         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
29191         Needed on OSF/1 4.0.
29192
29193 2007-11-05  Jim Meyering  <meyering@redhat.com>
29194
29195         git-version-gen: sync from coreutils.
29196         * build-aux/git-version-gen: Add comments.
29197         Change the first '-' to '.' in the snapshot version string,
29198         e.g., 6.9-377-08144 -> 6.9.377-08144
29199         Remove first parameter.
29200         Don't declare a version "-dirty" merely because a time
29201         stamp has changed.
29202
29203 2007-11-04  Bruno Haible  <bruno@clisp.org>
29204
29205         * lib/lock.h: Protect all macro definitions containing an 'if'
29206         statement through a "do { ... } while (0)".
29207         * lib/tls.h: Likewise.
29208
29209 2007-11-04  Bruno Haible  <bruno@clisp.org>
29210
29211         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
29212
29213 2007-11-04  Bruno Haible  <bruno@clisp.org>
29214
29215         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
29216         * modules/fprintf-posix (Depends-on): Add nocrash.
29217         * modules/snprintf-posix (Depends-on): Likewise.
29218         * modules/sprintf-posix (Depends-on): Likewise.
29219         * modules/vasnprintf-posix (Depends-on): Likewise.
29220         * modules/vasprintf-posix (Depends-on): Likewise.
29221         * modules/vfprintf-posix (Depends-on): Likewise.
29222         * modules/vsnprintf-posix (Depends-on): Likewise.
29223         * modules/vsprintf-posix (Depends-on): Likewise.
29224         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
29225         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
29226         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
29227         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
29228         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
29229         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
29230         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
29231
29232 2007-11-04  Bruno Haible  <bruno@clisp.org>
29233
29234         * modules/nocrash: New file.
29235         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
29236         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
29237
29238 2007-11-04  Bruno Haible  <bruno@clisp.org>
29239
29240         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
29241         precision handling.
29242         * tests/test-vasprintf-posix.c (test_function): Likewise.
29243         * tests/test-snprintf-posix.h (test_function): Likewise.
29244         * tests/test-sprintf-posix.h (test_function): Likewise.
29245
29246         Fix *printf behaviour for large precisions on mingw and BeOS.
29247         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
29248         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
29249         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
29250         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
29251         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
29252         gl_PRINTF_PRECISION and test its result. Invoke
29253         gl_PREREQ_VASNPRINTF_PRECISION.
29254         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29255         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29256         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29257         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29258         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29259         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
29260         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29261         * doc/functions/fprintf.texi: Update.
29262         * doc/functions/printf.texi: Update.
29263         * doc/functions/snprintf.texi: Update.
29264         * doc/functions/sprintf.texi: Update.
29265         * doc/functions/vfprintf.texi: Update.
29266         * doc/functions/vprintf.texi: Update.
29267         * doc/functions/vsnprintf.texi: Update.
29268         * doc/functions/vsprintf.texi: Update.
29269
29270 2007-11-04  Bruno Haible  <bruno@clisp.org>
29271
29272         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
29273
29274 2007-11-04  Bruno Haible  <bruno@clisp.org>
29275
29276         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
29277         Reported by Sylvain Beucler <beuc@gnu.org>.
29278
29279 2007-11-03  Bruno Haible  <bruno@clisp.org>
29280
29281         * tests/test-fprintf-posix2.sh: New file.
29282         * tests/test-fprintf-posix2.c: New file.
29283         * modules/fprintf-posix-tests (Files): Add them.
29284         (TESTS): Add test-fprintf-posix2.sh.
29285         (configure.ac): Check for getrlimit and setrlimit.
29286         (check_PROGRAMS): Add test-fprintf-posix2.
29287
29288         * tests/test-printf-posix2.sh: New file.
29289         * tests/test-printf-posix2.c: New file.
29290         * modules/printf-posix-tests (Files): Add them.
29291         (TESTS): Add test-printf-posix2.sh.
29292         (configure.ac): Check for getrlimit and setrlimit.
29293         (check_PROGRAMS): Add test-printf-posix2.
29294
29295         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
29296         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
29297         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
29298         (decode_double): New function, copied from decode_long_double.
29299         (scale10_round_decimal_decoded): New function, extracted from
29300         scale10_round_decimal_long_double.
29301         (scale10_round_decimal_long_double): Use it.
29302         (scale10_round_decimal_double): New function.
29303         (floorlog10): New function.
29304         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
29305         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
29306         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
29307         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
29308         gl_PRINTF_ENOMEM and test its result. Invoke
29309         gl_PREREQ_VASNPRINTF_ENOMEM.
29310         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29311         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29312         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29313         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29314         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29315         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
29316         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29317         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
29318         * modules/snprintf-posix (Depends-on): Likewise.
29319         * modules/sprintf-posix (Depends-on): Likewise.
29320         * modules/vasnprintf-posix (Depends-on): Likewise.
29321         * modules/vasprintf-posix (Depends-on): Likewise.
29322         * modules/vfprintf-posix (Depends-on): Likewise.
29323         * modules/vsnprintf-posix (Depends-on): Likewise.
29324         * modules/vsprintf-posix (Depends-on): Likewise.
29325         * doc/functions/fprintf.texi: Update.
29326         * doc/functions/printf.texi: Update.
29327         * doc/functions/snprintf.texi: Update.
29328         * doc/functions/sprintf.texi: Update.
29329         * doc/functions/vfprintf.texi: Update.
29330         * doc/functions/vprintf.texi: Update.
29331         * doc/functions/vsnprintf.texi: Update.
29332         * doc/functions/vsprintf.texi: Update.
29333
29334 2007-11-03  Bruno Haible  <bruno@clisp.org>
29335
29336         * modules/frexp-nolibm-tests: New file.
29337
29338         * modules/frexp-nolibm: New file.
29339         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
29340
29341 2007-11-03  Bruno Haible  <bruno@clisp.org>
29342
29343         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
29344         value is C99 compliant.
29345         Needed for OSF/1 5.1.
29346
29347 2007-11-03  Bruno Haible  <bruno@clisp.org>
29348
29349         Fix out-of-memory handling of vasnprintf.
29350         * lib/printf-parse.c: Include <errno.h>.
29351         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
29352         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
29353         is already set.
29354
29355 2007-11-02  Eric Blake  <ebb9@byu.net>
29356
29357         Fix tests on cygwin.
29358         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
29359
29360 2007-11-01  Bruno Haible  <bruno@clisp.org>
29361
29362         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
29363         warning.
29364         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
29365         needed for POSIX compatibility.
29366
29367 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
29368
29369         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
29370         for compatibility with GNU.
29371
29372 2007-11-01  Bruno Haible  <bruno@clisp.org>
29373
29374         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
29375         (putenv): Renamed from rpl_putenv. Change argument type from
29376         'const char *' to 'char *'.
29377         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
29378         of defining putenv in config.h, just set REPLACE_PUTENV.
29379         * modules/putenv (Depends-on): Add stdlib.
29380         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
29381         (Include): Use <stdlib.h>.
29382         * lib/stdlib.in.h (putenv): New declaration.
29383         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
29384         REPLACE_PUTENV.
29385         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
29386         REPLACE_PUTENV.
29387         Needed for MacOS X 10.5.0.
29388         Reported by Peter O'Gorman <peter@pogma.com>.
29389
29390 2007-11-01  Jim Meyering  <meyering@redhat.com>
29391
29392         Treat an empty date string exactly like "0".
29393         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
29394         if the remaining date string (to be parsed) is empty, use "0".
29395         Reported by Mischa Molhoek and discussed in this thread:
29396         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
29397
29398 2007-10-31  Bruno Haible  <bruno@clisp.org>
29399
29400         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
29401         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
29402         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
29403         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
29404         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
29405         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
29406
29407 2007-10-31  Bruno Haible  <bruno@clisp.org>
29408
29409         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
29410         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
29411         (AC_TYPE_LONG_LONG_INT): Use it.
29412         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
29413         it as well.
29414         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
29415         to m4/longlong.m4.
29416         * modules/stdint (Files): Remove m4/ulonglong.m4.
29417         * modules/strtoull (Files): Use m4/longlong.m4 instead of
29418         m4/ulonglong.m4.
29419         * modules/strtoumax (Files): Likewise.
29420
29421 2007-10-30  Bruno Haible  <bruno@clisp.org>
29422
29423         * modules/xvasprintf-posix: New file.
29424         Suggested by Eric Blake.
29425
29426 2007-10-30  Bruno Haible  <bruno@clisp.org>
29427
29428         * modules/xprintf-posix-tests: New file.
29429         * tests/test-xprintf-posix.sh: New file.
29430         * tests/test-xprintf-posix.c: New file.
29431         * tests/test-xfprintf-posix.c: New file.
29432
29433         * modules/xprintf-posix: New file.
29434
29435 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29436
29437         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
29438         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
29439         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
29440
29441 2007-10-29  Bruno Haible  <bruno@clisp.org>
29442
29443         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
29444         contain the special marker '_cv_'.
29445         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
29446         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
29447         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
29448         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
29449         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
29450         Reported by Ralf Wildenhues.
29451
29452 2007-10-29  Bruno Haible  <bruno@clisp.org>
29453
29454         * gnulib-tool (func_import): When --lgpl is not specified, set
29455         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
29456         GPLv3.
29457         Reported by Simon Josefsson.
29458
29459 2007-10-28  Bruno Haible  <bruno@clisp.org>
29460
29461         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
29462         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
29463         HAVE_DECL_ISFINITE.
29464         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
29465         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
29466         HAVE_DECL_ISFINITE.
29467
29468 2007-10-28  Bruno Haible  <bruno@clisp.org>
29469
29470         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
29471         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
29472
29473 2007-10-28  Bruno Haible  <bruno@clisp.org>
29474
29475         Fix link errors with Sun C 5.0 on Solaris 10.
29476         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
29477         function is declared but not present in the compiler's libm.
29478         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
29479         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
29480         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
29481         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
29482         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
29483         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
29484         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
29485         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
29486         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
29487         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
29488         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
29489         HAVE_DECL_FLOORL.
29490
29491 2007-10-28  Bruno Haible  <bruno@clisp.org>
29492
29493         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
29494         gl_FUNC_FLOORL. Cache the result.
29495         (gl_FUNC_FLOORL): Use it.
29496         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
29497         gl_FUNC_CEILL. Cache the result.
29498         (gl_FUNC_CEILL): Use it.
29499
29500         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
29501         gl_FUNC_FLOOR. Cache the result.
29502         (gl_FUNC_FLOOR): Use it.
29503         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
29504         gl_FUNC_CEIL. Cache the result.
29505         (gl_FUNC_CEIL): Use it.
29506
29507         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
29508         gl_FUNC_FLOORF. Cache the result.
29509         (gl_FUNC_FLOORF): Use it.
29510         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
29511         gl_FUNC_CEILF. Cache the result.
29512         (gl_FUNC_CEILF): Use it.
29513
29514 2007-10-28  Bruno Haible  <bruno@clisp.org>
29515
29516         * gnulib-tool: Allow specifying the LGPL version number through
29517         --lgpl=2 or --lgpl=3.
29518         (func_usage): Document --lgpl with argument.
29519         Handle --lgpl=... arguments.
29520         (func_import): Recognize also gl_LGPL calls with an argument. When
29521         --lgpl=2 is used and the module's license is just LGPL, report an
29522         error. Set sed_transform_lib_file according to the lgpl variable. In
29523         the generated files, use --lgpl or gl_LGPL invocations with argument,
29524         if necessary.
29525         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
29526         an LGPv2+ license.
29527         * doc/gnulib-tool.texi (Modified imports): Update explanation of
29528         gl_LGPL macro.
29529
29530 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29531             Bruno Haible  <bruno@clisp.org>
29532
29533         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
29534         (u16_uctomb_aux): Likewise.
29535         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
29536         !HAVE_INLINE.
29537         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
29538
29539 2007-10-28  Bruno Haible  <bruno@clisp.org>
29540
29541         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
29542         Invoke AM_GETTEXT_OPTION if it exists.
29543         * modules/vasprintf: Likewise.
29544         * modules/verror: Likewise.
29545         * modules/xprintf: Likewise.
29546         * modules/xvasprintf: Likewise.
29547
29548 2007-10-27  Ben Pfaff  <blp@gnu.org>
29549
29550         * lib/math.in.h: Define isfinite macro and prototypes for
29551         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
29552         implementations.
29553         * m4/math_h.m4: New substitutions for isfinite module.
29554         * lib/isfinite.c: New file.
29555         * m4/isfinite.m4: New file.
29556         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
29557         * modules/isfinite: New file.
29558         * modules/isfinite-tests: New file.
29559         * tests/tests-isfinite.c: New file.
29560         * doc/functions/isfinite.texi: Mention isfinite module.
29561         * MODULES.html.sh: Mention new module.
29562
29563 2007-10-27  Ben Pfaff  <blp@gnu.org>
29564
29565         Ralf Wildenhues reported that Tru64 4.0D declares the round
29566         functions but does not have definitions.
29567         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
29568         cannot be found in any library, set the output variable to
29569         "missing" instead of "".
29570         * m4/round.m4: Also use our substitute if we cannot find round in
29571         any library, even if it is declared.
29572         * m4/roundf.m4: Likewise for roundf.
29573         * m4/roundl.m4: Likewise for roundl.
29574         * lib/math.in.h: Undefine roundf, round, roundl before defining
29575         their replacements, to allow for hypothetical systems where these
29576         may be defined as macros but not available in libraries.
29577
29578 2007-10-27  Bruno Haible  <bruno@clisp.org>
29579
29580         * doc/gnulib.texi: Invoke @firstparagraphindent.
29581         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
29582         changes in gnulib.
29583         (Source changes): New section.
29584
29585 2007-10-26  Bruno Haible  <bruno@clisp.org>
29586
29587         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
29588         borrowed from autoconf.
29589
29590 2007-10-26  Bruno Haible  <bruno@clisp.org>
29591
29592         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
29593         strerror returned the empty string. Needed on HP-UX 11.00.
29594
29595 2007-10-24  Micah Cowan  <micah@cowan.name>
29596
29597         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
29598         * build-aux/bootstrap: Remove support for now-unnecessary option,
29599         --cvs-user, and envvars CVS_USER, CVS_RSH.
29600
29601 2007-10-24  Jim Meyering  <meyering@redhat.com>
29602
29603         Avoid diagnostics from sha1sum when there is no cached checksum.
29604         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
29605         if the po.s1 file hasn't been created yet.
29606
29607         * build-aux/bootstrap: Sync from coreutils:
29608         2007-10-24  Jim Meyering  <meyering@redhat.com>
29609         Get gnulib from the git repository, not from an obsolete cvs one.
29610         * build-aux/bootstrap: Suggestion from Micah Cowan.
29611         2007-10-04  Jim Meyering  <jim@meyering.net>
29612         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
29613         (update_po_files): Work also when there are no .po files in po/.
29614
29615 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
29616
29617         * README: Append ".git" to git and cg examples.
29618         Problem reported by Benoit Sigoure.
29619
29620 2007-10-23  Micah Cowan  <micah@cowan.name>
29621
29622         * users.txt: Add wget.
29623
29624 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29625
29626         Fix linking of some unistdio tests on FreeBSD.
29627         * modules/unistdio/u16-vsnprintf-tests
29628         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
29629         * modules/unistdio/u16-vsprintf-tests
29630         (test_u16_vsnprintf1_LDADD): Likewise.
29631         * modules/unistdio/u32-vsnprintf-tests
29632         (test_u32_vsnprintf1_LDADD): Likewise.
29633         * modules/unistdio/u32-vsprintf-tests
29634         (test_u32_vsprintf1_LDADD): Likewise.
29635         * modules/unistdio/u8-vsnprintf-tests
29636         (test_u8_vsnprintf1_LDADD): Likewise.
29637         * modules/unistdio/u8-vsprintf-tests
29638         (test_u8_vsprintf1_LDADD): Likewise.
29639         * modules/unistdio/ulc-vsnprintf-tests
29640         (test_ulc_vsnprintf1_LDADD): Likewise.
29641         * modules/unistdio/ulc-vsprintf-tests
29642         (test_ulc_vsprintf1_LDADD): Likewise.
29643
29644         Fix linking of some uniconv tests on FreeBSD.
29645         * modules/uniconv/u16-conv-from-enc-tests
29646         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
29647         * modules/uniconv/u16-conv-to-enc-tests
29648         (test_u16_conv_to_enc_LDADD): Likewise.
29649         * modules/uniconv/u16-strconv-from-enc-tests
29650         (test_u16_strconv_from_enc_LDADD): Likewise.
29651         * modules/uniconv/u16-strconv-to-enc-tests
29652         (test_u16_strconv_to_enc_LDADD): Likewise.
29653         * modules/uniconv/u32-conv-from-enc-tests
29654         (test_u32_conv_from_enc_LDADD): Likewise.
29655         * modules/uniconv/u32-conv-to-enc-tests
29656         (test_u32_conv_to_enc_LDADD): Likewise.
29657         * modules/uniconv/u32-strconv-from-enc-tests
29658         (test_u32_strconv_from_enc_LDADD): Likewise.
29659         * modules/uniconv/u32-strconv-to-enc-tests
29660         (test_u32_strconv_to_enc_LDADD): Likewise.
29661         * modules/uniconv/u8-conv-from-enc-tests
29662         (test_u8_conv_from_enc_LDADD): Likewise.
29663         * modules/uniconv/u8-conv-to-enc-tests
29664         (test_u8_conv_to_enc_LDADD): Likewise.
29665         * modules/uniconv/u8-strconv-from-enc-tests
29666         (test_u8_strconv_from_enc_LDADD): Likewise.
29667         * modules/uniconv/u8-strconv-to-enc-tests
29668         (test_u8_strconv_to_enc_LDADD): Likewise.
29669
29670 2007-10-22  Bruno Haible  <bruno@clisp.org>
29671
29672         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
29673         size.
29674
29675 2007-10-22  Eric Blake  <ebb9@byu.net>
29676
29677         Tweak x*printf documentation.
29678         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
29679         variable name and comments.
29680         Suggested by Bruno Haible.
29681
29682 2007-10-22  Bruno Haible  <bruno@clisp.org>
29683
29684         * lib/acl.c (copy_acl): Fix file name in comment.
29685
29686 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
29687
29688         Fix Tru64 problem with stdbool.h.
29689         * lib/stdbool.in.h (false, true):
29690         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
29691         Don't declare as an enum in this situation; it runs afoul of Tru64.
29692         Problem reported by Steven M. Schweda in
29693         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
29694
29695 2007-10-22  Eric Blake  <ebb9@byu.net>
29696
29697         Also wrap vf?printf.
29698         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
29699         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
29700         (xvprintf, xvfprintf): New functions.
29701
29702 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29703
29704         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
29705         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
29706
29707         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
29708         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
29709
29710 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
29711
29712         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
29713         by Bruno Haible.
29714
29715 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29716
29717         * lib/getloadavg.c
29718         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
29719         Undef `sys' after including sys/table.h, for Tru64 4.0D.
29720
29721         * tests/test-i-ring.c: Work for C89.
29722
29723 2007-10-22  Bruno Haible  <bruno@clisp.org>
29724
29725         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
29726         -1u, in preprocessor expression, so that we don't test for the bug
29727         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
29728         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
29729
29730 2007-10-22  Eric Blake  <ebb9@byu.net>
29731
29732         * tests/test-yesno.sh: Silence stderr during test.
29733
29734 2007-10-22  Simon Josefsson  <simon@josefsson.org>
29735
29736         * modules/crypto/gc-camellia: New file.
29737
29738         * m4/gc-camellia.m4: New file.
29739
29740         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
29741
29742         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
29743
29744 2007-10-22  Simon Josefsson  <simon@josefsson.org>
29745
29746         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
29747         --help to stdout.  Reported by sms@antinode.org (Steven
29748         M. Schweda).
29749
29750 2007-10-22  Simon Josefsson  <simon@josefsson.org>
29751
29752         * users.txt: Fix link to libksba.
29753
29754 2007-10-21  Ben Pfaff  <blp@gnu.org>
29755
29756         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
29757         round.c roundf implementation that depends on floorf and ceilf to
29758         be tested unconditionally.
29759
29760 2007-10-21  Ben Pfaff  <blp@gnu.org>
29761
29762         * m4/check-libm-func.m4: Removed.
29763         * m4/check-math-lib.m4: New file.
29764         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
29765         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
29766         definition and lack of AC_LIBOBJ([roundf]).
29767         * m4/roundl.m4: Ditto, and similarly for roundl.
29768         * modules/round: Reference new m4 file.
29769         * modules/roundf: Ditto.
29770         * modules/roundl: Ditto.
29771         * tests/test-round2.c (main): Use ROUND instead of round.
29772         Bug report from Bruno Haible.
29773
29774 2007-10-21  Bruno Haible  <bruno@clisp.org>
29775
29776         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
29777         context.
29778
29779 2007-10-21  Bruno Haible  <bruno@clisp.org>
29780
29781         * tests/test-wcwidth.c (main): Allow negative result for some control
29782         characters.
29783
29784         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
29785         Needed on OSF/1 5.1.
29786
29787 2007-10-21  Bruno Haible  <bruno@clisp.org>
29788
29789         * tests/test-floorf1.c: Include isnanf.h.
29790         (main): Use isnanf() instead of isnan().
29791         * tests/test-ceilf1.c: Include isnanf.h.
29792         (main): Use isnanf() instead of isnan().
29793         * tests/test-truncf1.c: Include isnanf.h.
29794         (main): Use isnanf() instead of isnan().
29795         * tests/test-roundf1.c: Include isnanf.h.
29796         (main): Use isnanf() instead of isnan().
29797
29798 2007-10-21  Eric Blake  <ebb9@byu.net>
29799
29800         * users.txt: Update URL for m4.
29801
29802 2007-10-21  Bruno Haible  <bruno@clisp.org>
29803
29804         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
29805
29806 2007-10-21  Bruno Haible  <bruno@clisp.org>
29807
29808         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
29809         Git's management files if the CVS files are not present.
29810
29811 2007-10-20  Bruno Haible  <bruno@clisp.org>
29812
29813         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
29814         gcc-3.4.x.
29815
29816 2007-10-20  Ben Pfaff  <blp@gnu.org>
29817
29818         * lib/math.in.h: Declare round, roundf, roundl if we are providing
29819         implementations.
29820         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
29821         * lib/round.c: New file.
29822         * lib/roundf.c: New file.
29823         * lib/roundl.c: New file.
29824         * m4/round.m4: New file.
29825         * m4/roundf.m4: New file.
29826         * m4/roundl.m4: New file.
29827         * m4/check-libm-func-m4: New file.
29828         * modules/math: Replace round, roundf, roundl related @VARS@ in
29829         math.in.h.
29830         * modules/round: New file.
29831         * modules/round-tests: New file.
29832         * modules/roundf: New file.
29833         * modules/roundf-tests: New file.
29834         * modules/roundl: New file.
29835         * modules/roundl-tests: New file.
29836         * tests/test-round1.c: New file.
29837         * tests/test-round2.c: New file.
29838         * tests/test-roundf1.c: New file.
29839         * tests/test-roundf2.c: New file.
29840         * tests/test-roundl.c: New file.
29841         * doc/functions/round.texi: Mention round module.
29842         * doc/functions/roundf.texi: Mention roundf module.
29843         * doc/functions/roundl.texi: Mention roundl module.
29844         * MODULES.html.sh: Mention new modules.
29845         Thanks to Bruno Haible for suggestions.
29846
29847 2007-10-20  Jim Meyering  <meyering@redhat.com>
29848
29849         * lib/xprintf.c: Include <config.h> unconditionally.
29850
29851         Change xprintf's license to GPL.
29852         * modules/xprintf (License): s/LGPL/GPL/, since this module
29853         depends on modules (exit and exitfail) which are GPL.
29854         Suggestion from Bruno Haible.
29855
29856         xprintf fixes.
29857         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
29858         Use a clearer diagnostic.
29859         Patch from Bruno Haible.
29860
29861 2007-10-20  Bruno Haible  <bruno@clisp.org>
29862
29863         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
29864         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
29865         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
29866
29867 2007-10-20  Bruno Haible  <bruno@clisp.org>
29868
29869         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
29870         precision in the comparison result > x - 1 or similar.
29871         * tests/test-ceilf2.c (correct_result_p): Likewise.
29872         * tests/test-truncf2.c (correct_result_p): Likewise.
29873         * tests/test-trunc2.c (correct_result_p): Likewise.
29874         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
29875
29876 2007-10-20  Bruno Haible  <bruno@clisp.org>
29877
29878         * modules/ceil: New file.
29879         * m4/ceil.m4: New file.
29880         * doc/functions/ceil.texi: Mention the 'ceil' module.
29881
29882 2007-10-20  Bruno Haible  <bruno@clisp.org>
29883
29884         * modules/floor: New file.
29885         * m4/floor.m4: New file.
29886         * doc/functions/floor.texi: Mention the 'floor' module.
29887
29888 2007-10-20  Bruno Haible  <bruno@clisp.org>
29889
29890         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
29891         of %a.
29892         * modules/floorf-tests (Depends-on): Likewise.
29893         * modules/truncf-tests (Depends-on): Likewise.
29894         * modules/trunc-tests (Depends-on): Likewise.
29895         Reported by Ben Pfaff.
29896
29897 2007-10-19  Jim Meyering  <meyering@redhat.com>
29898
29899         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
29900         Don't bother testing specific errno values.  Just test ferror.
29901
29902         New module: xprintf
29903         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
29904
29905 2007-10-19  Bruno Haible  <bruno@clisp.org>
29906
29907         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
29908         syntax.
29909         * modules/javaexec (Makefile.am): Likewise.
29910         * modules/relocatable-prog (Makefile.am): Likewise.
29911         Suggested by Jim Meyering.
29912
29913 2007-10-18  Bruno Haible  <bruno@clisp.org>
29914
29915         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
29916         Reported by Jim Meyering.
29917
29918 2007-10-18  Eric Blake  <ebb9@byu.net>
29919
29920         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
29921
29922 2007-10-18  Bruno Haible  <bruno@clisp.org>
29923
29924         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
29925         the format string into writable memory. Needed in Fortify conditions.
29926
29927 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
29928             Bruno Haible  <bruno@clisp.org>
29929
29930         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
29931         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
29932         * modules/trim (Depends-on): Add mbchar.
29933         (configure.ac): Add gl_FUNC_MBRTOWC.
29934         (Makefile.am): Augment lib_SOURCES.
29935
29936 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
29937
29938         Modify glob.c to use fstatat and dirfd, to simplify it.
29939         Suggested by Eric Blake.
29940         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
29941         Don't include <stdbool.h>; not used.
29942         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
29943         (link_exists_p): Simplify implementation, since we can now assume
29944         dirfd and fstatat.
29945         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
29946
29947 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29948
29949         * gnulib-tool (func_get_dependencies): Fix sed script to
29950         match only tests.
29951
29952 2007-10-17  Bruno Haible  <bruno@clisp.org>
29953
29954         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
29955         allow locale names without encoding suffix.
29956         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
29957         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
29958
29959 2007-10-16  Bruno Haible  <bruno@clisp.org>
29960
29961         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
29962         * lib/getgroups.c (getgroups): Likewise.
29963         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
29964
29965 2007-10-16  Bruno Haible  <bruno@clisp.org>
29966
29967         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
29968         * modules/malloc-posix (License): Likewise.
29969         * modules/realloc-posix (License): Likewise.
29970         * modules/calloc-posix (License): Likewise.
29971         * modules/intprops (License): Change from GPL to LGPL, with
29972         Paul Eggert's approval.
29973
29974 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
29975
29976         Merge glibc changes into lib/glob.c.
29977
29978         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
29979         2007-10-15 04:59:03 UTC.  Here are the changes:
29980
29981         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
29982
29983         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
29984
29985         * lib/glob.c: Add some branch prediction throughout.
29986
29987         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
29988
29989         [BZ #5103]
29990         * lib/glob.c (glob): Recognize patterns starting \/.
29991
29992         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
29993
29994         [BZ #3996]
29995         * lib/glob.c (attribute_hidden): Define if not defined.
29996         (glob): Unescape dirname, filename or username when needed and not
29997         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
29998         is NULL.  Handle unescaped [ in pattern without closing ].
29999         Don't pass GLOB_CHECK down to recursive glob for directories.
30000         (__glob_pattern_type): New function.
30001         (__glob_pattern_p): Implement using __glob_pattern_type.
30002         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
30003         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
30004         Remove unreachable code.
30005
30006         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
30007
30008         * lib/glob.c (glob_in_dir): Add some comments and asserts to
30009         explain why there are no leaks.
30010
30011         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
30012
30013         [BZ #3253]
30014         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
30015         time, rather allocate increasingly bigger arrays of pointers, if
30016         possible with alloca, if too large with malloc.
30017
30018 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
30019
30020         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
30021         Problem reported by H.Merijn Brand in
30022         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
30023         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
30024         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
30025
30026 2007-10-15  Bruno Haible  <bruno@clisp.org>
30027
30028         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
30029         with explicit rpl_ prefix.
30030         * lib/fopen.c (fopen): Likewise.
30031         * lib/freopen.c (freopen): Likewise.
30032         * lib/iconv.c (iconv): Likewise.
30033         * lib/iconv_close.c (iconv_close): Likewise.
30034
30035 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30036
30037         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
30038
30039 2007-10-15  Bruno Haible  <bruno@clisp.org>
30040
30041         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
30042         <stddef.h> instead of <stdlib.h> since we only need NULL.
30043         Reported by Ben Pfaff <blp@cs.stanford.edu>.
30044
30045 2007-10-15  Bruno Haible  <bruno@clisp.org>
30046
30047         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
30048         Replace paragraph talking about LIBOBJS.
30049         Reported by Colin Watson <cjwatson@debian.org>.
30050
30051 2007-10-15  Bruno Haible  <bruno@clisp.org>
30052
30053         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
30054         <stdlib.h> before using NULL.
30055
30056 2007-10-15  Simon Josefsson  <simon@josefsson.org>
30057
30058         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
30059         Reported by Albert Chin <china@thewrittenword.com>.
30060
30061 2007-10-14  Bruno Haible  <bruno@clisp.org>
30062
30063         * modules/iconv_open-utf-tests: New file.
30064         * tests/test-iconv-utf.c: New file.
30065
30066         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
30067         * modules/iconv_open-utf: New file.
30068         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
30069         (iconv, iconv_close): New declarations.
30070         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
30071         be defined.
30072         (iconv_open): Add special handling of conversion between UTF-8 and
30073         UTF-{16,32}{BE,LE}.
30074         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
30075         * lib/iconv_close.c: New file.
30076         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
30077         gl_FUNC_ICONV_OPEN.
30078         (gl_FUNC_ICONV_OPEN): Use it.
30079         (gl_FUNC_ICONV_OPEN_UTF): New macro.
30080         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
30081         and REPLACE_ICONV_UTF.
30082         * modules/iconv_open (Depends-on): Add c-strcase.
30083         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
30084         ICONV_CONST.
30085         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
30086
30087 2007-10-13  Albert Chin  <china@thewrittenword.com>
30088             Bruno Haible  <bruno@clisp.org>
30089
30090         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
30091         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
30092
30093 2007-10-13  Bruno Haible  <bruno@clisp.org>
30094
30095         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
30096         defined, use the ISO C99 inline semantics.
30097         * lib/argp.h (ARGP_EI): Likewise.
30098
30099 2007-10-13  Bruno Haible  <bruno@clisp.org>
30100
30101         Handle 'inline' change in gcc 4.3.0.
30102         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
30103         argp_fmtstream_write, argp_fmtstream_set_lmargin,
30104         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
30105         argp_fmtstream_point): Disable 'extern' declaration if the function
30106         definition is going to be provided inline.
30107         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
30108         semantics, not the ISO C99 inline semantics.
30109         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
30110         'extern' declaration if the function definition is going to be provided
30111         inline.
30112         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
30113         the GNU C inline semantics, not the ISO C99 inline semantics. With
30114         GCC 4.2, avoid a warning.
30115
30116 2007-10-13  Bruno Haible  <bruno@clisp.org>
30117
30118         * lib/freading.h (freading): Enable the use of __freading for
30119         glibc >= 2.7.
30120         * lib/freading.c (freading): Likewise.
30121
30122 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
30123
30124         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
30125         "warning: C99 inline functions are not supported; using GNU89".
30126
30127 2007-10-12  Bruno Haible  <bruno@clisp.org>
30128
30129         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
30130         of 2.
30131         * tests/test-ceilf2.c: New file.
30132         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
30133
30134         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
30135         * modules/ceilf-tests: Update.
30136
30137 2007-10-12  Bruno Haible  <bruno@clisp.org>
30138
30139         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
30140         of 2.
30141         * tests/test-floorf2.c: New file.
30142         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
30143
30144         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
30145         * modules/floorf-tests: Update.
30146
30147 2007-10-12  Bruno Haible  <bruno@clisp.org>
30148
30149         * tests/test-trunc2.c: New file.
30150         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
30151
30152         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
30153         * modules/trunc-tests: Update.
30154
30155 2007-10-12  Bruno Haible  <bruno@clisp.org>
30156
30157         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
30158         of 2.
30159         * tests/test-truncf2.c: New file.
30160         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
30161
30162         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
30163         * modules/truncf-tests: Update.
30164
30165 2007-10-11  Eric Blake  <ebb9@byu.net>
30166
30167         Don't claim strerror is broken on Interix.
30168         * doc/functions/strerror.texi (strerror): Known broken systems are
30169         now Solaris 8, and not Interix.
30170         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
30171         Interix on cross-compile.
30172         Reported by Martin Koeppe in
30173         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
30174
30175 2007-10-11  Bruno Haible  <bruno@clisp.org>
30176
30177         * modules/i-ring-tests: New file.
30178         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
30179         instead of assert.
30180
30181 2007-10-11  Bruno Haible  <bruno@clisp.org>
30182
30183         * modules/filenamecat-tests: New file.
30184         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
30185         * lib/filenamecat.c: Remove test code.
30186
30187 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
30188
30189         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
30190
30191         * lib/strerror.c: Include <string.h> always, to test interface,
30192         and to remove the need for the dummy.
30193         Include intprops.h to compute width instead of doing it ourselves
30194         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
30195         (strerror): Define it to return NULL if there's no system strerror.
30196         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
30197         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
30198         ancient pre-strerror Unix systems well any more.  Saying "unknown
30199         system error" is enough.
30200         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
30201         simpler strerror.c implementation.
30202         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
30203         Simplify the tests to reflect the simpler strerror implementation.
30204         * modules/strerror (Depends-on): Add intprops.
30205
30206 2007-10-09  Eric Blake  <ebb9@byu.net>
30207
30208         Silence test-fpending.
30209         * modules/fpending-tests (Files): Add wrapper script.
30210         * tests/test-fpending.sh: New file.
30211
30212 2007-10-09  Bruno Haible  <bruno@clisp.org>
30213
30214         * MODULES.html.sh (func_module): Don't create a hyperlink for
30215         function names like 'printf_frexp'.
30216         (Misc): Add crc, memxor.
30217         (Characteristics of floating types): New section.
30218         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
30219         isnanf-nolibm, signbit, trunc, truncf, truncl.
30220         (Enhancements for ISO C 99 functions): New subsection Input/output.
30221         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
30222         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
30223         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
30224         (Compatibility checks for POSIX:2001 functions): Add clock-time.
30225         (Enhancements for POSIX:2001 functions): Add chdir-long.
30226         (File system functions): Add areadlink, chdir-safer, read-file.
30227         Remove cycle-check.
30228         (File system as inode set): New section.
30229         (Date and time): Add gethrxtime.
30230         (Multithreading): Add openmp.
30231         (Internationalization functions): Add localename.
30232         (Unicode string functions): Add unistr/u*-mbsnlen.
30233         (Support for maintaining and releasing projects): Add git-version-gen.
30234         (Lone files): Remove directories.
30235
30236 2007-10-08  Ben Pfaff  <blp@gnu.org>
30237
30238         * lib/xmalloca.h: Fix typo in comment.
30239
30240 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
30241
30242         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
30243         when avoiding problems with integer overflow.  Use a portable test
30244         instead.
30245
30246 2007-10-08  Simon Josefsson  <simon@josefsson.org>
30247
30248         * modules/dummy (License): Change to LGPLv2+.
30249         * modules/float (License): Likewise
30250         * modules/realloc (License): Likewise
30251         * modules/stdlib (License): Likewise
30252
30253 2007-10-07  Bruno Haible  <bruno@clisp.org>
30254
30255         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
30256         * floor.c (TWO_MANT_DIG): Likewise.
30257         * ceil.c (TWO_MANT_DIG): Likewise.
30258         Reported by Ben Pfaff.
30259
30260 2007-10-07  Bruno Haible  <bruno@clisp.org>
30261
30262         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
30263         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
30264         * lib/frexp.c (FUNC): Likewise.
30265         * lib/printf-frexp.h (printf_frexp): Likewise.
30266         * lib/printf-frexpl.h (printf_frexpl): Likewise.
30267         * lib/printf-frexp.c (FUNC): Likewise.
30268         Suggested by Jim Meyering.
30269
30270 2007-10-07  Jim Meyering  <meyering@redhat.com>
30271
30272         Make xnanosleep's integer overflow test more robust.
30273         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
30274         so that gcc-4.3.0 doesn't optimize away this test for overflow.
30275
30276 2007-10-07  Bruno Haible  <bruno@clisp.org>
30277
30278         * NEWS: Mention the license change.
30279
30280         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
30281         abbreviations in the modules files.
30282
30283         Change copyright notice from GPLv2+ to GPLv3+.
30284         * README: Change copyright notice.
30285         * MODULES.html.sh: Likewise.
30286         * build-aux/bootstrap.conf: Likewise.
30287         * build-aux/config.libpath: Likewise.
30288         * build-aux/csharpcomp.sh.in: Likewise.
30289         * build-aux/csharpexec.sh.in: Likewise.
30290         * build-aux/install-reloc: Likewise.
30291         * build-aux/javacomp.sh.in: Likewise.
30292         * build-aux/javaexec.sh.in: Likewise.
30293         * build-aux/ldd.sh.in: Likewise.
30294         * build-aux/reloc-ldflags: Likewise.
30295         * build-aux/relocatable.sh.in: Likewise.
30296         * build-aux/x-to-1.in: Likewise.
30297         * check-module: Likewise.
30298         * config/srclistvars.sh: Likewise.
30299         * gnulib-tool: Likewise.
30300         * lib/acl-internal.h: Likewise.
30301         * lib/acl.c: Likewise.
30302         * lib/acl.h: Likewise.
30303         * lib/acl_entries.c: Likewise.
30304         * lib/areadlink-with-size.c: Likewise.
30305         * lib/areadlink.c: Likewise.
30306         * lib/areadlink.h: Likewise.
30307         * lib/argmatch.c: Likewise.
30308         * lib/argmatch.h: Likewise.
30309         * lib/argp-ba.c: Likewise.
30310         * lib/argp-eexst.c: Likewise.
30311         * lib/argp-fmtstream.c: Likewise.
30312         * lib/argp-fmtstream.h: Likewise.
30313         * lib/argp-fs-xinl.c: Likewise.
30314         * lib/argp-help.c: Likewise.
30315         * lib/argp-namefrob.h: Likewise.
30316         * lib/argp-parse.c: Likewise.
30317         * lib/argp-pin.c: Likewise.
30318         * lib/argp-pv.c: Likewise.
30319         * lib/argp-pvh.c: Likewise.
30320         * lib/argp-xinl.c: Likewise.
30321         * lib/argp.h: Likewise.
30322         * lib/at-func.c: Likewise.
30323         * lib/atanl.c: Likewise.
30324         * lib/backupfile.c: Likewise.
30325         * lib/backupfile.h: Likewise.
30326         * lib/basename.c: Likewise.
30327         * lib/binary-io.h: Likewise.
30328         * lib/byteswap.in.h: Likewise.
30329         * lib/c-stack.c: Likewise.
30330         * lib/c-stack.h: Likewise.
30331         * lib/c-strcasestr.c: Likewise.
30332         * lib/c-strcasestr.h: Likewise.
30333         * lib/c-strstr.c: Likewise.
30334         * lib/c-strstr.h: Likewise.
30335         * lib/c-strtod.c: Likewise.
30336         * lib/calloc.c: Likewise.
30337         * lib/canon-host.c: Likewise.
30338         * lib/canon-host.h: Likewise.
30339         * lib/canonicalize-lgpl.c: Likewise.
30340         * lib/canonicalize.c: Likewise.
30341         * lib/canonicalize.h: Likewise.
30342         * lib/ceil.c: Likewise.
30343         * lib/ceilf.c: Likewise.
30344         * lib/ceill.c: Likewise.
30345         * lib/chdir-long.c: Likewise.
30346         * lib/chdir-long.h: Likewise.
30347         * lib/chdir-safer.c: Likewise.
30348         * lib/chdir-safer.h: Likewise.
30349         * lib/chown.c: Likewise.
30350         * lib/classpath.c: Likewise.
30351         * lib/classpath.h: Likewise.
30352         * lib/clean-temp.c: Likewise.
30353         * lib/clean-temp.h: Likewise.
30354         * lib/cloexec.c: Likewise.
30355         * lib/close-stream.c: Likewise.
30356         * lib/closein.c: Likewise.
30357         * lib/closein.h: Likewise.
30358         * lib/closeout.c: Likewise.
30359         * lib/closeout.h: Likewise.
30360         * lib/concat-filename.c: Likewise.
30361         * lib/copy-file.c: Likewise.
30362         * lib/copy-file.h: Likewise.
30363         * lib/count-one-bits.h: Likewise.
30364         * lib/crc.c: Likewise.
30365         * lib/crc.h: Likewise.
30366         * lib/creat-safer.c: Likewise.
30367         * lib/csharpcomp.c: Likewise.
30368         * lib/csharpcomp.h: Likewise.
30369         * lib/csharpexec.c: Likewise.
30370         * lib/csharpexec.h: Likewise.
30371         * lib/cycle-check.c: Likewise.
30372         * lib/cycle-check.h: Likewise.
30373         * lib/diacrit.c: Likewise.
30374         * lib/diacrit.h: Likewise.
30375         * lib/diffseq.h: Likewise.
30376         * lib/dirchownmod.c: Likewise.
30377         * lib/dirent.in.h: Likewise.
30378         * lib/dirfd.c: Likewise.
30379         * lib/dirfd.h: Likewise.
30380         * lib/dirname.c: Likewise.
30381         * lib/dirname.h: Likewise.
30382         * lib/dummy.c: Likewise.
30383         * lib/dup-safer.c: Likewise.
30384         * lib/dup2.c: Likewise.
30385         * lib/eealloc.h: Likewise.
30386         * lib/error.c: Likewise.
30387         * lib/error.h: Likewise.
30388         * lib/euidaccess.c: Likewise.
30389         * lib/exclude.c: Likewise.
30390         * lib/exclude.h: Likewise.
30391         * lib/execute.c: Likewise.
30392         * lib/execute.h: Likewise.
30393         * lib/exitfail.c: Likewise.
30394         * lib/exitfail.h: Likewise.
30395         * lib/expl.c: Likewise.
30396         * lib/fatal-signal.c: Likewise.
30397         * lib/fatal-signal.h: Likewise.
30398         * lib/fbufmode.c: Likewise.
30399         * lib/fbufmode.h: Likewise.
30400         * lib/fchdir.c: Likewise.
30401         * lib/fchmodat.c: Likewise.
30402         * lib/fchownat.c: Likewise.
30403         * lib/fcntl--.h: Likewise.
30404         * lib/fcntl-safer.h: Likewise.
30405         * lib/fcntl.in.h: Likewise.
30406         * lib/fd-safer.c: Likewise.
30407         * lib/fflush.c: Likewise.
30408         * lib/file-has-acl.c: Likewise.
30409         * lib/file-set.c: Likewise.
30410         * lib/file-type.c: Likewise.
30411         * lib/file-type.h: Likewise.
30412         * lib/fileblocks.c: Likewise.
30413         * lib/filemode.c: Likewise.
30414         * lib/filemode.h: Likewise.
30415         * lib/filename.h: Likewise.
30416         * lib/filenamecat.c: Likewise.
30417         * lib/filenamecat.h: Likewise.
30418         * lib/findprog.c: Likewise.
30419         * lib/findprog.h: Likewise.
30420         * lib/float.in.h: Likewise.
30421         * lib/floor.c: Likewise.
30422         * lib/floorf.c: Likewise.
30423         * lib/floorl.c: Likewise.
30424         * lib/fopen-safer.c: Likewise.
30425         * lib/fopen.c: Likewise.
30426         * lib/fpending.c: Likewise.
30427         * lib/fpending.h: Likewise.
30428         * lib/fprintf.c: Likewise.
30429         * lib/fprintftime.h: Likewise.
30430         * lib/fpucw.h: Likewise.
30431         * lib/fpurge.c: Likewise.
30432         * lib/fpurge.h: Likewise.
30433         * lib/freadable.c: Likewise.
30434         * lib/freadable.h: Likewise.
30435         * lib/freadahead.c: Likewise.
30436         * lib/freadahead.h: Likewise.
30437         * lib/freading.c: Likewise.
30438         * lib/freading.h: Likewise.
30439         * lib/free.c: Likewise.
30440         * lib/freopen.c: Likewise.
30441         * lib/frexp.c: Likewise.
30442         * lib/frexpl.c: Likewise.
30443         * lib/fseek.c: Likewise.
30444         * lib/fseterr.c: Likewise.
30445         * lib/fseterr.h: Likewise.
30446         * lib/fstatat.c: Likewise.
30447         * lib/fstrcmp.c: Likewise.
30448         * lib/fstrcmp.h: Likewise.
30449         * lib/fsusage.c: Likewise.
30450         * lib/fsusage.h: Likewise.
30451         * lib/ftell.c: Likewise.
30452         * lib/ftello.c: Likewise.
30453         * lib/fts-cycle.c: Likewise.
30454         * lib/fts.c: Likewise.
30455         * lib/fts_.h: Likewise.
30456         * lib/full-read.c: Likewise.
30457         * lib/full-read.h: Likewise.
30458         * lib/full-write.c: Likewise.
30459         * lib/full-write.h: Likewise.
30460         * lib/fwritable.c: Likewise.
30461         * lib/fwritable.h: Likewise.
30462         * lib/fwriteerror.c: Likewise.
30463         * lib/fwriteerror.h: Likewise.
30464         * lib/fwriting.c: Likewise.
30465         * lib/fwriting.h: Likewise.
30466         * lib/gcd.c: Likewise.
30467         * lib/gcd.h: Likewise.
30468         * lib/getcwd.c: Likewise.
30469         * lib/getdate.h: Likewise.
30470         * lib/getdate.y: Likewise.
30471         * lib/getdomainname.c: Likewise.
30472         * lib/getdomainname.h: Likewise.
30473         * lib/getgroups.c: Likewise.
30474         * lib/gethostname.c: Likewise.
30475         * lib/gethrxtime.c: Likewise.
30476         * lib/gethrxtime.h: Likewise.
30477         * lib/getloadavg.c: Likewise.
30478         * lib/getndelim2.c: Likewise.
30479         * lib/getndelim2.h: Likewise.
30480         * lib/getnline.c: Likewise.
30481         * lib/getnline.h: Likewise.
30482         * lib/getopt.c: Likewise.
30483         * lib/getopt.in.h: Likewise.
30484         * lib/getopt1.c: Likewise.
30485         * lib/getopt_int.h: Likewise.
30486         * lib/getpagesize.h: Likewise.
30487         * lib/getsubopt.c: Likewise.
30488         * lib/gettime.c: Likewise.
30489         * lib/getugroups.c: Likewise.
30490         * lib/getugroups.h: Likewise.
30491         * lib/getusershell.c: Likewise.
30492         * lib/gl_anyavltree_list1.h: Likewise.
30493         * lib/gl_anyavltree_list2.h: Likewise.
30494         * lib/gl_anyhash_list1.h: Likewise.
30495         * lib/gl_anyhash_list2.h: Likewise.
30496         * lib/gl_anylinked_list1.h: Likewise.
30497         * lib/gl_anylinked_list2.h: Likewise.
30498         * lib/gl_anyrbtree_list1.h: Likewise.
30499         * lib/gl_anyrbtree_list2.h: Likewise.
30500         * lib/gl_anytree_list1.h: Likewise.
30501         * lib/gl_anytree_list2.h: Likewise.
30502         * lib/gl_anytree_oset.h: Likewise.
30503         * lib/gl_anytreehash_list1.h: Likewise.
30504         * lib/gl_anytreehash_list2.h: Likewise.
30505         * lib/gl_array_list.c: Likewise.
30506         * lib/gl_array_list.h: Likewise.
30507         * lib/gl_array_oset.c: Likewise.
30508         * lib/gl_array_oset.h: Likewise.
30509         * lib/gl_avltree_list.c: Likewise.
30510         * lib/gl_avltree_list.h: Likewise.
30511         * lib/gl_avltree_oset.c: Likewise.
30512         * lib/gl_avltree_oset.h: Likewise.
30513         * lib/gl_avltreehash_list.c: Likewise.
30514         * lib/gl_avltreehash_list.h: Likewise.
30515         * lib/gl_carray_list.c: Likewise.
30516         * lib/gl_carray_list.h: Likewise.
30517         * lib/gl_linked_list.c: Likewise.
30518         * lib/gl_linked_list.h: Likewise.
30519         * lib/gl_linkedhash_list.c: Likewise.
30520         * lib/gl_linkedhash_list.h: Likewise.
30521         * lib/gl_list.c: Likewise.
30522         * lib/gl_list.h: Likewise.
30523         * lib/gl_oset.c: Likewise.
30524         * lib/gl_oset.h: Likewise.
30525         * lib/gl_rbtree_list.c: Likewise.
30526         * lib/gl_rbtree_list.h: Likewise.
30527         * lib/gl_rbtree_oset.c: Likewise.
30528         * lib/gl_rbtree_oset.h: Likewise.
30529         * lib/gl_rbtreehash_list.c: Likewise.
30530         * lib/gl_rbtreehash_list.h: Likewise.
30531         * lib/gl_sublist.c: Likewise.
30532         * lib/gl_sublist.h: Likewise.
30533         * lib/group-member.c: Likewise.
30534         * lib/group-member.h: Likewise.
30535         * lib/hard-locale.c: Likewise.
30536         * lib/hard-locale.h: Likewise.
30537         * lib/hash-pjw.c: Likewise.
30538         * lib/hash-pjw.h: Likewise.
30539         * lib/hash-triple.c: Likewise.
30540         * lib/hash.c: Likewise.
30541         * lib/hash.h: Likewise.
30542         * lib/human.c: Likewise.
30543         * lib/human.h: Likewise.
30544         * lib/i-ring.c: Likewise.
30545         * lib/i-ring.h: Likewise.
30546         * lib/idcache.c: Likewise.
30547         * lib/imaxabs.c: Likewise.
30548         * lib/imaxdiv.c: Likewise.
30549         * lib/inet_pton.c: Likewise.
30550         * lib/inet_pton.h: Likewise.
30551         * lib/intprops.h: Likewise.
30552         * lib/inttostr.c: Likewise.
30553         * lib/inttostr.h: Likewise.
30554         * lib/inttypes.in.h: Likewise.
30555         * lib/isapipe.c: Likewise.
30556         * lib/isdir.c: Likewise.
30557         * lib/isnan.c: Likewise.
30558         * lib/isnan.h: Likewise.
30559         * lib/isnanf.c: Likewise.
30560         * lib/isnanf.h: Likewise.
30561         * lib/isnanl-nolibm.h: Likewise.
30562         * lib/isnanl.c: Likewise.
30563         * lib/isnanl.h: Likewise.
30564         * lib/javacomp.c: Likewise.
30565         * lib/javacomp.h: Likewise.
30566         * lib/javaexec.c: Likewise.
30567         * lib/javaexec.h: Likewise.
30568         * lib/javaversion.c: Likewise.
30569         * lib/javaversion.h: Likewise.
30570         * lib/javaversion.java: Likewise.
30571         * lib/lbrkprop.h: Likewise.
30572         * lib/lchmod.h: Likewise.
30573         * lib/lchown.c: Likewise.
30574         * lib/ldexpl.c: Likewise.
30575         * lib/linebreak.c: Likewise.
30576         * lib/linebreak.h: Likewise.
30577         * lib/linebuffer.c: Likewise.
30578         * lib/linebuffer.h: Likewise.
30579         * lib/locale.in.h: Likewise.
30580         * lib/logl.c: Likewise.
30581         * lib/long-options.c: Likewise.
30582         * lib/long-options.h: Likewise.
30583         * lib/lstat.c: Likewise.
30584         * lib/lstat.h: Likewise.
30585         * lib/math.in.h: Likewise.
30586         * lib/mbchar.c: Likewise.
30587         * lib/mbchar.h: Likewise.
30588         * lib/mbfile.h: Likewise.
30589         * lib/mbiter.h: Likewise.
30590         * lib/mbscasecmp.c: Likewise.
30591         * lib/mbscasestr.c: Likewise.
30592         * lib/mbschr.c: Likewise.
30593         * lib/mbscspn.c: Likewise.
30594         * lib/mbslen.c: Likewise.
30595         * lib/mbsncasecmp.c: Likewise.
30596         * lib/mbsnlen.c: Likewise.
30597         * lib/mbspbrk.c: Likewise.
30598         * lib/mbspcasecmp.c: Likewise.
30599         * lib/mbsrchr.c: Likewise.
30600         * lib/mbssep.c: Likewise.
30601         * lib/mbsspn.c: Likewise.
30602         * lib/mbsstr.c: Likewise.
30603         * lib/mbstok_r.c: Likewise.
30604         * lib/mbswidth.c: Likewise.
30605         * lib/mbswidth.h: Likewise.
30606         * lib/mbuiter.h: Likewise.
30607         * lib/memcasecmp.c: Likewise.
30608         * lib/memcasecmp.h: Likewise.
30609         * lib/memchr.c: Likewise.
30610         * lib/memcmp.c: Likewise.
30611         * lib/memcoll.c: Likewise.
30612         * lib/memcoll.h: Likewise.
30613         * lib/memcpy.c: Likewise.
30614         * lib/memrchr.c: Likewise.
30615         * lib/mkancesdirs.c: Likewise.
30616         * lib/mkdir-p.c: Likewise.
30617         * lib/mkdir-p.h: Likewise.
30618         * lib/mkdir.c: Likewise.
30619         * lib/mkdirat.c: Likewise.
30620         * lib/mkdtemp.c: Likewise.
30621         * lib/mkstemp-safer.c: Likewise.
30622         * lib/mkstemp.c: Likewise.
30623         * lib/modechange.c: Likewise.
30624         * lib/modechange.h: Likewise.
30625         * lib/mountlist.c: Likewise.
30626         * lib/mountlist.h: Likewise.
30627         * lib/mpsort.c: Likewise.
30628         * lib/nanosleep.c: Likewise.
30629         * lib/obstack.c: Likewise.
30630         * lib/obstack.h: Likewise.
30631         * lib/open-safer.c: Likewise.
30632         * lib/open.c: Likewise.
30633         * lib/openat-die.c: Likewise.
30634         * lib/openat-priv.h: Likewise.
30635         * lib/openat-proc.c: Likewise.
30636         * lib/openat.c: Likewise.
30637         * lib/openat.h: Likewise.
30638         * lib/pagealign_alloc.c: Likewise.
30639         * lib/pagealign_alloc.h: Likewise.
30640         * lib/physmem.c: Likewise.
30641         * lib/physmem.h: Likewise.
30642         * lib/pipe-safer.c: Likewise.
30643         * lib/pipe.c: Likewise.
30644         * lib/pipe.h: Likewise.
30645         * lib/posixtm.c: Likewise.
30646         * lib/posixtm.h: Likewise.
30647         * lib/posixver.c: Likewise.
30648         * lib/printf-frexp.c: Likewise.
30649         * lib/printf-frexp.h: Likewise.
30650         * lib/printf-frexpl.c: Likewise.
30651         * lib/printf-frexpl.h: Likewise.
30652         * lib/printf.c: Likewise.
30653         * lib/progname.c: Likewise.
30654         * lib/progname.h: Likewise.
30655         * lib/progreloc.c: Likewise.
30656         * lib/putenv.c: Likewise.
30657         * lib/quote.c: Likewise.
30658         * lib/quote.h: Likewise.
30659         * lib/quotearg.c: Likewise.
30660         * lib/quotearg.h: Likewise.
30661         * lib/raise.c: Likewise.
30662         * lib/readline.c: Likewise.
30663         * lib/readline.h: Likewise.
30664         * lib/readlink.c: Likewise.
30665         * lib/readtokens.c: Likewise.
30666         * lib/readtokens.h: Likewise.
30667         * lib/readtokens0.c: Likewise.
30668         * lib/readtokens0.h: Likewise.
30669         * lib/readutmp.c: Likewise.
30670         * lib/readutmp.h: Likewise.
30671         * lib/realloc.c: Likewise.
30672         * lib/relocwrapper.c: Likewise.
30673         * lib/rename-dest-slash.c: Likewise.
30674         * lib/rename.c: Likewise.
30675         * lib/rmdir.c: Likewise.
30676         * lib/rpmatch.c: Likewise.
30677         * lib/safe-read.c: Likewise.
30678         * lib/safe-read.h: Likewise.
30679         * lib/safe-write.c: Likewise.
30680         * lib/safe-write.h: Likewise.
30681         * lib/same-inode.h: Likewise.
30682         * lib/same.c: Likewise.
30683         * lib/same.h: Likewise.
30684         * lib/save-cwd.c: Likewise.
30685         * lib/save-cwd.h: Likewise.
30686         * lib/savedir.c: Likewise.
30687         * lib/savedir.h: Likewise.
30688         * lib/savewd.c: Likewise.
30689         * lib/savewd.h: Likewise.
30690         * lib/search.in.h: Likewise.
30691         * lib/setenv.c: Likewise.
30692         * lib/setenv.h: Likewise.
30693         * lib/settime.c: Likewise.
30694         * lib/sh-quote.c: Likewise.
30695         * lib/sh-quote.h: Likewise.
30696         * lib/sig2str.c: Likewise.
30697         * lib/sig2str.h: Likewise.
30698         * lib/signal.in.h: Likewise.
30699         * lib/signbitd.c: Likewise.
30700         * lib/signbitf.c: Likewise.
30701         * lib/signbitl.c: Likewise.
30702         * lib/sigprocmask.c: Likewise.
30703         * lib/sincosl.c: Likewise.
30704         * lib/sleep.c: Likewise.
30705         * lib/sprintf.c: Likewise.
30706         * lib/sqrtl.c: Likewise.
30707         * lib/stat-time.h: Likewise.
30708         * lib/stdio--.h: Likewise.
30709         * lib/stdio-safer.h: Likewise.
30710         * lib/stdlib--.h: Likewise.
30711         * lib/stdlib-safer.h: Likewise.
30712         * lib/stdlib.in.h: Likewise.
30713         * lib/stpcpy.c: Likewise.
30714         * lib/stpncpy.c: Likewise.
30715         * lib/strchrnul.c: Likewise.
30716         * lib/strcspn.c: Likewise.
30717         * lib/strerror.c: Likewise.
30718         * lib/strftime.c: Likewise.
30719         * lib/strftime.h: Likewise.
30720         * lib/striconveh.c: Likewise.
30721         * lib/striconveh.h: Likewise.
30722         * lib/striconveha.c: Likewise.
30723         * lib/striconveha.h: Likewise.
30724         * lib/stripslash.c: Likewise.
30725         * lib/strnlen1.c: Likewise.
30726         * lib/strnlen1.h: Likewise.
30727         * lib/strtod.c: Likewise.
30728         * lib/strtoimax.c: Likewise.
30729         * lib/strtok_r.c: Likewise.
30730         * lib/strtol.c: Likewise.
30731         * lib/strtoll.c: Likewise.
30732         * lib/strtoul.c: Likewise.
30733         * lib/strtoull.c: Likewise.
30734         * lib/sysexits.in.h: Likewise.
30735         * lib/tempname.c: Likewise.
30736         * lib/tempname.h: Likewise.
30737         * lib/timespec.h: Likewise.
30738         * lib/tls.c: Likewise.
30739         * lib/tls.h: Likewise.
30740         * lib/tmpdir.c: Likewise.
30741         * lib/tmpdir.h: Likewise.
30742         * lib/tmpfile-safer.c: Likewise.
30743         * lib/tmpfile.c: Likewise.
30744         * lib/trigl.c: Likewise.
30745         * lib/trigl.h: Likewise.
30746         * lib/trim.c: Likewise.
30747         * lib/trim.h: Likewise.
30748         * lib/trunc.c: Likewise.
30749         * lib/truncf.c: Likewise.
30750         * lib/truncl.c: Likewise.
30751         * lib/tsearch.c: Likewise.
30752         * lib/unicodeio.c: Likewise.
30753         * lib/unicodeio.h: Likewise.
30754         * lib/unistd--.h: Likewise.
30755         * lib/unistd-safer.h: Likewise.
30756         * lib/unistdio/ulc-fprintf.c: Likewise.
30757         * lib/unistdio/ulc-vfprintf.c: Likewise.
30758         * lib/unlinkdir.c: Likewise.
30759         * lib/unlinkdir.h: Likewise.
30760         * lib/unlocked-io.h: Likewise.
30761         * lib/unsetenv.c: Likewise.
30762         * lib/userspec.c: Likewise.
30763         * lib/utime.c: Likewise.
30764         * lib/utimecmp.c: Likewise.
30765         * lib/utimecmp.h: Likewise.
30766         * lib/utimens.c: Likewise.
30767         * lib/verify.h: Likewise.
30768         * lib/verror.c: Likewise.
30769         * lib/verror.h: Likewise.
30770         * lib/version-etc-fsf.c: Likewise.
30771         * lib/version-etc.c: Likewise.
30772         * lib/version-etc.h: Likewise.
30773         * lib/vfprintf.c: Likewise.
30774         * lib/vprintf.c: Likewise.
30775         * lib/vsprintf.c: Likewise.
30776         * lib/w32spawn.h: Likewise.
30777         * lib/wait-process.c: Likewise.
30778         * lib/wait-process.h: Likewise.
30779         * lib/wcwidth.c: Likewise.
30780         * lib/write-any-file.c: Likewise.
30781         * lib/xalloc-die.c: Likewise.
30782         * lib/xalloc.h: Likewise.
30783         * lib/xasprintf.c: Likewise.
30784         * lib/xgetcwd.c: Likewise.
30785         * lib/xgetcwd.h: Likewise.
30786         * lib/xgetdomainname.c: Likewise.
30787         * lib/xgetdomainname.h: Likewise.
30788         * lib/xgethostname.c: Likewise.
30789         * lib/xmalloc.c: Likewise.
30790         * lib/xmalloca.c: Likewise.
30791         * lib/xmalloca.h: Likewise.
30792         * lib/xmemcoll.c: Likewise.
30793         * lib/xnanosleep.c: Likewise.
30794         * lib/xreadlink.c: Likewise.
30795         * lib/xreadlink.h: Likewise.
30796         * lib/xsetenv.c: Likewise.
30797         * lib/xsetenv.h: Likewise.
30798         * lib/xstriconv.c: Likewise.
30799         * lib/xstriconv.h: Likewise.
30800         * lib/xstrndup.c: Likewise.
30801         * lib/xstrndup.h: Likewise.
30802         * lib/xstrtod.c: Likewise.
30803         * lib/xstrtod.h: Likewise.
30804         * lib/xstrtol-error.c: Likewise.
30805         * lib/xstrtol.c: Likewise.
30806         * lib/xstrtol.h: Likewise.
30807         * lib/xtime.h: Likewise.
30808         * lib/xvasprintf.c: Likewise.
30809         * lib/xvasprintf.h: Likewise.
30810         * lib/yesno.c: Likewise.
30811         * lib/yesno.h: Likewise.
30812         * posix-modules: Likewise.
30813         * tests/test-alloca-opt.c: Likewise.
30814         * tests/test-arcfour.c: Likewise.
30815         * tests/test-arctwo.c: Likewise.
30816         * tests/test-argmatch.c: Likewise.
30817         * tests/test-argp-2.sh: Likewise.
30818         * tests/test-argp.c: Likewise.
30819         * tests/test-arpa_inet.c: Likewise.
30820         * tests/test-array_list.c: Likewise.
30821         * tests/test-array_oset.c: Likewise.
30822         * tests/test-atexit.c: Likewise.
30823         * tests/test-avltree_list.c: Likewise.
30824         * tests/test-avltree_oset.c: Likewise.
30825         * tests/test-avltreehash_list.c: Likewise.
30826         * tests/test-base64.c: Likewise.
30827         * tests/test-binary-io.c: Likewise.
30828         * tests/test-byteswap.c: Likewise.
30829         * tests/test-c-ctype.c: Likewise.
30830         * tests/test-c-strcasecmp.c: Likewise.
30831         * tests/test-c-strcasestr.c: Likewise.
30832         * tests/test-c-strncasecmp.c: Likewise.
30833         * tests/test-c-strstr.c: Likewise.
30834         * tests/test-canonicalize-lgpl.c: Likewise.
30835         * tests/test-canonicalize.c: Likewise.
30836         * tests/test-carray_list.c: Likewise.
30837         * tests/test-ceilf.c: Likewise.
30838         * tests/test-ceill.c: Likewise.
30839         * tests/test-count-one-bits.c: Likewise.
30840         * tests/test-crc.c: Likewise.
30841         * tests/test-dirname.c: Likewise.
30842         * tests/test-fbufmode.c: Likewise.
30843         * tests/test-fcntl.c: Likewise.
30844         * tests/test-fflush.c: Likewise.
30845         * tests/test-floorf.c: Likewise.
30846         * tests/test-floorl.c: Likewise.
30847         * tests/test-fopen.c: Likewise.
30848         * tests/test-fprintf-posix.c: Likewise.
30849         * tests/test-fprintf-posix.h: Likewise.
30850         * tests/test-fpurge.c: Likewise.
30851         * tests/test-freadable.c: Likewise.
30852         * tests/test-freadahead.c: Likewise.
30853         * tests/test-freading.c: Likewise.
30854         * tests/test-freopen.c: Likewise.
30855         * tests/test-frexp.c: Likewise.
30856         * tests/test-frexpl.c: Likewise.
30857         * tests/test-fseek.c: Likewise.
30858         * tests/test-fseeko.c: Likewise.
30859         * tests/test-fseterr.c: Likewise.
30860         * tests/test-fstrcmp.c: Likewise.
30861         * tests/test-ftell.c: Likewise.
30862         * tests/test-ftello.c: Likewise.
30863         * tests/test-fwritable.c: Likewise.
30864         * tests/test-fwriting.c: Likewise.
30865         * tests/test-getaddrinfo.c: Likewise.
30866         * tests/test-getpass.c: Likewise.
30867         * tests/test-gettimeofday.c: Likewise.
30868         * tests/test-hmac-md5.c: Likewise.
30869         * tests/test-hmac-sha1.c: Likewise.
30870         * tests/test-iconv.c: Likewise.
30871         * tests/test-iconvme.c: Likewise.
30872         * tests/test-inttypes.c: Likewise.
30873         * tests/test-isnan.c: Likewise.
30874         * tests/test-isnanf.c: Likewise.
30875         * tests/test-isnanl-nolibm.c: Likewise.
30876         * tests/test-isnanl.c: Likewise.
30877         * tests/test-isnanl.h: Likewise.
30878         * tests/test-ldexpl.c: Likewise.
30879         * tests/test-linked_list.c: Likewise.
30880         * tests/test-linkedhash_list.c: Likewise.
30881         * tests/test-locale.c: Likewise.
30882         * tests/test-localename.c: Likewise.
30883         * tests/test-lock.c: Likewise.
30884         * tests/test-lseek.c: Likewise.
30885         * tests/test-malloca.c: Likewise.
30886         * tests/test-math.c: Likewise.
30887         * tests/test-mbscasecmp.c: Likewise.
30888         * tests/test-mbscasestr1.c: Likewise.
30889         * tests/test-mbscasestr2.c: Likewise.
30890         * tests/test-mbscasestr3.c: Likewise.
30891         * tests/test-mbscasestr4.c: Likewise.
30892         * tests/test-mbschr.c: Likewise.
30893         * tests/test-mbscspn.c: Likewise.
30894         * tests/test-mbsncasecmp.c: Likewise.
30895         * tests/test-mbspbrk.c: Likewise.
30896         * tests/test-mbspcasecmp.c: Likewise.
30897         * tests/test-mbsrchr.c: Likewise.
30898         * tests/test-mbsspn.c: Likewise.
30899         * tests/test-mbsstr1.c: Likewise.
30900         * tests/test-mbsstr2.c: Likewise.
30901         * tests/test-mbsstr3.c: Likewise.
30902         * tests/test-md5.c: Likewise.
30903         * tests/test-memmem.c: Likewise.
30904         * tests/test-netinet_in.c: Likewise.
30905         * tests/test-open.c: Likewise.
30906         * tests/test-printf-frexp.c: Likewise.
30907         * tests/test-printf-frexpl.c: Likewise.
30908         * tests/test-printf-posix.c: Likewise.
30909         * tests/test-printf-posix.h: Likewise.
30910         * tests/test-rbtree_list.c: Likewise.
30911         * tests/test-rbtree_oset.c: Likewise.
30912         * tests/test-rbtreehash_list.c: Likewise.
30913         * tests/test-read-file.c: Likewise.
30914         * tests/test-rijndael.c: Likewise.
30915         * tests/test-search.c: Likewise.
30916         * tests/test-signbit.c: Likewise.
30917         * tests/test-sleep.c: Likewise.
30918         * tests/test-snprintf-posix.c: Likewise.
30919         * tests/test-snprintf-posix.h: Likewise.
30920         * tests/test-snprintf.c: Likewise.
30921         * tests/test-sprintf-posix.c: Likewise.
30922         * tests/test-sprintf-posix.h: Likewise.
30923         * tests/test-stat-time.c: Likewise.
30924         * tests/test-stdbool.c: Likewise.
30925         * tests/test-stdint.c: Likewise.
30926         * tests/test-stdio.c: Likewise.
30927         * tests/test-stdlib.c: Likewise.
30928         * tests/test-stpncpy.c: Likewise.
30929         * tests/test-strcasestr.c: Likewise.
30930         * tests/test-striconv.c: Likewise.
30931         * tests/test-striconveh.c: Likewise.
30932         * tests/test-striconveha.c: Likewise.
30933         * tests/test-string.c: Likewise.
30934         * tests/test-sys_select.c: Likewise.
30935         * tests/test-sys_socket.c: Likewise.
30936         * tests/test-sys_stat.c: Likewise.
30937         * tests/test-sys_time.c: Likewise.
30938         * tests/test-sysexits.c: Likewise.
30939         * tests/test-time.c: Likewise.
30940         * tests/test-tls.c: Likewise.
30941         * tests/test-trunc.c: Likewise.
30942         * tests/test-truncf.c: Likewise.
30943         * tests/test-truncl.c: Likewise.
30944         * tests/test-unistd.c: Likewise.
30945         * tests/test-vasnprintf-posix.c: Likewise.
30946         * tests/test-vasnprintf-posix2.c: Likewise.
30947         * tests/test-vasnprintf.c: Likewise.
30948         * tests/test-vasprintf-posix.c: Likewise.
30949         * tests/test-vasprintf.c: Likewise.
30950         * tests/test-verify.c: Likewise.
30951         * tests/test-vfprintf-posix.c: Likewise.
30952         * tests/test-vprintf-posix.c: Likewise.
30953         * tests/test-vsnprintf-posix.c: Likewise.
30954         * tests/test-vsnprintf.c: Likewise.
30955         * tests/test-vsprintf-posix.c: Likewise.
30956         * tests/test-wchar.c: Likewise.
30957         * tests/test-wctype.c: Likewise.
30958         * tests/test-wcwidth.c: Likewise.
30959         * tests/test-xstrtol.c: Likewise.
30960         * tests/test-xvasprintf.c: Likewise.
30961         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
30962         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
30963         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
30964         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
30965         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
30966         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
30967         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
30968         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
30969         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
30970         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
30971         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
30972         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
30973         * tests/uniname/test-uninames.c: Likewise.
30974         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
30975         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
30976         * tests/unistdio/test-u16-printf1.h: Likewise.
30977         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
30978         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
30979         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
30980         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
30981         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
30982         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
30983         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
30984         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
30985         * tests/unistdio/test-u32-printf1.h: Likewise.
30986         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
30987         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
30988         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
30989         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
30990         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
30991         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
30992         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
30993         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
30994         * tests/unistdio/test-u8-printf1.h: Likewise.
30995         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
30996         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
30997         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
30998         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
30999         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
31000         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
31001         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
31002         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
31003         * tests/unistdio/test-ulc-printf1.h: Likewise.
31004         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
31005         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
31006         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
31007         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
31008         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
31009         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
31010         * tests/uniwidth/test-u16-strwidth.c: Likewise.
31011         * tests/uniwidth/test-u16-width.c: Likewise.
31012         * tests/uniwidth/test-u32-strwidth.c: Likewise.
31013         * tests/uniwidth/test-u32-width.c: Likewise.
31014         * tests/uniwidth/test-u8-strwidth.c: Likewise.
31015         * tests/uniwidth/test-u8-width.c: Likewise.
31016         * tests/uniwidth/test-uc_width.c: Likewise.
31017         * config/srclist-update: Likewise.
31018         (fixlicense): Update to GPLv3+.
31019
31020         Change copyright notice from LGPLv2.1+ to LGPLv3+.
31021         * tests/test-tsearch.c: Change copyright notice.
31022
31023         Change copyright notice from LGPLv2.0+ to LGPLv3+.
31024         * lib/c-strcaseeq.h: Change copyright notice.
31025         * lib/streq.h: Likewise.
31026         * lib/uniconv.h: Likewise.
31027         * lib/uniconv/u-conv-from-enc.h: Likewise.
31028         * lib/uniconv/u-conv-to-enc.h: Likewise.
31029         * lib/uniconv/u-strconv-from-enc.h: Likewise.
31030         * lib/uniconv/u-strconv-to-enc.h: Likewise.
31031         * lib/uniconv/u16-conv-from-enc.c: Likewise.
31032         * lib/uniconv/u16-conv-to-enc.c: Likewise.
31033         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
31034         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
31035         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
31036         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
31037         * lib/uniconv/u32-conv-from-enc.c: Likewise.
31038         * lib/uniconv/u32-conv-to-enc.c: Likewise.
31039         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
31040         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
31041         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
31042         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
31043         * lib/uniconv/u8-conv-from-enc.c: Likewise.
31044         * lib/uniconv/u8-conv-to-enc.c: Likewise.
31045         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
31046         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
31047         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
31048         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
31049         * lib/uniname.h: Likewise.
31050         * lib/uniname/uniname.c: Likewise.
31051         * lib/unistdio.h: Likewise.
31052         * lib/unistdio/u-asnprintf.h: Likewise.
31053         * lib/unistdio/u-asprintf.h: Likewise.
31054         * lib/unistdio/u-printf-args.c: Likewise.
31055         * lib/unistdio/u-printf-args.h: Likewise.
31056         * lib/unistdio/u-printf-parse.h: Likewise.
31057         * lib/unistdio/u-snprintf.h: Likewise.
31058         * lib/unistdio/u-sprintf.h: Likewise.
31059         * lib/unistdio/u-vasprintf.h: Likewise.
31060         * lib/unistdio/u-vsnprintf.h: Likewise.
31061         * lib/unistdio/u-vsprintf.h: Likewise.
31062         * lib/unistdio/u16-asnprintf.c: Likewise.
31063         * lib/unistdio/u16-asprintf.c: Likewise.
31064         * lib/unistdio/u16-printf-parse.c: Likewise.
31065         * lib/unistdio/u16-snprintf.c: Likewise.
31066         * lib/unistdio/u16-sprintf.c: Likewise.
31067         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
31068         * lib/unistdio/u16-u16-asprintf.c: Likewise.
31069         * lib/unistdio/u16-u16-snprintf.c: Likewise.
31070         * lib/unistdio/u16-u16-sprintf.c: Likewise.
31071         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
31072         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
31073         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
31074         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
31075         * lib/unistdio/u16-vasnprintf.c: Likewise.
31076         * lib/unistdio/u16-vasprintf.c: Likewise.
31077         * lib/unistdio/u16-vsnprintf.c: Likewise.
31078         * lib/unistdio/u16-vsprintf.c: Likewise.
31079         * lib/unistdio/u32-asnprintf.c: Likewise.
31080         * lib/unistdio/u32-asprintf.c: Likewise.
31081         * lib/unistdio/u32-printf-parse.c: Likewise.
31082         * lib/unistdio/u32-snprintf.c: Likewise.
31083         * lib/unistdio/u32-sprintf.c: Likewise.
31084         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
31085         * lib/unistdio/u32-u32-asprintf.c: Likewise.
31086         * lib/unistdio/u32-u32-snprintf.c: Likewise.
31087         * lib/unistdio/u32-u32-sprintf.c: Likewise.
31088         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
31089         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
31090         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
31091         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
31092         * lib/unistdio/u32-vasnprintf.c: Likewise.
31093         * lib/unistdio/u32-vasprintf.c: Likewise.
31094         * lib/unistdio/u32-vsnprintf.c: Likewise.
31095         * lib/unistdio/u32-vsprintf.c: Likewise.
31096         * lib/unistdio/u8-asnprintf.c: Likewise.
31097         * lib/unistdio/u8-asprintf.c: Likewise.
31098         * lib/unistdio/u8-printf-parse.c: Likewise.
31099         * lib/unistdio/u8-snprintf.c: Likewise.
31100         * lib/unistdio/u8-sprintf.c: Likewise.
31101         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
31102         * lib/unistdio/u8-u8-asprintf.c: Likewise.
31103         * lib/unistdio/u8-u8-snprintf.c: Likewise.
31104         * lib/unistdio/u8-u8-sprintf.c: Likewise.
31105         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
31106         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
31107         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
31108         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
31109         * lib/unistdio/u8-vasnprintf.c: Likewise.
31110         * lib/unistdio/u8-vasprintf.c: Likewise.
31111         * lib/unistdio/u8-vsnprintf.c: Likewise.
31112         * lib/unistdio/u8-vsprintf.c: Likewise.
31113         * lib/unistdio/ulc-asnprintf.c: Likewise.
31114         * lib/unistdio/ulc-asprintf.c: Likewise.
31115         * lib/unistdio/ulc-printf-parse.c: Likewise.
31116         * lib/unistdio/ulc-snprintf.c: Likewise.
31117         * lib/unistdio/ulc-sprintf.c: Likewise.
31118         * lib/unistdio/ulc-vasnprintf.c: Likewise.
31119         * lib/unistdio/ulc-vasprintf.c: Likewise.
31120         * lib/unistdio/ulc-vsnprintf.c: Likewise.
31121         * lib/unistdio/ulc-vsprintf.c: Likewise.
31122         * lib/unistr.h: Likewise.
31123         * lib/unistr/u-cpy-alloc.h: Likewise.
31124         * lib/unistr/u-cpy.h: Likewise.
31125         * lib/unistr/u-endswith.h: Likewise.
31126         * lib/unistr/u-move.h: Likewise.
31127         * lib/unistr/u-set.h: Likewise.
31128         * lib/unistr/u-startswith.h: Likewise.
31129         * lib/unistr/u-stpcpy.h: Likewise.
31130         * lib/unistr/u-stpncpy.h: Likewise.
31131         * lib/unistr/u-strcat.h: Likewise.
31132         * lib/unistr/u-strcpy.h: Likewise.
31133         * lib/unistr/u-strcspn.h: Likewise.
31134         * lib/unistr/u-strdup.h: Likewise.
31135         * lib/unistr/u-strlen.h: Likewise.
31136         * lib/unistr/u-strncat.h: Likewise.
31137         * lib/unistr/u-strncpy.h: Likewise.
31138         * lib/unistr/u-strnlen.h: Likewise.
31139         * lib/unistr/u-strpbrk.h: Likewise.
31140         * lib/unistr/u-strspn.h: Likewise.
31141         * lib/unistr/u-strstr.h: Likewise.
31142         * lib/unistr/u-strtok.h: Likewise.
31143         * lib/unistr/u16-check.c: Likewise.
31144         * lib/unistr/u16-chr.c: Likewise.
31145         * lib/unistr/u16-cmp.c: Likewise.
31146         * lib/unistr/u16-cpy-alloc.c: Likewise.
31147         * lib/unistr/u16-cpy.c: Likewise.
31148         * lib/unistr/u16-endswith.c: Likewise.
31149         * lib/unistr/u16-mblen.c: Likewise.
31150         * lib/unistr/u16-mbsnlen.c: Likewise.
31151         * lib/unistr/u16-mbtouc-aux.c: Likewise.
31152         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
31153         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
31154         * lib/unistr/u16-mbtouc.c: Likewise.
31155         * lib/unistr/u16-mbtoucr.c: Likewise.
31156         * lib/unistr/u16-move.c: Likewise.
31157         * lib/unistr/u16-next.c: Likewise.
31158         * lib/unistr/u16-prev.c: Likewise.
31159         * lib/unistr/u16-set.c: Likewise.
31160         * lib/unistr/u16-startswith.c: Likewise.
31161         * lib/unistr/u16-stpcpy.c: Likewise.
31162         * lib/unistr/u16-stpncpy.c: Likewise.
31163         * lib/unistr/u16-strcat.c: Likewise.
31164         * lib/unistr/u16-strchr.c: Likewise.
31165         * lib/unistr/u16-strcmp.c: Likewise.
31166         * lib/unistr/u16-strcpy.c: Likewise.
31167         * lib/unistr/u16-strcspn.c: Likewise.
31168         * lib/unistr/u16-strdup.c: Likewise.
31169         * lib/unistr/u16-strlen.c: Likewise.
31170         * lib/unistr/u16-strmblen.c: Likewise.
31171         * lib/unistr/u16-strmbtouc.c: Likewise.
31172         * lib/unistr/u16-strncat.c: Likewise.
31173         * lib/unistr/u16-strncmp.c: Likewise.
31174         * lib/unistr/u16-strncpy.c: Likewise.
31175         * lib/unistr/u16-strnlen.c: Likewise.
31176         * lib/unistr/u16-strpbrk.c: Likewise.
31177         * lib/unistr/u16-strrchr.c: Likewise.
31178         * lib/unistr/u16-strspn.c: Likewise.
31179         * lib/unistr/u16-strstr.c: Likewise.
31180         * lib/unistr/u16-strtok.c: Likewise.
31181         * lib/unistr/u16-to-u32.c: Likewise.
31182         * lib/unistr/u16-to-u8.c: Likewise.
31183         * lib/unistr/u16-uctomb-aux.c: Likewise.
31184         * lib/unistr/u16-uctomb.c: Likewise.
31185         * lib/unistr/u32-check.c: Likewise.
31186         * lib/unistr/u32-chr.c: Likewise.
31187         * lib/unistr/u32-cmp.c: Likewise.
31188         * lib/unistr/u32-cpy-alloc.c: Likewise.
31189         * lib/unistr/u32-cpy.c: Likewise.
31190         * lib/unistr/u32-endswith.c: Likewise.
31191         * lib/unistr/u32-mblen.c: Likewise.
31192         * lib/unistr/u32-mbsnlen.c: Likewise.
31193         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
31194         * lib/unistr/u32-mbtouc.c: Likewise.
31195         * lib/unistr/u32-mbtoucr.c: Likewise.
31196         * lib/unistr/u32-move.c: Likewise.
31197         * lib/unistr/u32-next.c: Likewise.
31198         * lib/unistr/u32-prev.c: Likewise.
31199         * lib/unistr/u32-set.c: Likewise.
31200         * lib/unistr/u32-startswith.c: Likewise.
31201         * lib/unistr/u32-stpcpy.c: Likewise.
31202         * lib/unistr/u32-stpncpy.c: Likewise.
31203         * lib/unistr/u32-strcat.c: Likewise.
31204         * lib/unistr/u32-strchr.c: Likewise.
31205         * lib/unistr/u32-strcmp.c: Likewise.
31206         * lib/unistr/u32-strcpy.c: Likewise.
31207         * lib/unistr/u32-strcspn.c: Likewise.
31208         * lib/unistr/u32-strdup.c: Likewise.
31209         * lib/unistr/u32-strlen.c: Likewise.
31210         * lib/unistr/u32-strmblen.c: Likewise.
31211         * lib/unistr/u32-strmbtouc.c: Likewise.
31212         * lib/unistr/u32-strncat.c: Likewise.
31213         * lib/unistr/u32-strncmp.c: Likewise.
31214         * lib/unistr/u32-strncpy.c: Likewise.
31215         * lib/unistr/u32-strnlen.c: Likewise.
31216         * lib/unistr/u32-strpbrk.c: Likewise.
31217         * lib/unistr/u32-strrchr.c: Likewise.
31218         * lib/unistr/u32-strspn.c: Likewise.
31219         * lib/unistr/u32-strstr.c: Likewise.
31220         * lib/unistr/u32-strtok.c: Likewise.
31221         * lib/unistr/u32-to-u16.c: Likewise.
31222         * lib/unistr/u32-to-u8.c: Likewise.
31223         * lib/unistr/u32-uctomb.c: Likewise.
31224         * lib/unistr/u8-check.c: Likewise.
31225         * lib/unistr/u8-chr.c: Likewise.
31226         * lib/unistr/u8-cmp.c: Likewise.
31227         * lib/unistr/u8-cpy-alloc.c: Likewise.
31228         * lib/unistr/u8-cpy.c: Likewise.
31229         * lib/unistr/u8-endswith.c: Likewise.
31230         * lib/unistr/u8-mblen.c: Likewise.
31231         * lib/unistr/u8-mbsnlen.c: Likewise.
31232         * lib/unistr/u8-mbtouc-aux.c: Likewise.
31233         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
31234         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
31235         * lib/unistr/u8-mbtouc.c: Likewise.
31236         * lib/unistr/u8-mbtoucr.c: Likewise.
31237         * lib/unistr/u8-move.c: Likewise.
31238         * lib/unistr/u8-next.c: Likewise.
31239         * lib/unistr/u8-prev.c: Likewise.
31240         * lib/unistr/u8-set.c: Likewise.
31241         * lib/unistr/u8-startswith.c: Likewise.
31242         * lib/unistr/u8-stpcpy.c: Likewise.
31243         * lib/unistr/u8-stpncpy.c: Likewise.
31244         * lib/unistr/u8-strcat.c: Likewise.
31245         * lib/unistr/u8-strchr.c: Likewise.
31246         * lib/unistr/u8-strcmp.c: Likewise.
31247         * lib/unistr/u8-strcpy.c: Likewise.
31248         * lib/unistr/u8-strcspn.c: Likewise.
31249         * lib/unistr/u8-strdup.c: Likewise.
31250         * lib/unistr/u8-strlen.c: Likewise.
31251         * lib/unistr/u8-strmblen.c: Likewise.
31252         * lib/unistr/u8-strmbtouc.c: Likewise.
31253         * lib/unistr/u8-strncat.c: Likewise.
31254         * lib/unistr/u8-strncmp.c: Likewise.
31255         * lib/unistr/u8-strncpy.c: Likewise.
31256         * lib/unistr/u8-strnlen.c: Likewise.
31257         * lib/unistr/u8-strpbrk.c: Likewise.
31258         * lib/unistr/u8-strrchr.c: Likewise.
31259         * lib/unistr/u8-strspn.c: Likewise.
31260         * lib/unistr/u8-strstr.c: Likewise.
31261         * lib/unistr/u8-strtok.c: Likewise.
31262         * lib/unistr/u8-to-u16.c: Likewise.
31263         * lib/unistr/u8-to-u32.c: Likewise.
31264         * lib/unistr/u8-uctomb-aux.c: Likewise.
31265         * lib/unistr/u8-uctomb.c: Likewise.
31266         * lib/unitypes.h: Likewise.
31267         * lib/uniwidth.h: Likewise.
31268         * lib/uniwidth/cjk.h: Likewise.
31269         * lib/uniwidth/u16-strwidth.c: Likewise.
31270         * lib/uniwidth/u16-width.c: Likewise.
31271         * lib/uniwidth/u32-strwidth.c: Likewise.
31272         * lib/uniwidth/u32-width.c: Likewise.
31273         * lib/uniwidth/u8-strwidth.c: Likewise.
31274         * lib/uniwidth/u8-width.c: Likewise.
31275         * lib/uniwidth/width.c: Likewise.
31276
31277 2007-10-07  Bruno Haible  <bruno@clisp.org>
31278
31279         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
31280         The file is still under LGPL (see modules/inttypes).
31281
31282 2007-10-06  Bruno Haible  <bruno@clisp.org>
31283
31284         * modules/trunc (Dependencies): Add 'extensions'.
31285         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
31286         Reported by Ben Pfaff <blp@gnu.org>.
31287
31288 2007-10-06  Bruno Haible  <bruno@clisp.org>
31289
31290         * modules/freopen-tests: New file.
31291         * tests/test-freopen.c: New file.
31292
31293         * modules/fopen-tests: New file.
31294         * tests/test-fopen.c: New file.
31295
31296         * modules/fopen: New file.
31297         * lib/fopen.c: New file.
31298         * m4/fopen.m4: New file.
31299         * modules/freopen: New file.
31300         * lib/freopen.c: New file.
31301         * m4/freopen.m4: New file.
31302         * lib/stdio.in.h (fopen, freopen): New declarations.
31303         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
31304         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
31305         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
31306         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
31307         * doc/functions/fopen.texi: Mention the 'fopen' module.
31308         * doc/functions/freopen.texi: Mention the 'freopen' module.
31309
31310 2007-10-06  Bruno Haible  <bruno@clisp.org>
31311
31312         * modules/open-tests: New file.
31313         * tests/test-open.c: New file.
31314
31315         * modules/open: New file.
31316         * lib/open.c: New file.
31317         * m4/open.m4: New file.
31318         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
31319         lib/open.c does.
31320         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
31321         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
31322         macros.
31323         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
31324         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
31325         REPLACE_OPEN.
31326         * doc/functions/open.texi: Mention the 'open' module.
31327
31328 2007-10-04  Bruno Haible  <bruno@clisp.org>
31329
31330         * modules/ceill-tests: New file.
31331         * tests/test-ceill.c: New file.
31332
31333         * modules/ceill: New file.
31334         * lib/ceill.c: Replace entire file.
31335         * m4/ceill.m4: New file.
31336         * lib/math.in.h (ceill): Replace declaration.
31337         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
31338         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
31339         * doc/functions/ceill.texi: Mention the 'ceill' module.
31340         * modules/mathl (Files): Remove lib/ceill.c.
31341         (Depends-on): Add ceill.
31342
31343 2007-10-04  Bruno Haible  <bruno@clisp.org>
31344
31345         * modules/ceilf-tests: New file.
31346         * tests/test-ceilf.c: New file.
31347
31348         * modules/ceilf: New file.
31349         * lib/ceil.c: New file.
31350         * lib/ceilf.c: New file.
31351         * m4/ceilf.m4: New file.
31352         * lib/math.in.h (ceilf): New declaration.
31353         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
31354         HAVE_DECL_CEILF.
31355         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
31356         HAVE_DECL_CEILF.
31357         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
31358
31359 2007-10-04  Bruno Haible  <bruno@clisp.org>
31360
31361         * modules/floorl-tests: New file.
31362         * tests/test-floorl.c: New file.
31363
31364         * modules/floorl: New file.
31365         * lib/floorl.c: Replace entire file.
31366         * m4/floorl.m4: New file.
31367         * lib/math.in.h (floorl): Replace declaration.
31368         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
31369         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
31370         * doc/functions/floorl.texi: Mention the 'floorl' module.
31371         * modules/mathl (Files): Remove lib/floorl.c.
31372         (Depends-on): Add floorl.
31373
31374 2007-10-04  Bruno Haible  <bruno@clisp.org>
31375
31376         * modules/floorf-tests: New file.
31377         * tests/test-floorf.c: New file.
31378
31379         * modules/floorf: New file.
31380         * lib/floor.c: New file.
31381         * lib/floorf.c: New file.
31382         * m4/floorf.m4: New file.
31383         * lib/math.in.h (floorf): New declaration.
31384         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
31385         HAVE_DECL_FLOORF.
31386         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
31387         HAVE_DECL_FLOORF.
31388         * doc/functions/floorf.texi: Mention the 'floorf' module.
31389
31390 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
31391             Bruno Haible  <bruno@clisp.org>
31392
31393         Advertise for the Git server instead of the CVS server.
31394         * doc/gnulib-intro.texi (Steady Development): Mention the Git
31395         repository instead of the CVS one.
31396         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
31397         about all VCS systems generically.
31398         * doc/gnulib.texi (Introduction): Capitalize `Git'.
31399
31400 2007-10-04  Bruno Haible  <bruno@clisp.org>
31401
31402         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
31403         means.
31404         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
31405
31406 2007-10-04  Bruno Haible  <bruno@clisp.org>
31407
31408         * modules/truncl-tests: New file.
31409         * tests/test-truncl.c: New file.
31410
31411         * modules/truncl: New file.
31412         * lib/truncl.c: New file.
31413         * m4/truncl.m4: New file.
31414         * lib/math.in.h (truncl): New declaration.
31415         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
31416         HAVE_DECL_TRUNCL.
31417         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
31418         HAVE_DECL_TRUNCL.
31419         * doc/functions/truncl.texi: Mention the 'truncl' module.
31420
31421 2007-10-04  Bruno Haible  <bruno@clisp.org>
31422
31423         * modules/truncf-tests: New file.
31424         * tests/test-truncf.c: New file.
31425
31426         * modules/truncf: New file.
31427         * lib/trunc.c: Make paramerizable through USE_* macros.
31428         * lib/truncf.c: New file.
31429         * m4/truncf.m4: New file.
31430         * lib/math.in.h (truncf): New declaration.
31431         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
31432         HAVE_DECL_TRUNCF.
31433         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
31434         HAVE_DECL_TRUNCF.
31435         * doc/functions/truncf.texi: Mention the 'truncf' module.
31436
31437 2007-10-03  Bruno Haible  <bruno@clisp.org>
31438
31439         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
31440         augmentation also for tests modules.
31441         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
31442         * modules/atexit-tests (Makefile.am): Likewise.
31443         * modules/binary-io-tests (Makefile.am): Likewise.
31444         * modules/c-strcase-tests (Makefile.am): Likewise.
31445         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
31446         * modules/canonicalize-tests (Makefile.am): Likewise.
31447         * modules/closein-tests (Makefile.am): Likewise.
31448         * modules/fprintf-posix-tests (Makefile.am): Likewise.
31449         * modules/freadahead-tests (Makefile.am): Likewise.
31450         * modules/fseek-tests (Makefile.am): Likewise.
31451         * modules/fseeko-tests (Makefile.am): Likewise.
31452         * modules/ftell-tests (Makefile.am): Likewise.
31453         * modules/ftello-tests (Makefile.am): Likewise.
31454         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
31455         * modules/isnanl-tests (Makefile.am): Likewise.
31456         * modules/lseek-tests (Makefile.am): Likewise.
31457         * modules/mbscasecmp-tests (Makefile.am): Likewise.
31458         * modules/mbscasestr-tests (Makefile.am): Likewise.
31459         * modules/mbschr-tests (Makefile.am): Likewise.
31460         * modules/mbscspn-tests (Makefile.am): Likewise.
31461         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
31462         * modules/mbspbrk-tests (Makefile.am): Likewise.
31463         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
31464         * modules/mbsrchr-tests (Makefile.am): Likewise.
31465         * modules/mbsspn-tests (Makefile.am): Likewise.
31466         * modules/mbsstr-tests (Makefile.am): Likewise.
31467         * modules/printf-posix-tests (Makefile.am): Likewise.
31468         * modules/snprintf-posix-tests (Makefile.am): Likewise.
31469         * modules/sprintf-posix-tests (Makefile.am): Likewise.
31470         * modules/tsearch-tests (Makefile.am): Likewise.
31471         * modules/uniname/uniname-tests (Makefile.am): Likewise.
31472         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
31473         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
31474         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
31475         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
31476         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
31477         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
31478         * modules/vprintf-posix-tests (Makefile.am): Likewise.
31479         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
31480         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
31481         * modules/xstrtoimax-tests (Makefile.am): Likewise.
31482         * modules/xstrtol-tests (Makefile.am): Likewise.
31483         * modules/xstrtoumax-tests (Makefile.am): Likewise.
31484         * modules/yesno-tests (Makefile.am): Likewise.
31485
31486 2007-10-03  Bruno Haible  <bruno@clisp.org>
31487
31488         * modules/trunc-tests: New file.
31489         * tests/test-trunc.c: New file.
31490
31491         * modules/trunc: New file.
31492         * lib/trunc.c: New file.
31493         * m4/trunc.m4: New file.
31494         * lib/math.in.h (trunc): New declaration.
31495         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
31496         HAVE_DECL_TRUNC.
31497         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
31498         HAVE_DECL_TRUNC.
31499         * doc/functions/trunc.texi: Mention the 'trunc' module.
31500
31501 2007-10-03  Bruno Haible  <bruno@clisp.org>
31502
31503         * tests/test-fpending.c: New file, mostly copied
31504         from coreutils/lib/t-fpending.c.
31505         * modules/fpending-tests: New file.
31506
31507 2007-10-03  Bruno Haible  <bruno@clisp.org>
31508
31509         Port the stdio extensions to QNX (untested).
31510         * lib/fseterr.c (fseterr): Add support for QNX.
31511         * lib/fbufmode.c (fbufmode): Likewise.
31512         * lib/freadable.c (freadable): Likewise.
31513         * lib/fwritable.c (fwritable): Likewise.
31514         * lib/freading.c (freading): Likewise.
31515         * lib/fwriting.c (fwriting): Likewise.
31516         * lib/freadahead.c (freadahed): Likewise.
31517         * lib/fpurge.c (fpurge): Likewise.
31518         * lib/fseeko.c (rpl_fseeko): Likewise.
31519
31520 2007-10-03  Bruno Haible  <bruno@clisp.org>
31521             Jim Meyering  <jim@meyering.net>
31522             Eric Blake  <ebb9@byu.net>
31523
31524         * doc/relocatable.texi: Use @command instead of @program.
31525
31526 2007-10-02  Jim Meyering  <jim@meyering.net>
31527
31528         Perform one more "_.h" -> ".in.h" substitution.
31529         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
31530         instead of unistd_.h here, too.
31531
31532 2007-10-01  Bruno Haible  <bruno@clisp.org>
31533
31534         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
31535         Needed for the alloca-opt module.
31536
31537 2007-09-30  Bruno Haible  <bruno@clisp.org>
31538
31539         * lib/alloca.in.h: Renamed from lib/alloca_.h.
31540         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
31541         alloca_.h.
31542         * lib/argz.in.h: Renamed from lib/argz_.h.
31543         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
31544         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
31545         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
31546         byteswap_.h.
31547         * lib/dirent.in.h: Renamed from lib/dirent_.h.
31548         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
31549         dirent_.h.
31550         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
31551         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
31552         fcntl_.h.
31553         * lib/float.in.h: Renamed from lib/float_.h.
31554         * modules/float (Files, Makefile.am): Use float.in.h instead of
31555         float_.h.
31556         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
31557         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
31558         fnmatch_.h.
31559         * lib/getopt.in.h: Renamed from lib/getopt_.h.
31560         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
31561         getopt_.h.
31562         * lib/glob.in.h: Renamed from lib/glob_.h.
31563         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
31564         * lib/iconv.in.h: Renamed from lib/iconv_.h.
31565         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
31566         iconv_.h.
31567         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
31568         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
31569         inttypes_.h.
31570         * lib/locale.in.h: Renamed from lib/locale_.h.
31571         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
31572         locale_.h.
31573         * lib/math.in.h: Renamed from lib/math_.h.
31574         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
31575         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
31576         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
31577         of netinet_in_.h. Add dependency.
31578         * lib/poll.in.h: Renamed from lib/poll_.h.
31579         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
31580         * lib/search.in.h: Renamed from lib/search_.h.
31581         * modules/search (Files, Makefile.am): Use search.in.h instead of
31582         search_.h.
31583         * lib/signal.in.h: Renamed from lib/signal_.h.
31584         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
31585         _signal.h.
31586         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
31587         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
31588         stdbool_.h.
31589         * lib/stdint.in.h: Renamed from lib/stdint_.h.
31590         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
31591         stdint_.h.
31592         * lib/stdio.in.h: Renamed from lib/stdio_.h.
31593         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
31594         stdio_.h.
31595         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
31596         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
31597         stdlib_.h.
31598         * lib/string.in.h: Renamed from lib/string_.h.
31599         * modules/string (Files, Makefile.am): Use string.in.h instead of
31600         string_.h.
31601         * doc/gnulib-tool.texi (Initial import): Update.
31602         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
31603         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
31604         of sys_select_.h. Add dependency.
31605         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
31606         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
31607         of sys_socket_.h.
31608         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
31609         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
31610         sys_stat_.h.
31611         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
31612         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
31613         sys_time_.h.
31614         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
31615         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
31616         sysexits_.h.
31617         * lib/time.in.h: Renamed from lib/time_.h.
31618         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
31619         * lib/unistd.in.h: Renamed from lib/unistd_.h.
31620         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
31621         unistd_.h.
31622         * lib/wchar.in.h: Renamed from lib/wchar_.h.
31623         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
31624         wchar_.h.
31625         * lib/wctype.in.h: Renamed from lib/wctype_.h.
31626         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
31627         wctype_.h.
31628         * build-aux/bootstrap (slurp): Update.
31629         * lib/.cppi-disable: Update.
31630
31631 2007-09-30  Bruno Haible  <bruno@clisp.org>
31632
31633         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
31634         Needed on BeOS.
31635
31636 2007-09-30  Bruno Haible  <bruno@clisp.org>
31637
31638         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
31639
31640 2007-09-29  Bruno Haible  <bruno@clisp.org>
31641
31642         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
31643
31644 2007-09-29  Bruno Haible  <bruno@clisp.org>
31645
31646         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
31647         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
31648         * build-aux/install-reloc: Compile also areadlink.c.
31649         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
31650
31651 2007-09-29  Bruno Haible  <bruno@clisp.org>
31652
31653         * gnulib-tool (func_emit_initmacro_done): Indentation.
31654
31655 2007-09-29  Bruno Haible  <bruno@clisp.org>
31656
31657         * README: Add CVS checkout update instructions.
31658         Info from Bob Proulx <bob@proulx.com>.
31659
31660 2007-09-28  Eric Blake  <ebb9@byu.net>
31661
31662         Provide move-if-change.
31663         * build-aux/move-if-change: New file, based on best practice
31664         rather than any canonical upstream location.
31665
31666 2007-09-28  Jim Meyering  <jim@meyering.net>
31667
31668         Fix canonicalize loop-detection corner case.
31669         Do not attempt to stat the symlink values stored via seen_triple.
31670         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
31671         on linux-2.6.18, (but not 2.6.22).
31672         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
31673         triple_compare.  The former compares dev,ino,filename, while the latter
31674         would actually stat dirname(filename) when dev and ino were equal.
31675         * lib/hash-triple.c: Install <string.h>.
31676         (STREQ): Define.
31677         (triple_compare_ino_str): New function.
31678         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
31679
31680 2007-09-28  Eric Blake  <ebb9@byu.net>
31681
31682         Enforce that AC_REPLACE_FUNCS files exist.
31683         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
31684         override check for typos.
31685
31686         Fix test-closein on Solaris 10.
31687         * tests/test-closein.c (main): Don't assume stdin can be inherited
31688         closed on all systems.
31689         * tests/test-closein.sh: Likewise.
31690         Reported by Piotr Tarnowski.
31691
31692 2007-09-28  Jim Meyering  <jim@meyering.net>
31693
31694         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
31695
31696 2007-09-27  Jim Meyering  <jim@meyering.net>
31697
31698         canonicalize: Avoid a false-positive cycle failure.
31699         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
31700         Sort.  Remove cycle-check.
31701         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
31702         not cycle-check.h.
31703         (seen_triple): New function.
31704         (canonicalize_filename_mode): Use it instead of cycle-check.
31705         * tests/test-canonicalize.c: Add a test for this bug.
31706         * tests/test-canonicalize.sh: Set up and run the test.
31707
31708         New module, file-set, from coreutils.
31709         * modules/file-set: Define it.
31710         * lib/file-set.c, lib/file-set.h: Implement.
31711
31712         New module, hash-triple, from coreutils.
31713         * modules/hash-triple: Define it.
31714         * lib/hash-triple.c, lib/hash-triple.h: Implement.
31715
31716 2007-09-25  Eric Blake  <ebb9@byu.net>
31717
31718         Fix strerror on Interix.
31719         * lib/string_.h (strerror): Declare replacement.
31720         * doc/functions/strerror.texi (strerror): Document the Interix
31721         shortcoming.
31722         * modules/string (Makefile.am): Support new hooks.
31723         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
31724         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
31725         gl_FUNC_STRERROR_SEPARATE.
31726         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
31727         * lib/strerror.c (rpl_strerror): Provide replacement.
31728         * modules/strerror (Depends-on): Add string.
31729         (configure.ac): Detect use of module.
31730         * tests/test-strerror.c: New file.
31731         * modules/strerror-tests: New test module.
31732         * modules/argp (Depends-on): Add strerror.
31733         * modules/error (Depends-on): Likewise.
31734         Reported by Martin Koeppe.
31735
31736 2007-09-24  Bruno Haible  <bruno@clisp.org>
31737
31738         * README: Update git instructions.
31739
31740 2007-09-24  Eric Blake  <ebb9@byu.net>
31741
31742         Revert fpending breakage from 2007-09-08.
31743         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
31744         __fpending.c.
31745
31746 2007-09-24  Jim Meyering  <jim@meyering.net>
31747
31748         filenamecat.c: Add a test.
31749         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
31750         showing how the function works when DIR is the empty string.
31751
31752 2007-09-21  Simon Josefsson  <simon@josefsson.org>
31753
31754         * tests/test-canonicalize.sh: Turn on executable bit.
31755
31756 2007-09-19  Eric Blake  <ebb9@byu.net>
31757
31758         * README: Update CVS instructions.
31759
31760 2007-09-18  Bruno Haible  <bruno@clisp.org>
31761
31762         * modules/areadlink: New file.
31763         * lib/areadlink.h (areadlink): New declaration.
31764         * lib/areadlink.c: New file, based on lib/xreadlink.c.
31765
31766 2007-09-17  Jim Meyering  <jim@meyering.net>
31767
31768         * lib/savewd.c (ESTALE) [!defined]: Define.
31769         Reported to be required on Interix by Martin Koeppe.
31770
31771 2007-09-17  Bruno Haible  <bruno@clisp.org>
31772
31773         * gnulib-tool (func_version): Use $version.
31774
31775 2007-09-16  Bruno Haible  <bruno@clisp.org>
31776
31777         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
31778         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
31779         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
31780         Reported by Greg Schafer <gschafer@zip.com.au>.
31781
31782 2007-09-15  Bruno Haible  <bruno@clisp.org>
31783
31784         * gnulib-tool (sed): Try a little harder to make bash understand the
31785         alias.
31786         Reported by Bruce Korb <bruce.korb@gmail.com>.
31787
31788 2007-09-13  Eric Blake  <ebb9@byu.net>
31789
31790         * ChangeLog: Remove conflict markers.
31791
31792 2007-09-13  Simon Josefsson  <simon@josefsson.org>
31793
31794         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
31795         Reported by Bruno Haible <bruno@clisp.org>.
31796
31797 2007-09-12  Bruno Haible  <bruno@clisp.org>
31798
31799         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
31800         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
31801         is not defined.
31802
31803 2007-09-12  Eric Blake  <ebb9@byu.net>
31804
31805         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
31806         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
31807         Autoconf definition.
31808         * modules/euidaccess (Depends-on): Add extensions, for
31809         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
31810         * modules/fnmatch (Depends-on): Likewise.
31811         * modules/getaddrinfo (Depends-on): Likewise.
31812         * modules/getdelim (Depends-on): Likewise.
31813         * modules/getline (Depends-on): Likewise.
31814         * modules/getsubopt (Depends-on): Likewise.
31815         * modules/gettext (Depends-on): Likewise.
31816         * modules/group-member (Depends-on): Likewise.
31817         * modules/mbchar (Depends-on): Likewise.
31818         * modules/memmem (Depends-on): Likewise.
31819         * modules/mempcpy (Depends-on): Likewise.
31820         * modules/memrchr (Depends-on): Likewise.
31821         * modules/pagealign_alloc (Depends-on): Likewise.
31822         * modules/readutmp (Depends-on): Likewise.
31823         * modules/stpcpy (Depends-on): Likewise.
31824         * modules/stpncpy (Depends-on): Likewise.
31825         * modules/strchrnul (Depends-on): Likewise.
31826         * modules/strndup (Depends-on): Likewise.
31827         * modules/strsep (Depends-on): Likewise.
31828         * modules/strverscmp (Depends-on): Likewise.
31829         * modules/vasprintf (Depends-on): Likewise.
31830         * modules/wcwidth (Depends-on): Likewise.
31831         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
31832         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
31833         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
31834         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
31835         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
31836         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
31837         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
31838         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
31839         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
31840         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
31841         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
31842         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
31843         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
31844         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
31845         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
31846         * m4/readutmp.m4 (gl_READUTMP): Likewise.
31847         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
31848         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
31849         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
31850         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
31851         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
31852         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
31853         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
31854         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
31855         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
31856         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
31857         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
31858         so that lock.m4 can be used in gettext without extensions module.
31859
31860 2007-09-11  Bruno Haible  <bruno@clisp.org>
31861
31862         * m4/isc-posix.m4: Remove file.
31863         Suggested by Eric Blake.
31864
31865 2007-09-11  Eric Blake  <ebb9@byu.net>
31866
31867         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
31868
31869 2007-09-10  Bruno Haible  <bruno@clisp.org>
31870
31871         * posix-modules: Fix typo in error message.
31872         Reported by Matt <mkraai@beckman.com>.
31873
31874 2007-09-09  Bruno Haible  <bruno@clisp.org>
31875
31876         * doc/functions/getdelim.texi: Update list of platforms lacking the
31877         function.
31878         * doc/functions/getline.texi: Likewise.
31879
31880 2007-09-09  Jim Meyering  <jim@meyering.net>
31881
31882         * lib/hash.c (hash_initialize): Detect calloc failure.
31883         Reported by Bruno Haible.
31884
31885 2007-09-09  Bruno Haible  <bruno@clisp.org>
31886
31887         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
31888         malloc or realloc fails.
31889
31890 2007-09-09  Bruno Haible  <bruno@clisp.org>
31891
31892         * modules/getcwd (Depends-on): Add malloc-posix.
31893         * modules/glob (Depends-on): Likewise.
31894         * modules/putenv (Depends-on): Likewise.
31895         * modules/strdup (Depends-on): Likewise.
31896         * modules/getdelim (Depends-on): Add realloc-posix.
31897         * modules/read-file (Depends-on): Likewise.
31898
31899 2007-09-09  Bruno Haible  <bruno@clisp.org>
31900
31901         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
31902         (gl_FUNC_MALLOC_POSIX): Require it.
31903         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
31904         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
31905         * modules/realloc (Files): Add m4/malloc.m4.
31906         * modules/calloc (Files): Likewise.
31907
31908 2007-09-09  Bruno Haible  <bruno@clisp.org>
31909
31910         * modules/malloc-posix: New file.
31911         * modules/malloc (Depends-on): Add malloc-posix.
31912         * lib/malloc.c: Include errno.h.
31913         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
31914         and a POSIX-compatible malloc into a single function. Set ENOMEM
31915         when returning NULL.
31916         * m4/malloc.m4: New file.
31917         * doc/functions/malloc.texi: Mention the malloc-posix module.
31918         * lib/stdlib_.h (malloc): New declaration.
31919         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
31920         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
31921         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
31922         and HAVE_MALLOC_POSIX.
31923
31924 2007-09-09  Bruno Haible  <bruno@clisp.org>
31925
31926         * modules/realloc-posix: New file.
31927         * modules/realloc (Depends-on): Add realloc-posix.
31928         * lib/realloc.c: Include errno.h.
31929         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
31930         and a POSIX-compatible realloc into a single function. Set ENOMEM
31931         when returning NULL.
31932         * m4/realloc.m4: New file.
31933         * doc/functions/realloc.texi: Mention the realloc-posix module.
31934         * lib/stdlib_.h (realloc): New declaration.
31935         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
31936         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
31937         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
31938         and HAVE_REALLOC_POSIX.
31939
31940 2007-09-09  Bruno Haible  <bruno@clisp.org>
31941
31942         * modules/calloc-posix: New file.
31943         * modules/calloc (Depends-on): Add calloc-posix.
31944         * lib/calloc.c: Include errno.h.
31945         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
31946         and a POSIX-compatible calloc into a single function. Set ENOMEM
31947         when returning NULL.
31948         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
31949         * doc/functions/calloc.texi: Mention the calloc-posix module.
31950         * lib/stdlib_.h (calloc): New declaration.
31951         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
31952         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
31953         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
31954         and HAVE_CALLOC_POSIX.
31955
31956 2007-09-09  Bruno Haible  <bruno@clisp.org>
31957
31958         Allow for modules to show an arbitrary notice.
31959         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
31960         * gnulib-tool: New option --extract-notice.
31961         (func_usage): Document it.
31962         (sed_extract_prog): Update.
31963         (func_get_notice): New function.
31964         (func_modules_notice): New function.
31965         (func_import, func_create_testdir): Invoke it.
31966         Suggested by Jim Meyering.
31967
31968 2007-09-09  Bruno Haible  <bruno@clisp.org>
31969
31970         * gnulib-tool: New options --verbose, --quiet.
31971         (func_usage): Document them.
31972         (verbose): New variable.
31973         (func_execute_command): New function.
31974         (func_import): Don't show the module list and the file list if
31975         $verbose < 0.
31976         (func_create_testdir): Likewise. Use func_execute_command.
31977         (func_create_megatestdir): Use func_execute_command.
31978
31979 2007-09-08  Bruno Haible  <bruno@clisp.org>
31980
31981         * gnulib-tool (func_import): Prefer rsync over wget when available,
31982         for fetching the PO files.
31983
31984 2007-09-08  Bruno Haible  <bruno@clisp.org>
31985
31986         * posix-modules: New file. Portions copied from gnulib-tool.
31987         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
31988
31989 2007-09-08  Jim Meyering  <jim@meyering.net>
31990
31991         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
31992         * lib/fpending.h: Rename from __fpending.h.
31993         * lib/fpending.c: Rename from __fpending.c.
31994         Include "fpending.h", not "__fpending.h".
31995         * lib/__fpending.h, lib/__fpending.c: Remove files.
31996         * modules/fpending (Files): Reflect new file names.
31997         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
31998
31999 2007-09-08  Bruno Haible  <bruno@clisp.org>
32000
32001         * m4/inttypes-h.m4: Remove stub file.
32002
32003 2007-09-07  Simon Josefsson  <simon@josefsson.org>
32004
32005         * doc/headers/stdint.texi: Discuss #include_next issue.
32006
32007 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
32008
32009         * build-aux/bootstrap: Remove obsolete comment about wget --help.
32010
32011 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32012
32013         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
32014         in variable name.
32015
32016 2007-09-03  Jim Meyering  <jim@meyering.net>
32017
32018         New module: git-version-gen.
32019         * modules/git-version-gen: New file.
32020
32021         Import changes from coreutils for bootstrap script.
32022
32023         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
32024
32025         bootstrap: uses rsync to download the .po files
32026         * build-aux/bootstrap (po_download_command_format): New global.
32027         (download_po_files): Use rsync.
32028         (update_po_files): Don't remove .po files after download,
32029         so future rsync runs can take advantage of the copies.
32030
32031         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
32032
32033         Solve the unnecessary-.po-file-regeneration problem once and for all.
32034         * build-aux/bootstrap (download_po_files): New function, renamed from
32035         get_translations.  Now, downloads, but doesn't update LINGUAS.
32036         (update_po_files): New function.
32037
32038         bootstrap: Ignore more.
32039         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
32040         uniwidth to e.g., lib/.gitignore.
32041         (slurp): Handle the sys_stat_.h -> sys mapping, too.
32042
32043         * build-aux/bootstrap: New setting: vc_ignore.
32044         (insert_sorted_if_absent): Create $file if absent.
32045         Adapt to new, possibly empty, list: $vc_ignore.
32046
32047         bootstrap: generate more ignorable names
32048         * build-aux/bootstrap (slurp): When generating ignorable names,
32049         also map .sin to .sed, .gperf to .c, and .y to .c.
32050
32051 2007-09-03  Jim Meyering  <jim@meyering.net>
32052
32053         * build-aux/git-version-gen: New file, from coreutils.  For details, see
32054         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
32055
32056 2007-09-02  Bruno Haible  <bruno@clisp.org>
32057
32058         Fix mis-recognition of 'mcs' on QNX 6.
32059         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
32060         output contains the string "Mono".
32061         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
32062         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
32063
32064 2007-09-01  Bruno Haible  <bruno@clisp.org>
32065
32066         Fix collision between uniwidth/* and linebreak modules.
32067         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
32068         u32_width): Remove declarations.
32069         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
32070         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
32071         streq3, streq2, streq1, streq0): Remove functions.
32072         (STREQ): Remove macro.
32073         (is_cjk_encoding): Remove function.
32074         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
32075         (uc_width, u8_width, u16_width, u32_width): Remove functions.
32076         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
32077         * NEWS: Document the change.
32078
32079 2007-09-01  Bruno Haible  <bruno@clisp.org>
32080
32081         * lib/streq.h: Add double-inclusion guard.
32082
32083 2007-09-01  Karl Berry  <karl@gnu.org>
32084
32085         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
32086
32087 2007-08-28  Jim Meyering  <jim@meyering.net>
32088
32089         Rename mreadlink_with_size to areadlink_with_size.
32090         * NEWS: Document the change.
32091         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
32092         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
32093         * lib/mreadlink.h: Rename this to...
32094         * lib/areadlink.h: ...this.
32095         * modules/mreadlink-with-size: Rename this to...
32096         * modules/areadlink-with-size: ...this.
32097         * lib/canonicalize.c: Reflect the renaming.
32098         * modules/canonicalize: Likewise.
32099
32100 2007-08-26  Bruno Haible  <bruno@clisp.org>
32101
32102         * gnulib-tool (func_import): When deciding which files to remove,
32103         consider also dangling symbolic links.
32104         Reported by Eric Blake.
32105
32106 2007-08-26  Bruno Haible  <bruno@clisp.org>
32107
32108         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
32109
32110 2007-08-23  Simon Josefsson  <simon@josefsson.org>
32111
32112         * lib/readline.c: Don't include getline.h, the prototype is now
32113         found in stdio.h.
32114
32115 2007-08-23  Jim Meyering  <jim@meyering.net>
32116
32117         Getdelim touchup.
32118         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
32119         around the funlockfile call, since funlockfile never sets errno.
32120         Don't set errno upon failed realloc.
32121
32122 2007-08-22  Eric Blake  <ebb9@byu.net>
32123
32124         Getline touchups.
32125         * lib/getdelim.c (getdelim): Revert regression that required *n to
32126         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
32127         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
32128         getdelim, rather than whether implementation is missing.
32129         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
32130         * lib/stdio_.h (getline): Also declare if replacement is
32131         required.
32132         * doc/functions/getdelim.texi: New file.
32133         * doc/functions/getline.texi: Likewise.
32134         * doc/gnulib.texi (Function Substitutes): Add new files.
32135         Reported by Bruno Haible.
32136
32137 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
32138
32139         * users.txt: Add Guile.
32140
32141 2007-08-22  Eric Blake  <ebb9@byu.net>
32142
32143         * tests/test-getdelim.c (main): Use remove, not unlink.
32144         * tests/test-getline.c (main): Likewise.
32145
32146         Move getline and getdelim into stdio.h, per POSIX 200x.
32147         * modules/getline (Files): Remove getline.h.
32148         (Depends-on): Add stdio.
32149         (configure.ac): Add module indicator.
32150         * modules/getdelim (Files): Remove getdelim.h.
32151         (Depends-on): Add stdio.
32152         (configure.ac): Add module indicator.
32153         * modules/stdio (Makefile.am): Work with new indicators.
32154         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
32155         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
32156         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
32157         * lib/getdelim.h: Delete.
32158         * lib/getline.h: Delete.
32159         * lib/stdio_.h (getdelim, getline): Declare.
32160         * modules/getdelim-tests: New module.
32161         * modules/getline-tests: Likewise.
32162         * tests/test-getdelim.c: New file.
32163         * tests/test-getline.c: Likewise.
32164         * NEWS: Document the change.
32165         * lib/getline.c: Update choice of header.
32166         * lib/csharpcomp.c: Likewise.
32167         * lib/getpass.c: Likewise.
32168         * lib/javacomp.c: Likewise.
32169         * lib/javaversion.c: Likewise.
32170         * lib/yesno.c: Likewise.
32171         * lib/getdelim.c: Likewise.
32172         (getdelim): Set errno on failure, and avoid memory leak.
32173
32174 2007-08-19  Bruno Haible  <bruno@clisp.org>
32175
32176         * modules/closein (Depends-on): Add freadahead.
32177         * lib/closein.c: Include freadahead.h.
32178         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
32179         is zero.
32180
32181 2007-08-19  Bruno Haible  <bruno@clisp.org>
32182
32183         * modules/freadahead-tests: New file.
32184         * tests/test-freadahead.sh: New file.
32185         * tests/test-freadahead.c: New file.
32186
32187         * modules/freadahead: New file.
32188         * lib/freadahead.h: New file.
32189         * lib/freadahead.c: New file.
32190         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
32191         fbufmode, fpurge, freadable, fwritable.
32192
32193 2007-08-19  Eric Blake  <ebb9@byu.net>
32194
32195         Test yesno in combination with closein.
32196         * lib/yesno.c (yesno): Document use of stdin.
32197         * modules/yesno-tests (Files): New module.
32198         * tests/test-yesno.c (main): New file.
32199         * tests/test-yesno.sh: Likewise.
32200
32201 2007-08-19  Bruno Haible  <bruno@clisp.org>
32202
32203         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
32204         * lib/fseeko.c (rpl_fseeko): Likewise.
32205         * lib/fseterr.c (fseterr): Likewise.
32206
32207 2007-08-19  Bruno Haible  <bruno@clisp.org>
32208
32209         * tests/test-lseek.c (main): Disable a test for BeOS.
32210         * doc/functions/lseek.texi: Document the BeOS bug.
32211
32212 2007-08-19  Bruno Haible  <bruno@clisp.org>
32213             Eric Blake  <ebb9@byu.net>
32214
32215         * lib/lseek.c: Include <sys/stat.h>.
32216         (rpl_lseek): Add workaround code also for Unix platforms.
32217         Needed for BeOS.
32218         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
32219         * doc/functions/lseek.texi: Document BeOS definiency.
32220
32221 2007-08-18  Bruno Haible  <bruno@clisp.org>
32222
32223         * modules/fstrcmp-tests: New file.
32224         * tests/test-fstrcmp.c: New file.
32225
32226 2007-08-18  Bruno Haible  <bruno@clisp.org>
32227
32228         * modules/fstrcmp: New file, from GNU gettext with modifications.
32229         * lib/fstrcmp.h: New file, from GNU gettext.
32230         * lib/fstrcmp.c: New file, from GNU gettext.
32231         * MODULES.html.sh (String handling): Add fstrcmp.
32232
32233 2007-08-18  Bruno Haible  <bruno@clisp.org>
32234
32235         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
32236         'bool'.
32237         (diag, compareseq): Remove const from the ctxt argument.
32238         (USE_HEURISTIC): Undefine at the end.
32239
32240 2007-08-18  Jim Meyering  <jim@meyering.net>
32241
32242         New file: lib/idcache.h
32243         * NEWS: Mention the addition.
32244         * modules/idcache (Files): Add lib/idcache.h
32245         * lib/idcache.c: Include "idcache.h".
32246         Don't include <sys/types.h>.
32247         Add a FIXME comment.
32248         Move file-scoped "static" declarations to the top.
32249         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
32250
32251 2007-08-17  Bruno Haible  <bruno@clisp.org>
32252         and Paul Eggert  <eggert@cs.ucla.edu>
32253
32254         * MODULES.html.sh: Add diffseq.
32255         * modules/diffseq: New file.
32256         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
32257         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
32258
32259 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
32260
32261         Import changes from coreutils for bootstrap script.
32262
32263         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
32264
32265         * build-aux/bootstrap (slurp): Work even in environments where
32266         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
32267         current code does not slurp files whose names start with ".", and
32268         this looks like it might be a troublesome area.
32269
32270         2007-07-11  Jim Meyering  <jim@meyering.net>
32271
32272         If there's a GPL vN copyright comment, require that N == 3.
32273
32274         2007-07-08  Jim Meyering  <jim@meyering.net>
32275
32276         Run the coreutils-specific code only if tests/Makefile.am.in exists.
32277         * build-aux/bootstrap (mam_template): Move definition out of loop.
32278
32279         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
32280
32281         * build-aux/bootstrap (symlink_to_dir): Rename function from
32282         symlink_to_gnulib.  Add a directory parameter.  Update all
32283         callers.
32284         (cp_mark_as_generated): Also check for -- and link to -- files in
32285         gl/.
32286
32287         2007-07-08  Jim Meyering  <jim@meyering.net>
32288
32289         Adapt to deeper hierarchy in gnulib.
32290         * build-aux/bootstrap (symlink_to_dir): If the destination
32291         directory doesn't exist, create it. This is required at least for
32292         "lib/uniwidth/cjk.h".
32293
32294         2007-05-15  Jim Meyering  <jim@meyering.net>
32295
32296         * build-aux/bootstrap: Now that generated Makefile.am files
32297         are no longer under version control, they must be created at
32298         bootstrap time.
32299
32300 2007-08-14  Ben Pfaff  <blp@gnu.org>
32301
32302         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
32303
32304 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
32305
32306         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
32307         given the changes below.
32308         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
32309         even on hosts that have padding bits beyond the supported 64.
32310
32311 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
32312
32313         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
32314         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
32315         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
32316         depends on it.
32317         (xstrtol_error): Remove.
32318         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
32319         but with a different signature.
32320         (ATTRIBUTE_NORETURN, __attribute__): New macros.
32321         * lib/xstrtol-error.c: Include exitfail.h.
32322         (xstrtol_fatal): New function, with a different signature from the
32323         old xstrtol_error, so that the caller need not worry about passing
32324         in an exit status, or about storage management of the option argument.
32325         (xstrtol_error): Now a static function.  Redo signature to
32326         implement xstrtol_fatal.  Output the correct number of hyphens in
32327         front of the option so that the caller need not worry about
32328         storage management.
32329         (N_): New macro.
32330         (_): Remove; not used now.
32331         * modules/xstrtol: Depend on getopt.
32332         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
32333         of old STRTOL_FATAL_ERROR macro.
32334         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
32335         of test program.
32336         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
32337         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
32338
32339 2007-08-08  Eric Blake  <ebb9@byu.net>
32340
32341         * lib/xstrtol-error.c: Add missing include.
32342
32343         Move xstrtol messages into gnulib domain, when --pobase is used.
32344         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
32345         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
32346         * modules/xstrtol (Files): Distribute new file.
32347         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
32348         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
32349         * tests/test-xstrtol.c: ...into new file.
32350         * tests/test-xstrtoul.c: Also test xstrtoul.
32351         * tests/test-xstrtoimax.c: Also test xstrtoimax.
32352         * tests/test-xstrtoumax.c: Also test xstrtoumax.
32353         * tests/test-xstrtol.sh: Drive the tests.
32354         * tests/test-xstrtoimax.sh: Likewise.
32355         * tests/test-xstrtoumax.sh: Likewise.
32356         * modules/xstrtol-tests: New module.
32357         * modules/xstrtoimax-tests: Likewise.
32358         * modules/xstrtoumax-tests: Likewise.
32359
32360 2007-08-08  Jim Meyering  <jim@meyering.net>
32361
32362         New function: mfile_name_concat.
32363         * lib/filenamecat.c (mfile_name_concat): New function, just like
32364         file_name_concat, but return NULL upon failure rather than exiting
32365         with a diagnostic.
32366         * lib/filenamecat.h: Declare it.
32367
32368 2007-08-07  Bruno Haible  <bruno@clisp.org>
32369
32370         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
32371         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
32372         warning from gcc.
32373         Reported by Eric Blake.
32374
32375 2007-08-07  Simon Josefsson  <simon@josefsson.org>
32376
32377         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
32378         * modules/crypto/arcfour (License): Likewise.
32379         * modules/crypto/des-tests (License): Likewise.
32380         * modules/crypto/gc-arctwo-tests (License): Likewise.
32381         * modules/crypto/gc-des-tests (License): Likewise.
32382         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
32383         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
32384         * modules/crypto/gc-md2-tests (License): Likewise.
32385         * modules/crypto/gc-md4-tests (License): Likewise.
32386         * modules/crypto/gc-md5-tests (License): Likewise.
32387         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
32388         * modules/crypto/gc-rijndael-tests (License): Likewise.
32389         * modules/crypto/gc-sha1-tests (License): Likewise.
32390         * modules/crypto/gc-tests (License): Likewise.
32391         * modules/crypto/hmac-md5 (License): Likewise.
32392         * modules/crypto/hmac-sha1 (License): Likewise.
32393         * modules/crypto/md2-tests (License): Likewise.
32394         * modules/crypto/md4-tests (License): Likewise.
32395         * modules/crypto/md5 (License): Likewise.
32396         * modules/crypto/rijndael (License): Likewise.
32397         * modules/crypto/sha1 (License): Likewise.
32398         * modules/memxor (License): Likewise.
32399
32400 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
32401         and Bruno Haible  <bruno@clisp.org>
32402
32403         * NEWS: Describe interface changes to human, xstrtol.
32404         * lib/human.h: Include <xstrtol.h>.
32405         (human_options): Return enum strtol_error, not int.  Remove
32406         bool arg; take int * instead.
32407         * lib/human.c: Don't include "gettext.h".
32408         (_): Remove; no longer used.
32409         Don't include <xstrtol.h>, since human.h does it.
32410         (human_options): Adjust to abovementioned interface changes.
32411         Do not report error to stderr; that's now the caller's
32412         responsibility.
32413         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
32414         interface change.
32415         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
32416         Str, Argument_type_string.  All uses changed.  Put " argument"
32417         in diagnostics to make them clearer.  Change wording of suffix
32418         message for clarity.
32419         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
32420         Argument_type_string.
32421         (STRTOL_FATAL_WARN): Remove; no longer used.
32422         * modules/human (Depends-on): Remove gettext-h.
32423
32424 2007-08-06  Simon Josefsson  <simon@josefsson.org>
32425
32426         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
32427
32428 2007-07-31  Bruno Haible  <bruno@clisp.org>
32429
32430         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
32431         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
32432         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
32433
32434 2007-07-31  Bruno Haible  <bruno@clisp.org>
32435
32436         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
32437         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
32438
32439 2007-07-30  Bruno Haible  <bruno@clisp.org>
32440
32441         * modules/base64 (License): Use the synonymous term "LGPLv2+".
32442         * modules/c-ctype (License): Likewise.
32443         * modules/c-strcase (License): Likewise.
32444         * modules/check-version (License): Likewise.
32445         * modules/iconv (License): Likewise.
32446         * modules/iconv_open (License): Likewise.
32447         * modules/read-file (License): Likewise.
32448         * modules/striconv (License): Likewise.
32449         * modules/strverscmp (License): Likewise.
32450         * modules/vasprintf (License): Likewise.
32451         * modules/crypto/des (License): Likewise.
32452         * modules/crypto/gc (License): Likewise.
32453         * modules/crypto/gc-arcfour (License): Likewise.
32454         * modules/crypto/gc-arctwo (License): Likewise.
32455         * modules/crypto/gc-des (License): Likewise.
32456         * modules/crypto/gc-hmac-md5 (License): Likewise.
32457         * modules/crypto/gc-hmac-sha1 (License): Likewise.
32458         * modules/crypto/gc-md2 (License): Likewise.
32459         * modules/crypto/gc-md4 (License): Likewise.
32460         * modules/crypto/gc-md5 (License): Likewise.
32461         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
32462         * modules/crypto/gc-random (License): Likewise.
32463         * modules/crypto/gc-rijndael (License): Likewise.
32464         * modules/crypto/gc-sha1 (License): Likewise.
32465         * modules/crypto/md2 (License): Likewise.
32466         * modules/crypto/md4 (License): Likewise.
32467
32468 2007-07-30  Jim Meyering  <jim@meyering.net>
32469
32470         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
32471         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
32472         it has valid stat data.  This bug would cause du not to count the
32473         sizes of inaccessible directories.
32474         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
32475         in <http://bugzilla.redhat.com/250077>.
32476
32477 2007-07-25  Peter O'Gorman  <peter@pogma.com>
32478             Bruno Haible  <bruno@clisp.org>
32479
32480         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
32481         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
32482         #include_next, gives a diagnostic about it, but reports no error in
32483         the exit code.
32484         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
32485
32486 2007-07-24  Ben Pfaff  <blp@gnu.org>
32487
32488         Improve name: "count-one-bits" is better than "popcount".
32489         * MODULES.html.sh: Update name.
32490         * lib/popcount.h: Renamed lib/count-one-bits.h.
32491         (popcount): Renamed count_one_bits.
32492         (popcountl): Renamed count_one_bits_l.
32493         (popcountll): Renamed count_one_bits_ll.
32494         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
32495         * modules/popcount: Renamed module/count-one-bits.
32496         * modules/popcount-tests: Renamed module/count-one-bits-tests.
32497         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
32498
32499 2007-07-23  Ben Pfaff  <blp@gnu.org>
32500
32501         * lib/popcount.h (popcount32): Reduce size of constants, to allow
32502         better code generation, and add U to large constants to avoid
32503         warnings, in non-GCC case.
32504         Suggested by Bruno Haible.
32505
32506 2007-07-23  Ben Pfaff  <blp@gnu.org>
32507
32508         * lib/popcount.h: Use verify_true instead of if...abort.
32509         * modules/popcount: Depend on verify module.
32510         Suggested by Jim Meyering.
32511
32512 2007-07-23  Bruno Haible  <bruno@clisp.org>
32513
32514         * gnulib-tool (func_import): Create a .cvsignore file also when the
32515         directory is not yet in CVS but the toplevel directory is. When
32516         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
32517         Reported by Karl Berry.
32518
32519 2007-07-22  Ben Pfaff  <blp@gnu.org>
32520
32521         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
32522         case.
32523         Suggested by Eric Blake.
32524
32525 2007-07-22  Ben Pfaff  <blp@gnu.org>
32526
32527         New module: popcount.
32528         * MODULES.html.sh: Add popcount.
32529         * modules/popcount: New file.
32530         * modules/popcount-tests: New file.
32531         * tests/test-popcount.c: New file.
32532         * lib/popcount.h: New file.
32533         * m4/popcount.m4: New file.
32534
32535 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
32536
32537         * build-aux/announce-gen: Update to GPLv3.
32538
32539         * build-aux/config.guess: Update from config.
32540
32541 2007-07-21  Bruno Haible  <bruno@clisp.org>
32542
32543         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
32544         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
32545
32546 2007-07-20  Jim Meyering  <jim@meyering.net>
32547
32548         * check-module: Diagnose a self-dependency.
32549
32550 2007-07-19  Bruno Haible  <bruno@clisp.org>
32551
32552         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
32553         empty.
32554         Reported by Eric Blake.
32555
32556 2007-07-18  Bruno Haible  <bruno@clisp.org>
32557
32558         * gnulib-tool: New options --po-base, --po-domain.
32559         (func_usage): Document them.
32560         (pobase, po_domain): New variables.
32561         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
32562         DEFAULT_TEXT_DOMAIN.
32563         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
32564         (func_import): Consider pobase and po_domain. Create a po/ directory.
32565         (func_create_testdir): Set pobase and po_domain to empty.
32566         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
32567         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
32568
32569 2007-07-18  Bruno Haible  <bruno@clisp.org>
32570
32571         * gnulib-tool (func_get_automake_snippet): Synthesize also an
32572         EXTRA_DIST augmentation for files in build-aux/.
32573
32574 2007-07-16  Bruno Haible  <bruno@clisp.org>
32575
32576         * modules/lseek (License): Use the synonymous term "LGPLv2+".
32577         * modules/getdelim (License): Likewise.
32578
32579 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32580
32581         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
32582         * modules/d-type (License): Likewise.
32583         * modules/extensions (License): Likewise.
32584         * modules/fnmatch (License): Likewise.
32585         * modules/fseeko (License): Likewise.
32586         * modules/getaddrinfo (License): Likewise.
32587         * modules/getline (License): Likewise.
32588         * modules/getlogin_r (License): Likewise.
32589         * modules/getpass (License): Likewise.
32590         * modules/gettimeofday (License): Likewise.
32591         * modules/glob (License): Likewise.
32592         * modules/inet_ntop (License): Likewise.
32593         * modules/malloc (License): Likewise.
32594         * modules/malloca (License): Likewise.
32595         * modules/memmem (License): Likewise.
32596         * modules/mempcpy (License): Likewise.
32597         * modules/memset (License): Likewise.
32598         * modules/minmax (License): Likewise.
32599         * modules/mktime (License): Likewise.
32600         * modules/netinet_in (License): Likewise.
32601         * modules/pathmax (License): Likewise.
32602         * modules/poll (License): Likewise.
32603         * modules/regex (License): Likewise.
32604         * modules/snprintf (License): Likewise.
32605         * modules/stdbool (License): Likewise.
32606         * modules/stdint (License): Likewise.
32607         * modules/stdio (License): Likewise.
32608         * modules/strcase (License): Likewise.
32609         * modules/strcasestr (License): Likewise.
32610         * modules/strdup (License): Likewise.
32611         * modules/string (License): Likewise.
32612         * modules/strndup (License): Likewise.
32613         * modules/strnlen (License): Likewise.
32614         * modules/strpbrk (License): Likewise.
32615         * modules/strptime (License): Likewise.
32616         * modules/strsep (License): Likewise.
32617         * modules/sys_select (License): Likewise.
32618         * modules/sys_socket (License): Likewise.
32619         * modules/sys_stat (License): Likewise.
32620         * modules/sys_time (License): Likewise.
32621         * modules/time (License): Likewise.
32622         * modules/time_r (License): Likewise.
32623         * modules/timegm (License): Likewise.
32624         * modules/unistd (License): Likewise.
32625         * modules/vsnprintf (License): Likewise.
32626         * modules/wctype (License): Likewise.
32627
32628 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32629
32630         * modules/argz (License): LGPLv2+.
32631
32632 2007-07-15  Karl Berry  <karl@gnu.org>
32633
32634         * doc/gnulib.texi: revise node structure per new fdl.texi.
32635
32636 2007-07-14  Bruno Haible  <bruno@clisp.org>
32637
32638         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
32639         the output file.
32640         * lib/uniname/uninames.h: Regenerated.
32641
32642 2007-07-14  Karl Berry  <karl@gnu.org>
32643
32644         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
32645         omitting sectioning and index commands.
32646
32647 2007-07-13  Bruno Haible  <bruno@clisp.org>
32648
32649         New gnulib-tool option --more-symlinks.
32650         * gnulib-tool (func_usage): Document --more-symlinks.
32651         (do_copyrights): New variable.
32652         Recognize option --more-symlinks.
32653         (func_import): Don't add a copyright notice transform to
32654         sed_transform_lib_file if do_copyrights is empty.
32655
32656 2007-07-13  Bruno Haible  <bruno@clisp.org>
32657
32658         * lib/vasnprintf.c (decimal_point_char): Define also if
32659         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
32660         && !NEED_PRINTF_DIRECTIVE_A.
32661         Reported by Clemens Koller <clemens.koller@anagramm.de> via
32662         Gary V. Vaughan <gary@gnu.org>.
32663
32664 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
32665
32666         * lib/inttypes_.h: Undo previous change, since it was fixed
32667         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
32668
32669 2007-07-13  Bruno Haible  <bruno@clisp.org>
32670
32671         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
32672         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
32673
32674 2007-07-13  Jim Meyering  <jim@meyering.net>
32675
32676         df: Don't fail for Tru64's "file-on-file mount".
32677         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
32678         so we fall through and use statfs instead.  Details here:
32679         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
32680         Reported by Albert Chin.
32681
32682 2007-07-13  Bruno Haible  <bruno@clisp.org>
32683
32684         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
32685         * modules/configmake (License): Likewise.
32686         * modules/gettext (License): Likewise.
32687         * modules/gettext-h (License): Likewise.
32688         * modules/include_next (License): Likewise.
32689         * modules/link-warning (License): Likewise.
32690         * modules/localcharset (License): Likewise.
32691         * modules/localename (License): Likewise.
32692         * modules/lock (License): Likewise.
32693         * modules/relocatable-lib-lgpl (License): Likewise.
32694         * modules/size_max (License): Likewise.
32695         * modules/vasnprintf (License): Likewise.
32696         * modules/wchar (License): Likewise.
32697         * modules/xsize (License): Likewise.
32698
32699 2007-07-13  Bruno Haible  <bruno@clisp.org>
32700
32701         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
32702         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
32703
32704 2007-07-12  Bruno Haible  <bruno@clisp.org>
32705
32706         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
32707         in the modules files.
32708
32709 2007-07-11  Karl Berry  <karl@gnu.org>
32710
32711         * MODULES.html.sh (func_module): use
32712          sed -e '\|^'"${includefile}"'$|d'
32713          instead of /.../d, to avoid errors on $includefile's containing /.
32714
32715 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
32716
32717         * gnulib-tool (func_import): Avoid duplication of --avoid
32718         statements
32719         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
32720         names to `_' in variable names.
32721
32722 2007-07-10  Eric Blake  <ebb9@byu.net>
32723
32724         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
32725         * NEWS: Document this change.
32726
32727 2007-07-08  Bruno Haible  <bruno@clisp.org>
32728
32729         Update to Unicode 5.0.
32730         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
32731         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
32732         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
32733         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
32734         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
32735         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
32736         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
32737         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
32738         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
32739         U+10A3F, U+1D242..U+1D244.
32740         (nonspacing_table_ind): Update.
32741         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
32742         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
32743
32744 2007-07-08  Bruno Haible  <bruno@clisp.org>
32745
32746         Update to Unicode 5.0.
32747         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
32748         code transform. Extend the name index field of unicode_name_to_code and
32749         unicode_code_to_name from 16 to 24 bits.
32750         * lib/uniname/uniname.c (unicode_character_name,
32751         unicode_name_character): Add the range 0x12xxx to the code transform.
32752         * lib/uniname/uninames.h: Regenerated.
32753         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
32754
32755 2007-07-07  Bruno Haible  <bruno@clisp.org>
32756
32757         * modules/wcwidth-tests: New file.
32758         * tests/test-wcwidth.c: New file.
32759
32760         Work around MacOS X wcwidth() bug.
32761         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
32762         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
32763         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
32764         original wcwidth in non-UTF-8 locales.
32765         * modules/wcwidth (Depends-on): Add localcharset, streq,
32766         uniwidth/width.
32767         * doc/functions/wcwidth.texi: Update.
32768
32769 2007-07-07  Bruno Haible  <bruno@clisp.org>
32770
32771         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
32772         (wcwidth): New declaration.
32773         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
32774         macros.
32775         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
32776         here. Prepare for creating <wchar.h> unconditionally.
32777         * modules/wchar (Depends-on): Add link-warning.
32778         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
32779         REPLACE_WCWIDTH, and GL_LINK_WARNING.
32780         * lib/wcwidth.h: Remove file.
32781         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
32782         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
32783         * modules/wcwidth (Files): Remove lib/wcwidth.h.
32784         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
32785         (Include): Replace wcwidth.h with <wchar.h>.
32786         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
32787         * lib/mbchar.h: Don't include wcwidth.h.
32788         * lib/mbswidth.c: Likewise.
32789         * NEWS: Mention the change.
32790
32791 2007-07-07  Bruno Haible  <bruno@clisp.org>
32792
32793         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
32794         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
32795         definition with an external declaration.
32796         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
32797         defined as a function. Remove AC_C_INLINE requirement.
32798         * modules/wcwidth (Files): Add lib/wcwidth.c.
32799         (Makefile.am): Remove redundant statement.
32800
32801 2007-07-07  Bruno Haible  <bruno@clisp.org>
32802
32803         * MODULES.html.sh (Unicode string functions): Add the new modules.
32804
32805         * tests/uniwidth/test-u32-strwidth.c: New file.
32806         * modules/uniwidth/u32-strwidth-tests: New file.
32807
32808         * lib/uniwidth/u32-strwidth.c: New file.
32809         * modules/uniwidth/u32-strwidth: New file.
32810
32811         * tests/uniwidth/test-u16-strwidth.c: New file.
32812         * modules/uniwidth/u16-strwidth-tests: New file.
32813
32814         * lib/uniwidth/u16-strwidth.c: New file.
32815         * modules/uniwidth/u16-strwidth: New file.
32816
32817         * tests/uniwidth/test-u8-strwidth.c: New file.
32818         * modules/uniwidth/u8-strwidth-tests: New file.
32819
32820         * lib/uniwidth/u8-strwidth.c: New file.
32821         * modules/uniwidth/u8-strwidth: New file.
32822
32823         * tests/uniwidth/test-u32-width.c: New file.
32824         * modules/uniwidth/u32-width-tests: New file.
32825
32826         * lib/uniwidth/u32-width.c: New file.
32827         * modules/uniwidth/u32-width: New file.
32828
32829         * tests/uniwidth/test-u16-width.c: New file.
32830         * modules/uniwidth/u16-width-tests: New file.
32831
32832         * lib/uniwidth/u16-width.c: New file.
32833         * modules/uniwidth/u16-width: New file.
32834
32835         * tests/uniwidth/test-u8-width.c: New file.
32836         * modules/uniwidth/u8-width-tests: New file.
32837
32838         * lib/uniwidth/u8-width.c: New file.
32839         * modules/uniwidth/u8-width: New file.
32840
32841         * tests/uniwidth/test-uc_width.c: New file.
32842         * modules/uniwidth/width-tests: New file.
32843
32844         * lib/uniwidth/width.c: New file, from GNU libiconv.
32845         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
32846         * modules/uniwidth/width: New file.
32847
32848         * lib/uniwidth.h: New file, from GNU libiconv.
32849         * modules/uniwidth/base: New file.
32850
32851 2007-07-07  Bruno Haible  <bruno@clisp.org>
32852
32853         * lib/uniname.h: New file, from GNU gettext.
32854         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
32855         * lib/uniname/uninames.h: New file, from GNU gettext.
32856         * lib/uniname/uniname.c: New file, from GNU gettext.
32857         * tests/uniname/test-uninames.sh: New file.
32858         * tests/uniname/test-uninames.c: New file, from GNU gettext.
32859         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
32860         * modules/uniname/base: New file.
32861         * modules/uniname/uniname: New file.
32862         * modules/uniname/uniname-tests: New file.
32863         * MODULES.html.sh (Unicode string functions): Add the new modules.
32864
32865 2007-07-06  Bruno Haible  <bruno@clisp.org>
32866
32867         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
32868
32869 2007-07-06  Bruno Haible  <bruno@clisp.org>
32870
32871         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
32872         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
32873         includes <cygwin/sys_time.h> which includes <sys/select.h> which
32874         include <sys/time.h>.
32875         Reported by Eric Blake.
32876
32877 2007-07-06  Eric Blake  <ebb9@byu.net>
32878
32879         Fix testing canonicalize on cygwin.
32880         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
32881         Revert patch from 2007-06-19.
32882         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
32883         canonicalize module is also in use.
32884         * tests/test-canonicalize.c: New file.
32885         * tests/test-canonicalize.sh: Likewise.
32886         * modules/canonicalize-tests: Likewise.
32887
32888 2007-07-06  Jim Meyering  <jim@meyering.net>
32889
32890         * lib/getugroups.c (getugroups): Detect getgrent failure.
32891         Adjust comment to reflect reality: this function may return -1.
32892
32893 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
32894
32895         * build-aux/bootstrap (TP_URL,get_translations): Update to use
32896         the new TP address.
32897         (usage): Fix typo
32898         (gnulib_mk): New variable.
32899
32900 2007-07-05  Jim Meyering  <jim@meyering.net>
32901
32902         Don't let endgrent clobber errno, no matter how improbable.
32903         * lib/getugroups.c (getugroups): Save and restore errno around
32904         endgrent call.
32905
32906         Close the group DB even when failing with 2^31 or more members.
32907         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
32908
32909 2007-07-04  Jim Meyering  <jim@meyering.net>
32910
32911         * lib/getugroups.h: New file.
32912         * lib/getugroups.c: Include "getugroups.h".
32913         Remove uses of "register" keyword.
32914         Move local variable, "cp", down into scope where used.
32915         Give "username" parameter the "const" attribute.
32916         * modules/getugroups (Files): Add lib/getugroups.h
32917
32918 2007-07-04  Karl Berry  <karl@gnu.org>
32919
32920         * MODULES.html.sh (func_all_modules): Complete rename of
32921         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
32922
32923 2007-07-02  Bruno Haible  <bruno@clisp.org>
32924
32925         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
32926         mode, when inttypes.h comes from gnulib.
32927         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
32928
32929 2007-07-02  Simon Josefsson  <simon@josefsson.org>
32930
32931         * NEWS: Mention lgpl module name change.
32932
32933         * modules/lgpl-2.1: Renamed from lgpl.
32934
32935         * NEWS: Mention gpl module name change.
32936
32937         * modules/gpl-3.0: New file, based on gpl-2.0.
32938
32939         * modules/gpl-2.0: Renamed from gpl.
32940
32941         * modules/gpl: Fix filename, doc/gpl.texi is now found at
32942         doc/gpl-2.0.texi.
32943
32944 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
32945
32946         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
32947         #define __STDC_LIMIT_MACROS temporarily while including
32948         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
32949         Problem reported by Joel E. Denny in
32950         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
32951
32952 2007-07-01  Bruno Haible  <bruno@clisp.org>
32953
32954         * lib/unistdio.h: New file.
32955         * lib/unistdio/u-asnprintf.h: New file.
32956         * lib/unistdio/u-asprintf.h: New file.
32957         * lib/unistdio/u-printf-args.c: New file.
32958         * lib/unistdio/u-printf-args.h: New file.
32959         * lib/unistdio/u-printf-parse.h: New file.
32960         * lib/unistdio/u-snprintf.h: New file.
32961         * lib/unistdio/u-sprintf.h: New file.
32962         * lib/unistdio/u-vasprintf.h: New file.
32963         * lib/unistdio/u-vsnprintf.h: New file.
32964         * lib/unistdio/u-vsprintf.h: New file.
32965         * lib/unistdio/ulc-asnprintf.c: New file.
32966         * lib/unistdio/ulc-asprintf.c: New file.
32967         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
32968         * lib/unistdio/ulc-printf-parse.c: New file.
32969         * lib/unistdio/ulc-snprintf.c: New file.
32970         * lib/unistdio/ulc-sprintf.c: New file.
32971         * lib/unistdio/ulc-vasnprintf.c: New file.
32972         * lib/unistdio/ulc-vasprintf.c: New file.
32973         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
32974         * lib/unistdio/ulc-vsnprintf.c: New file.
32975         * lib/unistdio/ulc-vsprintf.c: New file.
32976         * lib/unistdio/u8-asnprintf.c: New file.
32977         * lib/unistdio/u8-asprintf.c: New file.
32978         * lib/unistdio/u8-printf-parse.c: New file.
32979         * lib/unistdio/u8-snprintf.c: New file.
32980         * lib/unistdio/u8-sprintf.c: New file.
32981         * lib/unistdio/u8-vasnprintf.c: New file.
32982         * lib/unistdio/u8-vasprintf.c: New file.
32983         * lib/unistdio/u8-vsnprintf.c: New file.
32984         * lib/unistdio/u8-vsprintf.c: New file.
32985         * lib/unistdio/u8-u8-asnprintf.c: New file.
32986         * lib/unistdio/u8-u8-asprintf.c: New file.
32987         * lib/unistdio/u8-u8-snprintf.c: New file.
32988         * lib/unistdio/u8-u8-sprintf.c: New file.
32989         * lib/unistdio/u8-u8-vasnprintf.c: New file.
32990         * lib/unistdio/u8-u8-vasprintf.c: New file.
32991         * lib/unistdio/u8-u8-vsnprintf.c: New file.
32992         * lib/unistdio/u8-u8-vsprintf.c: New file.
32993         * lib/unistdio/u16-asnprintf.c: New file.
32994         * lib/unistdio/u16-asprintf.c: New file.
32995         * lib/unistdio/u16-printf-parse.c: New file.
32996         * lib/unistdio/u16-snprintf.c: New file.
32997         * lib/unistdio/u16-sprintf.c: New file.
32998         * lib/unistdio/u16-vasnprintf.c: New file.
32999         * lib/unistdio/u16-vasprintf.c: New file.
33000         * lib/unistdio/u16-vsnprintf.c: New file.
33001         * lib/unistdio/u16-vsprintf.c: New file.
33002         * lib/unistdio/u16-u16-asnprintf.c: New file.
33003         * lib/unistdio/u16-u16-asprintf.c: New file.
33004         * lib/unistdio/u16-u16-snprintf.c: New file.
33005         * lib/unistdio/u16-u16-sprintf.c: New file.
33006         * lib/unistdio/u16-u16-vasnprintf.c: New file.
33007         * lib/unistdio/u16-u16-vasprintf.c: New file.
33008         * lib/unistdio/u16-u16-vsnprintf.c: New file.
33009         * lib/unistdio/u16-u16-vsprintf.c: New file.
33010         * lib/unistdio/u32-asnprintf.c: New file.
33011         * lib/unistdio/u32-asprintf.c: New file.
33012         * lib/unistdio/u32-printf-parse.c: New file.
33013         * lib/unistdio/u32-snprintf.c: New file.
33014         * lib/unistdio/u32-sprintf.c: New file.
33015         * lib/unistdio/u32-vasnprintf.c: New file.
33016         * lib/unistdio/u32-vasprintf.c: New file.
33017         * lib/unistdio/u32-vsnprintf.c: New file.
33018         * lib/unistdio/u32-vsprintf.c: New file.
33019         * lib/unistdio/u32-u32-asnprintf.c: New file.
33020         * lib/unistdio/u32-u32-asprintf.c: New file.
33021         * lib/unistdio/u32-u32-snprintf.c: New file.
33022         * lib/unistdio/u32-u32-sprintf.c: New file.
33023         * lib/unistdio/u32-u32-vasnprintf.c: New file.
33024         * lib/unistdio/u32-u32-vasprintf.c: New file.
33025         * lib/unistdio/u32-u32-vsnprintf.c: New file.
33026         * lib/unistdio/u32-u32-vsprintf.c: New file.
33027         * tests/unistdio/test-ulc-asnprintf1.c: New file.
33028         * tests/unistdio/test-ulc-asnprintf1.h: New file.
33029         * tests/unistdio/test-ulc-printf1.h: New file.
33030         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
33031         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
33032         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
33033         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
33034         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
33035         * tests/unistdio/test-ulc-vasprintf1.c: New file.
33036         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
33037         * tests/unistdio/test-ulc-vsprintf1.c: New file.
33038         * tests/unistdio/test-u8-asnprintf1.c: New file.
33039         * tests/unistdio/test-u8-asnprintf1.h: New file.
33040         * tests/unistdio/test-u8-printf1.h: New file.
33041         * tests/unistdio/test-u8-vasnprintf1.c: New file.
33042         * tests/unistdio/test-u8-vasnprintf2.c: New file.
33043         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
33044         * tests/unistdio/test-u8-vasnprintf3.c: New file.
33045         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
33046         * tests/unistdio/test-u8-vasprintf1.c: New file.
33047         * tests/unistdio/test-u8-vsnprintf1.c: New file.
33048         * tests/unistdio/test-u8-vsprintf1.c: New file.
33049         * tests/unistdio/test-u16-asnprintf1.c: New file.
33050         * tests/unistdio/test-u16-asnprintf1.h: New file.
33051         * tests/unistdio/test-u16-printf1.h: New file.
33052         * tests/unistdio/test-u16-vasnprintf1.c: New file.
33053         * tests/unistdio/test-u16-vasnprintf2.c: New file.
33054         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
33055         * tests/unistdio/test-u16-vasnprintf3.c: New file.
33056         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
33057         * tests/unistdio/test-u16-vasprintf1.c: New file.
33058         * tests/unistdio/test-u16-vsnprintf1.c: New file.
33059         * tests/unistdio/test-u16-vsprintf1.c: New file.
33060         * tests/unistdio/test-u32-asnprintf1.c: New file.
33061         * tests/unistdio/test-u32-asnprintf1.h: New file.
33062         * tests/unistdio/test-u32-printf1.h: New file.
33063         * tests/unistdio/test-u32-vasnprintf1.c: New file.
33064         * tests/unistdio/test-u32-vasnprintf2.c: New file.
33065         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
33066         * tests/unistdio/test-u32-vasnprintf3.c: New file.
33067         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
33068         * tests/unistdio/test-u32-vasprintf1.c: New file.
33069         * tests/unistdio/test-u32-vsnprintf1.c: New file.
33070         * tests/unistdio/test-u32-vsprintf1.c: New file.
33071         * modules/unistdio/base: New file.
33072         * modules/unistdio/u-printf-args: New file.
33073         * modules/unistdio/ulc-asnprintf: New file.
33074         * modules/unistdio/ulc-asprintf: New file.
33075         * modules/unistdio/ulc-fprintf: New file.
33076         * modules/unistdio/ulc-printf-parse: New file.
33077         * modules/unistdio/ulc-snprintf: New file.
33078         * modules/unistdio/ulc-sprintf: New file.
33079         * modules/unistdio/ulc-vasnprintf: New file.
33080         * modules/unistdio/ulc-vasprintf: New file.
33081         * modules/unistdio/ulc-vfprintf: New file.
33082         * modules/unistdio/ulc-vsnprintf: New file.
33083         * modules/unistdio/ulc-vsprintf: New file.
33084         * modules/unistdio/u8-asnprintf: New file.
33085         * modules/unistdio/u8-asprintf: New file.
33086         * modules/unistdio/u8-printf-parse: New file.
33087         * modules/unistdio/u8-snprintf: New file.
33088         * modules/unistdio/u8-sprintf: New file.
33089         * modules/unistdio/u8-vasnprintf: New file.
33090         * modules/unistdio/u8-vasprintf: New file.
33091         * modules/unistdio/u8-vsnprintf: New file.
33092         * modules/unistdio/u8-vsprintf: New file.
33093         * modules/unistdio/u8-u8-asnprintf: New file.
33094         * modules/unistdio/u8-u8-asprintf: New file.
33095         * modules/unistdio/u8-u8-snprintf: New file.
33096         * modules/unistdio/u8-u8-sprintf: New file.
33097         * modules/unistdio/u8-u8-vasnprintf: New file.
33098         * modules/unistdio/u8-u8-vasprintf: New file.
33099         * modules/unistdio/u8-u8-vsnprintf: New file.
33100         * modules/unistdio/u8-u8-vsprintf: New file.
33101         * modules/unistdio/u16-asnprintf: New file.
33102         * modules/unistdio/u16-asprintf: New file.
33103         * modules/unistdio/u16-printf-parse: New file.
33104         * modules/unistdio/u16-snprintf: New file.
33105         * modules/unistdio/u16-sprintf: New file.
33106         * modules/unistdio/u16-vasnprintf: New file.
33107         * modules/unistdio/u16-vasprintf: New file.
33108         * modules/unistdio/u16-vsnprintf: New file.
33109         * modules/unistdio/u16-vsprintf: New file.
33110         * modules/unistdio/u16-u16-asnprintf: New file.
33111         * modules/unistdio/u16-u16-asprintf: New file.
33112         * modules/unistdio/u16-u16-snprintf: New file.
33113         * modules/unistdio/u16-u16-sprintf: New file.
33114         * modules/unistdio/u16-u16-vasnprintf: New file.
33115         * modules/unistdio/u16-u16-vasprintf: New file.
33116         * modules/unistdio/u16-u16-vsnprintf: New file.
33117         * modules/unistdio/u16-u16-vsprintf: New file.
33118         * modules/unistdio/u32-asnprintf: New file.
33119         * modules/unistdio/u32-asprintf: New file.
33120         * modules/unistdio/u32-printf-parse: New file.
33121         * modules/unistdio/u32-snprintf: New file.
33122         * modules/unistdio/u32-sprintf: New file.
33123         * modules/unistdio/u32-vasnprintf: New file.
33124         * modules/unistdio/u32-vasprintf: New file.
33125         * modules/unistdio/u32-vsnprintf: New file.
33126         * modules/unistdio/u32-vsprintf: New file.
33127         * modules/unistdio/u32-u32-asnprintf: New file.
33128         * modules/unistdio/u32-u32-asprintf: New file.
33129         * modules/unistdio/u32-u32-snprintf: New file.
33130         * modules/unistdio/u32-u32-sprintf: New file.
33131         * modules/unistdio/u32-u32-vasnprintf: New file.
33132         * modules/unistdio/u32-u32-vasprintf: New file.
33133         * modules/unistdio/u32-u32-vsnprintf: New file.
33134         * modules/unistdio/u32-u32-vsprintf: New file.
33135         * modules/unistdio/ulc-asnprintf-tests: New file.
33136         * modules/unistdio/ulc-vasnprintf-tests: New file.
33137         * modules/unistdio/ulc-vasprintf-tests: New file.
33138         * modules/unistdio/ulc-vsnprintf-tests: New file.
33139         * modules/unistdio/ulc-vsprintf-tests: New file.
33140         * modules/unistdio/u8-asnprintf-tests: New file.
33141         * modules/unistdio/u8-vasnprintf-tests: New file.
33142         * modules/unistdio/u8-vasprintf-tests: New file.
33143         * modules/unistdio/u8-vsnprintf-tests: New file.
33144         * modules/unistdio/u8-vsprintf-tests: New file.
33145         * modules/unistdio/u16-asnprintf-tests: New file.
33146         * modules/unistdio/u16-vasnprintf-tests: New file.
33147         * modules/unistdio/u16-vasprintf-tests: New file.
33148         * modules/unistdio/u16-vsnprintf-tests: New file.
33149         * modules/unistdio/u16-vsprintf-tests: New file.
33150         * modules/unistdio/u32-asnprintf-tests: New file.
33151         * modules/unistdio/u32-vasnprintf-tests: New file.
33152         * modules/unistdio/u32-vasprintf-tests: New file.
33153         * modules/unistdio/u32-vsnprintf-tests: New file.
33154         * modules/unistdio/u32-vsprintf-tests: New file.
33155         * MODULES.html.sh (Unicode string functions): Add the new modules.
33156
33157 2007-07-01  Bruno Haible  <bruno@clisp.org>
33158
33159         * lib/sprintf.c (sprintf): Limit the available length estimation,
33160         to avoid address wraparound.
33161         * lib/vsprintf.c (vsprintf): Likewise.
33162         * modules/sprintf-posix (Dependencies): Add stdint.
33163         * modules/vsprintf-posix (Dependencies): Likewise.
33164
33165 2007-07-01  Bruno Haible  <bruno@clisp.org>
33166
33167         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
33168         Windows PATH as well. Conservative double-quoting. Comments.
33169
33170 2007-07-01  Bruno Haible  <bruno@clisp.org>
33171             Eric Blake  <ebb9@byu.net>
33172             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33173
33174         * gnulib-tool (self_abspathname): Fix algorithm to cope with
33175         empty components in $PATH, denoting '.'.
33176
33177 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33178
33179         * gnulib-tool: Fix indentation.
33180         (func_create_megatestdir): Likewise.
33181         Report by Bruno Haible.
33182
33183 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33184
33185         Sync from Automake.
33186         * build-aux/gnupload: Fix shell portability issues with for loops.
33187         Report by Karl Berry.
33188
33189 2007-06-29  Simon Josefsson  <simon@josefsson.org>
33190
33191         * build-aux/maint.mk (POURL): Use translationproject.org.
33192
33193 2007-06-27  Simon Josefsson  <simon@josefsson.org>
33194             Bruno Haible  <bruno@clisp.org>
33195
33196         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
33197         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
33198         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
33199         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
33200         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
33201
33202 2007-06-27  Bruno Haible  <bruno@clisp.org>
33203
33204         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
33205         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
33206
33207 2007-06-26  Karl Berry  <karl@gnu.org>
33208
33209         * MODULES.html.sh: remove xreadlink-with-size.
33210
33211 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
33212
33213         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
33214         method that I hope also handles the double-include problem noted
33215         by Bruno Haible in
33216         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
33217
33218 2007-06-23  Bruno Haible  <bruno@clisp.org>
33219
33220         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
33221         Don't let the 'mostlyclean' target fail if the last subdirectory could
33222         not be removed.
33223         Reported by Karl Berry.
33224
33225 2007-06-23  Bruno Haible  <bruno@clisp.org>
33226
33227         * gnulib-tool (echo): Add a speedier workaround for ksh.
33228         * tests/test-echo.sh: Likewise.
33229
33230 2007-06-23  Bruno Haible  <bruno@clisp.org>
33231
33232         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
33233         * tests/test-echo.sh: Likewise.
33234
33235 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33236
33237         * gnulib-tool (IFS): Initialize early, so we don't set it to
33238         empty later.
33239         (self_abspathname): Rewrite algorithm to set it, reindent.
33240         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
33241         (func_create_megatestdir): Merge some sed scripts.
33242
33243 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
33244
33245         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
33246         exposed by Sun Studio 11 cc on Solaris 8.
33247
33248 2007-06-22  Bruno Haible  <bruno@clisp.org>
33249
33250         * gnulib-tool (echo): Ensure the echo primitive does not interpret
33251         backslashes.
33252         * tests/test-echo.sh: New file.
33253
33254 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33255
33256         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
33257         simplify `sed_replace_build_aux' scripts, they are portable but
33258         echoing them with `echo' is not.
33259         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
33260
33261 2007-06-21  Karl Berry  <karl@gnu.org>
33262
33263         * config/srclist.txt: guess we can't handle the licenses via
33264         srclist at the moment.
33265
33266 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
33267
33268         * MODULES.html.sh: Add include_next.
33269         * modules/include_next: New file.
33270
33271 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
33272
33273         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
33274         INCLUDE_NEXT.
33275         (gl_CHECK_NEXT_HEADERS): New macro.
33276         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
33277         the obsolescent gl_ABSOLUTE_HEADER.
33278         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
33279         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
33280         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
33281         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
33282         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
33283         * m4/math_h.m4 (gl_MATH_H): Likewise.
33284         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
33285         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
33286         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
33287         * m4/stdint.m4 (gl_STDINT_H): Likewise.
33288         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
33289         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
33290         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
33291         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
33292         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
33293         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
33294         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
33295         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
33296         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
33297         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
33298         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
33299         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
33300         * m4/inttypes.m4 (gl_INTTYPES_H): Define
33301         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
33302         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
33303         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
33304         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
33305         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
33306         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
33307         * lib/float_.h: Likewise.
33308         * lib/inttypes_.h: Likewise.
33309         * lib/math_.h: Likewise.
33310         * lib/search_.h: Likewise.
33311         * lib/signal_.h: Likewise.
33312         * lib/stdint_.h: Likewise.
33313         * lib/stdio_.h: Likewise.
33314         * lib/stdlib_.h: Likewise.
33315         * lib/string_.h: Likewise.
33316         * lib/sys_stat_.h: Likewise.
33317         * lib/sys_time_.h: Likewise.
33318         * lib/time_.h: Likewise.
33319         * lib/unistd_.h: Likewise.
33320         * lib/wchar_.h: Likewise.
33321         * lib/wctype_.h: Likewise.
33322         * lib/dirent_.h: Likewise.
33323         * lib/iconv_.h: Likewise.
33324         * lib/locale_.h: Likewise.
33325         * lib/netinet_in_.h: Likewise.
33326         * lib/sys_select_.h: Likewise.
33327         * lib/sys_socket_.h: Likewise.
33328         * lib/sysexits_.h: Likewise.
33329         * modules/fcntl (Depends-on): Depend on include_next, not
33330         absolute_header.
33331         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
33332         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
33333         * modules/fchdir: Likewise.
33334         * modules/float: Likewise.
33335         * modules/iconv_open: Likewise.
33336         * modules/inttypes: Likewise.
33337         * modules/locale: Likewise.
33338         * modules/math: Likewise.
33339         * modules/netinet_in: Likewise.
33340         * modules/search: Likewise.
33341         * modules/signal: Likewise.
33342         * modules/stdint: Likewise.
33343         * modules/stdio: Likewise.
33344         * modules/stdlib: Likewise.
33345         * modules/string: Likewise.
33346         * modules/sys_select: Likewise.
33347         * modules/sys_socket: Likewise.
33348         * modules/sys_stat: Likewise.
33349         * modules/sys_time: Likewise.
33350         * modules/sysexits: Likewise.
33351         * modules/time: Likewise.
33352         * modules/unistd: Likewise.
33353         * modules/wchar: Likewise.
33354         * modules/wctype: Likewise.
33355         * modules/sys_stat: Change maintainer to "all".
33356         * modules/unistd: Likewise.
33357
33358 2007-06-20  Karl Berry  <karl@gnu.org>
33359
33360         * config/srclist.txt: track www changes in license files.
33361
33362 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
33363
33364         * build-aux/bootstrap: Remove stray dot.
33365         Make sure build_aux settings are honored when linking
33366         gnulib_extra_files.
33367
33368 2007-06-19  Eric Blake  <ebb9@byu.net>
33369
33370         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
33371         Allow compilation on cygwin.
33372
33373 2007-06-19  Jim Meyering  <jim@meyering.net>
33374
33375         xreadlink-with-size: Remove module.  No longer used.
33376         Ex-callers now use xreadlink or mreadlink-with-size.
33377         * modules/xreadlink-with-size: Remove module.
33378         * lib/xreadlink-with-size.c: Remove file.
33379         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
33380         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
33381         just before the function definition *is* accurate.
33382
33383         Eliminate one way canonicalize_filename_mode could exit.
33384         * lib/canonicalize.c (canonicalize_filename_mode):
33385         Use mreadlink_with_size, not xreadlink_with_size.
33386
33387 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
33388
33389         Detect porting problems to FreeBSD/arm, which has time_t wider than
33390         long int.  Original problem reported for GNU diff by Xin Li in
33391         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
33392         * modules/getdate (Depends-on): Add intprops, verify.
33393         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
33394         is an integer type no wider than long int.
33395
33396 2007-06-18  Jim Meyering  <jim@meyering.net>
33397
33398         New module: mreadlink-with-size.
33399         * MODULES.html.sh: Add mreadlink-with-size.
33400         * modules/mreadlink-with-size: New module
33401         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
33402         not xreadlink-with-size.
33403         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
33404
33405 2007-06-16  Bruno Haible  <bruno@clisp.org>
33406
33407         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
33408         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
33409         Reported by Gary V. Vaughan <gary@gnu.org>.
33410
33411 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
33412
33413         Revamp lchown so that it lives in unistd.h where it belongs.
33414         * lib/lchown.h: Remove.
33415         * lib/dirchownmod.c: Don't include lib/lchown.h.
33416         * lib/fchownat.c: Likewise.
33417         * lib/openat.c: Likewise.
33418         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
33419         does not follow symlinks.
33420         (EOPNOTSUPP): Define if not defined.
33421         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
33422         is defined to 0.
33423         (lchown): New decl.
33424         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
33425         Do not check for lchown decl.
33426         Set REPLACE_LCHOWN.
33427         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
33428         REPLACE_LCHOWN.
33429         * modules/chown: Make it clear it follows symlinks.
33430         * modules/lchown: Make it clear it doesn't follow symlinks.
33431         (Files): Remove lib/lchown.h
33432         (Depends-on): Add unistd.
33433         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
33434         (Include): Include <unistd.h>, not "lchown.h".
33435         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
33436         REPLACE_LCHOWN.
33437
33438 2007-06-15  Jim Meyering  <jim@meyering.net>
33439
33440         Change license (GPL to LGPL) of fsusage and dependents.
33441         * modules/fsusage (License): Change to LGPL.
33442         * modules/full-read (License): Likewise.
33443         * modules/full-write (License): Likewise.
33444         * modules/safe-read (License): Likewise.
33445         * modules/safe-write (License): Likewise.
33446
33447 2007-06-14  Ben Pfaff  <blp@gnu.org>
33448
33449         Missing part of allocsa -> malloca transition.
33450         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
33451         gl_MALLOCA.
33452
33453 2007-06-12  Bruno Haible  <bruno@clisp.org>
33454
33455         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
33456         to ia64, x86_64, i386.
33457         Reported by Eric Blake.
33458
33459 2007-06-12  Bruno Haible  <bruno@clisp.org>
33460
33461         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
33462         cross-compiling to x86_64.
33463
33464 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
33465
33466         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
33467         glitch reported by Ralf Wildenhues in
33468         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
33469
33470         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
33471         Vin Shelton.
33472
33473 2007-06-11  Bruno Haible  <bruno@clisp.org>
33474
33475         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
33476         replacement string.
33477         Reported by Eric Blake.
33478
33479 2007-06-10  Bruno Haible  <bruno@clisp.org>
33480
33481         Prepare vasnprintf code for use with Unicode strings.
33482         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
33483         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
33484         TYPE_U32_STRING.
33485         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
33486         a_u32_string variants.
33487         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
33488         * lib/printf-args.c: Don't include config.h and the specification
33489         header if PRINTF_FETCHARGS is already defined.
33490         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
33491         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
33492         TYPE_U16_STRING, TYPE_U32_STRING.
33493         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
33494         u16_directive, u16_directives, u32_directive, u32_directives): New
33495         types.
33496         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
33497         New declarations.
33498         * lib/printf-parse.c: Don't include config.h and the specification
33499         header if PRINTF_PARSE is already defined. Eliminate the set of
33500         parameters for WIDE_CHAR_VERSION; the user of this file must provide
33501         them now. Include c-ctype.h.
33502         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
33503         directive and CHAR_T_ONLY_ASCII.
33504         * lib/vasnprintf.c: Don't include config.h and the specification header
33505         if VASNPRINTF is already defined.
33506         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
33507         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
33508         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
33509         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
33510         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
33511         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
33512         code accordingly.
33513         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
33514         pad_ourselves also in this case, with the 'c' and 's' directives, and
33515         with a different notion of "width".
33516         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
33517
33518 2007-06-10  Bruno Haible  <bruno@clisp.org>
33519
33520         * modules/unistr/u32-mbsnlen: New file.
33521         * lib/unistr/u32-mbsnlen.c: New file.
33522
33523         * modules/unistr/u16-mbsnlen: New file.
33524         * lib/unistr/u16-mbsnlen.c: New file.
33525
33526         * modules/unistr/u8-mbsnlen: New file.
33527         * lib/unistr/u8-mbsnlen.c: New file.
33528
33529         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
33530         declarations.
33531
33532 2007-06-10  Bruno Haible  <bruno@clisp.org>
33533
33534         * lib/string_.h (mbsnlen): New declaration.
33535         * lib/mbsnlen.c: New file.
33536         * m4/mbsnlen.m4: New file.
33537         * modules/mbsnlen: New file.
33538         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
33539         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
33540         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
33541
33542 2007-06-10  Bruno Haible  <bruno@clisp.org>
33543
33544         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
33545
33546 2007-06-10  Bruno Haible  <bruno@clisp.org>
33547
33548         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
33549         * lib/mbuiter.h: Likewise.
33550
33551 2007-06-10  Bruno Haible  <bruno@clisp.org>
33552
33553         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
33554         declaration.
33555
33556 2007-06-10  Karl Berry  <karl@gnu.org>
33557
33558         * config/srclist.txt: remove gettext entries, Bruno prefers
33559         to update individually.
33560
33561 2007-06-10  Bruno Haible  <bruno@clisp.org>
33562
33563         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
33564         'maxlen'. Ensure only length + width bytes are allocated, not
33565         length + 1 + width.
33566
33567 2007-06-09  Bruno Haible  <bruno@clisp.org>
33568
33569         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
33570         (CHAR_T): Remove macro.
33571         (VASNPRINTF): Update.
33572
33573 2007-06-09  Bruno Haible  <bruno@clisp.org>
33574
33575         * MODULES.html.sh (Unicode string functions): Add the new modules.
33576
33577         * modules/uniconv/u32-conv-to-enc: New file.
33578         * lib/uniconv/u32-conv-to-enc.c: New file.
33579         * modules/uniconv/u32-conv-to-enc-tests: New file.
33580         * tests/uniconv/test-u32-conv-to-enc.c: New file.
33581
33582         * modules/uniconv/u16-conv-to-enc: New file.
33583         * lib/uniconv/u16-conv-to-enc.c: New file.
33584         * lib/uniconv/u-conv-to-enc.h: New file.
33585         * modules/uniconv/u16-conv-to-enc-tests: New file.
33586         * tests/uniconv/test-u16-conv-to-enc.c: New file.
33587
33588         * modules/uniconv/u8-conv-to-enc: New file.
33589         * lib/uniconv/u8-conv-to-enc.c: New file.
33590         * modules/uniconv/u8-conv-to-enc-tests: New file.
33591         * tests/uniconv/test-u8-conv-to-enc.c: New file.
33592
33593         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
33594         u32_conv_to_encoding): New declarations.
33595
33596 2007-06-09  Bruno Haible  <bruno@clisp.org>
33597
33598         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
33599
33600 2007-06-09  Bruno Haible  <bruno@clisp.org>
33601
33602         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
33603         * modules/malloca: Renamed from modules/allocsa, updated.
33604         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
33605         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
33606         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
33607         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
33608         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
33609         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
33610         * modules/xmalloca: Renamed from modules/xallocsa, updated.
33611         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
33612         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
33613         * modules/c-strcasestr (Depends-on): Update.
33614         * lib/c-strcasestr.c: Update.
33615         * modules/c-strstr (Depends-on): Update.
33616         * lib/c-strstr.c: Update.
33617         * modules/canonicalize-lgpl (Depends-on): Update.
33618         * lib/canonicalize-lgpl.c: Update.
33619         * modules/clean-temp (Depends-on): Update.
33620         * lib/clean-temp.c: Update.
33621         * modules/csharpcomp (Depends-on): Update.
33622         * lib/csharpcomp.c: Update.
33623         * modules/csharpexec (Depends-on): Update.
33624         * lib/csharpexec.c: Update.
33625         * modules/javacomp (Depends-on): Update.
33626         * lib/javacomp.c: Update.
33627         * modules/javaexec (Depends-on): Update.
33628         * lib/javaexec.c: Update.
33629         * modules/mbscasestr (Depends-on): Update.
33630         * lib/mbscasestr.c: Update.
33631         * modules/mbsstr (Depends-on): Update.
33632         * lib/mbsstr.c: Update.
33633         * modules/setenv (Depends-on): Update.
33634         * lib/setenv.c: Update.
33635         * modules/strcasestr (Depends-on): Update.
33636         * lib/strcasestr.c: Update.
33637         * modules/striconveha (Depends-on): Update.
33638         * lib/striconveha.c: Update.
33639         * modules/relocatable-prog-wrapper (Files): Update.
33640         * lib/relocwrapper.c: Update.
33641         * build-aux/install-reloc: Update.
33642         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
33643
33644 2007-06-08  Bruno Haible  <bruno@clisp.org>
33645
33646         Port to uClibc.
33647         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
33648         * lib/fpurge.c (fpurge): Likewise.
33649         * lib/freading.c (freading): Likewise.
33650         * lib/fseeko.c (rpl_fseeko): Likewise.
33651         * lib/fseterr.c (fseterr): Likewise.
33652         * lib/fwriting.c (fwriting): Likewise.
33653         * tests/test-fflush.c (main): Avoid a failure on uClibc.
33654
33655 2007-06-08  Bruno Haible  <bruno@clisp.org>
33656
33657         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
33658         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
33659         * modules/gettext (Files): Add m4/intlmacosx.m4.
33660
33661 2007-06-07  Bruno Haible  <bruno@clisp.org>
33662
33663         * modules/localename-tests: New file.
33664         * tests/test-localename.c: New file.
33665
33666         New module 'localename'.
33667         * lib/localename.h: New file.
33668         * lib/localename.c: New file, from GNU gettext.
33669         * m4/localename.m4: New file.
33670         * modules/localename: New file.
33671
33672 2007-06-07  Bruno Haible  <bruno@clisp.org>
33673
33674         Work around the lack of <wchar.h> on some builds of uClibc.
33675         * doc/headers/wchar.texi: Update.
33676         * lib/wchar_.h: Include <wchar.h> only if it exists.
33677         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
33678         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
33679         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
33680         doesn't exist.
33681         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
33682         * modules/mbfile (Depends-on): Add wchar.
33683         * modules/mbiter (Depends-on): Likewise.
33684         * modules/mbuiter (Depends-on): Likewise.
33685         Reported by Simon Josefsson.
33686
33687 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
33688
33689         Work around problem reported by Steven M. Schweda in
33690         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
33691         Tru64 5.1B with the Compaq compiler environment installed declares
33692         an 'isblank' function but does not define it in the C library.
33693         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
33694         * lib/regex_internal.h (isblank): Likewise.
33695         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
33696         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
33697
33698 2007-06-05  Bruno Haible  <bruno@clisp.org>
33699
33700         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
33701         ia64.
33702         * modules/printf-safe: New file.
33703         * modules/fprintf-posix (Depends-on): Add printf-safe.
33704         * modules/printf-posix (Depends-on): Likewise.
33705         * modules/snprintf-posix (Depends-on): Likewise.
33706         * modules/sprintf-posix (Depends-on): Likewise.
33707         * modules/vasnprintf-posix (Depends-on): Likewise.
33708         * modules/vasprintf-posix (Depends-on): Likewise.
33709         * modules/vfprintf-posix (Depends-on): Likewise.
33710         * modules/vprintf-posix (Depends-on): Likewise.
33711         * modules/vsnprintf-posix (Depends-on): Likewise.
33712         * modules/vsprintf-posix (Depends-on): Likewise.
33713         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
33714         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
33715         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
33716         "no" on i386, x86_64, ia64.
33717         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
33718         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
33719         on i386, x86_64, ia64.
33720         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
33721         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
33722         on i386, x86_64, ia64.
33723         * tests/test-vasnprintf-posix.c: Include float.h.
33724         (LDBL80_WORDS): New macro.
33725         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
33726         on i386, x86_64, ia64.
33727         * tests/test-vasprintf-posix.c: Include float.h.
33728         (LDBL80_WORDS): New macro.
33729         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
33730         on i386, x86_64, ia64.
33731         * tests/test-snprintf-posix.c: Include float.h.
33732         * tests/test-sprintf-posix.c: Likewise.
33733         * tests/test-vsnprintf-posix.c: Likewise.
33734         * tests/test-vsprintf-posix.c: Likewise.
33735
33736 2007-06-05  Bruno Haible  <bruno@clisp.org>
33737
33738         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
33739         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
33740         non-IEEE numbers on i386, x86_64, ia64.
33741         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
33742         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
33743         * tests/test-isnanl.h: Include float.h.
33744         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
33745
33746 2007-06-05  Bruno Haible  <bruno@clisp.org>
33747
33748         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
33749         also the %a / %A. Handle the %a / %A code before this extra handling.
33750
33751 2007-06-05  Bruno Haible  <bruno@clisp.org>
33752
33753         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
33754         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
33755
33756 2007-06-05  Bruno Haible  <bruno@clisp.org>
33757
33758         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
33759         typo in variable name.
33760
33761 2007-06-05  Eric Blake  <ebb9@byu.net>
33762
33763         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
33764         Reported by Simon Josefsson.
33765
33766 2007-06-04  Bruno Haible  <bruno@clisp.org>
33767
33768         Avoid test failures on some PowerPC platforms.
33769         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
33770         Define differently for PowerPC.
33771         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
33772         Reported by Gary V. Vaughan <gary@gnu.org>.
33773
33774 2007-06-02  Bruno Haible  <bruno@clisp.org>
33775
33776         Fix test-stdint failure on FreeBSD/ia64.
33777         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
33778         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
33779         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
33780         * doc/headers/stdint.texi: Update.
33781
33782 2007-06-01  Bruno Haible  <bruno@clisp.org>
33783
33784         * tests/test-binary-io.c (main): Pass a third argument to open().
33785         Reported by Gary V. Vaughan <gary@gnu.org>.
33786
33787 2007-06-01  Bruno Haible  <bruno@clisp.org>
33788
33789         * doc/functions/frexpl.texi: Update for mingw.
33790
33791 2007-06-01  Bruno Haible  <bruno@clisp.org>
33792
33793         * tests/test-lseek.c (main): Disable test of errno for invalid third
33794         argument.
33795         * doc/functions/lseek.texi: Update.
33796         Reported by Gary V. Vaughan <gary@gnu.org>.
33797
33798 2007-05-28  Bruno Haible  <bruno@clisp.org>
33799
33800         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
33801
33802 2007-05-31  Eric Blake  <ebb9@byu.net>
33803
33804         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
33805         cross compiling.
33806
33807 2007-05-30  Eric Blake  <ebb9@byu.net>
33808         and Bruno Haible  <bruno@clisp.org>
33809
33810         Work around mingw test failures exposed by m4-1.4.9b.
33811         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
33812         * tests/test-unistd.c: Disable uid_t and git_t tests for the
33813         moment.
33814
33815 2007-05-30  Bruno Haible  <bruno@clisp.org>
33816
33817         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
33818         assuming that they are closed. Needed on HP-UX 11.
33819
33820 2007-05-29  Bruno Haible  <bruno@clisp.org>
33821
33822         Fix a problem with #include_next.
33823         * lib/dirent_.h: Split the double-inclusion guard.
33824         * lib/fcntl_.h: Likewise.
33825         * lib/float_.h: Likewise.
33826         * lib/iconv_.h: Likewise.
33827         * lib/inttypes_.h: Likewise.
33828         * lib/locale_.h: Likewise.
33829         * lib/math_.h: Likewise.
33830         * lib/netinet_in_.h: Likewise.
33831         * lib/search_.h: Likewise.
33832         * lib/signal_.h: Likewise.
33833         * lib/stdint_.h: Likewise.
33834         * lib/stdio_.h: Likewise.
33835         * lib/stdlib_.h: Likewise.
33836         * lib/string_.h: Likewise.
33837         * lib/sys_select_.h: Likewise.
33838         * lib/sys_socket_.h: Likewise.
33839         * lib/sys_stat_.h: Likewise.
33840         * lib/sys_time_.h: Likewise.
33841         * lib/sysexits_.h: Likewise.
33842         * lib/time_.h: Likewise.
33843         * lib/unistd_.h: Likewise.
33844         * lib/wchar_.h: Likewise.
33845         * lib/wctype_.h: Likewise.
33846
33847 2007-05-29  Bruno Haible  <bruno@clisp.org>
33848
33849         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
33850         for the moment.
33851
33852 2007-05-29  Bruno Haible  <bruno@clisp.org>
33853
33854         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
33855         invocation.
33856         Reported by Eric Blake.
33857
33858 2007-05-29  Bruno Haible  <bruno@clisp.org>
33859
33860         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
33861         compiling case.
33862
33863 2007-05-29  Eric Blake  <ebb9@byu.net>
33864             Bruno Haible  <bruno@clisp.org>
33865
33866         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
33867         cross compiles.
33868
33869 2007-05-28  Eric Blake  <ebb9@byu.net>
33870
33871         * modules/closein-tests (test_closein_LDADD): Support test on
33872         cygwin with libtool.
33873
33874 2007-05-28  Bruno Haible  <bruno@clisp.org>
33875
33876         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
33877         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
33878         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
33879         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
33880         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
33881         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
33882         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
33883         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
33884         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
33885
33886 2007-05-28  Eric Blake  <ebb9@byu.net>
33887
33888         Unconditionally include <config.h> in unit tests.
33889         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
33890         * tests/test-allocsa.c, tests/test-arcfour.c,
33891         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
33892         tests/test-array_list.c, tests/test-array_oset.c,
33893         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
33894         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
33895         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
33896         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
33897         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
33898         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
33899         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
33900         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
33901         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
33902         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
33903         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
33904         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
33905         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
33906         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
33907         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
33908         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
33909         test-md5.c, test-memmem.c, test-printf-posix.c,
33910         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
33911         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
33912         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
33913         test-strcasestr.c, test-striconv.c, test-striconveh.c,
33914         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
33915         test-vasnprintf-posix2.c, test-vasnprintf.c,
33916         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
33917         test-vfprintf-posix.c, test-vprintf-posix.c,
33918         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
33919         test-xvasprintf.c: Likewise.
33920
33921 2007-05-28  Bruno Haible  <bruno@clisp.org>
33922
33923         * gnulib-tool (func_import): Remember the --with-tests command-line
33924         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
33925         Reported by Eric Blake.
33926
33927 2007-05-28  Bruno Haible  <bruno@clisp.org>
33928
33929         * modules/ftell-tests: New file.
33930         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
33931         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
33932
33933         * lib/ftell.c: New file.
33934         * modules/ftell: New file.
33935         * m4/ftell.m4: New file.
33936         * doc/functions/ftell.texi: Update.
33937         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
33938         REPLACE_FTELL.
33939         * lib/stdio_.h (rpl_ftell): New declaration.
33940         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
33941         REPLACE_FTELL.
33942
33943 2007-05-28  Eric Blake  <ebb9@byu.net>
33944
33945         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
33946
33947 2007-05-28  Bruno Haible  <bruno@clisp.org>
33948
33949         * modules/fseek-tests: New file.
33950         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
33951         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
33952
33953         * lib/fseek.c: New file.
33954         * modules/fseek: New file.
33955         * m4/fseek.m4: New file.
33956         * doc/functions/fseek.texi: Update.
33957         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
33958         REPLACE_FSEEK.
33959         * lib/stdio_.h (rpl_fseek): New declaration.
33960         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
33961         REPLACE_FSEEK.
33962
33963 2007-05-28  Bruno Haible  <bruno@clisp.org>
33964
33965         * lib/stdio_.h (fflush): More comments.
33966
33967 2007-05-28  Bruno Haible  <bruno@clisp.org>
33968
33969         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
33970         runtime test.
33971
33972 2007-05-28  Eric Blake  <ebb9@byu.net>
33973
33974         Improve lseek module.
33975         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
33976         * lib/unistd_.h (lseek): Scale back link warning message.
33977         * tests/test-lseek.c: Beef up test.
33978         * tests/test-lseek.sh: Exercise more facets of lseek.
33979         Reported by Bruno Haible.
33980
33981 2007-05-28  Bruno Haible  <bruno@clisp.org>
33982
33983         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
33984         to define.
33985
33986 2007-05-27  Bruno Haible  <bruno@clisp.org>
33987
33988         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
33989
33990 2007-05-27  Bruno Haible  <bruno@clisp.org>
33991
33992         * modules/openmp: New file.
33993         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
33994         Noah Misch.
33995
33996 2007-05-26  Bruno Haible  <bruno@clisp.org>
33997
33998         * modules/chdir-long (Depends-on): Add fchdir.
33999         * modules/chdir-safer (Depends-on): Likewise.
34000         * modules/fts (Depends-on): Likewise.
34001         * modules/fts-lgpl (Depends-on): Likewise.
34002         * modules/openat (Depends-on): Likewise.
34003         * modules/savewd (Depends-on): Likewise.
34004
34005 2007-05-24  Eric Blake  <ebb9@byu.net>
34006
34007         Fix lseek on mingw.
34008         * modules/lseek: New module.
34009         * m4/lseek.m4: New file.
34010         * lib/lseek.c: New file.
34011         * modules/lseek-tests: New file.
34012         * tests/test-lseek.c: New file.
34013         * tests/test-lseek.sh: New file.
34014         * MODULES.html.sh: Document lseek module.
34015         * modules/fflush (Depends-on): Add lseek, fseeko.
34016         * modules/fseeko (Depends-on): Likewise.
34017         * modules/ftello (Depends-on): Likewise.
34018         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
34019         broken.
34020         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
34021         broken.
34022         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
34023         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
34024         * lib/ftello.c (rpl_ftello): Likewise.
34025         * tests/test-fseeko.c (main): Test this.
34026         * tests/test-fseeko.sh: Likewise.
34027         * tests/test-ftello.c (main): Likewise.
34028         * tests/test-ftello.sh: Likewise.
34029         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
34030         implies replacing fseek.
34031         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
34032         HAVE_FTELLO.
34033         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
34034         * modules/unistd (Makefile.am): Likewise.
34035         * lib/unistd_.h (lseek): Declare a replacement.
34036         * doc/functions/lseek.texi (lseek): Document this fix.
34037         * doc/functions/fseek.texi (fseek): Likewise.
34038         * doc/functions/ftell.texi (ftell): Likewise.
34039
34040 2007-05-24  Bruno Haible  <bruno@clisp.org>
34041
34042         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
34043         in the printed representation of a NaN.
34044         * tests/test-vasprintf-posix.c (test_function): Likewise.
34045         * tests/test-snprintf-posix.h (test_function): Likewise.
34046         * tests/test-sprintf-posix.h (test_function): Likewise.
34047         Reported by Eric Blake.
34048
34049 2007-05-23  Eric Blake  <ebb9@byu.net>
34050
34051         Fix fseeko/ftello on cygwin 1.5.24.
34052         * doc/functions/fseeko.texi (fseeko): Document the fix.
34053         * doc/functions/ftello.texi (ftello): Document the fix.
34054         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
34055         * doc/functions/stdout.text (stdout): New file.
34056         * doc/functions/stderr.text (stderr): New file.
34057         * doc/gnulib.texi (Function Substitutes): Use new files.
34058         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
34059         prior to 1.7.0.
34060         * tests/test-ftello.c (main): Likewise for ftello.
34061         * tests/test-fseeko.sh: New file.
34062         * tests/test-ftello.sh: New file.
34063         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
34064         with seekable stdin.
34065         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
34066         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
34067         (gl_REPLACE_FSEEKO): New macro.
34068         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
34069         * modules/fseeko (Files): Distribute fseeko.c.
34070         * modules/ftello (Files): Distribute ftello.c.
34071         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
34072         mode.
34073         * lib/ftello.c (rpl_ftello): New file.
34074         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
34075         fseeko, ftello.
34076         (gl_STDIN_LARGE_OFFSET): New macro.
34077         * modules/stdio (Makefile.am): Perform the replacement.
34078         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
34079
34080 2007-05-23  Bruno Haible  <bruno@clisp.org>
34081
34082         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
34083         GNULIB_POSIXCHECK is defined.
34084
34085 2007-05-21  Bruno Haible  <bruno@clisp.org>
34086
34087         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
34088         Check also the output for NaN arguments. When cross-compiling, guess
34089         no on IRIX.
34090         * lib/vasnprintf.c: Update comments.
34091         * tests/test-vasnprintf-posix.c (strisnan): New function.
34092         (test_function): Use it.
34093         * tests/test-vasprintf-posix.c (strisnan): New function.
34094         (test_function): Use it.
34095         * tests/test-snprintf-posix.h (strisnan): New function.
34096         (test_function): Use it.
34097         * tests/test-sprintf-posix.h (strisnan): New function.
34098         (test_function): Use it.
34099         Reported by Eric Blake.
34100
34101 2007-05-20  Bruno Haible  <bruno@clisp.org>
34102
34103         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
34104         numbers that fails on BeOS.
34105         * doc/functions/frexpl.texi: Update.
34106
34107 2007-05-20  Jim Meyering  <jim@meyering.net>
34108
34109         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
34110         forced upon us by glibc-2.6.
34111
34112 2007-05-20  Bruno Haible  <bruno@clisp.org>
34113
34114         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
34115         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
34116         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
34117         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
34118         NEED_PRINTF_INFINITE.
34119         (is_infinitel): New function.
34120         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
34121         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
34122         gl_PREREQ_VASNPRINTF_INFINITE.
34123         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
34124         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34125         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
34126         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
34127         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
34128         gl_PREREQ_VASNPRINTF_INFINITE.
34129         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
34130         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34131         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34132         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34133         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34134         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34135         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34136         * doc/functions/fprintf.texi: Update.
34137         * doc/functions/printf.texi: Update.
34138         * doc/functions/snprintf.texi: Update.
34139         * doc/functions/sprintf.texi: Update.
34140         * doc/functions/vfprintf.texi: Update.
34141         * doc/functions/vprintf.texi: Update.
34142         * doc/functions/vsnprintf.texi: Update.
34143         * doc/functions/vsprintf.texi: Update.
34144
34145 2007-05-20  Bruno Haible  <bruno@clisp.org>
34146
34147         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
34148         was not found in libc.
34149         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
34150
34151 2007-05-20  Bruno Haible  <bruno@clisp.org>
34152
34153         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
34154         printed as "-nan" instead of "nan".
34155         * tests/test-vasprintf-posix.c (test_function): Likewise.
34156         * tests/test-snprintf-posix.h (test_function): Likewise.
34157         * tests/test-sprintf-posix.h (test_function): Likewise.
34158         Needed for HP-UX 11.
34159
34160 2007-05-20  Jim Meyering  <jim@meyering.net>
34161
34162         Fix buggy test for the fchownat-deref bug.
34163         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
34164         symlink required for the run-test.  Without it, this test would
34165         always declare that fchownat doesn't work, and client code would
34166         unnecessarily use the replacement function with fixed libc.
34167         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
34168         Reported by Greg Schafer.
34169
34170 2007-05-19  Bruno Haible  <bruno@clisp.org>
34171
34172         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
34173         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
34174         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
34175         Needed for IRIX 6.5 and Solaris 2.5.1.
34176
34177 2007-05-19  Bruno Haible  <bruno@clisp.org>
34178
34179         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
34180         (test_function): Skip tests involving -0.0 on platforms where
34181         -0.0 = 0.0.
34182         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
34183         (test_function): Skip tests involving -0.0 on platforms where
34184         -0.0 = 0.0.
34185         * tests/test-snprintf-posix.h (have_minus_zero): New function.
34186         (test_function): Skip tests involving -0.0 on platforms where
34187         -0.0 = 0.0.
34188         * tests/test-sprintf-posix.h (have_minus_zero): New function.
34189         (test_function): Skip tests involving -0.0 on platforms where
34190         -0.0 = 0.0.
34191         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
34192         tests.
34193         * tests/test-printf-posix.h (test_function): Likewise.
34194         * tests/test-printf-posix.output: Remove all -0.0 related results.
34195         Needed for IRIX 6.5.
34196
34197 2007-05-19  Bruno Haible  <bruno@clisp.org>
34198
34199         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
34200         printed as "nan0x7fffffff" instead of "nan".
34201         * tests/test-vasprintf-posix.c (test_function): Likewise.
34202         * tests/test-snprintf-posix.h (test_function): Likewise.
34203         * tests/test-sprintf-posix.h (test_function): Likewise.
34204         * tests/test-fprintf-posix.h (NaN): Remove macro.
34205         (test_function): Remove all NaN related tests.
34206         * tests/test-printf-posix.h (NaN): Remove macro.
34207         (test_function): Remove all NaN related tests.
34208         * tests/test-printf-posix.output: Remove all NaN related results.
34209         Needed for IRIX 6.5.
34210
34211 2007-05-19  Bruno Haible  <bruno@clisp.org>
34212
34213         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
34214         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
34215
34216 2007-05-19  Bruno Haible  <bruno@clisp.org>
34217
34218         * lib/float_.h: New file.
34219         * m4/float_h.m4: New file.
34220         * modules/float: New file.
34221         * modules/isnanl (Dependencies): Add float.
34222         * modules/isnanl-nolibm (Dependencies): Likewise.
34223         * modules/mathl (Dependencies): Likewise.
34224         * modules/printf-frexpl (Dependencies): Likewise.
34225         * modules/signbit (Dependencies): Likewise.
34226         * modules/vasnprintf (Dependencies): Likewise.
34227         * doc/headers/float.texi: Update.
34228
34229 2007-05-19  Jim Meyering  <jim@meyering.net>
34230
34231         * lib/utimens.c (gl_futimens): Rename from futimens,
34232         now that glibc-2.6 declares futimens.
34233         * lib/utimens.h: Likewise.
34234
34235 2007-05-19  Bruno Haible  <bruno@clisp.org>
34236
34237         Avoid test failures on mingw.
34238         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
34239         * tests/test-printf-posix.sh: Likewise.
34240         * tests/test-vfprintf-posix.sh: Likewise.
34241         * tests/test-vprintf-posix.sh: Likewise.
34242
34243 2007-05-19  Bruno Haible  <bruno@clisp.org>
34244
34245         Fix *printf result for NaN, Inf, -0.0 on mingw.
34246         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
34247         * lib/vasnprintf.c: Include math.h and isnan.h.
34248         (is_infinite_or_zero): New function.
34249         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
34250         values in the %f, %F, %e, %E, %g, %G directives.
34251         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
34252         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34253         gl_PRINTF_INFINITE and test its result. Invoke
34254         gl_PREREQ_VASNPRINTF_INFINITE.
34255         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
34256         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34257         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34258         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34259         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34260         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34261         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34262         * doc/functions/fprintf.texi: Update.
34263         * doc/functions/printf.texi: Update.
34264         * doc/functions/snprintf.texi: Update.
34265         * doc/functions/sprintf.texi: Update.
34266         * doc/functions/vfprintf.texi: Update.
34267         * doc/functions/vprintf.texi: Update.
34268         * doc/functions/vsnprintf.texi: Update.
34269         * doc/functions/vsprintf.texi: Update.
34270
34271 2007-05-19  Bruno Haible  <bruno@clisp.org>
34272
34273         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
34274         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
34275         Instead of multiplying with 10^k, set extra_zeroes to k.
34276         (scale10_round_long_double): Remove function.
34277
34278 2007-05-18  Bruno Haible  <bruno@clisp.org>
34279
34280         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
34281         introduced on 2007-05-06.
34282
34283 2007-05-18  Bruno Haible  <bruno@clisp.org>
34284
34285         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
34286         %g directives.
34287         * tests/test-vasprintf-posix.c (test_function): Likewise.
34288         * tests/test-snprintf-posix.h (test_function): Likewise.
34289         * tests/test-sprintf-posix.h (test_function): Likewise.
34290
34291 2007-05-18  Bruno Haible  <bruno@clisp.org>
34292
34293         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
34294         (strmatch): New function.
34295         (test_function): Test the %f directive on numbers of various exponents.
34296         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
34297         (strmatch): New function.
34298         (test_function): Test the %f directive on numbers of various exponents.
34299         * tests/test-snprintf-posix.h (strmatch): New function.
34300         (test_function): Test the %f directive on numbers of various exponents.
34301         * tests/test-sprintf-posix.h (strmatch): New function.
34302         (test_function): Test the %f directive on numbers of various exponents.
34303         * tests/test-snprintf-posix.c (SIZEOF): New macro.
34304         * tests/test-sprintf-posix.c (SIZEOF): New macro.
34305         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
34306         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
34307
34308 2007-05-18  Bruno Haible  <bruno@clisp.org>
34309
34310         Add support for 'long double' number output.
34311         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
34312         * lib/vasnprintf.c: Include math.h and float+.h.
34313         (mp_limb_t): New type.
34314         (GMP_LIMB_BITS): New macro.
34315         (mp_twolimb_t): New type.
34316         (GMP_TWOLIMB_BITS): New macro.
34317         (mpn_t): New type.
34318         (multiply, divide, convert_to_decimal, decode_long_double,
34319         scale10_round_long_double, scale10_round_decimal_long_double,
34320         floorlog10l): New functions.
34321         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
34322         for the %f, %F, %e, %E, %g, %G directives.
34323         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
34324         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34325         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
34326         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
34327         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
34328         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34329         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34330         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34331         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34332         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34333         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34334         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
34335         * modules/snprintf-posix (Depends-on): Likewise.
34336         * modules/sprintf-posix (Depends-on): Likewise.
34337         * modules/vasnprintf-posix (Depends-on): Likewise.
34338         * modules/vasprintf-posix (Depends-on): Likewise.
34339         * modules/vfprintf-posix (Depends-on): Likewise.
34340         * modules/vsnprintf-posix (Depends-on): Likewise.
34341         * modules/vsprintf-posix (Depends-on): Likewise.
34342         * modules/vasnprintf (Files): Add lib/float+.h.
34343         * doc/functions/fprintf.texi: Update.
34344         * doc/functions/printf.texi: Update.
34345         * doc/functions/snprintf.texi: Update.
34346         * doc/functions/sprintf.texi: Update.
34347         * doc/functions/vfprintf.texi: Update.
34348         * doc/functions/vprintf.texi: Update.
34349         * doc/functions/vsnprintf.texi: Update.
34350         * doc/functions/vsprintf.texi: Update.
34351
34352 2007-05-18  Bruno Haible  <bruno@clisp.org>
34353
34354         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
34355
34356 2007-05-18  Bruno Haible  <bruno@clisp.org>
34357
34358         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
34359         for printing 64-bit integers. Needed for mingw.
34360
34361 2007-05-18  Bruno Haible  <bruno@clisp.org>
34362
34363         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
34364         gl_FUNC_FREXPL_WORKS.
34365         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
34366
34367 2007-05-18  Bruno Haible  <bruno@clisp.org>
34368
34369         * modules/frexpl-nolibm-tests: New file.
34370
34371         * modules/frexpl-nolibm: New file.
34372         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
34373
34374 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
34375
34376         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
34377         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
34378         GCC 4.2, which otherwise issues a lot of warnings.
34379         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
34380         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
34381         Likewise.
34382         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
34383         * modules/iconv_open (iconv.h): Likewise.
34384         * modules/locale (locale.h): Likewise.
34385         * modules/netinet_in (netinet/in.h): Likewise.
34386         * modules/sys_select (sys_select.h): Likewise.
34387         * modules/sys_socket (sys/socket.h): Likewise.
34388         * modules/sys_stat (sys/stat.h): Likewise.
34389         * modules/sysexits (sysexits.h): Likewise.
34390         * modules/unistd (unistd.h): Likewise.
34391
34392 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34393
34394         * modules/closein-tests (Makefile.am): Distribute
34395         `test-closein.sh'.
34396
34397 2007-05-17  Bruno Haible  <bruno@clisp.org>
34398
34399         * tests/test-printf-posix.output: Renamed from
34400         tests/test-fprintf-posix.out.
34401         * modules/fprintf-posix-tests: Update.
34402         * modules/printf-posix-tests: Update.
34403         * modules/vfprintf-posix-tests: Update.
34404         * modules/vprintf-posix-tests: Update.
34405         * tests/test-fprintf-posix.sh: Update.
34406         * tests/test-printf-posix.sh: Update.
34407         * tests/test-vfprintf-posix.sh: Update.
34408         * tests/test-vprintf-posix.sh: Update.
34409         Reported by Ralf Wildenhues.
34410
34411 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
34412
34413         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
34414         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
34415         GCC 4.2, which otherwise issues a lot of warnings.
34416         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
34417         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
34418         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
34419         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
34420         it should no longer be needed.
34421         * lib/string_.h: Likewise.
34422         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
34423         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
34424         * modules/inttypes (inttypes.h): Likewise.
34425         * modules/math (math.h): Likewise.
34426         * modules/search (search.h): Likewise.
34427         * modules/signal (signal.h): Likewise.
34428         * modules/stdint (stdint.h): Likewise.
34429         * modules/stdio (stdio.h): Likewise.
34430         * modules/stdlib (stdlib.h): Likewise.
34431         * modules/string (string.h): Likewise.
34432         * modules/sys_time (sys/time.h): Likewise.
34433         * modules/time (time.h): Likewise.
34434         * modules/wchar (wchar.h): Likewise.
34435         * modules/wctype (wtype.h): Likewise.
34436
34437 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
34438
34439         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
34440
34441 2007-05-13  Bruno Haible  <bruno@clisp.org>
34442
34443         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
34444         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
34445         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
34446         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
34447         (gl_PREREQ_STRTOK_R): Don't require it here.
34448
34449 2007-05-13  Bruno Haible  <bruno@clisp.org>
34450
34451         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
34452         when used in C++ mode.
34453
34454 2007-05-12  Bruno Haible  <bruno@clisp.org>
34455
34456         * lib/linebuffer.h: Tweak doc.
34457         * lib/linebuffer.c: Likewise.
34458
34459 2007-05-12  James Youngman  <jay@gnu.org>
34460
34461         * lib/linebuffer.c (readlinebuffer_delim): New function,
34462         like readlinebuffer, but use a caller-specified delimiter.
34463         (readlinebuffer): Just call readlinebuffer_delim with '\n'
34464         as the delimiter.
34465         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
34466
34467 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
34468
34469         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
34470         * modules/openat (Files): Remove openat-die.c.
34471         (Depends-on): Add openat-die.
34472         * modules/openat-die: New module.
34473
34474 2007-05-06  Bruno Haible  <bruno@clisp.org>
34475
34476         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
34477         Update with info about Cygwin.
34478         * doc/functions/fprintf.texi: Update.
34479         * doc/functions/printf.texi: Update.
34480         * doc/functions/snprintf.texi: Update.
34481         * doc/functions/sprintf.texi: Update.
34482         * doc/functions/vfprintf.texi: Update.
34483         * doc/functions/vprintf.texi: Update.
34484         * doc/functions/vsnprintf.texi: Update.
34485         * doc/functions/vsprintf.texi: Update.
34486         Reported by Eric Blake.
34487
34488 2007-05-06  Bruno Haible  <bruno@clisp.org>
34489
34490         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
34491         padding ourselves for the floating-point directives.
34492         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
34493         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
34494         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
34495         gl_PRINTF_FLAG_ZERO and test its result. Invoke
34496         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
34497         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34498         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
34499         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34500         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34501         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34502         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34503         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34504         * tests/test-snprintf-posix.h (test_function): Also check the width
34505         and some flags in the %f directive.
34506         * tests/test-sprintf-posix.h (test_function): Likewise.
34507         * tests/test-vasnprintf-posix.c (test_function): Likewise.
34508         * tests/test-vasprintf-posix.c (test_function): Likewise.
34509         * doc/functions/fprintf.texi: Update.
34510         * doc/functions/printf.texi: Update.
34511         * doc/functions/snprintf.texi: Update.
34512         * doc/functions/sprintf.texi: Update.
34513         * doc/functions/vfprintf.texi: Update.
34514         * doc/functions/vprintf.texi: Update.
34515         * doc/functions/vsnprintf.texi: Update.
34516         * doc/functions/vsprintf.texi: Update.
34517
34518 2007-05-06  Bruno Haible  <bruno@clisp.org>
34519
34520         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
34521         pass the ' flag character to sprintf or snprintf.
34522         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
34523         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
34524         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
34525         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
34526         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
34527         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34528         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
34529         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34530         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34531         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34532         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34533         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34534         * tests/test-snprintf-posix.h (test_function): Also check the grouping
34535         flag.
34536         * tests/test-sprintf-posix.h (test_function): Likewise.
34537         * tests/test-vasnprintf-posix.c (test_function): Likewise.
34538         * tests/test-vasprintf-posix.c (test_function): Likewise.
34539         * doc/functions/fprintf.texi: Update.
34540         * doc/functions/printf.texi: Update.
34541         * doc/functions/snprintf.texi: Update.
34542         * doc/functions/sprintf.texi: Update.
34543         * doc/functions/vfprintf.texi: Update.
34544         * doc/functions/vprintf.texi: Update.
34545         * doc/functions/vsnprintf.texi: Update.
34546         * doc/functions/vsprintf.texi: Update.
34547
34548 2007-05-01  Bruno Haible  <bruno@clisp.org>
34549
34550         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
34551
34552 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
34553
34554         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
34555         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
34556
34557 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
34558
34559         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
34560         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
34561         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
34562
34563 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
34564
34565         * lib/argp-help.c (struct hol_entry): New member `ord'.
34566         (HOL_ENTRY_PTRCMP): Use ord for comparison
34567         (hol_sort): Initialize ord.
34568
34569 2007-05-01  Bruno Haible  <bruno@clisp.org>
34570
34571         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
34572         Reported by Eric Blake.
34573         * doc/gnulib.texi (Function Substitutes): Update.
34574
34575 2007-05-01  Bruno Haible  <bruno@clisp.org>
34576
34577         * doc/functions.texi: Remove file, now redundant through
34578         doc/functions/*.texi.
34579
34580 2007-05-01  Bruno Haible  <bruno@clisp.org>
34581
34582         * modules/argp (Depends-on): Add sleep.
34583
34584 2007-05-01  Bruno Haible  <bruno@clisp.org>
34585
34586         * modules/sleep-tests: New file.
34587         * tests/test-sleep.c: New file.
34588
34589         * modules/sleep: New file.
34590         * lib/sleep.c: New file.
34591         * m4/sleep.m4: New file.
34592         * lib/unistd_.h (sleep): New declaration.
34593         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
34594         HAVE_SLEEP.
34595         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
34596         * doc/functions/sleep.texi: Document the sleep module.
34597
34598 2007-05-01  Bruno Haible  <bruno@clisp.org>
34599
34600         * lib/sigprocmask.h: Remove file.
34601         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
34602         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
34603         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
34604         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
34605         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
34606         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
34607         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
34608         HAVE_SIGSET_T as a shell variable.
34609         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
34610         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
34611         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
34612         (Depends-on): Add signal. Remove verify.
34613         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
34614         (Include): Mention <signal.h> instead of sigprocmask.h.
34615         * NEWS: Mention the change.
34616         * lib/fatal-signal.c: Don't include sigprocmask.h.
34617
34618 2007-05-01  Bruno Haible  <bruno@clisp.org>
34619
34620         * modules/signal: New file.
34621         * lib/signal_.h: New file.
34622         * m4/signal_h.m4: New file.
34623
34624 2007-05-01  Bruno Haible  <bruno@clisp.org>
34625
34626         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
34627         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
34628         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
34629         HAVE_WCTYPE_CTMP_BUG into wctype.h.
34630
34631 2007-05-01  Bruno Haible  <bruno@clisp.org>
34632
34633         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
34634         configure time.
34635         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
34636         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
34637         * modules/sys_stat (Makefile.am): Substitute their values into
34638         sys/stat.h.
34639
34640 2007-05-01  Bruno Haible  <bruno@clisp.org>
34641
34642         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
34643         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
34644         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
34645
34646 2007-05-01  Bruno Haible  <bruno@clisp.org>
34647
34648         * doc/header/assert.texi: Undo last change: don't mention the gnulib
34649         'assert' module here.
34650
34651 2007-05-01  Bruno Haible  <bruno@clisp.org>
34652
34653         * doc/functions/*.texi: New files.
34654         * doc/functions/google-ranking.txt: New file.
34655         * doc/gnulib.texi (Function Substitutes): New chapter.
34656         (ctime, inet_ntoa): Remove sections.
34657         * doc/ctime.texi: Remove file.
34658         * doc/inet_ntoa.texi: Remove file.
34659         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
34660         dependencies.
34661         (%.info): New rule, specifying a --reference-limit.
34662
34663 2007-05-01  Bruno Haible  <bruno@clisp.org>
34664
34665         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
34666
34667 2007-05-01  Bruno Haible  <bruno@clisp.org>
34668
34669         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
34670         the portability of 'mkdir' to mingw systems.
34671
34672 2007-05-01  Bruno Haible  <bruno@clisp.org>
34673
34674         * doc/headers/google-ranking.txt: New file.
34675
34676 2007-04-30  Eric Blake  <ebb9@byu.net>
34677
34678         Prefer fseeko to fseek.
34679         * modules/getpass (Depends-on): Add fseeko.
34680         * lib/getpass.c (getpass): Use fseeko, not fseek.
34681
34682 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
34683
34684         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
34685         assumes the sorting is stable, while most qsort implementations
34686         are not.  Use argument addresses to ensure they never compare as
34687         equal.
34688
34689         * tests/test-argp-2.sh (usage-indent test): Fix output
34690         (func_compare): Restore diff options
34691         * tests/test-argp.c: Restore #include "progname.h"
34692
34693 2007-04-29  Bruno Haible  <bruno@clisp.org>
34694
34695         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
34696         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
34697         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
34698         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34699         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
34700         (configure.ac): Define CHECK_SNPRINTF_POSIX.
34701         (TESTS, check_PROGRAMS): Add test-snprintf.
34702         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
34703         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
34704         (TESTS, check_PROGRAMS): Add test-vsnprintf.
34705         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
34706         assertions that fail on HP-UX, OSF/1, or IRIX.
34707         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
34708
34709 2007-04-29  Bruno Haible  <bruno@clisp.org>
34710
34711         * MODULES.html.sh (posix_functions): Remove 'contents'.
34712
34713 2007-04-29  Karl Berry  <karl@gnu.org>
34714
34715         * config/srclist.txt (gendocs_template_min): new entry.
34716
34717 2007-04-29  Bruno Haible  <bruno@clisp.org>
34718
34719         Work around fpurge bug on BSD systems.
34720         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
34721         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
34722         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
34723         fpurge to rpl_fpurge if the system already has this function.
34724         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
34725         the case where the system already has this function. Correct invariants
34726         on BSD systems.
34727         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
34728         BSD systems.
34729
34730 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
34731
34732         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
34733         proposed by Sven Verdoolaege.
34734
34735         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
34736         options.
34737         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
34738         (usage and help tests): Update
34739
34740 2007-04-29  Bruno Haible  <bruno@clisp.org>
34741
34742         * tests/test-fflush.c (main): Use a file of size 17, not 10.
34743         Print more information in case of failure. Disable a test on BeOS.
34744
34745 2007-04-29  Bruno Haible  <bruno@clisp.org>
34746
34747         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
34748         This helps debugging on systems on which no gdb is available.
34749
34750 2007-04-29  Bruno Haible  <bruno@clisp.org>
34751
34752         * lib/freading.h: Improve comments.
34753         * lib/fwriting.h: Likewise.
34754         * tests/test-freading.c (main): Don't check freading immediately after
34755         repositioning. Needed for glibc.
34756
34757 2007-04-29  Bruno Haible  <bruno@clisp.org>
34758
34759         * lib/freading.c (freading): Trivial simplification.
34760
34761 2007-04-28  Bruno Haible  <bruno@clisp.org>
34762
34763         * tests/test-fwriting.c (main): Also test the interaction between
34764         fflush and fwriting.
34765         * modules/fwriting-tests (Depends-on): Add fflush.
34766
34767         * tests/test-freading.c (main): Also test the interaction between
34768         fflush and freading.
34769         * modules/freading-tests (Depends-on): Add fflush.
34770
34771 2007-04-28  Bruno Haible  <bruno@clisp.org>
34772
34773         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
34774         fseeko and ftello.
34775         Suggested by Eric Blake.
34776
34777 2007-04-28  Jim Meyering  <jim@meyering.net>
34778
34779         Avoid false-negative in gl_STDINT_H's C99 conformance test.
34780         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
34781         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
34782
34783 2007-04-27  Eric Blake  <ebb9@byu.net>
34784
34785         * doc/headers/assert.texi (assert.h): Document assert module use.
34786
34787 2007-04-27  Bruno Haible  <bruno@clisp.org>
34788
34789         * doc/headers/*.texi: New files.
34790         * doc/gnulib.texi (Header File Substitutes): New chapter.
34791         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
34792         dependencies.
34793         (standards.info ,standards.html, standards.dvi): Update dependencies.
34794         (mostlyclean, clean): New targets.
34795
34796 2007-04-27  Bruno Haible  <bruno@clisp.org>
34797
34798         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
34799         * modules/sysexits (Files, Makefile.am): Update.
34800
34801         * lib/sys_socket_.h: Renamed from lib/socket_.h.
34802         * modules/sys_socket (Files, Makefile.am): Update.
34803
34804         * lib/sys_stat_.h: Renamed from lib/stat_.h.
34805         * modules/sys_stat (Files, Makefile.am): Update.
34806
34807 2007-04-27  Eric Blake  <ebb9@byu.net>
34808
34809         * lib/freading.h: Improve comments.
34810         * lib/fwriting.h: Likewise.
34811         * lib/fflush.c: Likewise.
34812
34813         Fix closein for mingw.
34814         * modules/closein-tests: Add tests for closein.
34815         * tests/test-closein.c: New file.
34816         * tests/test-closein.sh: Likewise.
34817         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
34818         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
34819
34820 2007-04-27  Bruno Haible  <bruno@clisp.org>
34821
34822         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
34823         version is < 6.
34824         * lib/math_.h [__DECC]: Likewise.
34825         * lib/stdio_.h [__DECC]: Likewise.
34826         * lib/stdlib_.h [__DECC]: Likewise.
34827         * lib/string_.h [__DECC]: Likewise.
34828         * lib/time_.h [__DECC]: Likewise.
34829         * lib/wchar_.h [__DECC]: Likewise.
34830         * lib/wctype_.h [__DECC]: Likewise.
34831
34832 2007-04-27  Bruno Haible  <bruno@clisp.org>
34833
34834         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
34835
34836 2007-04-27  Bruno Haible  <bruno@clisp.org>
34837
34838         * lib/fflush.c: Add comments.
34839         * modules/fpurge-tests (Depends-on): Add fflush.
34840         * modules/freadable-tests (Depends-on): Likewise.
34841         * modules/fwritable-tests (Depends-on): Likewise.
34842
34843 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
34844
34845         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
34846         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
34847         Report by Bruno Haible <bruno@clisp.org>.
34848
34849 2007-04-26  Eric Blake  <ebb9@byu.net>
34850
34851         Fix fflush on mingw.
34852         * modules/fflush (Depends-on): Add freading.
34853         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
34854         but unread data.
34855
34856 2007-04-26  Eric Blake  <ebb9@byu.net>
34857         and Bruno Haible  <bruno@clisp.org>
34858
34859         Implement freading and fwriting.
34860         * lib/freading.c: New file.
34861         * lib/freading.h: Likewise.
34862         * m4/freading.m4: Likewise.
34863         * modules/freading: Likewise.
34864         * modules/freading-tests: Likewise.
34865         * tests/test-freading.c: Likewise.
34866         * lib/fwriting.c: New file.
34867         * lib/fwriting.h: Likewise.
34868         * m4/fwriting.m4: Likewise.
34869         * modules/fwriting: Likewise.
34870         * modules/fwriting-tests: Likewise.
34871         * tests/test-fwriting.c: Likewise.
34872         * MODULES.html.sh (File stream based Input/Output): Mention them.
34873
34874 2007-04-26  Bruno Haible  <bruno@clisp.org>
34875
34876         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
34877         'long' when we assume it.
34878         Suggested by Eric Blake.
34879
34880 2007-04-26  Bruno Haible  <bruno@clisp.org>
34881
34882         Ensure fseeko, ftello are declared on glibc systems.
34883         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
34884         * modules/fseeko (configure.ac-early): Likewise.
34885         * modules/ftello (configure.ac-early): Likewise.
34886         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
34887         AC_FUNC_FSEEKO for this.
34888         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
34889         (gl_CHECK_FSEEKO): Remove macro.
34890
34891 2007-04-26  Bruno Haible  <bruno@clisp.org>
34892
34893         * tests/test-fflush.c (main): Also check the ftell result after
34894         fflush and fseek/fseeko.
34895         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
34896         file descriptor position cache in the stream.
34897         * lib/fseeko.c (rpl_fseeko): Likewise.
34898
34899 2007-04-26  Bruno Haible  <bruno@clisp.org>
34900
34901         * modules/fflush-tests (Depends-on): Add fseeko.
34902
34903 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
34904             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34905
34906         * lib/argz_.h: ensure error_t definition is obtained in same
34907         mechanism system argz.h would have.
34908         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
34909         argz facilities are known bad.  Err on the side of caution if
34910         cross-compiling.
34911
34912 2007-04-25  Eric Blake  <ebb9@byu.net>
34913
34914         * lib/fpurge.c (includes): Use stdlib.h for free.
34915         * tests/test-fflush.c (main): Also test fflush-fseeko.
34916
34917 2007-04-25  Bruno Haible  <bruno@clisp.org>
34918
34919         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
34920         * lib/fseeko.c: New file.
34921         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
34922         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
34923         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
34924         gl_FUNC_FSEEKO.
34925         (gl_FUNC_FSEEKO): Invoke it.
34926         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
34927         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
34928         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
34929
34930 2007-04-25  Bruno Haible  <bruno@clisp.org>
34931
34932         * modules/fflush (Depends-on): Add ftello.
34933
34934 2007-04-25  Bruno Haible  <bruno@clisp.org>
34935
34936         * modules/ftello-tests: New file.
34937         * tests/test-ftello.c: New file.
34938
34939         * modules/ftello: New file.
34940         * m4/ftello.m4: New file.
34941         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
34942         HAVE_FTELLO.
34943         * lib/stdio_.h (ftello): New declaration.
34944         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
34945         HAVE_FTELLO.
34946
34947 2007-04-25  Bruno Haible  <bruno@clisp.org>
34948
34949         * modules/fseeko-tests: New file.
34950         * tests/test-fseeko.c: New file.
34951
34952         * modules/fseeko: New file.
34953         * m4/fseeko.m4: New file.
34954         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
34955         HAVE_FSEEKO.
34956         * lib/stdio_.h (fseeko): New declaration.
34957         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
34958         HAVE_FSEEKO.
34959
34960 2007-04-25  Bruno Haible  <bruno@clisp.org>
34961
34962         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
34963
34964 2007-04-25  Bruno Haible  <bruno@clisp.org>
34965
34966         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
34967         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
34968         * tests/test-unistd.c: Likewise.
34969         * tests/test-fcntl.c: Likewise.
34970
34971 2007-04-23  Eric Blake  <ebb9@byu.net>
34972
34973         * lib/fflush.c: Fix missing include.
34974         Reported by Bruno Haible.
34975
34976 2007-04-23  Bruno Haible  <bruno@clisp.org>
34977
34978         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
34979         Reported by Eric Blake.
34980
34981 2007-04-23  Bruno Haible  <bruno@clisp.org>
34982
34983         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
34984
34985 2007-04-23  Bruno Haible  <bruno@clisp.org>
34986
34987         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
34988
34989 2007-04-23  Bruno Haible  <bruno@clisp.org>
34990
34991         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
34992         Needed on HP-UX 11.
34993
34994 2007-04-16  Eric Blake  <ebb9@byu.net>
34995
34996         Make fflush rely on fpurge.
34997         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
34998         open coding all variants.
34999         * modules/fflush (Depends-on): Add fpurge and unistd.
35000         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
35001         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
35002
35003         Fix --with-tests compilation on cygwin.
35004         * modules/argmatch-tests (Makefile.am): List gnulib library first
35005         in LDADD.
35006         * modules/argp-tests (Makefile.am): Likewise.
35007         * modules/array-list-tests (Makefile.am): Likewise.
35008         * modules/array-oset-tests (Makefile.am): Likewise.
35009         * modules/avltree-list-tests (Makefile.am): Likewise.
35010         * modules/avltree-oset-tests (Makefile.am): Likewise.
35011         * modules/avltreehash-list-tests (Makefile.am): Likewise.
35012         * modules/carray-list-tests (Makefile.am): Likewise.
35013         * modules/dirname-tests (Makefile.am): Likewise.
35014         * modules/frexp-tests (Makefile.am): Likewise.
35015         * modules/isnanl-tests (Makefile.am): Likewise.
35016         * modules/linked-list-tests (Makefile.am): Likewise.
35017         * modules/linkedhash-list-tests (Makefile.am): Likewise.
35018         * modules/lock-tests (Makefile.am): Likewise.
35019         * modules/rbtree-list-tests (Makefile.am): Likewise.
35020         * modules/rbtree-oset-tests (Makefile.am): Likewise.
35021         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
35022         * modules/tls-tests (Makefile.am): Likewise.
35023         * modules/tsearch-tests (Makefile.am): Likewise.
35024         * modules/xvasprintf-tests (Makefile.am): Likewise.
35025
35026         Fix fpurge for cygwin.
35027         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
35028         value.
35029         * modules/fpurge-tests (Depends-on): Clean up trash.
35030
35031 2007-04-16  Simon Josefsson  <simon@josefsson.org>
35032
35033         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
35034
35035         * m4/autobuild.m4: Re-indent.
35036
35037 2007-04-13  Bruno Haible  <bruno@clisp.org>
35038
35039         * modules/fpurge-tests: New file.
35040         * tests/test-fpurge.c: New file.
35041
35042         * modules/fpurge: New file.
35043         * lib/fpurge.h: New file.
35044         * lib/fpurge.c: New file.
35045         * m4/fpurge.m4: New file.
35046
35047 2007-04-13  Bruno Haible  <bruno@clisp.org>
35048
35049         * modules/fbufmode-tests: New file.
35050         * tests/test-fbufmode.c: New file.
35051
35052         * modules/fbufmode: New file.
35053         * lib/fbufmode.h: New file.
35054         * lib/fbufmode.c: New file.
35055         * m4/fbufmode.m4: New file.
35056
35057 2007-04-13  Bruno Haible  <bruno@clisp.org>
35058
35059         * modules/fwritable-tests: New file.
35060         * tests/test-fwritable.c: New file.
35061
35062         * modules/fwritable: New file.
35063         * lib/fwritable.h: New file.
35064         * lib/fwritable.c: New file.
35065         * m4/fwritable.m4: New file.
35066
35067 2007-04-13  Bruno Haible  <bruno@clisp.org>
35068
35069         * modules/freadable-tests: New file.
35070         * tests/test-freadable.c: New file.
35071
35072         * modules/freadable: New file.
35073         * lib/freadable.h: New file.
35074         * lib/freadable.c: New file.
35075         * m4/freadable.m4: New file.
35076
35077 2007-04-13  Bruno Haible  <bruno@clisp.org>
35078
35079         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
35080         MOSTLYCLEANFILES.
35081
35082 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
35083
35084         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
35085         gzip bootstrap.conf to avoid dragging in i18n machinery.
35086         (gnulib_tool_option): Use it.
35087
35088 2007-04-13  Bruno Haible  <bruno@clisp.org>
35089
35090         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
35091         %F directives.
35092         * tests/test-vasprintf-posix.c (test_function): Likewise.
35093         * tests/test-snprintf-posix.h (test_function): Likewise.
35094         * tests/test-sprintf-posix.h (test_function): Likewise.
35095         * tests/test-fprintf-posix.h (test_function): Likewise.
35096         * tests/test-printf-posix.h (test_function): Likewise.
35097         * tests/test-fprintf-posix.out: Likewise.
35098
35099 2007-04-13  Bruno Haible  <bruno@clisp.org>
35100
35101         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
35102         * modules/tls-tests (configure.ac): Likewise.
35103         Reported by Arto C. Nirkko <anirkko@insel.ch>.
35104
35105 2007-04-13  Bruno Haible  <bruno@clisp.org>
35106
35107         * lib/tls.c (glthread_tls_get): Fix return type.
35108         Patch by Arto C. Nirkko <anirkko@insel.ch>.
35109
35110 2007-04-12  Eric Blake  <ebb9@byu.net>
35111
35112         * modules/gettime (Depends-on): Remove gettime.
35113         Reported by Dmitry V. Levin.
35114
35115 2007-04-12  Bruno Haible  <bruno@clisp.org>
35116
35117         * modules/fflush (Include): Mention <stdio.h>.
35118         * modules/strtoimax (Include): Mention <inttypes.h>.
35119         * modules/strtoumax (Include): Likewise.
35120
35121 2007-04-12  Eric Blake  <ebb9@byu.net>
35122
35123         * .cvsignore: New file.
35124         * .gitignore: Likewise.
35125
35126 2007-04-12  Bruno Haible  <bruno@clisp.org>
35127
35128         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
35129         not before, since $(LDADD) often contains libgnu.a.
35130         * modules/striconv-tests (test_striconv_LDADD): Likewise.
35131         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
35132         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
35133         Needed on Cygwin.
35134
35135 2007-04-12  Eric Blake  <ebb9@byu.net>
35136
35137         Work around glibc's failure to flush stdin on fclose.
35138         * lib/closein.c (close_stdin): Flush stdin before closing.
35139
35140         Work around glibc's failure to reset seekable stdin on exit.
35141         * modules/closein: New module.
35142         * lib/closein.c: New file.
35143         * lib/closein.h: Likewise.
35144         * m4/closein.m4: Likewise.
35145         * MODULES.html.sh (File stream based Input/Output): Document it.
35146
35147 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35148
35149         * gnulib-tool: Rename generated 'autobuild' script to
35150         'do-autobuild' in --create-megatestdir output.
35151
35152         * doc/gnulib.texi (Build robot for gnulib): Fix.
35153
35154 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35155
35156         * modules/sysexits (Depends-on): Add absolute-header.
35157
35158 2007-04-12  Eric Blake  <ebb9@byu.net>
35159
35160         No need to preserve errno on success.
35161         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
35162         Reported by Bruno Haible.
35163
35164 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35165
35166         * MODULES.html.sh (Support for maintaining and releasing
35167         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
35168
35169 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35170
35171         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
35172
35173 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35174
35175         * modules/autobuild: New module.
35176
35177         * m4/autobuild.m4: New file.
35178
35179 2007-04-11  Bruno Haible  <bruno@clisp.org>
35180
35181         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
35182         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
35183         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
35184         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
35185         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35186         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35187         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35188         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
35189         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35190         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35191         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
35192         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35193         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35194         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
35195         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35196         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35197         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_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/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_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/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_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/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_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         Reported by Eric Blake.
35210
35211 2007-04-11  Bruno Haible  <bruno@clisp.org>
35212
35213         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
35214
35215 2007-04-10  Bruno Haible  <bruno@clisp.org>
35216
35217         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
35218         for NaN and Infinity. Needed on FreeBSD 6.1.
35219         * tests/test-vasnprintf-posix.c (test_function): Undo last change
35220         regarding results for "%010a" of Infinity and NaN.
35221         * tests/test-vasprintf-posix.c (test_function): Likewise.
35222         * tests/test-snprintf-posix.h (test_function): Likewise.
35223         * tests/test-sprintf-posix.h (test_function): Likewise.
35224         * tests/test-fprintf-posix.h (test_function): Likewise.
35225         * tests/test-printf-posix.h (test_function): Likewise.
35226         * tests/test-fprintf-posix.out: Likewise.
35227
35228 2007-04-10  Bruno Haible  <bruno@clisp.org>
35229
35230         * modules/locale-tests: New file.
35231         * tests/test-locale.c: New file.
35232
35233         * modules/locale: New file.
35234         * lib/locale_.h: New file.
35235         * m4/locale_h.m4: New file.
35236
35237 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
35238             Bruno Haible  <bruno@clisp.org>
35239
35240         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
35241         be determined, test for availability of the copysignf, copysign,
35242         copysignl functions.
35243         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
35244         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
35245         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
35246
35247 2007-04-09  Eric Blake  <ebb9@byu.net>
35248
35249         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
35250         * modules/stdio (Makefile.am): Support fflush.
35251         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
35252         * modules/fflush: New file.
35253         * lib/fflush.c: Likewise.
35254         * m4/fflush.m4: Likewise.
35255         * modules/fflush-tests: New test.
35256         * tests/test-fflush.c: Likewise.
35257         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
35258
35259 2007-04-06  Bruno Haible  <bruno@clisp.org>
35260
35261         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
35262         (VASNPRINTF): Use signbit for faster determination whether to print a
35263         minus sign.
35264         * modules/vasnprintf (Files): Remove lib/float+.h.
35265         * modules/fprintf-posix (Depends-on): Add signbit.
35266         * modules/snprintf-posix (Depends-on): Likewise.
35267         * modules/sprintf-posix (Depends-on): Likewise.
35268         * modules/vasnprintf-posix (Depends-on): Likewise.
35269         * modules/vasprintf-posix (Depends-on): Likewise.
35270         * modules/vfprintf-posix (Depends-on): Likewise.
35271         * modules/vsnprintf-posix (Depends-on): Likewise.
35272         * modules/vsprintf-posix (Depends-on): Likewise.
35273
35274 2007-04-06  Bruno Haible  <bruno@clisp.org>
35275
35276         * tests/test-frexp.c (main): Test also the sign bit of zero results.
35277         * tests/test-frexpl.c (main): Likewise.
35278         * tests/test-ldexpl.c (main): Likewise.
35279         * modules/frexp-tests (Depends-on): Add signbit.
35280         * modules/frexpl-tests (Depdends-on): Likewise.
35281         * modules/ldexpl-tests (Depdends-on): Likewise.
35282
35283 2007-04-06  Bruno Haible  <bruno@clisp.org>
35284
35285         * modules/signbit-tests: New file.
35286         * tests/test-signbit.c: New file.
35287
35288         * modules/signbit: New file.
35289         * lib/signbitf.c: New file.
35290         * lib/signbitd.c: New file.
35291         * lib/signbitl.c: New file.
35292         * m4/signbit.m4: New file.
35293         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
35294         (signbit): New macro.
35295         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
35296         REPLACE_SIGNBIT.
35297         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
35298         REPLACE_FREXPL into math.h.
35299
35300 2007-04-06  Bruno Haible  <bruno@clisp.org>
35301
35302         * modules/isnanf-nolibm-tests: New file.
35303         * tests/test-isnanf.c: New file.
35304
35305         * modules/isnanf-nolibm: New file.
35306         * lib/isnanf.h: New file.
35307         * lib/isnanf.c: New file.
35308         * lib/isnan.c: Consider the USE_FLOAT macro.
35309         * m4/isnanf.m4: New file.
35310
35311 2007-04-06  Bruno Haible  <bruno@clisp.org>
35312
35313         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
35314         (Link): New section.
35315
35316         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
35317
35318 2007-04-06  Bruno Haible  <bruno@clisp.org>
35319
35320         Assume the 'long double' type.
35321         * m4/longdouble.m4: Remove file.
35322         * config/srclist.txt: Don't mention longdouble.m4.
35323         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
35324         * lib/float+.h: Likewise.
35325         * lib/frexp.c: Likewise.
35326         * lib/printf-args.h: Likewise.
35327         * lib/printf-args.c: Likewise.
35328         * lib/printf-frexp.c: Likewise.
35329         * lib/printf-parse.c: Likewise.
35330         * lib/vasnprintf.c: Likewise.
35331         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
35332         * m4/intl.m4: Likewise.
35333         * m4/isnanl.m4: Likewise.
35334         * m4/printf.m4: Likewise.
35335         * m4/printf-frexpl.m4: Likewise.
35336         * m4/vasnprintf.m4: Likewise.
35337         * modules/allocsa (Files): Remove m4/longdouble.m4.
35338         * modules/gettext (Files): Likewise.
35339         * modules/relocatable-prog-wrapper (Files): Likewise.
35340         * modules/vasnprintf (Files): Likewise.
35341         * modules/isnanl (Files): Likewise.
35342         (Include): Simplify.
35343         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
35344         (Include): Simplify.
35345         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
35346         (Include): Simplify.
35347         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
35348         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35349         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
35350         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35351         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
35352         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35353         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
35354         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35355         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
35356         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35357         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
35358         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35359         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
35360         * tests/test-isnanl.c: Likewise.
35361         * tests/test-snprintf-posix.h: Likewise.
35362         * tests/test-sprintf-posix.h: Likewise.
35363         * tests/test-vasnprintf-posix.c: Likewise.
35364         * tests/test-vasnprintf-posix2.c: Likewise.
35365         * tests/test-vasprintf-posix.c: Likewise.
35366
35367 2007-04-06  Bruno Haible  <bruno@clisp.org>
35368
35369         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
35370         * lib/math_.h [__DECC]: Include the overridden include file through
35371         #include_next, outside the double-inclusion guard.
35372         * lib/stdio_.h [__DECC]: Likewise.
35373         * lib/stdlib_.h [__DECC]: Likewise.
35374         * lib/string_.h [__DECC]: Likewise.
35375         * lib/time_.h [__DECC]: Likewise.
35376         * lib/wchar_.h [__DECC]: Likewise.
35377         * lib/wctype_.h [__DECC]: Likewise.
35378         * lib/inttypes_.h [__DECC]: Likewise.
35379         Reported by Albert Chin <china@thewrittenword.com> in
35380         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
35381
35382 2007-04-04  Eric Blake  <ebb9@byu.net>
35383
35384         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
35385         1.5.x.
35386
35387 2007-04-04  Bruno Haible  <bruno@clisp.org>
35388
35389         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
35390         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
35391
35392 2007-04-04  Bruno Haible  <bruno@clisp.org>
35393
35394         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
35395         results for "%010a" of Infinity and NaN.
35396         * tests/test-vasprintf-posix.c (test_function): Likewise.
35397         * tests/test-snprintf-posix.h (test_function): Likewise.
35398         * tests/test-sprintf-posix.h (test_function): Likewise.
35399         * tests/test-fprintf-posix.h (test_function): Remove these tests.
35400         * tests/test-printf-posix.h (test_function): Likewise.
35401         * tests/test-fprintf-posix.out: Update.
35402         Needed for FreeBSD 6.1.
35403
35404 2007-04-04  Bruno Haible  <bruno@clisp.org>
35405
35406         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
35407         directly used by the gnulib modules nor by gnulib-tool.
35408
35409 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
35410
35411         * DEPENDENCIES: Give overall description of version dependency
35412         desirability.  Use more-typical names for apps.
35413         Add shell, coreutils, diffutils, grep, tar, gzip.
35414
35415 2007-04-04  Simon Josefsson  <simon@josefsson.org>
35416
35417         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
35418
35419 2007-04-04  Karl Berry  <karl@gnu.org>
35420
35421         * MODULES.html.sh (func_module): missing '.
35422
35423 2007-04-03  Bruno Haible  <bruno@clisp.org>
35424
35425         * modules/argmatch-tests (Makefile.am): New variable
35426         test_argmatch_LDADD.
35427         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
35428         * modules/array-list-tests (Makefile.am): New variable
35429         test_array_list_LDADD.
35430         * modules/array-oset-tests (Makefile.am): New variable
35431         test_array_oset_LDADD.
35432         * modules/avltree-list-tests (Makefile.am): New variable
35433         test_avltree_list_LDADD.
35434         * modules/avltree-oset-tests (Makefile.am): New variable
35435         test_avltree_oset_LDADD.
35436         * modules/avltreehash-list-tests (Makefile.am): New variable
35437         test_avltreehash_list_LDADD.
35438         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
35439         test_canonicalize_lgpl_LDADD.
35440         * modules/carray-list-tests (Makefile.am): New variable
35441         test_carray_list_LDADD.
35442         * modules/dirname-tests (Makefile.am): New variable
35443         test_dirname_LDADD.
35444         * modules/linked-list-tests (Makefile.am): New variable
35445         test_linked_list_LDADD.
35446         * modules/linkedhash-list-tests (Makefile.am): New variable
35447         test_linkedhash_list_LDADD.
35448         * modules/rbtree-list-tests (Makefile.am): New variable
35449         test_rbtree_list_LDADD.
35450         * modules/rbtree-oset-tests (Makefile.am): New variable
35451         test_rbtree_oset_LDADD.
35452         * modules/rbtreehash-list-tests (Makefile.am): New variable
35453         test_rbtreehash_list_LDADD.
35454         * modules/xvasprintf-tests (Makefile.am): New variable
35455         test_xvasprintf_LDADD.
35456         Reported by Eric Blake.
35457
35458 2007-04-03  Eric Blake  <ebb9@byu.net>
35459
35460         * DEPENDENCIES: Weaken m4 requirements.
35461
35462 2007-04-03  Bruno Haible  <bruno@clisp.org>
35463
35464         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
35465         * modules/isnanl-tests (configure.ac): Likewise.
35466
35467 2007-04-03  Ben Pfaff  <blp@gnu.org>
35468
35469         * modules/iconv_open: Add $(srcdir)/ to source directory
35470         references in Makefile fragments that call gperf, to fix VPATH
35471         builds.
35472
35473 2007-04-03  Bruno Haible  <bruno@clisp.org>
35474
35475         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
35476         * lib/ldexpl.c: Undo last change.
35477
35478 2007-04-03  Bruno Haible  <bruno@clisp.org>
35479
35480         * modules/printf-frexpl (Depends-on): Undo last change.
35481         (Files): Add m4/ldexpl.m4.
35482
35483 2007-04-03  Bruno Haible  <bruno@clisp.org>
35484
35485         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
35486         * modules/isnanl (Link): New section.
35487
35488         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
35489         * modules/frexp (Link): New section.
35490
35491         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
35492         * modules/frexpl (Link): New section.
35493
35494         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
35495         * modules/ldexpl (Link): New section.
35496
35497 2007-04-03  Bruno Haible  <bruno@clisp.org>
35498
35499         * modules/TEMPLATE-EXTENDED: New file.
35500         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
35501
35502 2007-04-03  Bruno Haible  <bruno@clisp.org>
35503
35504         * DEPENDENCIES: New file.
35505         Suggested by Simon Josefsson.
35506
35507 2007-04-03  Bruno Haible  <bruno@clisp.org>
35508
35509         * doc/gnulib.texi: Escape @.
35510
35511 2007-04-03  James Youngman  <jay@gnu.org>
35512         and Paul Eggert  <eggert@cs.ucla.edu>
35513
35514         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
35515         birthtime on all systems that have birthtime, not just those which
35516         use st_birthtimensec rather than st_birthtim.  Putting zero in
35517         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
35518         that the birth time is not available for files on an NFS mount.
35519
35520 2007-04-03  Simon Josefsson  <simon@josefsson.org>
35521
35522         * modules/memxor: Move back from crypto/, suggested by Bruno.
35523         * modules/crypto/hmac-sha1: Fix memxor dependency.
35524
35525         * modules/crypto/gc: Moved from ../.
35526
35527 2007-04-02  Eric Blake  <ebb9@byu.net>
35528
35529         * lib/ldexpl.c (includes): Avoid libm.
35530
35531         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
35532
35533 2007-04-02  Bruno Haible  <bruno@clisp.org>
35534
35535         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
35536         on IRIX.
35537
35538 2007-04-02  Bruno Haible  <bruno@clisp.org>
35539
35540         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
35541         x86 or x86_64 platforms running MacOS X.
35542         Reported by Ryan Schmidt <@ryandesign.com>.
35543
35544 2007-04-02  Bruno Haible  <bruno@clisp.org>
35545
35546         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
35547         i386.
35548
35549 2007-04-01  Simon Josefsson  <simon@josefsson.org>
35550
35551         * modules/crypto/arcfour: Moved from ../.
35552         * modules/crypto/arcfour-tests: Moved from ../.
35553         * modules/crypto/arctwo: Moved from ../.
35554         * modules/crypto/arctwo-tests: Moved from ../.
35555         * modules/crypto/des: Moved from ../.
35556         * modules/crypto/des-tests: Moved from ../.
35557         * modules/crypto/gc-arcfour: Moved from ../.
35558         * modules/crypto/gc-arcfour-tests: Moved from ../.
35559         * modules/crypto/gc-arctwo: Moved from ../.
35560         * modules/crypto/gc-arctwo-tests: Moved from ../.
35561         * modules/crypto/gc-des: Moved from ../.
35562         * modules/crypto/gc-des-tests: Moved from ../.
35563         * modules/crypto/gc-hmac-md5: Moved from ../.
35564         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
35565         * modules/crypto/gc-hmac-sha1: Moved from ../.
35566         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
35567         * modules/crypto/gc-md2: Moved from ../.
35568         * modules/crypto/gc-md2-tests: Moved from ../.
35569         * modules/crypto/gc-md4: Moved from ../.
35570         * modules/crypto/gc-md4-tests: Moved from ../.
35571         * modules/crypto/gc-md5: Moved from ../.
35572         * modules/crypto/gc-md5-tests: Moved from ../.
35573         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
35574         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
35575         * modules/crypto/gc-random: Moved from ../.
35576         * modules/crypto/gc-rijndael: Moved from ../.
35577         * modules/crypto/gc-rijndael-tests: Moved from ../.
35578         * modules/crypto/gc-sha1: Moved from ../.
35579         * modules/crypto/gc-sha1-tests: Moved from ../.
35580         * modules/crypto/gc-tests: Moved from ../.
35581         * modules/crypto/hmac-md5: Moved from ../.
35582         * modules/crypto/hmac-md5-tests: Moved from ../.
35583         * modules/crypto/hmac-sha1: Moved from ../.
35584         * modules/crypto/hmac-sha1-tests: Moved from ../.
35585         * modules/crypto/md2: Moved from ../.
35586         * modules/crypto/md2-tests: Moved from ../.
35587         * modules/crypto/md4: Moved from ../.
35588         * modules/crypto/md4-tests: Moved from ../.
35589         * modules/crypto/md5: Moved from ../.
35590         * modules/crypto/md5-tests: Moved from ../.
35591         * modules/crypto/memxor: Moved from ../.
35592         * modules/crypto/rijndael: Moved from ../.
35593         * modules/crypto/rijndael-tests: Moved from ../.
35594         * modules/crypto/sha1: Moved from ../.
35595
35596 2007-03-30  James Youngman  <jay@gnu.org>
35597
35598         * tests/test-stat-time.c (prepare_test): use chmod() rather than
35599         rename() to change the ctime of a file (because ctime is unaffected
35600         by rename on jfs2 on AIX 5.1).
35601         (main): Start by doing cleanup, in case a previous run failed leaving
35602         test files behind.
35603
35604 2007-03-31  Bruno Haible  <bruno@clisp.org>
35605
35606         Support old proprietary implementations of iconv.
35607         * modules/iconv_open: New file.
35608         * lib/iconv_.h: New file.
35609         * m4/iconv_h.m4: New file.
35610         * lib/iconv_open.c: New file.
35611         * lib/iconv_open-aix.gperf: New file.
35612         * lib/iconv_open-hpux.gperf: New file.
35613         * lib/iconv_open-irix.gperf: New file.
35614         * lib/iconv_open-osf.gperf: New file.
35615         * m4/iconv_open.m4: New file.
35616         * modules/linebreak (Depends-on): Add iconv_open.
35617         * modules/striconv (Depends-on): Likewise.
35618         * modules/striconveh (Depends-on): Likewise.
35619         * modules/unicodeio (Depends-on): Likewise.
35620         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
35621         (iconv_t)(-1).
35622         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
35623         conversion if cd is (iconv_t)(-1).
35624         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
35625         is not possible.
35626
35627 2007-03-31  Bruno Haible  <bruno@clisp.org>
35628
35629         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
35630         work on Solaris either. Protect also second use of "autodetect_jp".
35631
35632 2007-03-31  Bruno Haible  <bruno@clisp.org>
35633
35634         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
35635         the function is not present.
35636
35637 2007-03-31  Bruno Haible  <bruno@clisp.org>
35638
35639         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
35640         the function is not present.
35641
35642 2007-03-31  Bruno Haible  <bruno@clisp.org>
35643
35644         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
35645         a bug in HP-UX iconv_open().
35646
35647 2007-03-31  Bruno Haible  <bruno@clisp.org>
35648
35649         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
35650         (Mathematics <math.h>): New section, add fpieee.
35651         (Input/output <stdio.h>): Add fseterr.
35652         (Mathematics <math.h>): New section, add printf-frexp.
35653         (Container data structures): Add sublist.
35654         (Core language properties): Add fpucw, inline.
35655         (Functions for greatest-width integer types <inttypes.h>): Add
35656         imaxabs, imaxdiv, inttypes.
35657         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
35658         isnanl-nolibm, ldexp.
35659         (Mathematics <math.h>): New section, add printf-frexpl.
35660         (Support for systems lacking POSIX:2001): Add fprintf-posix,
35661         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
35662         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
35663         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
35664         (Unicode string functions): Add unistr/u*-mbtoucr.
35665         (Java): Add javacomp-script, javaexec-script.
35666         (C#): Add csharpcomp-script, csharpexec-script.
35667         (Support for building libraries and executables): Add havelib,
35668         relocatable-*.
35669         (Support for maintaining and releasing projects): Renamed from
35670         'Support for maintaining and release projects'. Add announce-gen.
35671
35672 2007-03-31  Bruno Haible  <bruno@clisp.org>
35673
35674         * README: Talk primarily about git.
35675         (git and CVS): Renamed from CVS.
35676         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
35677         gnulib is available through git.
35678         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
35679
35680 2007-03-30  Bruno Haible  <bruno@clisp.org>
35681
35682         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
35683         * lib/poll_.h: Likewise.
35684         * lib/stat_.h: Likewise.
35685         * lib/sys_time_.h: Likewise.
35686         * lib/sysexit_.h: Likewise.
35687         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
35688         * lib/stdbool_.h: Likewise.
35689         * lib/byteswap_.h: Add double-inclusion guard.
35690
35691 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
35692
35693         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
35694
35695 2007-03-30  Karl Berry  <karl@gnu.org>
35696
35697         * config/srclist-update: double space after USA in the license
35698         substitution, since that's how it's usually (?) written.
35699
35700 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
35701
35702         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
35703         reported by Bruno Haible.
35704
35705 2007-03-29  Bruno Haible  <bruno@clisp.org>
35706
35707         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
35708         a bug in AIX iconv().
35709
35710 2007-03-29  Bruno Haible  <bruno@clisp.org>
35711
35712         * modules/ldexpl-tests: New file.
35713         * tests/test-ldexpl.c: New file.
35714
35715 2007-03-29  Bruno Haible  <bruno@clisp.org>
35716
35717         * lib/ldexpl.c: Include fpucw.h.
35718         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
35719         multiplication.
35720         * modules/ldexpl (Depends-on): Add fpucw.
35721
35722 2007-03-29  Bruno Haible  <bruno@clisp.org>
35723
35724         * modules/ldexpl: New file.
35725         * m4/ldexpl.m4: New file.
35726         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
35727         set.
35728         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
35729         REPLACE_LDEXPL.
35730         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
35731         REPLACE_LDEXPL.
35732         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
35733         gl_FUNC_LDEXPL_WORKS.
35734         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
35735         * modules/mathl (Files): Remove lib/ldexpl.c.
35736         (Depends-on): Add ldexpl.
35737
35738 2007-03-29  Bruno Haible  <bruno@clisp.org>
35739
35740         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
35741
35742 2007-03-29  Bruno Haible  <bruno@clisp.org>
35743
35744         * tests/test-striconveh.c (main): Don't assume that a direct conversion
35745         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
35746         and possibly also HP-UX.
35747         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
35748         work on AIX, IRIX, HP-UX, OSF/1.
35749         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
35750         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
35751         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
35752         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
35753         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
35754         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
35755
35756 2007-03-29  Bruno Haible  <bruno@clisp.org>
35757
35758         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
35759
35760 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
35761
35762         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
35763         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
35764
35765 2007-03-29  Eric Blake  <ebb9@byu.net>
35766
35767         * lib/acl-internal.h: Remove redundant include.
35768         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
35769         Cygwin when a file is locked.
35770
35771 2007-03-29  Bruno Haible  <bruno@clisp.org>
35772
35773         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
35774         file.
35775         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
35776
35777 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
35778
35779         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
35780         try to remove a parent directory if the child couldn't be removed
35781         (except for the first rmdir, which could fail because the child
35782         doesn't exist).  Problem reported by Jeff Blaine in
35783         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
35784
35785 2007-03-28  Bruno Haible  <bruno@clisp.org>
35786
35787         * lib/striconveh.c (utf8conv_carefully): New function.
35788         (mem_cd_iconveh_internal): Invoke it.
35789
35790 2007-03-28  Bruno Haible  <bruno@clisp.org>
35791
35792         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
35793         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
35794         input.
35795         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
35796         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
35797         unistr/u8-uctomb.
35798
35799 2007-03-28  Bruno Haible  <bruno@clisp.org>
35800
35801         * modules/unistr/u8-mbtoucr: New file.
35802         * lib/unistr/u8-mbtoucr.c: New file.
35803         * modules/unistr/u16-mbtoucr: New file.
35804         * lib/unistr/u16-mbtoucr.c: New file.
35805         * modules/unistr/u16-mbtoucr: New file.
35806         * lib/unistr/u16-mbtoucr.c: New file.
35807         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
35808
35809 2007-03-27  Simon Josefsson  <simon@josefsson.org>
35810             Bruno Haible  <bruno@clisp.org>
35811
35812         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
35813         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
35814         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
35815
35816         * m4/stdio_h.m4: Add stubs for vasprintf too.
35817
35818         * modules/stdio: Support vasprintf in sed command.
35819
35820         * modules/vasprintf: Depend on stdio for prototypes.  Remove
35821         vasprintf.h.  Add stdio module indicator.
35822
35823         * lib/stdio_.h: Declare asprintf and vasprintf, based on
35824         vasprintf.h.
35825
35826         * lib/vasprintf.h: File removed.
35827
35828         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
35829         * lib/vasprintf.c: Ditto.
35830         * lib/xvasprintf.c: Ditto.
35831         * tests/test-vasprintf-posix.c: Ditto.
35832         * tests/test-vasprintf.c: Ditto.
35833
35834 2007-03-27  Bruno Haible  <bruno@clisp.org>
35835
35836         Make vasnprintf multithread-safe.
35837         * lib/vasnprintf.c (decimal_point_char): New function.
35838         (VASNPRINTF): Use it.
35839         Suggested by Simon Josefsson.
35840
35841 2007-03-27  Eric Blake  <ebb9@byu.net>
35842
35843         Support sub-second birthtime on cygwin.
35844         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
35845         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
35846         (get_stat_birthtime): Also work with st_birthtim.
35847
35848 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
35849
35850         * lib/stat-time.h (USE_BIRTHTIME): Remove.
35851         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
35852         (get_stat_birthtime_ns): Do not try to use "spare" fields.
35853         (get_stat_birthtime_ns): Simplify compile-time tests.
35854         (get_stat_birthtime): Change the API to look like
35855         get_stat_mtime etc., except return a negative tv_nsec on error.
35856         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
35857         Don't check for "spare" fields.
35858         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
35859         or for struct stat.st_birthtime, as these tests aren't used.
35860         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
35861
35862 2007-03-27  Bruno Haible  <bruno@clisp.org>
35863
35864         * lib/stat-time.h: Include <sys/stat.h>.
35865
35866 2007-03-27  James Youngman  <jay@gnu.org>
35867
35868         * lib/stat-time.h (get_stat_birthtime): New function for
35869           retrieving st_birthtime as provided by UFS2 (hence *BSD).
35870         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
35871           and its variants.
35872         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
35873         * modules/stat-time-test: New file.
35874         * tests/test-stat-time.c: New test, devised by Bruno Haible.
35875
35876 2007-03-26  Bruno Haible  <bruno@clisp.org>
35877
35878         Better support of signalling NaNs.
35879         * lib/atanl.c: Include isnanl.h.
35880         (atanl): Perform test for NaN at the beginning of the function and
35881         through a call to isnanl.
35882         * lib/cosl.c: Include isnanl.h.
35883         (cosl): Perform test for NaN at the beginning of the function and
35884         through a call to isnanl.
35885         * lib/ldexpl.c: Include isnanl.h.
35886         (ldexpl): Perform test for NaN through a call to isnanl.
35887         * lib/logl.c: Include isnanl.h.
35888         (logl): Perform test for NaN at the beginning of the function and
35889         through a call to isnanl.
35890         * lib/sinl.c: Include isnanl.h.
35891         (sinl): Perform test for NaN at the beginning of the function and
35892         through a call to isnanl.
35893         * lib/sqrtl.c: Include isnanl.h.
35894         (sqrtl): Perform test for NaN at the beginning of the function and
35895         through a call to isnanl.
35896         * lib/tanl.c: Include isnanl.h.
35897         (tanl): Perform test for NaN at the beginning of the function and
35898         through a call to isnanl.
35899         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
35900         * modules/mathl (Depends-on): Add isnanl.
35901
35902 2007-03-26  Eric Blake  <ebb9@byu.net>
35903
35904         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
35905         regression in logic sense of previous patch.
35906
35907 2007-03-26  Bruno Haible  <bruno@clisp.org>
35908
35909         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
35910         unportable shell command "if ! ...".
35911         Reported by Ralf Wildenhues.
35912
35913 2007-03-25  Bruno Haible  <bruno@clisp.org>
35914
35915         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
35916         <sysexits.h> file, and only add EX_CONFIG.
35917         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
35918         absolute file name and whether it is sufficient. Substitute also
35919         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
35920         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
35921         ABSOLUTE_SYSEXITS_H into sysexits.h.
35922
35923 2007-03-25  Bruno Haible  <bruno@clisp.org>
35924
35925         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
35926         hints is NULL.
35927
35928 2007-03-25  Bruno Haible  <bruno@clisp.org>
35929
35930         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
35931         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
35932
35933 2007-03-25  Bruno Haible  <bruno@clisp.org>
35934
35935         * lib/vasnprintf.c: Include langinfo.h.
35936         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
35937         multithread-safe.
35938         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
35939         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
35940         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
35941         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35942         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35943         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35944         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35945         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
35946         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35947         Reported by Simon Josefsson.
35948
35949 2007-03-25  Bruno Haible  <bruno@clisp.org>
35950
35951         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
35952         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
35953         * modules/vasnprintf (Depends-on): Add stdint.
35954
35955 2007-03-25  Bruno Haible  <bruno@clisp.org>
35956
35957         * modules/fpieee: New file.
35958         * m4/fpieee.m4: New file.
35959         * modules/isnan-nolibm (Depends-on): Add fpieee.
35960         * modules/isnanl-nolibm (Depends-on): Add fpieee.
35961         * modules/isnanl (Depends-on): Add fpieee.
35962
35963 2007-03-25  Bruno Haible  <bruno@clisp.org>
35964
35965         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
35966
35967 2007-03-25  Bruno Haible  <bruno@clisp.org>
35968
35969         Avoid test failures on IRIX 6.5.
35970         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
35971         (main): Use it.
35972         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
35973         macros.
35974         (main): Use them.
35975
35976 2007-03-25  Bruno Haible  <bruno@clisp.org>
35977
35978         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
35979         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
35980         exists but doesn't work.
35981         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
35982         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
35983         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
35984         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
35985
35986 2007-03-25  Bruno Haible  <bruno@clisp.org>
35987
35988         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
35989         returns inf. Needed on IRIX 6.5.
35990
35991 2007-03-25  Bruno Haible  <bruno@clisp.org>
35992
35993         * tests/test-frexpl.c: Include isnanl-nolibm.h.
35994         (main): Use isnanl instead of x != x idiom.
35995         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
35996
35997         * tests/test-frexp.c: Include isnan.h.
35998         (main): Use isnan instead of x != x idiom.
35999         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
36000
36001 2007-03-25  Bruno Haible  <bruno@clisp.org>
36002
36003         * tests/test-frexp.c (NaN): New function/macro.
36004         (main): Use it instead of 0.0 / 0.0.
36005         * tests/test-isnan.c (NaN): New function/macro.
36006         (main): Use it instead of 0.0 / 0.0.
36007         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
36008         (test_function): Use it instead of 0.0 / 0.0.
36009         * tests/test-vasprintf-posix.c (NaN): New function/macro.
36010         (test_function): Use it instead of 0.0 / 0.0.
36011         * tests/test-snprintf-posix.h (NaN): New function/macro.
36012         (test_function): Use it instead of 0.0 / 0.0.
36013         * tests/test-sprintf-posix.h (NaN): New function/macro.
36014         (test_function): Use it instead of 0.0 / 0.0.
36015         * tests/test-fprintf-posix.h (NaN): New function/macro.
36016         (test_function): Use it instead of 0.0 / 0.0.
36017         * tests/test-printf-posix.h (NaN): New function/macro.
36018         (test_function): Use it instead of 0.0 / 0.0.
36019
36020         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
36021
36022 2007-03-25  Bruno Haible  <bruno@clisp.org>
36023
36024         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
36025
36026 2007-03-25  Bruno Haible  <bruno@clisp.org>
36027
36028         * lib/regexec.c (merge_state_with_log): Make static.
36029
36030 2007-03-25  Bruno Haible  <bruno@clisp.org>
36031
36032         * lib/trigl.c (kernel_rem_pio2): Make static.
36033
36034 2007-03-25  Bruno Haible  <bruno@clisp.org>
36035
36036         * lib/sincosl.c (sincosl_table): Make static.
36037
36038 2007-03-25  Bruno Haible  <bruno@clisp.org>
36039
36040         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
36041         if the compiler does not support C99.
36042
36043 2007-03-25  Bruno Haible  <bruno@clisp.org>
36044
36045         * modules/time (Makefile.am): Ensure all rule action lines start with a
36046         tab.
36047
36048 2007-03-24  Bruno Haible  <bruno@clisp.org>
36049
36050         * modules/tsearch-tests: New file.
36051         * tests/test-tsearch.sh: New file.
36052         * tests/test-tsearch.c: New file, mostly copied from glibc.
36053
36054         * modules/search-tests: New file.
36055         * tests/test-search.c: New file.
36056
36057         * modules/search: New file.
36058         * lib/search_.h: New file, incorporating lib/tsearch.h.
36059         * m4/search_h.m4: New file.
36060         * lib/tsearch.h: Remove file.
36061         * lib/tsearch.c: Include search.h instead of tsearch.h.
36062         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
36063         HAVE_TSEARCH.
36064         * modules/tsearch (Files): Remove lib/tsearch.h.
36065         (Depends-on): Add search.
36066         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
36067         (Include): Change tsearch.h into search.h.
36068
36069 2007-03-24  Bruno Haible  <bruno@clisp.org>
36070
36071         * modules/fpucw: New file.
36072         * lib/fpucw.h: New file.
36073         * lib/frexp.c: Include fpucw.h.
36074         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
36075         (FUNC): Use them.
36076         * lib/printf-frexp.c: Include fpucw.h.
36077         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
36078         (FUNC): Use them.
36079         * lib/vasnprintf.c: Include fpucw.h.
36080         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
36081         'long double' calculations.
36082         * tests/test-frexpl.c: Include fpucw.h.
36083         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
36084         * tests/test-printf-frexpl.c: Include fpucw.h.
36085         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
36086         * modules/frexpl (Depends-on): Add fpucw.
36087         * modules/printf-frexpl (Depends-on): Likewise.
36088         * modules/fprintf-posix (Depends-on): Likewise.
36089         * modules/snprintf-posix (Depends-on): Likewise.
36090         * modules/sprintf-posix (Depends-on): Likewise.
36091         * modules/vasnprintf-posix (Depends-on): Likewise.
36092         * modules/vasprintf-posix (Depends-on): Likewise.
36093         * modules/vfprintf-posix (Depends-on): Likewise.
36094         * modules/vsnprintf-posix (Depends-on): Likewise.
36095         * modules/vsprintf-posix (Depends-on): Likewise.
36096         * modules/frexpl-tests (Depends-on): Likewise.
36097         * modules/printf-frexpl-tests (Depends-on): Likewise.
36098
36099 2007-03-24  Bruno Haible  <bruno@clisp.org>
36100
36101         * lib/float+.h: New file.
36102         * lib/isnan.c: Include float+.h.
36103         (SIZE): New macro.
36104         (FUNC): Compare only SIZE bytes of the value.
36105         * lib/vasnprintf.c: Include float+.h.
36106         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
36107         SIZEOF_LDBL or SIZEOF_DBL bytes.
36108         * modules/isnan-nolibm (Files): Add lib/float+.h.
36109         * modules/isnanl-nolibm (Files): Add lib/float+.h.
36110         * modules/isnanl (Files): Add lib/float+.h.
36111         * modules/vasnprintf (Files): Add lib/float+.h.
36112
36113 2007-03-24  Bruno Haible  <bruno@clisp.org>
36114
36115         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
36116         include isnanl-nolibm.h.
36117
36118 2007-03-24  Bruno Haible  <bruno@clisp.org>
36119
36120         * tests/test-read-file.c (main): Don't produce spurious output for
36121         expected situations. Make the test fail if it encountered unexpected
36122         results.
36123
36124 2007-03-24  Bruno Haible  <bruno@clisp.org>
36125
36126         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
36127         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
36128
36129 2007-03-24  Bruno Haible  <bruno@clisp.org>
36130
36131         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
36132
36133 2007-03-24  Bruno Haible  <bruno@clisp.org>
36134
36135         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
36136         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
36137
36138         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
36139         * modules/utf8-ucs4: Turn into a symbolic link to module
36140         unistr/u8-mbtouc.
36141
36142         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
36143         utf8-ucs4-unsafe.
36144         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
36145         unistr/u8-mbtouc-unsafe.
36146
36147         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
36148         * modules/utf16-ucs4: Turn into a symbolic link to module
36149         unistr/u16-mbtouc.
36150
36151         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
36152         utf16-ucs4-unsafe.
36153         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
36154         unistr/u16-mbtouc-unsafe.
36155
36156         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
36157         * modules/ucs4-utf8: Turn into a symbolic link to module
36158         unistr/u8-ubtomb.
36159
36160         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
36161         * modules/ucs4-utf16: Turn into a symbolic link to module
36162         unistr/u16-ubtomb.
36163
36164 2007-03-24  Bruno Haible  <bruno@clisp.org>
36165
36166         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
36167         Enable the function only if HAVE_INLINE.
36168         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
36169         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
36170         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
36171         Enable the function only if HAVE_INLINE.
36172         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
36173         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
36174         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
36175         Enable the function only if HAVE_INLINE.
36176         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
36177         Enable the function only if HAVE_INLINE.
36178         * modules/utf8-ucs4: Update.
36179         * modules/utf8-ucs4-unsafe: Update.
36180         * modules/utf16-ucs4: Update.
36181         * modules/utf16-ucs4-unsafe: Update.
36182         * modules/ucs4-utf8: Update.
36183         * modules/ucs4-utf16: Update.
36184
36185 2007-03-24  Bruno Haible  <bruno@clisp.org>
36186
36187         * lib/utf8-ucs4.h: Remove file.
36188         * lib/utf8-ucs4-unsafe.h: Remove file.
36189         * lib/utf16-ucs4.h: Remove file.
36190         * lib/utf16-ucs4-unsafe.h: Remove file.
36191         * lib/ucs4-utf8.h: Remove file.
36192         * lib/ucs4-utf16.h: Remove file.
36193         * lib/unistr.h: Include their previous contents.
36194         * m4/utf-ucs4.m4: Remove file.
36195         * m4/ucs4-utf.m4: Remove file.
36196         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
36197         (Depends-on): Add unistr/base.
36198         (configure.ac): Remove gl_UTF_UCS4.
36199         (Makefile.am): Update.
36200         (Include): Change to unistr.h.
36201         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
36202         (Depends-on): Add unistr/base.
36203         (configure.ac): Remove gl_UTF_UCS4.
36204         (Makefile.am): Update.
36205         (Include): Change to unistr.h.
36206         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
36207         (Depends-on): Add unistr/base.
36208         (configure.ac): Remove gl_UTF_UCS4.
36209         (Makefile.am): Update.
36210         (Include): Change to unistr.h.
36211         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
36212         (Depends-on): Add unistr/base.
36213         (configure.ac): Remove gl_UTF_UCS4.
36214         (Makefile.am): Update.
36215         (Include): Change to unistr.h.
36216         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
36217         (Depends-on): Add unistr/base.
36218         (configure.ac): Remove gl_UCS4_UTF.
36219         (Makefile.am): Update.
36220         (Include): Change to unistr.h.
36221         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
36222         (Depends-on): Add unistr/base.
36223         (configure.ac): Remove gl_UCS4_UTF.
36224         (Makefile.am): Update.
36225         (Include): Change to unistr.h.
36226         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
36227         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
36228         utf8-ucs4-unsafe.h.
36229         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
36230         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
36231         utf16-ucs4-unsafe.h.
36232         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
36233         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
36234         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
36235         * lib/unistr/u8-strchr.c: Likewise.
36236         * lib/unistr/u8-strrchr.c: Likewise.
36237         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
36238         * lib/unistr/u16-strchr.c: Likewise.
36239         * lib/unistr/u16-strrchr.c: Likewise.
36240         * lib/striconveh.c: Update.
36241         * lib/linebreak.c: Update.
36242
36243 2007-03-24  Bruno Haible  <bruno@clisp.org>
36244
36245         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
36246         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
36247
36248 2007-03-22  Bruno Haible  <bruno@clisp.org>
36249
36250         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
36251
36252 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
36253
36254         * MODULES.html.sh (File system functions): New module write-any-file.
36255         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
36256         * m4/write-any-file.m4: New files.
36257
36258 2007-03-23  Eric Blake  <ebb9@byu.net>
36259
36260         * gnulib-tool: Rearrange space-tab sequences, since some editors
36261         like to eat them.
36262
36263 2007-03-23  Eric Blake  <ebb9@byu.net>
36264
36265         * lib/version-etc.c (version_etc_va): Update license wording to
36266         be more concise.  Recommended by Richard Stallman.
36267
36268 2007-03-22  Bruno Haible  <bruno@clisp.org>
36269
36270         * lib/poll.c (MSG_PEEK): New fallback definition.
36271
36272 2007-03-22  Bruno Haible  <bruno@clisp.org>
36273
36274         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
36275         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
36276         (main): Update.
36277         Fixes a compilation error on BeOS.
36278
36279 2007-03-22  Bruno Haible  <bruno@clisp.org>
36280
36281         * modules/frexpl-tests: New file.
36282         * tests/test-frexpl.c: New file.
36283
36284         * modules/frexpl: New file.
36285         * m4/frexpl.m4: New file.
36286         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
36287         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
36288         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
36289         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
36290         (Depends-on): Add frexpl. Remove isnanl-nolibm.
36291         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
36292
36293 2007-03-22  Bruno Haible  <bruno@clisp.org>
36294
36295         * lib/frexpl.c: Share code with lib/frexp.c.
36296         * modules/mathl (Files): Add lib/frexp.c.
36297         (Depends-on): Add isnanl-nolibm.
36298
36299 2007-03-22  Bruno Haible  <bruno@clisp.org>
36300
36301         * modules/printf-frexp (Files): Add m4/frexp.m4.
36302         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
36303         only if the found frexp function actually works.
36304
36305 2007-03-22  Bruno Haible  <bruno@clisp.org>
36306
36307         * lib/frexp.c: Remove older implementation that uses divisions.
36308
36309 2007-03-21  Bruno Haible  <bruno@clisp.org>
36310
36311         * modules/frexp-tests: New file.
36312         * tests/test-frexp.c: New file.
36313
36314         * modules/frexp: New file.
36315         * lib/frexp.c: New file.
36316         * m4/frexp.m4: New file.
36317         * lib/math_.h (frexp): New declaration.
36318         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
36319         REPLACE_FREXP.
36320         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
36321
36322 2007-03-21  Bruno Haible  <bruno@clisp.org>
36323
36324         * modules/isnanl-tests: New file.
36325         * tests/test-isnanl.c: New file.
36326
36327         * modules/isnanl: New file.
36328         * lib/isnanl.h: New file.
36329         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
36330         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
36331         gl_FUNC_ISNANL_WORKS.
36332         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
36333         New macros.
36334
36335 2007-03-21  Bruno Haible  <bruno@clisp.org>
36336
36337         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
36338         lib/isnanl.h.
36339         (Include): Update.
36340         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
36341         * lib/vasnprintf.c: Update.
36342         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
36343         tests/test-isnanl.h, remove tests/test-isnanl.c.
36344         (Makefile.am): Update.
36345         * tests/test-isnanl-nolibm.c: New file.
36346         * tests/test-isnanl.h: New file.
36347         * tests/test-isnanl.c: Remove file.
36348
36349 2007-03-21  Jim Meyering  <jim@meyering.net>
36350
36351         When trying to open ".", treat ESTALE like EACCES.
36352         * lib/savewd.c (savewd_save): Resort to forking not just upon
36353         failure with EACCES, but also when errno is ESTALE.
36354
36355 2007-03-20  Bruno Haible  <bruno@clisp.org>
36356
36357         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
36358         Needed on AIX 5.1. Reported by Matthew Woehlke.
36359
36360 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
36361
36362         Suggestions by Bruno Haible:
36363         * lib/acl-internal.h: Include "gettext.h" rather than rolling
36364         our own.
36365         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
36366         * modules/acl (Depends-on): Add gettext.
36367
36368 2007-03-19  Bruno Haible  <bruno@clisp.org>
36369
36370         * modules/iconvme: Remove file.
36371         * lib/iconvme.h: Remove file.
36372         * lib/iconvme.c: Remove file.
36373         * m4/iconvme.m4: Remove file.
36374
36375 2007-03-19  Bruno Haible  <bruno@clisp.org>
36376
36377         * doc/relocatable-maint.texi: Break long shell script line.
36378         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
36379
36380 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
36381
36382         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
36383         handle file_has_acl.
36384         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
36385         * lib/acl.c: Move header inclusions and related macro defns into
36386         lib/acl-internal.h.
36387         (S_ISLNK): Remove defn, since that's now done for us.
36388         (file_has_acl): Move to lib/file-has-acl.c.
36389         Call acl_trivial if available.  This is the crucial part of the fix.
36390         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
36391         shared within the library.  Rewrite a bit, partly to make it compatible
36392         with the GNU coding style.
36393         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
36394         Remove unnecessary double-quotes.
36395         Don't test for acl_to_text; the build will catch that.
36396         Replace acl_entries if it doesn't exist and it is needed.
36397         Check for -lsec and acl_trivial (as used on Solaris 10).
36398         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
36399         lib/file-has-acl.c.
36400         (Depends-on): Add sys_stat, for S_ISLNK.
36401
36402 2007-03-19  Ben Pfaff  <blp@gnu.org>
36403
36404         * doc/gnulib.texi: Fix typos.
36405         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
36406
36407 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
36408
36409         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
36410         If size is zero here, buf must be zero.
36411
36412 2007-03-19  Simon Josefsson  <simon@josefsson.org>
36413
36414         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
36415         <bruno@clisp.org>.
36416
36417 2007-03-18  Bruno Haible  <bruno@clisp.org>
36418
36419         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
36420         Suggested by Eric Blake.
36421
36422 2007-03-18  Ben Pfaff  <blp@gnu.org>
36423
36424         * doc/relocatable.texi: Recommend using as prefix a directory
36425         that does not exist and will never be created.  Based on
36426         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
36427         and others.
36428
36429 2007-03-17  Bruno Haible  <bruno@clisp.org>
36430
36431         * lib/fchownat.c: Include lchown.h.
36432
36433 2007-03-17  Bruno Haible  <bruno@clisp.org>
36434
36435         Fix endless loop when the given allocated size was > INT_MAX.
36436         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
36437         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
36438         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
36439         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
36440         * lib/sprintf.c (sprintf): Likewise.
36441
36442 2007-03-17  Bruno Haible  <bruno@clisp.org>
36443
36444         * tests/test-argp-2.sh (func_compare): Output a context diff.
36445
36446 2007-03-17  Bruno Haible  <bruno@clisp.org>
36447
36448         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
36449         locale's decimal-point character.
36450
36451 2007-03-17  Bruno Haible  <bruno@clisp.org>
36452
36453         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
36454         before comparing it. Needed because on some platforms (e.g. x86) a
36455         'long double' occupies less bytes than sizeof (long double).
36456
36457 2007-03-17  Bruno Haible  <bruno@clisp.org>
36458
36459         * tests/test-crc.c (main): Make printf statements 64-bit clean.
36460         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
36461         * tests/test-getaddrinfo.c (simple): Likewise.
36462         * tests/test-read-file.c (main): Likewise.
36463
36464 2007-03-17  Bruno Haible  <bruno@clisp.org>
36465
36466         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
36467
36468 2007-03-17  Bruno Haible  <bruno@clisp.org>
36469
36470         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
36471         unused variable.
36472
36473 2007-03-17  Bruno Haible  <bruno@clisp.org>
36474
36475         * tests/test-c-strcasecmp.c: Include c-strcase.h.
36476         * tests/test-c-strncasecmp.c: Likewise.
36477
36478 2007-03-17  Bruno Haible  <bruno@clisp.org>
36479
36480         * modules/stdlib (Depends-on): Add unistd.
36481         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
36482         Needed for MacOS X 10.3.
36483
36484 2007-03-17  Bruno Haible  <bruno@clisp.org>
36485
36486         * lib/unistr/u-strdup.h: Include <stdlib.h>.
36487
36488 2007-03-17  Bruno Haible  <bruno@clisp.org>
36489
36490         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
36491
36492 2007-03-17  Bruno Haible  <bruno@clisp.org>
36493
36494         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
36495         to reflect files copied from gnulib (with or without modifications).
36496         Suggested by Jim Meyering.
36497
36498 2007-03-17  Eric Blake  <ebb9@byu.net>
36499
36500         * NEWS: Document stdlib change from 2007-02-18.
36501
36502 2007-03-17  Jim Meyering  <jim@meyering.net>
36503
36504         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
36505         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
36506         someone uses a name containing shell meta-characters.
36507         Reported by Alfred M. Szmidt.
36508
36509         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
36510
36511 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
36512
36513         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
36514         and copy gettext configuration files only if configure.ac contains
36515         a use of AM_GNU_GETTEXT_VERSION.
36516
36517 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
36518
36519         * build-aux/bootstrap (gnulib_name): New variable.
36520         (gnulib_tool_options): Use it.
36521
36522 2007-03-13  Simon Josefsson  <simon@josefsson.org>
36523
36524         * tests/test-des.c: Use new namespace.
36525
36526 2007-03-15  Bruno Haible  <bruno@clisp.org>
36527
36528         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
36529         Reported by James Youngman <jay@gnu.org>.
36530
36531 2007-03-15  Bruno Haible  <bruno@clisp.org>
36532
36533         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
36534         declared prototype. Needed with cc on OSF/1 5.1.
36535
36536 2007-03-15  Bruno Haible  <bruno@clisp.org>
36537
36538         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
36539         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
36540         (struct gl_list_implementation): Add dispose_fn argument to the
36541         'create_empty', 'create' methods.
36542         (struct gl_list_impl_base): Add field 'dispose_fn'.
36543         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
36544         argument.
36545         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
36546         dispose_fn argument.
36547         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
36548         dispose_fn on the dropped values.
36549         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
36550         dispose_fn argument.
36551         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
36552         dropped values.
36553         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
36554         (gl_tree_remove_node): Call dispose_fn on the dropped value.
36555         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
36556         (gl_tree_remove_node): Call dispose_fn on the dropped value.
36557         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
36558         argument.
36559         (gl_tree_list_free): Call dispose_fn on the dropped values.
36560         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
36561         the dropped values.
36562         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
36563         Add dispose_fn argument.
36564         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
36565         Call dispose_fn on the dropped values.
36566         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
36567         Add dispose_fn argument.
36568         (gl_sublist_create): Initialize the 'dispose_fn' field.
36569         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
36570         * tests/test-array_list.c (main): Update.
36571         * tests/test-carray_list.c (main): Update.
36572         * tests/test-avltree_list.c (main): Update.
36573         * tests/test-rbtree_list.c (main): Update.
36574         * tests/test-avltreehash_list.c (main): Update.
36575         * tests/test-rbtreehash_list.c (main): Update.
36576         * tests/test-linked_list.c (main): Update.
36577         * tests/test-linkedhash_list.c (main): Update.
36578         * tests/test-array_oset.c (main): Update.
36579
36580 2007-03-15  Bruno Haible  <bruno@clisp.org>
36581
36582         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
36583         (gl_oset_create_empty): Add dispose_fn argument.
36584         (struct gl_oset_implementation): Add dispose_fn argument to
36585         'create_empty' method.
36586         (struct gl_oset_impl_base): Add dispose_fn field.
36587         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
36588         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
36589         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
36590         values.
36591         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
36592         (gl_tree_oset_free): Call dispose_fn on the dropped values.
36593         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
36594         dropped value.
36595         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
36596         dropped value.
36597         * tests/test-array_oset.c (main): Update.
36598         * tests/test-avltree_oset.c (main): Update.
36599         * tests/test-rbtree_oset.c (main): Update.
36600         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
36601
36602 2007-03-13  Bruno Haible  <bruno@clisp.org>
36603
36604         * tests/test-stdbool.c (i): Update after last patch.
36605
36606 2007-03-12  Bruno Haible  <bruno@clisp.org>
36607
36608         * lib/quotearg.c: Include <wctype.h> early, before the definition of
36609         the iswprint macro. Needed on Solaris 2.5.1.
36610
36611 2007-03-12  Bruno Haible  <bruno@clisp.org>
36612
36613         * tests/test-printf-frexp.c (main): Declare x as volatile.
36614
36615 2007-03-12  Simon Josefsson  <simon@josefsson.org>
36616
36617         * doc/gnulib.texi (Build robot for gnulib): New section.
36618
36619 2007-03-12  Jim Meyering  <jim@meyering.net>
36620
36621         * build-aux/bootstrap: New file.
36622         * build-aux/bootstrap.conf: New file, from coreutils.
36623
36624 2007-03-11  Bruno Haible  <bruno@clisp.org>
36625
36626         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
36627
36628 2007-03-12  Simon Josefsson  <simon@josefsson.org>
36629
36630         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
36631         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
36632         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
36633
36634 2007-03-11  Bruno Haible  <bruno@clisp.org>
36635
36636         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
36637         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
36638
36639 2007-03-11  Bruno Haible  <bruno@clisp.org>
36640
36641         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
36642         formula. Needed for SunPRO C 5.0.
36643
36644 2007-03-11  Bruno Haible  <bruno@clisp.org>
36645
36646         * modules/long-options (Depends-on): Add getopt.
36647
36648 2007-03-11  Bruno Haible  <bruno@clisp.org>
36649
36650         * modules/modechange (Depends-on): Add stdbool.
36651
36652 2007-03-11  Bruno Haible  <bruno@clisp.org>
36653
36654         * modules/i-ring (Depends-on): Add stdbool.
36655
36656 2007-03-11  Bruno Haible  <bruno@clisp.org>
36657
36658         * modules/gc-des (Depends-on): Add stdbool.
36659
36660 2007-03-11  Bruno Haible  <bruno@clisp.org>
36661
36662         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
36663
36664 2007-03-11  Bruno Haible  <bruno@clisp.org>
36665
36666         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
36667
36668 2007-03-11  Bruno Haible  <bruno@clisp.org>
36669
36670         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
36671
36672 2007-03-11  Bruno Haible  <bruno@clisp.org>
36673
36674         * lib/vasnprintf.c (sprintf): Undefine.
36675
36676 2007-03-11  Bruno Haible  <bruno@clisp.org>
36677
36678         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
36679         initializers in SunPRO C and Compaq C compilers.
36680
36681 2007-03-11  Bruno Haible  <bruno@clisp.org>
36682
36683         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
36684         decrementing code ANSI C compliant.
36685
36686 2007-03-11  Bruno Haible  <bruno@clisp.org>
36687
36688         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
36689         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
36690
36691 2007-03-11  Bruno Haible  <bruno@clisp.org>
36692
36693         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
36694         <stdbool.h> substitute doesn't pass.
36695
36696 2007-03-11  Bruno Haible  <bruno@clisp.org>
36697
36698         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
36699
36700 2007-03-11  Bruno Haible  <bruno@clisp.org>
36701
36702         * gnulib-tool (func_create_megatestdir): Create also an autobuild
36703         script, for submission to autobuild.josefsson.org.
36704
36705 2007-03-10  Bruno Haible  <bruno@clisp.org>
36706
36707         * modules/canonicalize-lgpl-tests: New file.
36708         * tests/test-canonicalize-lgpl.sh: New file.
36709         * tests/test-canonicalize-lgpl.c: New file.
36710
36711         * modules/c-strcase-tests: New file.
36712         * tests/test-c-strcase.sh: New file.
36713         * tests/test-c-strcasecmp.c: New file.
36714         * tests/test-c-strncasecmp.c: New file.
36715
36716         * modules/atexit-tests: New file.
36717         * tests/test-atexit.sh: New file.
36718         * tests/test-atexit.c: New file.
36719
36720 2007-03-10  Bruno Haible  <bruno@clisp.org>
36721
36722         * tests/test-binary-io.sh: Use temporary filenames that are not so
36723         likely to clash with those of other tests (in a parallel make).
36724         * tests/test-binary-io.c: Likewise.
36725
36726 2007-03-10  Bruno Haible  <bruno@clisp.org>
36727
36728         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
36729         fallback; use #error instead.
36730         Suggested by Simon Josefsson.
36731
36732 2007-03-10  Bruno Haible  <bruno@clisp.org>
36733
36734         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
36735         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
36736         first and the last.
36737
36738 2007-03-10  Bruno Haible  <bruno@clisp.org>
36739
36740         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
36741
36742 2007-03-10  Bruno Haible  <bruno@clisp.org>
36743
36744         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
36745         "make distcheck".
36746         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
36747         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
36748         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
36749
36750 2007-03-10  Bruno Haible  <bruno@clisp.org>
36751
36752         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
36753         variable.
36754         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
36755         variable.
36756
36757 2007-03-09  Eric Blake  <ebb9@byu.net>
36758         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
36759
36760         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
36761         types are not being provided by gnulib.
36762         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
36763         types are supported.
36764
36765 2007-03-10  Bruno Haible  <bruno@clisp.org>
36766
36767         * lib/stdio_.h (__attribute__): New macro.
36768         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
36769         vsprintf): Specify __attribute__ __format__ for GCC.
36770         Suggested by Eric Blake.
36771
36772 2007-03-09  Bruno Haible  <bruno@clisp.org>
36773
36774         * modules/printf-posix-tests: New file.
36775         * tests/test-printf-posix.sh: New file.
36776         * tests/test-printf-posix.c: New file.
36777
36778         * modules/printf-posix: New file.
36779         * lib/printf.c: New file.
36780         * m4/printf-posix-rpl.m4: New file.
36781         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
36782         REPLACE_PRINTF.
36783         * lib/stdio_.h (printf): New declaration.
36784         (format, __format__, ____printf____, ____scanf____, ____strftime____,
36785         ____strfmon____): New macros.
36786         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
36787         REPLACE_PRINTF.
36788
36789 2007-03-09  Bruno Haible  <bruno@clisp.org>
36790
36791         * tests/test-vasnprintf-posix2.sh: New file.
36792         * tests/test-vasnprintf-posix2.c: New file.
36793         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
36794         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
36795         (Makefile.am): Activate test-vasnprintf-posix2.sh.
36796
36797         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
36798         a locale dependent decimal point, rather than always '.'.
36799
36800 2007-03-09  Eric Blake  <ebb9@byu.net>
36801
36802         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
36803         spite of platforms like Tandem/NSK that define it to -1.
36804
36805 2007-03-08  Bruno Haible  <bruno@clisp.org>
36806
36807         * modules/vprintf-posix-tests: New file.
36808         * tests/test-vprintf-posix.sh: New file.
36809         * tests/test-vprintf-posix.c: New file.
36810         * tests/test-printf-posix.h: New file.
36811
36812         * modules/vprintf-posix: New file.
36813         * lib/vprintf.c: New file.
36814         * m4/vprintf-posix.m4: New file.
36815         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
36816         REPLACE_VPRINTF.
36817         * lib/stdio_.h (vprintf): New declaration.
36818         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
36819         REPLACE_VPRINTF.
36820
36821 2007-03-08  Bruno Haible  <bruno@clisp.org>
36822
36823         * modules/fprintf-posix-tests: New file.
36824         * tests/test-fprintf-posix.sh: New file.
36825         * tests/test-fprintf-posix.c: New file.
36826
36827         * modules/fprintf-posix: New file.
36828         * lib/fprintf.c: New file.
36829         * m4/fprintf-posix.m4: New file.
36830         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
36831         REPLACE_FPRINTF.
36832         * lib/stdio_.h (fprintf): New declaration.
36833         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
36834         REPLACE_FPRINTF.
36835
36836 2007-03-08  Bruno Haible  <bruno@clisp.org>
36837
36838         * modules/vfprintf-posix-tests: New file.
36839         * tests/test-vfprintf-posix.sh: New file.
36840         * tests/test-vfprintf-posix.c: New file.
36841         * tests/test-fprintf-posix.h: New file.
36842         * tests/test-fprintf-posix.out: New file.
36843
36844         * modules/vfprintf-posix: New file.
36845         * lib/vfprintf.c: New file.
36846         * m4/vfprintf-posix.m4: New file.
36847         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
36848         REPLACE_VFPRINTF.
36849         * lib/stdio_.h (vfprintf): New declaration.
36850         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
36851         REPLACE_VFPRINTF.
36852
36853 2007-03-08  Bruno Haible  <bruno@clisp.org>
36854
36855         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
36856
36857 2007-03-08  Bruno Haible  <bruno@clisp.org>
36858
36859         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
36860         instead of 'expr' invocations.
36861         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
36862         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
36863         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
36864         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
36865         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
36866         Suggested by Paul Eggert.
36867
36868 2007-03-08  Bruno Haible  <bruno@clisp.org>
36869
36870         * modules/fseterr-tests: New file.
36871         * tests/test-fseterr.c: New file.
36872
36873         * modules/fseterr: New file.
36874         * lib/fseterr.h: New file.
36875         * lib/fseterr.c: New file.
36876
36877 2007-03-08  Bruno Haible  <bruno@clisp.org>
36878
36879         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
36880         * lib/getopt_.h: Likewise.
36881         * lib/mbswidth.h: Likewise.
36882         * lib/setenv.h: Likewise.
36883         * lib/vasnprintf.h: Likewise.
36884         * lib/vasprintf.h: Likewise.
36885         * lib/verror.h: Likewise.
36886         * lib/xsetenv.h: Likewise.
36887         * lib/xvasprintf.h: Likewise.
36888
36889 2007-03-08  Jim Meyering  <jim@meyering.net>
36890
36891         * users.txt: Add parted.
36892
36893         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
36894
36895 2007-03-07  Bruno Haible  <bruno@clisp.org>
36896
36897         * m4/printf.m4: Make the shell script snippets copy&pastable.
36898
36899 2007-03-02  Bruno Haible  <bruno@clisp.org>
36900
36901         * lib/netinet_in_.h: New file.
36902         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
36903         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
36904         * modules/netinet_in (Files): Add lib/netinet_in_.h.
36905         (Depends-on): Add absolute-header.
36906         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
36907         into netinet/in.h.
36908
36909 2007-03-03  Bruno Haible  <bruno@clisp.org>
36910
36911         * lib/sys_select_.h: New file.
36912         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
36913         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
36914         * modules/sys_select (Files): Add lib/sys_select_.h.
36915         (Depends-on): Add absolute-header.
36916         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
36917         into sys/select.h.
36918
36919 2007-03-02  Bruno Haible  <bruno@clisp.org>
36920
36921         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
36922         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
36923         values.
36924         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
36925         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
36926         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
36927         * modules/sys_socket (Depends-on): Add absolute-header.
36928         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
36929         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
36930         (Include): Remove requirement of inclusion of <sys/types.h>.
36931
36932 2007-03-02  Bruno Haible  <bruno@clisp.org>
36933
36934         * lib/byteswap_.h (bswap_32): Fix formula.
36935
36936 2007-03-06  Bruno Haible  <bruno@clisp.org>
36937
36938         * modules/sprintf-posix-tests: New file.
36939         * tests/test-sprintf-posix.c: New file.
36940
36941         * modules/sprintf-posix: New file.
36942         * lib/sprintf.c: New file.
36943         * m4/sprintf-posix.m4: New file.
36944         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
36945         REPLACE_SPRINTF.
36946         * lib/stdio_.h (sprintf): New declaration.
36947         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
36948         REPLACE_SPRINTF.
36949
36950 2007-03-06  Bruno Haible  <bruno@clisp.org>
36951
36952         * modules/vsprintf-posix-tests: New file.
36953         * tests/test-vsprintf-posix.c: New file.
36954         * tests/test-sprintf-posix.h: New file.
36955
36956         * modules/vsprintf-posix: New file.
36957         * lib/vsprintf.c: New file.
36958         * m4/vsprintf-posix.m4: New file.
36959         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
36960         REPLACE_VSPRINTF.
36961         * lib/stdio_.h (vsprintf): New declaration.
36962         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
36963         REPLACE_VSPRINTF.
36964
36965 2007-03-06  Bruno Haible  <bruno@clisp.org>
36966
36967         * modules/vsnprintf (Depend-on): Remove minmax.
36968
36969 2007-03-06  Bruno Haible  <bruno@clisp.org>
36970
36971         * modules/snprintf-posix-tests: New file.
36972         * tests/test-snprintf-posix.c: New file.
36973
36974         * modules/snprintf-posix: New file.
36975         * m4/snprintf-posix.m4: New file.
36976         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
36977         gl_FUNC_SNPRINTF.
36978         (gl_FUNC_SNPRINTF): Invoke it.
36979         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
36980         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
36981         is set.
36982         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
36983
36984 2007-03-06  Bruno Haible  <bruno@clisp.org>
36985
36986         * modules/vsnprintf-posix-tests: New file.
36987         * tests/test-vsnprintf-posix.c: New file.
36988         * tests/test-snprintf-posix.h: New file.
36989
36990         * modules/vsnprintf-posix: New file.
36991         * m4/vsnprintf-posix.m4: New file.
36992         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
36993         gl_FUNC_VSNPRINTF.
36994         (gl_FUNC_VSNPRINTF): Invoke it.
36995         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
36996         * lib/stdio_.h (vsnprintf): Define as a replacement if
36997         REPLACE_VSNPRINTF is set.
36998         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
36999
37000 2007-03-06  Bruno Haible  <bruno@clisp.org>
37001
37002         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
37003         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
37004
37005 2007-03-06  Bruno Haible  <bruno@clisp.org>
37006
37007         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
37008         (asinl): Declare also if HAVE_DECL_ASINL is set.
37009         (atanl): Declare also if HAVE_DECL_ATANL is set.
37010         (ceill): Declare also if HAVE_DECL_CEILL is set.
37011         (cosl): Declare also if HAVE_DECL_COSL is set.
37012         (expl): Declare also if HAVE_DECL_EXPL is set.
37013         (floorl): Declare also if HAVE_DECL_FLOORL is set.
37014         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
37015         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
37016         (logl): Declare also if HAVE_DECL_LOGL is set.
37017         (sinl): Declare also if HAVE_DECL_SINL is set.
37018         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
37019         (tanl): Declare also if HAVE_DECL_TANL is set.
37020         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
37021         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
37022         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
37023         declaration of frexpl, ldexpl.
37024         * modules/printf-frexpl (Depends-on): Add math.
37025         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
37026
37027 2007-03-05  Bruno Haible  <bruno@clisp.org>
37028
37029         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
37030         frexpl and ldexpl are declared.
37031         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
37032
37033 2007-03-05  Bruno Haible  <bruno@clisp.org>
37034
37035         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
37036         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
37037
37038 2007-03-05  Bruno Haible  <bruno@clisp.org>
37039
37040         * lib/stdio_.h: Include <stddef.h>.
37041
37042 2007-03-05  Bruno Haible  <bruno@clisp.org>
37043
37044         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
37045
37046 2007-03-05  Bruno Haible  <bruno@clisp.org>
37047
37048         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
37049         NetBSD 4, from Ralf Wildenhues.
37050
37051 2007-03-04  Bruno Haible  <bruno@clisp.org>
37052
37053         * lib/vasprintf.h: Update #if logic for the case when the functions
37054         exist but are overridden.
37055
37056 2007-03-04  Bruno Haible  <bruno@clisp.org>
37057
37058         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
37059         implementations: glibc-2.4 and MacOS X 10.3.
37060         * tests/test-vasnprintf-posix.c (test_function): Test also the case
37061         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
37062         * tests/test-vasprintf-posix.c (test_function): Likewise.
37063
37064 2007-03-04  Bruno Haible  <bruno@clisp.org>
37065
37066         * modules/vasprintf-posix-tests: New file.
37067         * tests/test-vasprintf-posix.c: New file.
37068
37069         * modules/vasprintf-posix: New file.
37070         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
37071         defined.
37072         * m4/vasprintf-posix.m4: New file.
37073         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
37074         gl_FUNC_VASPRINTF.
37075         (gl_FUNC_VASPRINTF): Invoke it.
37076         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
37077         here.
37078         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
37079
37080 2007-03-04  Bruno Haible  <bruno@clisp.org>
37081
37082         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
37083         REPLACE_GETTIMEOFDAY.
37084         * modules/sys_time (Makefile.am): Likewise.
37085         * m4/sys_time_h.m4: Likewise.
37086         * m4/gettimeofday.m4: Likewise.
37087
37088 2007-03-04  Bruno Haible  <bruno@clisp.org>
37089
37090         * modules/vasnprintf-posix-tests: New file.
37091         * tests/test-vasnprintf-posix.c: New file.
37092
37093         * modules/vasnprintf-posix: New file.
37094         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
37095         printf-frexpl.h.
37096         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
37097         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
37098         REPLACE_VASNPRINTF is defined.
37099         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
37100         gl_FUNC_VASNPRINTF.
37101         (gl_FUNC_VASNPRINTF): Invoke it.
37102         * m4/vasnprintf-posix.m4: New file.
37103         * m4/printf.m4: New file.
37104
37105 2007-03-04  Bruno Haible  <bruno@clisp.org>
37106
37107         Compile progreloc.c only if --enable-relocatable is specified.
37108         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
37109         if --enable-relocatable was specified.
37110         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
37111         lib_SOURCES.
37112
37113 2007-03-04  Jim Meyering  <jim@meyering.net>
37114
37115         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
37116         Use it consistently, rather than enumerating errno constants.
37117
37118 2007-03-04  Bruno Haible  <bruno@clisp.org>
37119
37120         * modules/xvasprintf-tests: New file.
37121         * tests/test-xvasprintf.c: New file.
37122
37123         * modules/vasprintf-tests: New file.
37124         * tests/test-vasprintf.c: New file.
37125
37126         * modules/vasnprintf-tests: New file.
37127         * tests/test-vasnprintf.c: New file.
37128
37129         * modules/vsnprintf-tests: New file.
37130         * tests/test-vsnprintf.c: New file.
37131
37132         * modules/snprintf-tests: New file.
37133         * tests/test-snprintf.c: New file.
37134
37135 2007-03-04  Bruno Haible  <bruno@clisp.org>
37136
37137         Compile relocatable.c only if --enable-relocatable is specified.
37138         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
37139         gl_RELOCATABLE_LIBRARY.
37140         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
37141         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
37142         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
37143         gl_RELOCATABLE_LIBRARY.
37144         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
37145         (Makefile.am): Remove lib_SOURCES.
37146         * modules/relocatable-lib-lgpl (configure.ac): Invoke
37147         gl_RELOCATABLE_LIBRARY.
37148         (Makefile.am): Remove lib_SOURCES.
37149         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
37150         always.
37151         * modules/relocatable-prog-wrapper (configure.ac): Invoke
37152         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
37153
37154 2007-03-04  Bruno Haible  <bruno@clisp.org>
37155
37156         * modules/argmatch-tests: New file.
37157         * tests/test-argmatch.c: New file.
37158
37159         * tests/test-allocsa.c (main): Halve the number of loop runs.
37160
37161         * modules/alloca-opt-tests: New file.
37162         * tests/test-alloca-opt.c: New file.
37163
37164 2007-03-04  Jim Meyering  <jim@meyering.net>
37165
37166         Work around difference between Linux ACLs and Solaris 10 ZFS.
37167         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
37168         for EINVAL.
37169
37170 2007-03-03  Bruno Haible  <bruno@clisp.org>
37171
37172         * modules/relocatable-prog (Depends-on): Add back progreloc's
37173         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
37174
37175 2007-03-03  Bruno Haible  <bruno@clisp.org>
37176
37177         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
37178         * modules/relocatable-lib: New file.
37179
37180 2007-03-03  Bruno Haible  <bruno@clisp.org>
37181
37182         * modules/relocatable-prog: Renamed from modules/relocatable.
37183         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
37184
37185 2007-03-03  Bruno Haible  <bruno@clisp.org>
37186
37187         * modules/relocatable-script (Files): Add doc/relocatable.texi,
37188         m4/relocatable-lib.m4.
37189         (Depends-on): Remove 'relocatable'.
37190         (configure.ac): Add gl_RELOCATABLE_NOP.
37191
37192 2007-03-03  Bruno Haible  <bruno@clisp.org>
37193
37194         * modules/relocatable-prog-wrapper: New file.
37195         * modules/relocatable (Depends-on): Add it. Remove all other
37196         dependencies except progname.
37197         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
37198
37199         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
37200         (gl_FUNC_STRERROR): Nop.
37201         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
37202
37203         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
37204         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
37205
37206         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
37207         (gl_FUNC_READLINK): Update.
37208
37209         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
37210
37211 2007-03-03  Bruno Haible  <bruno@clisp.org>
37212
37213         * lib/xreadlink.c: Include <unistd.h> unconditionally.
37214         * modules/xreadlink (Depends-on): Add unistd.
37215         * modules/xreadlink-with-size (Depends-on): Likewise.
37216
37217 2007-03-03  Bruno Haible  <bruno@clisp.org>
37218
37219         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
37220         extracted from gt_FUNC_SETENV.
37221         (gt_FUNC_SETENV): Remove macro.
37222         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
37223         remove gt_FUNC_SETENV.
37224
37225 2007-03-03  Bruno Haible  <bruno@clisp.org>
37226
37227         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
37228         ENABLE_RELOCATABLE here.
37229         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
37230
37231 2007-03-03  Bruno Haible  <bruno@clisp.org>
37232
37233         * modules/rbtreehash-list-tests (Depends-on): Add progname.
37234         * tests/test-rbtreehash_list.c: Include progname.h.
37235         (main): Call set_program_name.
37236
37237         * modules/rbtree-oset-tests (Depends-on): Add progname.
37238         * tests/test-rbtree_oset.c: Include progname.h.
37239         (main): Call set_program_name.
37240
37241         * modules/rbtree-list-tests (Depends-on): Add progname.
37242         * tests/test-rbtree_list.c: Include progname.h.
37243         (main): Call set_program_name.
37244
37245         * modules/linked-list-tests (Depends-on): Add progname.
37246         * tests/test-linked_list.c: Include progname.h.
37247         (main): Call set_program_name.
37248
37249 2007-03-03  Bruno Haible  <bruno@clisp.org>
37250
37251         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
37252         All uses of __restrict changed to _Restrict_.
37253         * lib/glob_.h (__restrict): Remove macro.
37254
37255 2007-03-02  Bruno Haible  <bruno@clisp.org>
37256
37257         * modules/gettext (configure.ac): Require gettext infrastructure
37258         from version 0.16.1.
37259
37260 2007-03-02  Bruno Haible  <bruno@clisp.org>
37261
37262         * modules/linkedhash-list-tests (Depends-on): Add progname.
37263         * tests/test-linkedhash_list.c: Include progname.h.
37264         (main): Call set_program_name.
37265
37266         * modules/carray-list-tests (Depends-on): Add progname.
37267         * tests/test-carray_list.c: Include progname.h.
37268         (main): Call set_program_name.
37269
37270         * modules/avltreehash-list-tests (Depends-on): Add progname.
37271         * tests/test-avltreehash_list.c: Include progname.h.
37272         (main): Call set_program_name.
37273
37274         * modules/avltree-oset-tests (Depends-on): Add progname.
37275         * tests/test-avltree_oset.c: Include progname.h.
37276         (main): Call set_program_name.
37277
37278         * modules/avltree-list-tests (Depends-on): Add progname.
37279         * tests/test-avltree_list.c: Include progname.h.
37280         (main): Call set_program_name.
37281
37282         * modules/array-oset-tests (Depends-on): Add progname.
37283         * tests/test-array_oset.c: Include progname.h.
37284         (main): Call set_program_name.
37285
37286         * modules/array-list-tests (Depends-on): Add progname.
37287         * tests/test-array_list.c: Include progname.h.
37288         (main): Call set_program_name.
37289
37290         * modules/argp-tests (Depends-on): Add progname.
37291         * tests/test-argp.c: Include argp.h first. Include progname.h.
37292         (main): Call set_program_name.
37293
37294 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
37295
37296         * doc/gnulib-tool.texi (Initial import): Reword description of
37297         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
37298         limited effect even if defined after the first system include.
37299
37300 2007-03-01  Bruno Haible  <bruno@clisp.org>
37301
37302         * build-aux/config.libpath: Update to libtool-1.5.22.
37303         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
37304
37305 2007-03-01  Bruno Haible  <bruno@clisp.org>
37306
37307         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
37308         foo_CFLAGS.
37309         Reported by Ralf Wildenhues.
37310
37311 2007-03-01  Bruno Haible  <bruno@clisp.org>
37312
37313         * build-aux/install-reloc: Remove object files left over by some
37314         compilers.
37315         Reported by Ralf Wildenhues.
37316
37317 2007-03-01  Bruno Haible  <bruno@clisp.org>
37318
37319         * build-aux/install-reloc: Break long lines.
37320
37321 2007-03-01  Bruno Haible  <bruno@clisp.org>
37322
37323         * doc/relocatable.texi: Document that it may not work on OpenBSD.
37324         Reported by Ralf Wildenhues.
37325
37326 2007-03-01  Bruno Haible  <bruno@clisp.org>
37327
37328         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
37329         include ordering constraints.
37330
37331 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
37332
37333         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
37334         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
37335         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
37336         as another example.
37337         * lib/time_.h: Fix misspelling.
37338         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
37339         Require gl_HEADER_TIME_H_DEFAULTS.
37340         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
37341         * m4/time_r.m4 (gl_TIME_R): Likewise.
37342         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
37343
37344 2007-03-01  Bruno Haible  <bruno@clisp.org>
37345
37346         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
37347         * m4/utimens.m4 (gl_UTIMENS): Likewise.
37348
37349 2007-03-01  Jim Meyering  <jim@meyering.net>
37350
37351         * modules/xreadlink (Maintainer): Add my name.
37352         * modules/xreadlink-with-size (Depends-on): Alphabetize.
37353
37354 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
37355             Bruno Haible  <bruno@clisp.org>
37356
37357         * build-aux/install-reloc: Compile also c-ctype.c.
37358         * build-aux/relocatable.sh.in: New file.
37359         * doc/relocatable.texi: New file.
37360         * doc/relocatable-maint.texi: New file.
37361         * doc/gnulib.texi: Include relocatable-maint.texi.
37362         * lib/progreloc.c: Include unistd.h unconditionally.
37363         * lib/relocwrapper.c: Include unistd.h unconditionally.
37364         Include c-ctype.h.
37365         (add_dotbin): Use c_tolower.
37366         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
37367         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
37368         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
37369         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
37370         to m4/relocatable-lib.m4.
37371         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
37372         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
37373         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
37374         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
37375         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
37376         * modules/relocatable: New file.
37377         * modules/relocatable-lib: New file.
37378         * modules/relocatable-script: New file.
37379
37380 2007-02-28  Bruno Haible  <bruno@clisp.org>
37381
37382         Import --enable-relocatable infrastructure.
37383         * build-aux/config.libpath: New file, from GNU gettext.
37384         * build-aux/install-reloc: New file, from GNU gettext.
37385         * build-aux/reloc-ldflags: New file, from GNU gettext.
37386         * lib/relocatable.h: New file, from GNU gettext.
37387         * lib/relocatable.c: New file, from GNU gettext.
37388         * lib/relocwrapper.c: New file, from GNU gettext.
37389         * m4/relocatable.m4: New file, from GNU gettext.
37390
37391 2007-02-28  Bruno Haible  <bruno@clisp.org>
37392
37393         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
37394
37395         * modules/xreadlink: New file, from GNU gettext with modifications.
37396         * lib/xreadlink.c: New file, from GNU gettext.
37397         * lib/xreadlink.h: Add comments.
37398         (xreadlink): New declaration.
37399
37400         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
37401         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
37402         lib/xreadlink-with-size.c.
37403         (configure.ac): Remove gl_XREADLINK invocation.
37404         (Makefile.am): Augment lib_SOURCES.
37405         * m4/xreadlink.m4: Remove file.
37406         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
37407         (xreadlink_with_size): Renamed from xreadink.
37408         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
37409         * modules/canonicalize (Depends-on): Replace xreadlink with
37410         xreadlink-with-size.
37411         * lib/canonicalize.c (canonicalize_filename_mode): Update.
37412
37413 2007-02-25  Jim Meyering  <jim@meyering.net>
37414
37415         * build-aux/announce-gen: When complaining about excess arguments,
37416         list them.
37417
37418 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
37419
37420         * README: Document signed integer overflow situation more
37421         accurately.
37422
37423 2007-02-25  Bruno Haible  <bruno@clisp.org>
37424
37425         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
37426         'a' or 'A' conversion.
37427
37428 2007-02-25  Bruno Haible  <bruno@clisp.org>
37429
37430         * modules/filename: Renamed from modules/pathname.
37431         (Files): Replace lib/pathname.h with lib/filename.h. Replace
37432         lib/concatpath.c with lib/concat-filename.c.
37433         (Makefile.am): Update.
37434         (Include): Replace pathname.h with filename.h.
37435         * lib/filename.h: Renamed from lib/pathname.h.
37436         (concatenated_filename): Renamed from concatenated_pathname.
37437         * lib/concat-filename.c: Renamed from lib/concatpath.c.
37438         (concatenated_filename): Renamed from concatenated_pathname.
37439         * lib/findprog.c: Include filename.h instead of pathname.h.
37440         (find_in_path): Update.
37441         * lib/javacomp.c: Include filename.h instead of pathname.h.
37442         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
37443         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
37444         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
37445         is_oldgcj_14_13_usable, is_javac_usable): Update.
37446         * lib/javaexec.c: Include filename.h instead of pathname.h.
37447         (execute_java_class): Update.
37448         * modules/findprog: Update.
37449         * modules/javacomp: Update.
37450         * modules/javaexec: Update.
37451         * MODULES.html.sh (File system functions): Add 'filename', remove
37452         'pathname'.
37453
37454 2007-02-25  Bruno Haible  <bruno@clisp.org>
37455
37456         * modules/printf-frexpl-tests: New file.
37457         * tests/test-printf-frexpl.c: New file.
37458
37459         * modules/printf-frexpl: New file.
37460         * lib/printf-frexpl.h: New file.
37461         * lib/printf-frexpl.c: New file.
37462         * m4/printf-frexpl.m4: New file.
37463
37464 2007-02-25  Bruno Haible  <bruno@clisp.org>
37465
37466         * modules/printf-frexp-tests: New file.
37467         * tests/test-printf-frexp.c: New file.
37468
37469         * modules/printf-frexp: New file.
37470         * lib/printf-frexp.h: New file.
37471         * lib/printf-frexp.c: New file.
37472         * m4/printf-frexp.m4: New file.
37473
37474 2007-02-25  Bruno Haible  <bruno@clisp.org>
37475
37476         Assume automake >= 1.10 for the tests.
37477         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
37478         * modules/arctwo-tests: Likewise.
37479         * modules/argp-tests: Likewise.
37480         * modules/avltree-list-tests: Likewise.
37481         * modules/avltree-oset-tests: Likewise.
37482         * modules/avltreehash-list-tests: Likewise.
37483         * modules/carray-list-tests: Likewise.
37484         * modules/crc-tests: Likewise.
37485         * modules/des-tests: Likewise.
37486         * modules/gc-arcfour-tests: Likewise.
37487         * modules/gc-arctwo-tests: Likewise.
37488         * modules/gc-des-tests: Likewise.
37489         * modules/gc-hmac-md5-tests: Likewise.
37490         * modules/gc-hmac-sha1-tests: Likewise.
37491         * modules/gc-md2-tests: Likewise.
37492         * modules/gc-md4-tests: Likewise.
37493         * modules/gc-md5-tests: Likewise.
37494         * modules/gc-pbkdf2-sha1-tests: Likewise.
37495         * modules/gc-rijndael-tests: Likewise.
37496         * modules/gc-sha1-tests: Likewise.
37497         * modules/gc-tests: Likewise.
37498         * modules/getaddrinfo-tests: Likewise.
37499         * modules/hmac-md5-tests: Likewise.
37500         * modules/hmac-sha1-tests: Likewise.
37501         * modules/linked-list-tests: Likewise.
37502         * modules/linkedhash-list-tests: Likewise.
37503         * modules/lock-tests: Likewise.
37504         * modules/md2-tests: Likewise.
37505         * modules/md4-tests: Likewise.
37506         * modules/md5-tests: Likewise.
37507         * modules/rbtree-list-tests: Likewise.
37508         * modules/rbtree-oset-tests: Likewise.
37509         * modules/rbtreehash-list-tests: Likewise.
37510         * modules/read-file-tests: Likewise.
37511         * modules/rijndael-tests: Likewise.
37512         * modules/stdint-tests: Likewise.
37513         * modules/tls-tests: Likewise.
37514
37515 2007-02-24  Bruno Haible  <bruno@clisp.org>
37516
37517         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
37518         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
37519         function; instead check whether isnan with a double argument links.
37520         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
37521         function; instead check whether isnan with a 'long double' argument
37522         links.
37523         Reported by Eric Blake <ebb9@byu.net>.
37524
37525 2007-02-24  Bruno Haible  <bruno@clisp.org>
37526
37527         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
37528         defined.
37529         * lib/isnanl.c: Remove all code. Just include isnan.c.
37530         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
37531
37532 2007-02-25  Jim Meyering  <jim@meyering.net>
37533
37534         Avoid conflicting types for 'unsetenv' on FreeBSD.
37535         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
37536         conflicting with FreeBSD's (5.0 and 6.1) function declaration
37537         in stdlib.h.
37538
37539 2007-02-24  Bruno Haible  <bruno@clisp.org>
37540
37541         * modules/isnanl-nolibm-tests: New file.
37542         * tests/test-isnanl.c: New file.
37543
37544         * modules/isnanl-nolibm: New file.
37545         * lib/isnanl.h: New file.
37546         * lib/isnanl.c: New file.
37547         * m4/isnanl.m4: New file.
37548
37549 2007-02-24  Bruno Haible  <bruno@clisp.org>
37550
37551         * modules/isnan-nolibm-tests: New file.
37552         * tests/test-isnan.c: New file.
37553
37554         * modules/isnan-nolibm: New file.
37555         * lib/isnan.h: New file.
37556         * lib/isnan.c: New file.
37557         * m4/isnan.m4: New file.
37558
37559 2007-02-24  Bruno Haible  <bruno@clisp.org>
37560
37561         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
37562         assume that an exponent fits in 20 bits.
37563
37564 2007-02-24  Jim Meyering  <jim@meyering.net>
37565
37566         * m4/regex.m4: Update the description of the configure-time option,
37567         --without-included-regex, to state accurately what the defaults are,
37568         and perhaps to give people an idea why using this option is risky.
37569
37570 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
37571
37572         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
37573         loops on small arguments.  This attempts to avoid the problem
37574         Bruno Haible reported for AIX 4.3.2 in
37575         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
37576
37577 2007-02-23  Bruno Haible  <bruno@clisp.org>
37578
37579         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
37580         Needed for help2man.
37581
37582 2007-02-23  Karl Berry  <karl@gnu.org>
37583
37584         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
37585         exists, foo.h should be cvs-ignored, not committed.
37586
37587 2007-02-23  Eric Blake  <ebb9@byu.net>
37588
37589         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
37590         * lib/stat-time.h (includes): Likewise.
37591         * lib/utimecmp.c (includes): Likewise.
37592         * lib/utimens.h (includes): Likewise.
37593         * lib/getdate.y (includes): Also include "timespec.h" for use
37594         internal to the module.
37595         * modules/utimens (Depends-on): Revert yesterday's patch.
37596         * modules/nanosleep (Depends-on): Add missing dependency.
37597
37598 2007-02-22  Bruno Haible  <bruno@clisp.org>
37599
37600         * lib/glob.c: Don't include getlogin_r.h.
37601
37602 2007-02-22  Jim Meyering  <jim@meyering.net>
37603
37604         * modules/utimens (Depends-on): Add timespec, required for
37605         utimens.h's inclusion of timespec.h.
37606
37607 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
37608
37609         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
37610         long unreadable paths in GNU/Linux.  Problem reported by Andreas
37611         Schwab in
37612         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
37613         I'll try to think of a better way to fix the Solaris problem.
37614
37615         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
37616         like glibc; on Solaris 10, it fails with errno == EINVAL.
37617         POSIX says the behavior is unspecified if the first argument is NULL,
37618         so play it safe and never pass NULL to the system getcwd.
37619
37620 2007-02-21  Jim Meyering  <jim@meyering.net>
37621
37622         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
37623         of gettimeofday.  It would conflict with the one now always
37624         provided via sys_time_.h.  Reported by Matthew Woehlke, as
37625         an IRIX 6.5 build failure.
37626
37627 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
37628
37629         Minor fixups to port to Solaris 10 with Sun C 5.8.
37630         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
37631         * modules/getcwd (Depends-on): Add dirfd.
37632         * lib/putenv.c (putenv): #undef it.
37633         (rpl_putenv): New decl.
37634         (malloc, free): Include <stdlib.h> rather than prototyping separately.
37635
37636 2007-02-20  Bruno Haible  <bruno@clisp.org>
37637
37638         * modules/stdio-tests: New file.
37639         * tests/test-stdio.c: New file.
37640
37641         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
37642         (Depends-on): Add stdio.
37643         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
37644         (Include): Use <stdio.h> instead of vsnprintf.h.
37645         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
37646         HAVE_DECL_VSNPRINTF.
37647         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
37648
37649         * modules/snprintf (Files): Remove lib/snprintf.h.
37650         (Depends-on): Add stdio.
37651         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
37652         (Include): Use <stdio.h> instead of snprintf.h.
37653         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
37654         HAVE_DECL_SNPRINTF.
37655         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
37656         * lib/getaddrinfo.c: Likewise.
37657
37658         * modules/stdio: New file.
37659         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
37660         * lib/snprintf.h: Remove file.
37661         * lib/vsnprintf.h: Remove file.
37662         * lib/.cppi-disable: Remove snprintf.h.
37663         * m4/stdio_h.m4: New file.
37664         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
37665
37666 2007-02-20  Jim Meyering  <jim@meyering.net>
37667
37668         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
37669         used by e.g., mingw.  From Bruno Haible.
37670
37671 2007-02-19  Bruno Haible  <bruno@clisp.org>
37672
37673         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
37674         warnings.
37675         Reported by Ben Pfaff <blp@cs.stanford.edu>.
37676
37677 2007-02-19  Bruno Haible  <bruno@clisp.org>
37678
37679         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
37680         from mingw users.
37681
37682 2007-02-19  Bruno Haible  <bruno@clisp.org>
37683
37684         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
37685         warnings.
37686         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
37687
37688 2007-02-19  Jim Meyering  <jim@meyering.net>
37689
37690         Don't use FD after a successful "fdopendir (fd)".
37691         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
37692         Reset it by calling dirfd on the just-obtained DIR*.
37693
37694         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
37695         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
37696
37697 2007-02-18  Bruno Haible  <bruno@clisp.org>
37698
37699         * lib/readlink.c: Include <unistd.h>.
37700         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
37701         HAVE_READLINK.
37702         * modules/readlink (Depends-on): Add unistd.
37703         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37704         (Include): Add <unistd.h>.
37705
37706         * lib/getlogin_r.h: Remove file.
37707         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
37708         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
37709         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
37710         HAVE_DECL_GETLOGIN_R.
37711         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
37712         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37713         (Include): Use <unistd.h> instead of getlogin_r.h.
37714
37715         * lib/getcwd.h: Remove file.
37716         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
37717         * lib/xgetcwd.c: Likewise.
37718         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
37719         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
37720         * modules/getcwd (Files): Remove lib/getcwd.h.
37721         (Depends-on): Add unistd.
37722         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37723         (Include): Use <unistd.h> instad of getcwd.h.
37724
37725         * lib/ftruncate.c: Include <unistd.h> first.
37726         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
37727         Set HAVE_FTRUNCATE.
37728         * modules/ftruncate (Depends-on): Add unistd.
37729         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37730
37731         * lib/fchdir.c: Include <unistd.h> first.
37732         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
37733         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
37734         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
37735         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37736         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
37737
37738         * lib/dup2.c: Include <unistd.h> first.
37739         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
37740         HAVE_DUP2.
37741         * modules/dup2 (Depends-on): Add unistd.
37742         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37743
37744         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
37745         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
37746         REPLACE_CHOWN. Don't define chown as a macro here.
37747         * modules/chown (Depends-on): Add unistd.
37748         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37749
37750         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
37751         Add definition for GL_LINK_WARNING.
37752         (chown, dup2): New declarations.
37753         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
37754         link warning.
37755         (ftruncate): New declaration.
37756         (getcwd): New declaration, taken from old getcwd.h.
37757         (getlogin_r): New declaration, taken from old getlogin_r.h.
37758         (readlink): New declaration.
37759         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
37760         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
37761         (gl_PREREQ_UNISTD): Remove macro.
37762         (gl_UNISTD_MODULE_INDICATOR): New macro.
37763         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
37764         many new variables. Don't set UNISTD_H.
37765         * modules/unistd (Description): Change.
37766         (Depends-on): Add link-warning.
37767         (configure.ac): Update.
37768         (Makefile.am): Create unistd.h always. Substitute many new variables
37769         into it.
37770
37771 2007-02-18  Bruno Haible  <bruno@clisp.org>
37772
37773         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
37774         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
37775         HAVE_GETSUBOPT.
37776         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
37777         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
37778         * lib/getsubopt.h: Remove file.
37779         * modules/getsubopt (Files): Remove lib/getsubopt.h.
37780         (Depends-on): Add stdlib.
37781         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
37782         (Includes): Use <stdlib.h> instead of getsubopt.h.
37783         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
37784         Set HAVE_GETSUBOPT.
37785         * lib/getsubopt.c: Don't include getsubopt.h.
37786
37787 2007-02-18  Bruno Haible  <bruno@clisp.org>
37788
37789         * modules/fchdir (Depends-on): Add dup2.
37790
37791 2007-02-18  Bruno Haible  <bruno@clisp.org>
37792
37793         * lib/stdlib_.h: Handle glibc's special invocation convention
37794         specially.
37795
37796 2007-02-18  Bruno Haible  <bruno@clisp.org>
37797
37798         * modules/stdlib-tests: New file.
37799         * tests/test-stdlib.c: New file.
37800
37801         * modules/mkstemp (Files): Remove lib/mkstemp.h.
37802         (Depends-on): Add stdlib.
37803         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
37804         (Includes): Use <stdlib.h> instead of mkstemp.h.
37805         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
37806         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
37807         * lib/mkstemp.c: Don't include mkstemp.h.
37808         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
37809         * lib/stdlib--.h: Don't include mkstemp.h.
37810
37811         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
37812         (Depends-on): Add stdlib.
37813         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
37814         (Includes): Use <stdlib.h> instead of mkdtemp.h.
37815         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
37816         HAVE_MKDTEMP.
37817         * lib/mkdtemp.c: Don't include mkdtemp.h.
37818         * lib/clean-temp.c: Don't include mkdtemp.h.
37819
37820         * modules/exit (Files): Remove lib/exit.h.
37821         (Depends-on): Add stdlib.
37822         (Makefile.am): Remove lib_SOURCES.
37823         (Include): Use <stdlib.h> instead of exit.h.
37824         * lib/argmatch.c: Don't include exit.h.
37825         * lib/execute.c: Likewise.
37826         * lib/pagealign_alloc.c: Likewise.
37827         * lib/pipe.c: Likewise.
37828         * lib/wait-process.c: Likewise.
37829         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
37830         * lib/exitfail.c: Likewise.
37831         * lib/savewd.c: Likewise.
37832         * lib/xsetenv.c: Likewise.
37833
37834         * modules/stdlib: New file.
37835         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
37836         and extra comments about mkstemp().
37837         * lib/exit.h: Remove file.
37838         * lib/mkdtemp.h: Remove file.
37839         * lib/mkstemp.h: Remove file.
37840         * m4/stdlib_h.m4: New file.
37841         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
37842
37843 2007-02-18  Bruno Haible  <bruno@clisp.org>
37844
37845         * modules/math-tests: New file.
37846         * tests/test-math.c: New file.
37847
37848         * modules/math: New file.
37849         * modules/mathl (Files): Remove lib/mathl.h.
37850         (Depends-on): Add math.
37851         (Makefile.am): Don't mention mathl.h.
37852         (Include): Use <math.h> instead of mathl.h.
37853         * lib/math_.h: New file.
37854         * lib/mathl.h: Remove file.
37855         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
37856         mathl.h.
37857         * lib/asinl.c: Likewise.
37858         * lib/atanl.c: Likewise.
37859         * lib/ceill.c: Likewise.
37860         * lib/cosl.c: Likewise.
37861         * lib/expl.c: Likewise.
37862         * lib/floorl.c: Likewise.
37863         * lib/frexpl.c: Likewise.
37864         * lib/ldexpl.c: Likewise.
37865         * lib/logl.c: Likewise.
37866         * lib/sincosl.c: Likewise.
37867         * lib/sinl.c: Likewise.
37868         * lib/sqrtl.c: Likewise.
37869         * lib/tanl.c: Likewise.
37870         * lib/trigl.c: Likewise.
37871         * m4/math_h.m4: New file.
37872         * MODULES.html.sh (Mathematics): Add math.
37873
37874 2007-02-17  Bruno Haible  <bruno@clisp.org>
37875
37876         * modules/wctype-tests: New file.
37877         * tests/test-wctype.c: New file.
37878
37879         * modules/wchar-tests: New file.
37880         * tests/test-wchar.c: New file.
37881
37882         * modules/unistd-tests: New file.
37883         * tests/test-unistd.c: New file.
37884
37885         * modules/time-tests: New file.
37886         * tests/test-time.c: New file.
37887
37888         * modules/sysexits-tests: New file.
37889         * tests/test-sysexits.c: New file.
37890
37891         * modules/sys_time-tests: New file.
37892         * tests/test-sys_time.c: New file.
37893
37894         * modules/sys_stat-tests: New file.
37895         * tests/test-sys_stat.c: New file.
37896
37897         * modules/sys_socket-tests: New file.
37898         * tests/test-sys_socket.c: New file.
37899
37900         * modules/sys_select-tests: New file.
37901         * tests/test-sys_select.c: New file.
37902
37903         * modules/string-tests: New file.
37904         * tests/test-string.c: New file.
37905
37906         * modules/stdbool-tests: New file.
37907         * tests/test-stdbool.c: New file.
37908
37909         * modules/netinet_in-tests: New file.
37910         * tests/test-netinet_in.c: New file.
37911
37912         * modules/inttypes-tests: New file.
37913         * tests/test-inttypes.c: New file.
37914
37915         * modules/fcntl-tests: New file.
37916         * tests/test-fcntl.c: New file.
37917
37918         * modules/byteswap-tests: New file.
37919         * tests/test-byteswap.c: New file.
37920
37921         * modules/arpa_inet-tests: New file.
37922         * tests/test-arpa_inet.c: New file.
37923
37924 2007-02-17  Bruno Haible  <bruno@clisp.org>
37925
37926         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
37927         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
37928         if the corresponding module is not enabled. Emit link warnings if
37929         the function is used nevertheless.
37930         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
37931         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
37932         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
37933         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
37934         * modules/inttypes (Depends-on): Add link-warning.
37935         (Makefile.am): Copy the contents of build-aux/link-warning.h into
37936         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
37937         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
37938         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
37939         * modules/imaxdiv (configure.ac): Likewise.
37940         * modules/strtoimax (configure.ac): Likewise.
37941         * modules/strtoumax (configure.ac): Likewise.
37942
37943 2007-02-17  Bruno Haible  <bruno@clisp.org>
37944
37945         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
37946         gl_STRING_MODULE_INDICATOR_DEFAULTS.
37947         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
37948         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
37949
37950 2007-02-17  Bruno Haible  <bruno@clisp.org>
37951
37952         * modules/link-warning: New file.
37953         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
37954         * lib/string_.h (GL_LINK_WARNING): Remove definition.
37955         * modules/string (Depends-on): Add link-warning.
37956         (Makefile.am): Copy the contents of build-aux/link-warning.h into
37957         string.h.
37958         * MODULES.html.sh (Support for building libraries and executables): Add
37959         link-warning.
37960
37961 2007-02-17  Bruno Haible  <bruno@clisp.org>
37962
37963         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
37964         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
37965         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
37966         long lines.
37967
37968 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
37969             Bruno Haible  <bruno@clisp.org>
37970
37971         * modules/tmpfile: New file.
37972         * lib/tmpfile.c: New file.
37973         * m4/tmpfile.m4: New file.
37974         * MODULES.html.sh (func_all_modules): New section "Input/output".
37975
37976 2007-02-15  Bruno Haible  <bruno@clisp.org>
37977
37978         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
37979         (supports_delete_on_close): New function.
37980         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
37981
37982 2007-02-14  Bruno Haible  <bruno@clisp.org>
37983
37984         * modules/mbspcasecmp-tests: New file.
37985         * tests/test-mbspcasecmp.sh: New file.
37986         * tests/test-mbspcasecmp.c: New file.
37987
37988         New module mbspcasecmp.
37989         * modules/mbspcasecmp: New file.
37990         * lib/mbspcasecmp.c: New file.
37991         * lib/string_.h (strncasecmp): Change warning message.
37992         (mbspcasecmp): New declaration.
37993         * m4/mbspcasecmp.m4: New file.
37994         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
37995         GNULIB_MBSPCASECMP.
37996         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
37997         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
37998
37999 2007-02-14  Bruno Haible  <bruno@clisp.org>
38000
38001         * modules/mbsncasecmp-tests: New file.
38002         * tests/test-mbsncasecmp.sh: New file.
38003         * tests/test-mbsncasecmp.c: New file.
38004
38005         New module mbsncasecmp.
38006         * modules/mbsncasecmp: New file.
38007         * lib/mbsncasecmp.c: New file.
38008         * lib/string_.h (mbsncasecmp): New declaration.
38009         * m4/mbsncasecmp.m4: New file.
38010         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38011         GNULIB_MBSNCASECMP.
38012         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
38013         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
38014
38015 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
38016
38017         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
38018         Verify that it doesn't overlap with our flags.
38019         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
38020         do not have the desired effect in multibyte locales; instead, use
38021         mbscasecmp.
38022         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
38023         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
38024         we don't require GNU fnmatch ourselves (if our users require it, they
38025         should do so explicitly).
38026
38027         Fix regex code so it doesn't rely on strcasecmp.
38028         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
38029         Otherwise, include gnulib's langinfo.h.
38030         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
38031         undesirable behavior in non-C locales.  Instead, rely on localecharset.
38032         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
38033         * modules/regex (FILES): Remove m4/codeset.m4.
38034         (Depends-on): Add localcharset.  Remove strcase.
38035
38036 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38037
38038         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
38039         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
38040
38041 2007-02-13  Bruno Haible  <bruno@clisp.org>
38042
38043         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
38044         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38045
38046 2007-02-12  Bruno Haible  <bruno@clisp.org>
38047
38048         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
38049         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
38050         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
38051         time warning rather than a link error.
38052
38053 2007-02-12  Bruno Haible  <bruno@clisp.org>
38054
38055         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
38056         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
38057         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38058
38059 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
38060
38061         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
38062         args, not 2.
38063
38064 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
38065
38066         New module 'time', so that apps can include <time.h> as per
38067         POSIX and GNU instead of separate include files like time_r.h
38068         and timegm.h.  This implementation tries out a simpler approach
38069         for replacing decls in standard include files (as compared to
38070         the string module), somewhat as an experiment.
38071
38072         * config/srclist.txt: Comment out mktime.c for now.
38073         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
38074         since it doesn't apply any more.  Use generic wording instead.
38075         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
38076         'time'.
38077         * lib/time_.h, m4/time_h.m4, modules/time: New files.
38078         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
38079         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
38080         Don't include <sys/types.h>; no longer needed since we assume C89.
38081         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
38082         * lib/strftime.c: Likewise.
38083         * lib/time_r.c: Likewise.
38084         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
38085         * lib/nanosleep.c: Include <time.h> first, to check interface.
38086         * lib/strptime.c: Likewise.
38087         * lib/time_r.c: Likewise.
38088         * lib/timegm.c: Likewise.
38089         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
38090         needed.
38091         * lib/timegm.c: Don't include timegm.h; no longer needed.
38092         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
38093         time.h now handles any problems in that area.
38094         (struct timespec, nanosleep): Remove; time.h now arranges for these.
38095         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
38096         that time.h defines struct timespec.
38097         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
38098         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
38099         handles that.
38100         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
38101         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
38102         needed.  Set REPLACE_LOCALTIME.
38103         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
38104         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
38105         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
38106         nanosleep; time_h.m4 now does that.  Don't require
38107         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
38108         module handles this now.
38109         * modules/getdate (Depends-on): Remove timespec.  Add time.
38110         * modules/nanosleep (Depends-on): Likewise.
38111         * modules/stat-time (Depends-on): Likewise.
38112         * modules/nanosleep (Include): Include time.h, not timespec.h.
38113         * modules/strptime (Files): Remove lib/strptime.h.
38114         (Depends-on): Add extensions, time.
38115         (Include): Include time.h, not strptime.h.
38116         * modules/time_r (Files): Remove lib/time_r.h.
38117         (Depends-on): Add time.
38118         (Include): Include time.h, not time_r.h.
38119         * modules/timegm: Likewise.
38120         * modules/timespec (Description): Now does timespec-related decls
38121         of our own, instead of struct timespec itself.
38122         (Depends-on): Add time; remove extensions.
38123         (Maintainer): Add self.
38124         * modules/utimecmp (Depends-on): Add time; remove timespec.
38125         * modules/utimens (Depends-on): Likewise.
38126         * modules/xnanosleep (Depends-on): Likewise.
38127
38128 2007-02-11  Bruno Haible  <bruno@clisp.org>
38129
38130         * lib/c-strstr.c: Include allocsa.h.
38131         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38132         * lib/c-strcasestr.c: Include allocsa.h.
38133         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38134         * lib/strcasestr.c: Include allocsa.h.
38135         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38136         * lib/mbsstr.c: Include allocsa.h.
38137         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
38138         allocsa/freesa instead of malloc/free.
38139         * lib/mbscasestr.c: Include allocsa.h.
38140         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
38141         allocsa/freesa instead of malloc/free.
38142         * modules/c-strstr (Depends-on): Add allocsa.
38143         * modules/c-strcasestr (Depends-on): Likewise.
38144         * modules/strcasestr (Depends-on): Likewise.
38145         * modules/mbsstr (Depends-on): Likewise.
38146         * modules/mbscasestr (Depends-on): Likewise.
38147
38148 2007-02-11  Bruno Haible  <bruno@clisp.org>
38149
38150         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
38151
38152         * modules/mbsspn-tests: New file.
38153         * tests/test-mbsspn.sh: New file.
38154         * tests/test-mbsspn.c: New file.
38155
38156 2007-02-11  Bruno Haible  <bruno@clisp.org>
38157
38158         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
38159
38160         * modules/mbspbrk-tests: New file.
38161         * tests/test-mbspbrk.sh: New file.
38162         * tests/test-mbspbrk.c: New file.
38163
38164 2007-02-11  Bruno Haible  <bruno@clisp.org>
38165
38166         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
38167         unneeded cast.
38168
38169         * modules/mbscspn-tests: New file.
38170         * tests/test-mbscspn.sh: New file.
38171         * tests/test-mbscspn.c: New file.
38172
38173 2007-02-11  Bruno Haible  <bruno@clisp.org>
38174
38175         * modules/mbscasecmp-tests: New file.
38176         * tests/test-mbscasecmp.sh: New file.
38177         * tests/test-mbscasecmp.c: New file.
38178
38179 2007-02-11  Bruno Haible  <bruno@clisp.org>
38180
38181         Ensure O(n) worst-case complexity of mbscasestr.
38182         * lib/mbscasestr.c: Include stdbool.h.
38183         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
38184         functions.
38185         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
38186         the bookkeeping indicates that it's worth it.
38187         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
38188
38189         * modules/mbscasestr-tests: New file.
38190         * tests/test-mbscasestr1.c: New file.
38191         * tests/test-mbscasestr2.sh: New file.
38192         * tests/test-mbscasestr2.c: New file.
38193         * tests/test-mbscasestr3.sh: New file.
38194         * tests/test-mbscasestr3.c: New file.
38195         * tests/test-mbscasestr4.sh: New file.
38196         * tests/test-mbscasestr4.c: New file.
38197         * m4/locale-tr.m4: New file.
38198
38199 2007-02-11  Bruno Haible  <bruno@clisp.org>
38200
38201         Ensure O(n) worst-case complexity of mbsstr.
38202         * lib/mbsstr.c: Include stdbool.h.
38203         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
38204         functions.
38205         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
38206         bookkeeping indicates that it's worth it.
38207         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
38208
38209         * modules/mbsstr-tests: New file.
38210         * tests/test-mbsstr1.c: New file.
38211         * tests/test-mbsstr2.sh: New file.
38212         * tests/test-mbsstr2.c: New file.
38213         * tests/test-mbsstr3.sh: New file.
38214         * tests/test-mbsstr3.c: New file.
38215         * m4/locale-fr.m4: New file.
38216
38217 2007-02-11  Bruno Haible  <bruno@clisp.org>
38218
38219         * lib/mbsrchr.c (mbsrchr): Fix bug.
38220
38221         * modules/mbsrchr-tests: New file.
38222         * tests/test-mbsrchr.sh: New file.
38223         * tests/test-mbsrchr.c: New file.
38224
38225 2007-02-11  Bruno Haible  <bruno@clisp.org>
38226
38227         * lib/mbschr.c (mbschr): Fix bug.
38228
38229         * modules/mbschr-tests: New file.
38230         * tests/test-mbschr.sh: New file.
38231         * tests/test-mbschr.c: New file.
38232         * m4/locale-zh.m4: New file.
38233
38234 2007-02-11  Bruno Haible  <bruno@clisp.org>
38235
38236         Support for copying multibyte string iterators.
38237         * lib/mbiter.h: Include <string.h>.
38238         (mbiter_multi_copy): New function.
38239         (mbi_copy): New macro.
38240         * lib/mbuiter.h: Include <string.h>.
38241         (mbuiter_multi_copy): New function.
38242         (mbui_copy): New macro.
38243
38244 2007-02-11  Bruno Haible  <bruno@clisp.org>
38245
38246         New module mbslen.
38247         * modules/mbslen: New file.
38248         * lib/mbslen.c: New file.
38249         * lib/string_.h (mbslen): New declaration.
38250         * m4/mbslen.m4: New file.
38251         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38252         GNULIB_MBSLEN.
38253         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
38254         * MODULES.html.sh (Internationalization functions): Add mbslen.
38255
38256 2007-02-11  Bruno Haible  <bruno@clisp.org>
38257
38258         Ensure O(n) worst-case complexity of strcasestr substitute.
38259         * lib/strcasestr.c: Include stdbool.h.
38260         (knuth_morris_pratt): New function.
38261         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
38262         bookkeeping indicates that it's worth it.
38263         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
38264
38265         * modules/strcasestr-tests: New file.
38266         * tests/test-strcasestr.c: New file.
38267
38268 2007-02-11  Bruno Haible  <bruno@clisp.org>
38269
38270         Ensure O(n) worst-case complexity of c_strcasestr.
38271         * lib/c-strcasestr.c: Include stdbool.h, string.h.
38272         (knuth_morris_pratt): New function.
38273         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
38274         the bookkeeping indicates that it's worth it.
38275         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
38276
38277         * modules/c-strcasestr-tests: New file.
38278         * tests/test-c-strcasestr.c: New file.
38279
38280 2007-02-11  Bruno Haible  <bruno@clisp.org>
38281
38282         Ensure O(n) worst-case complexity of c_strstr.
38283         * lib/c-strstr.c: Include stdbool.h, string.h.
38284         (knuth_morris_pratt): New function.
38285         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
38286         bookkeeping indicates that it's worth it.
38287         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
38288
38289         * lib/c-strstr.c: Complete rewrite for maintainability.
38290
38291         * modules/c-strstr-tests: New file.
38292         * tests/test-c-strstr.c: New file.
38293
38294 2007-02-11  Bruno Haible  <bruno@clisp.org>
38295
38296         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
38297         5.2.1 and earlier, whereby \055 was treated just like the range
38298         delimiter '-'.
38299         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
38300
38301 2007-02-08  Bruno Haible  <bruno@clisp.org>
38302
38303         * modules/regex (Depends-on): Add stdbool.
38304         Reported by Dalibor Topic <robilad@kaffe.org>.
38305
38306 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
38307
38308         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
38309         Prefer returning from main to exiting from it.
38310         Remove unnecessary parens after sizeof.
38311
38312 2007-02-05  Bruno Haible  <bruno@clisp.org>
38313
38314         New module mbssep.
38315         * modules/mbssep: New file.
38316         * lib/mbssep.c: New file.
38317         * lib/string_.h (strsep): Add a conditional link warning.
38318         (mbssep): New declaration.
38319         * m4/mbssep.m4: New file.
38320         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38321         GNULIB_MBSSEP.
38322         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
38323         * MODULES.html.sh (Internationalization functions): Add mbssep.
38324
38325 2007-02-05  Bruno Haible  <bruno@clisp.org>
38326
38327         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
38328         Optimize search in case of 1 delimiter.
38329
38330 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
38331
38332         * lib/acl.h: Include sys/types.h before sys/acl.h.
38333
38334 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
38335
38336         Merge upstream fix for glibc bugzilla #3957:
38337
38338         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
38339
38340         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
38341         bit for RE_HAT_LISTS_NOT_NEWLINE.
38342         (build_charclass_op): Remove bogus comment.
38343
38344 2007-02-05  Simon Josefsson  <simon@josefsson.org>
38345
38346         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
38347
38348 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
38349
38350         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
38351         * lib/memmem.c [!defined _LIBC]: Include config.h.
38352
38353 2007-02-04  Bruno Haible  <bruno@clisp.org>
38354
38355         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
38356         warning message.
38357
38358 2007-02-04  Bruno Haible  <bruno@clisp.org>
38359
38360         New module mbstok_r.
38361         * modules/mbstok_r: New file.
38362         * lib/mbstok_r.c: New file.
38363         * lib/string_.h (strtok_r): Change argument names to match the
38364         comments. Add a conditional link warning.
38365         (mbstok_r): New declaration.
38366         * m4/mbstok_r.m4: New file.
38367         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38368         GNULIB_MBSTOK_R.
38369         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
38370         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
38371
38372 2007-02-04  Bruno Haible  <bruno@clisp.org>
38373
38374         New module mbsspn.
38375         * modules/mbsspn: New file.
38376         * lib/mbsspn.c: New file.
38377         * lib/string_.h (strspn): Add a conditional link warning.
38378         (mbsspn): New declaration.
38379         * m4/mbsspn.m4: New file.
38380         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38381         GNULIB_MBSSPN.
38382         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
38383         * MODULES.html.sh (Internationalization functions): Add mbsspn.
38384
38385 2007-02-04  Bruno Haible  <bruno@clisp.org>
38386
38387         New module mbspbrk.
38388         * modules/mbspbrk: New file.
38389         * lib/mbspbrk.c: New file.
38390         * lib/string_.h (strpbrk): Add a conditional link warning.
38391         (mbspbrk): New declaration.
38392         * m4/mbspbrk.m4: New file.
38393         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38394         GNULIB_MBSPBRK.
38395         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
38396         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
38397
38398 2007-02-04  Bruno Haible  <bruno@clisp.org>
38399
38400         New module mbscspn.
38401         * modules/mbscspn: New file.
38402         * lib/mbscspn.c: New file.
38403         * lib/string_.h (strcspn): Add a conditional link warning.
38404         (mbscspn): New declaration.
38405         * m4/mbscspn.m4: New file.
38406         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38407         GNULIB_MBSCSPN.
38408         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
38409         * MODULES.html.sh (Internationalization functions): Add mbscspn.
38410
38411 2007-02-04  Bruno Haible  <bruno@clisp.org>
38412
38413         New module mbscasestr, reduced goal of strcasestr.
38414         * modules/mbscasestr: New file.
38415         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
38416         (mbscasestr): Renamed from strcasestr.
38417         * lib/strcasestr.c: Don't include mbuiter.h.
38418         (strcasestr): Remove support for multibyte locales.
38419         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
38420         Change the conditional link warning.
38421         (mbscasestr): New declaration.
38422         * m4/mbscasestr.m4: New file.
38423         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
38424         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
38425         REPLACE_STRCASESTR.
38426         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
38427         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
38428         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
38429         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
38430         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
38431         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
38432         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
38433         (Depends-on): Remove mbuiter.
38434         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
38435
38436 2007-02-04  Bruno Haible  <bruno@clisp.org>
38437
38438         Simplify handling of strncasecmp.
38439         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
38440         the conditional link warning.
38441         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
38442         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
38443         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
38444         * modules/strcase (configure.ac): Don't invoke
38445         gl_STRING_MODULE_INDICATOR.
38446         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
38447
38448 2007-02-04  Bruno Haible  <bruno@clisp.org>
38449
38450         New module mbscasecmp, reduced goal of strcasecmp.
38451         * modules/mbscasecmp: New file.
38452         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
38453         (mbscasecmp): Renamed from strcasecmp.
38454         * lib/strcasecmp.c: Don't include mbuiter.h.
38455         (strcasecmp): Remove support for multibyte locales.
38456         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
38457         Change the conditional link warning.
38458         (mbscasecmp): New declaration.
38459         * m4/mbscasecmp.m4: New file.
38460         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
38461         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
38462         REPLACE_STRCASECMP.
38463         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
38464         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38465         GNULIB_MBSCASECMP.
38466         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
38467         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
38468         * modules/strcase (Files): Remove m4/mbrtowc.m4.
38469         (Depends-on): Remove mbuiter.
38470         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
38471
38472 2007-02-04  Bruno Haible  <bruno@clisp.org>
38473
38474         New module mbsstr. Remove module strstr.
38475         * modules/mbsstr: New file.
38476         * modules/strstr: Remove file.
38477         * lib/mbsstr.c: Renamed from lib/strstr.c.
38478         (mbsstr): Renamed from strstr.
38479         * lib/string_.h (strstr): Remove declaration. Change the conditional
38480         link warning.
38481         (mbsstr): New declaration.
38482         * m4/mbsstr.m4: New file.
38483         * m4/strstr.m4: Remove file.
38484         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
38485         REPLACE_STRSTR.
38486         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
38487         Don't initialize GNULIB_STRSTR.
38488         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
38489         substitute GNULIB_STRSTR and REPLACE_STRSTR.
38490         * MODULES.html.sh (Internationalization functions): Add mbsstr.
38491         (Support for systems lacking ANSI C 89): Remove strstr.
38492
38493 2007-02-04  Bruno Haible  <bruno@clisp.org>
38494
38495         New module mbsrchr.
38496         * modules/mbsrchr: New file.
38497         * lib/mbsrchr.c: New file.
38498         * lib/string_.h (strrchr): Add a conditional link warning.
38499         (mbsrchr): New declaration.
38500         * m4/mbsrchr.m4: New file.
38501         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38502         GNULIB_MBSRCHR.
38503         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
38504         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
38505
38506 2007-02-04  Bruno Haible  <bruno@clisp.org>
38507
38508         New module mbschr.
38509         * modules/mbschr: New file.
38510         * lib/mbschr.c: New file.
38511         * lib/string_.h (strchr): Add a conditional link warning.
38512         (mbschr): New declaration.
38513         * m4/mbschr.m4: New file.
38514         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38515         GNULIB_MBSCHR.
38516         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
38517         * MODULES.html.sh (Internationalization functions): Add mbschr.
38518
38519 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
38520
38521         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
38522
38523         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
38524
38525 2007-02-04  Bruno Haible  <bruno@clisp.org>
38526
38527         New module description section 'configure.ac-early'.
38528         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
38529         (func_get_autoconf_early_snippet): New function.
38530         (func_import, func_create_testdir): Use it. Remove special cases for
38531         modules 'extensions' and 'lock'.
38532         * modules/extensions (configure.ac-early): Require
38533         gl_USE_SYSTEM_EXTENSIONS.
38534         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
38535
38536 2007-02-04  Bruno Haible  <bruno@clisp.org>
38537
38538         Make use of gcj-4.3's -fsource and -ftarget option.
38539         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
38540         and if so try the options -fsource and -ftarget.
38541         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
38542         source_version, ftarget_option, target_version arguments.
38543         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
38544         (is_envjavac_oldgcj_14_14_usable): Renamed from
38545         is_envjavac_gcj_14_14_usable.
38546         (is_envjavac_oldgcj_14_13_usable): Renamed from
38547         is_envjavac_gcj_14_13_usable.
38548         (is_gcj_present): Update.
38549         (is_gcj_43, is_gcj43_usable): New functions.
38550         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
38551         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
38552         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
38553         try the options -fsource and -ftarget.
38554
38555 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
38556
38557         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
38558         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
38559         larger value.
38560
38561 2007-02-03  Jim Meyering  <jim@meyering.net>
38562
38563         Give tools a better chance to allocate space for very large buffers.
38564         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
38565
38566         Make pwd and readlink work also when run with an unreadable parent dir
38567         on systems with openat support.
38568         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
38569         provided getcwd function, even when we have openat support.
38570         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
38571
38572 2007-02-02  Bruno Haible  <bruno@clisp.org>
38573
38574         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
38575         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
38576         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
38577         portability problems if one of these functions is only used on specific
38578         platforms.
38579         Reported by Paul Eggert.
38580
38581 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
38582
38583         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
38584         is causing more trouble than it's curing.
38585         * lib/regex_internal.h (__mempcpy): Remove.
38586         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
38587         (and make the code a tad smaller to boot).
38588         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
38589
38590 2007-02-02  Jim Meyering  <jim@meyering.net>
38591
38592         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
38593         section, not in the Makefile.am: one.
38594
38595 2007-02-02  Eric Blake  <ebb9@byu.net>
38596
38597         * lib/strchrnul.c: Always include config.h first.
38598
38599         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
38600         gnulib strstr is not necessary here.
38601
38602 2007-02-02  Simon Josefsson  <simon@josefsson.org>
38603
38604         * m4/socklen.m4: Fix typo.
38605
38606 2007-02-02  Eric Blake  <ebb9@byu.net>
38607
38608         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
38609         * modules/netinet_in (Makefile.am): Likewise.
38610
38611 2007-02-01  Bruno Haible  <bruno@clisp.org>
38612
38613         * lib/string_.h (GL_LINK_WARNING): New macro.
38614         (strcasecmp, strstr, strcasestr): If provided by the system,
38615         conditionally define as a macro that leads to a warning instead of to
38616         an error.
38617         (strncasecmp): Conditionally define as a macro that leads to a warning.
38618
38619 2007-02-01  Karl Berry  <karl@gnu.org>
38620
38621         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
38622
38623 2007-02-01  Bruno Haible  <bruno@clisp.org>
38624
38625         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
38626         renamings.
38627
38628 2007-02-01  Eric Blake  <ebb9@byu.net>
38629
38630         * modules/regex (Depends-on): Revert dependence on mempcpy.
38631         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
38632         module's definition of mempcpy.
38633         Reported by Paul Eggert.
38634
38635 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
38636
38637         * lib/string_.h: If the gnulib module XYZ is not present, undefine
38638         the symbol XYZ before redefining it.  This fixes a problem with
38639         programs that don't use XYZ, when compiled on systems that define
38640         XYZ to something else.
38641
38642 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
38643
38644         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
38645         occurs when "mkdir -m foo" creates a setgid directory that is (1)
38646         writeable to group or other and (2) is intended to have a special
38647         mode bit that is set or cleared.  In such a case, the directory
38648         should be neither group- nor other-writeable until the special
38649         mode bits are right.
38650
38651 2007-01-31  Eric Blake  <ebb9@byu.net>
38652
38653         * modules/mountlist (Depends-on): Add strstr.
38654
38655         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
38656         bug.
38657         * modules/string (Makefile.am): Remove redundant replacement.
38658         * modules/regex (Depends-on): Add mempcpy.
38659
38660 2007-01-31  Bruno Haible  <bruno@clisp.org>
38661
38662         New module description field 'Link'.
38663         * gnulib-tool (func_usage): Document --extract-link-directive.
38664         (sed_extract_prog): Recognize 'Link' directive.
38665         (func_get_link_directive): New function.
38666         (func_import): Show summary of link directives.
38667         Handle --extract-link-directive option.
38668         * modules/acl (Link): New section.
38669         * modules/clock-time (Link): New section.
38670         * modules/euidaccess (Link): New section.
38671         * modules/gettext (Link): New section.
38672         * modules/iconv (Link): New section.
38673         * modules/lock (Link): New section.
38674         * modules/nanosleep (Link): New section.
38675         * modules/readline (Link): New section.
38676
38677 2007-01-27  Bruno Haible  <bruno@clisp.org>
38678
38679         Enforce the use of gnulib modules for unportable <string.h> functions.
38680         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
38681         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
38682         (gl_HEADER_STRING_H_BODY): Require it.
38683         * lib/string_.h: If the gnulib module XYZ is not present, redefine
38684         the symbol XYZ to one that gives a link error.
38685         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
38686         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
38687         * modules/mempcpy (configure.ac): Likewise.
38688         * modules/memrchr (configure.ac): Likewise.
38689         * modules/stpcpy (configure.ac): Likewise.
38690         * modules/stpncpy (configure.ac): Likewise.
38691         * modules/strcase (configure.ac): Likewise.
38692         * modules/strcasestr (configure.ac): Likewise.
38693         * modules/strchrnul (configure.ac): Likewise.
38694         * modules/strdup (configure.ac): Likewise.
38695         * modules/strndup (configure.ac): Likewise.
38696         * modules/strnlen (configure.ac): Likewise.
38697         * modules/strpbrk (configure.ac): Likewise.
38698         * modules/strsep (configure.ac): Likewise.
38699         * modules/strstr (configure.ac): Likewise.
38700         * modules/strtok_r (configure.ac): Likewise.
38701
38702 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
38703
38704         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
38705
38706 2007-01-30  Jim Meyering  <jim@meyering.net>
38707
38708         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
38709
38710 2007-01-29  Bruno Haible  <bruno@clisp.org>
38711
38712         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
38713         * lib/execute.c: Likewise.
38714         * lib/pipe.c: Likewise.
38715         * lib/printf-args.h: Likewise.
38716         * lib/printf-args.c: Likewise.
38717         * lib/printf-parse.c: Likewise.
38718         * lib/vasnprintf.c: Likewise.
38719
38720 2007-01-29  Eric Blake  <ebb9@byu.net>
38721
38722         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
38723         declaration.
38724
38725 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
38726
38727         * lib/strptime.h (strptime): Use 'restrict' for args where
38728         POSIX requires this.
38729         * lib/strptime.c (strptime): Likewise.
38730         Change license notice from LGPL to GPL, since gnulib-tool will
38731         change this as needed.
38732         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
38733         defined.
38734         Include "strptime.h" first, to check interface.
38735         Do not #undef _LIBC and _NL_CURRENT.
38736         Do not include <stdlib.h>; no longer needed.
38737         Include "time_r.h" and declare ptime_locale_status
38738         only if _LIBC is not defined.
38739         (__P): Remove unused macro.
38740         (match_string): Bring back glibc version, but use it only if _LIBC
38741         is defined.
38742         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
38743         Remove unnecessary assertion and abort() call.
38744         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
38745         * m4/strptime.m4: Fix serial number comment.
38746         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
38747         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
38748         (Depends-on): Add time_r.
38749
38750 2007-01-29  Bruno Haible  <bruno@clisp.org>
38751
38752         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
38753         strptime.
38754         * modules/strptime (Depends-on): Add stdbool.
38755         * lib/strptime.h: Include <time.h> always. Add comments.
38756
38757 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
38758
38759         * modules/strptime: New file.
38760         * lib/strptime.h: New file.
38761         * lib/strptime.c: New file.
38762         * m4/strptime.m4: New file.
38763
38764 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
38765
38766         * MODULES.html.sh: New module mpsort.
38767         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
38768
38769         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
38770         a circularity problem with HP-UX ia64 reported by Bob Proulx in
38771         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
38772         All uses changed.
38773         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
38774         All uses changed.
38775         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
38776         to _Restrict_.
38777         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
38778         the parameter matches the prototype.
38779
38780 2007-01-28  Jim Meyering  <jim@meyering.net>
38781
38782         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
38783         sys/time.h here, reverting that part of the previous patch:
38784         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
38785
38786 2007-01-28  Bruno Haible  <bruno@clisp.org>
38787
38788         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
38789         value of $(SYS_TIME_H).
38790         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
38791         remove it conditionally, too. [added by Jim Meyering]
38792         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
38793         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
38794         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
38795         GETTIMEOFDAY_REPLACEMENT to 1.
38796
38797 2007-01-28  Bruno Haible  <bruno@clisp.org>
38798
38799         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
38800         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
38801         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
38802         Set UNISTD_H instead of UNISTD_H2.
38803         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
38804
38805 2007-01-28  Bruno Haible  <bruno@clisp.org>
38806
38807         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
38808         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
38809
38810 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38811
38812         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
38813         (func_create_testdir): Ensure C locale for `grep' and `tr'
38814         character ranges.
38815         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
38816         ACLOCAL_AMFLAGS parsing state machine.
38817
38818 2007-01-27  Bruno Haible  <bruno@clisp.org>
38819
38820         * modules/unistr/base: Update.
38821
38822 2007-01-27  Bruno Haible  <bruno@clisp.org>
38823
38824         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
38825         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
38826         * modules/unistr/u32-mbtouc-unsafe: Renamed from
38827         modules/unistr/u32-mbtouc.
38828         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
38829         * lib/unistr.h: Update.
38830         * lib/linebreak.c: Update.
38831         * modules/unistr/u32-mbtouc: Renamed from
38832         modules/unistr/u32-mbtouc-safe.
38833         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
38834         * lib/unistr.h: Update.
38835         * lib/unistr/u32-to-u8.c: Update.
38836         * lib/unistr/u32-to-u16.c: Update.
38837
38838 2007-01-27  Bruno Haible  <bruno@clisp.org>
38839
38840         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
38841         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
38842         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
38843         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
38844         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
38845         * modules/unistr/u16-mbtouc-unsafe: Renamed from
38846         modules/unistr/u16-mbtouc.
38847         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
38848         * lib/unistr.h: Update.
38849         * lib/linebreak.c: Update.
38850         * modules/linebreak: Update.
38851         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
38852         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
38853         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
38854         * modules/unistr/u16-mbtouc: Renamed from
38855         modules/unistr/u16-mbtouc-safe.
38856         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
38857         * lib/unistr.h: Update.
38858         * lib/unistr/u16-to-u8.c: Update.
38859         * modules/unistr/u16-to-u8: Update.
38860         * lib/unistr/u16-to-u32.c: Update.
38861         * modules/unistr/u16-to-u32: Update.
38862
38863 2007-01-27  Bruno Haible  <bruno@clisp.org>
38864
38865         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
38866         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
38867         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
38868         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
38869         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
38870         * modules/unistr/u8-mbtouc-unsafe: Renamed from
38871         modules/unistr/u8-mbtouc.
38872         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
38873         * lib/unistr.h: Update.
38874         * lib/striconveh.c: Update.
38875         * modules/striconveh: Update.
38876         * lib/linebreak.c: Update.
38877         * modules/linebreak: Update.
38878         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
38879         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
38880         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
38881         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
38882         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
38883         * lib/unistr.h: Update.
38884         * lib/striconveh.c: Update.
38885         * modules/striconveh: Update.
38886         * lib/unistr/u8-to-u16.c: Update.
38887         * modules/unistr/u8-to-u16: Update.
38888         * lib/unistr/u8-to-u32.c: Update.
38889         * modules/unistr/u8-to-u32: Update.
38890
38891 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38892
38893         Sync from Libtool.
38894         * lib/argz.c: Do not include strings.h nor memory.h, include
38895         string.h unconditionally.  Patch by Simon Josefsson.
38896
38897 2007-01-27  Bruno Haible  <bruno@clisp.org>
38898
38899         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
38900         from gl_HEADER_STRING_H_BODY.
38901         (gl_HEADER_STRING_H_BODY): Require it.
38902         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
38903         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
38904         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
38905         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
38906         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
38907         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
38908         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
38909         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
38910         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
38911         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
38912         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
38913         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
38914         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
38915         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
38916         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
38917
38918 2007-01-27  Bruno Haible  <bruno@clisp.org>
38919
38920         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
38921         check_PROGRAMS into noinst_PROGRAMS.
38922         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
38923         check_PROGRAMS in this case.
38924         (func_import): Set for_test to false.
38925         (func_create_testdir): Set for_test to true.
38926
38927 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
38928             Bruno Haible  <bruno@clisp.org>
38929
38930         * modules/strcasestr (Files): Remove lib/strcasestr.h.
38931         (Depends-on): Add string.
38932         (Includes): Use <string.h> instead of strcasestr.h.
38933         * modules/string (Makefile.am): Also substitute the value of
38934         REPLACE_STRCASESTR.
38935         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
38936         assume strcasestr is declared in <string.h> not <strings.h>. Also
38937         set REPLACE_STRCASESTR.
38938         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
38939         REPLACE_STRCASESTR.
38940         * lib/strcasestr.h: Remove file.
38941         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
38942         * lib/string_.h (strcasestr): New declaration.
38943
38944 2007-01-27  Bruno Haible  <bruno@clisp.org>
38945
38946         * lib/string_.h: Use 'extern'.
38947
38948 2007-01-27  Jim Meyering  <jim@meyering.net>
38949
38950         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
38951         of set-but-not-used local, "q".
38952
38953         * lib/mempcpy.c: Include <config.h> before <string.h>.
38954         This fixes a compilation error on HP-UX, due to the system's
38955         "restrict"-using mempcpy prototype.
38956
38957 2007-01-26  Bruno Haible  <bruno@clisp.org>
38958
38959         Small optimization.
38960         * lib/javacomp.c: Include c-strstr.h.
38961          (is_envjavac_gcj): Use c_strstr instead of strstr.
38962         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
38963
38964 2007-01-26  Bruno Haible  <bruno@clisp.org>
38965
38966         * MODULES.html.sh (Unicode string functions): Add the new modules.
38967
38968         * modules/uniconv/u32-strconv-to-locale: New file.
38969         * lib/uniconv/u32-strconv-to-locale.c: New file.
38970
38971         * modules/uniconv/u16-strconv-to-locale: New file.
38972         * lib/uniconv/u16-strconv-to-locale.c: New file.
38973
38974         * modules/uniconv/u8-strconv-to-locale: New file.
38975         * lib/uniconv/u8-strconv-to-locale.c: New file.
38976
38977         * modules/uniconv/u32-strconv-from-locale: New file.
38978         * lib/uniconv/u32-strconv-from-locale.c: New file.
38979
38980         * modules/uniconv/u16-strconv-from-locale: New file.
38981         * lib/uniconv/u16-strconv-from-locale.c: New file.
38982
38983         * modules/uniconv/u8-strconv-from-locale: New file.
38984         * lib/uniconv/u8-strconv-from-locale.c: New file.
38985
38986         * modules/uniconv/u32-strconv-to-enc: New file.
38987         * lib/uniconv/u32-strconv-to-enc.c: New file.
38988         * modules/uniconv/u32-strconv-to-enc-tests: New file.
38989         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
38990
38991         * modules/uniconv/u16-strconv-to-enc: New file.
38992         * lib/uniconv/u16-strconv-to-enc.c: New file.
38993         * lib/uniconv/u-strconv-to-enc.h: New file.
38994         * modules/uniconv/u16-strconv-to-enc-tests: New file.
38995         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
38996
38997         * modules/uniconv/u8-strconv-to-enc: New file.
38998         * lib/uniconv/u8-strconv-to-enc.c: New file.
38999         * modules/uniconv/u8-strconv-to-enc-tests: New file.
39000         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
39001
39002         * modules/uniconv/u32-strconv-from-enc: New file.
39003         * lib/uniconv/u32-strconv-from-enc.c: New file.
39004         * modules/uniconv/u32-strconv-from-enc-tests: New file.
39005         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
39006
39007         * modules/uniconv/u16-strconv-from-enc: New file.
39008         * lib/uniconv/u16-strconv-from-enc.c: New file.
39009         * modules/uniconv/u16-strconv-from-enc-tests: New file.
39010         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
39011
39012         * modules/uniconv/u8-strconv-from-enc: New file.
39013         * lib/uniconv/u8-strconv-from-enc.c: New file.
39014         * lib/uniconv/u-strconv-from-enc.h: New file.
39015         * modules/uniconv/u8-strconv-from-enc-tests: New file.
39016         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
39017
39018         * modules/uniconv/u32-conv-from-enc: New file.
39019         * lib/uniconv/u32-conv-from-enc.c: New file.
39020         * modules/uniconv/u32-conv-from-enc-tests: New file.
39021         * tests/uniconv/test-u32-conv-from-enc.c: New file.
39022
39023         * modules/uniconv/u16-conv-from-enc: New file.
39024         * lib/uniconv/u16-conv-from-enc.c: New file.
39025         * lib/uniconv/u-conv-from-enc.h: New file.
39026         * modules/uniconv/u16-conv-from-enc-tests: New file.
39027         * tests/uniconv/test-u16-conv-from-enc.c: New file.
39028
39029         * modules/uniconv/u8-conv-from-enc: New file.
39030         * lib/uniconv/u8-conv-from-enc.c: New file.
39031         * modules/uniconv/u8-conv-from-enc-tests: New file.
39032         * tests/uniconv/test-u8-conv-from-enc.c: New file.
39033
39034         * modules/uniconv/base: New file.
39035         * lib/uniconv.h: New file.
39036
39037 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
39038
39039         * doc/gnulib-tool.texi (Initial import): Update to match current
39040         behavior with strdup module.
39041         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
39042         * lib/memmem.h: Remove; all uses removed.  This is now done
39043         by <string.h>.
39044         * lib/mempcpy.h: Likewise.
39045         * lib/memrchr.h: Likewise.
39046         * lib/stpcpy.h: Likewise.
39047         * lib/stpncpy.h: Likewise.
39048         * lib/strcase.h: Likewise.
39049         * lib/strchrnul.h: Likewise.
39050         * lib/strdup.h: Likewise.
39051         * lib/strndup.h: Likewise.
39052         * lib/strnlen.h: Likewise.
39053         * lib/strpbrk.h: Likewise.
39054         * lib/strsep.h: Likewise.
39055         * lib/strstr.h: Likewise.
39056         * lib/strtok_r.h: Likewise.
39057         * lib/string_.h: New file.
39058         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
39059         Rely on <string.h> instead.
39060         * lib/canon-host.c: Likewise.
39061         * lib/chdir-long.c: Likewise.
39062         * lib/concatpath.c: Likewise.
39063         * lib/exclude.c: Likewise.
39064         * lib/fchdir.c: Likewise.
39065         * lib/getaddrinfo.c: Likewise.
39066         * lib/getcwd.c: Likewise.
39067         * lib/getsubopt.c: Likewise.
39068         * lib/glob.c: Likewise.
39069         * lib/hard-locale.c: Likewise.
39070         * lib/iconvme.c: Likewise.
39071         * lib/javacomp.c: Likewise.
39072         * lib/mempcpy.c: Likewise.
39073         * lib/memrchr.c: Likewise.
39074         * lib/regex_internal.h: Likewise.
39075         * lib/stpncpy.c: Likewise.
39076         * lib/strcasecmp.c: Likewise.
39077         * lib/strchrnul.c: Likewise.
39078         * lib/strdup.c: Likewise.
39079         * lib/striconv.c: Likewise.
39080         * lib/striconveh.c: Likewise.
39081         * lib/striconveha.c: Likewise.
39082         * lib/strncasecmp.c: Likewise.
39083         * lib/strndup.c: Likewise.
39084         * lib/strnlen.c: Likewise.
39085         * lib/strsep.c: Likewise.
39086         * lib/strstr.c: Likewise.
39087         * lib/strtok_r.c: Likewise.
39088         * lib/userspec.c: Likewise.
39089         * lib/w32spawn.h: Likewise.
39090         * lib/xstrndup.c: Likewise.
39091         * lib/mountlist.c (strstr): Remove decl.
39092         * m4/string_h.m4: New file.
39093         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
39094         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
39095         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
39096         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
39097         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
39098         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
39099         Set REPLACE_STRCASECMP if necessary.
39100         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
39101         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
39102         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
39103         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
39104         HAVE_DECL_STRDUP if necessary.
39105         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
39106         since gl_FUNC_STRNDUP does that now.
39107         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
39108         Check for decl here...
39109         (gl_PREREQ_STRNLEN): ... not here.
39110         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
39111         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
39112         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
39113         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
39114         necessary.
39115         * modules/string: New file.
39116         * modules/memmem (Files): Remove special-purpose include file.
39117         (Depends-on): Add string.
39118         (Include): Include <string.h>, not the removed file.
39119         * modules/mempcpy: Likewise.
39120         * modules/memrchr: Likewise.
39121         * modules/stpcpy: Likewise.
39122         * modules/stpncpy: Likewise.
39123         * modules/strcase: Likewise.
39124         * modules/strchrnul: Likewise.
39125         * modules/strdup: Likewise.
39126         * modules/strndup: Likewise.
39127         * modules/strnlen: Likewise.
39128         * modules/strpbrk: Likewise.
39129         * modules/strsep: Likewise.
39130         * modules/strstr: Likewise.
39131         * modules/strtok_r: Likewise.
39132         * tests/test-dirname.c: Don't include "strdup.h", since
39133         <string.h> now suffices.
39134         * tests/test-memmem.c: Don't include "memmem.h", since
39135         <string.h> now suffices.
39136
39137 2007-01-25  Bruno Haible  <bruno@clisp.org>
39138
39139         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
39140         *resultp is 0.
39141
39142         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
39143         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
39144         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
39145         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
39146
39147         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
39148         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
39149         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
39150         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
39151         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
39152         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
39153
39154 2007-01-24  Bruno Haible  <bruno@clisp.org>
39155
39156         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
39157         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
39158         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
39159         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
39160         gl_FUNC_FTS_CORE.
39161         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
39162         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
39163         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
39164         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
39165         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
39166         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
39167         gl_FUNC_FCHOWNAT.
39168         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
39169         gl_FUNC_STRFTIME.
39170         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
39171         Reported by Ralf Wildenhues.
39172
39173 2007-01-24  Bruno Haible  <bruno@clisp.org>
39174
39175         Drop AC_REQUIRE calls that are redundant with the module dependencies.
39176         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
39177         gl_GETADDRINFO.
39178         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
39179         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
39180         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
39181
39182 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
39183
39184         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
39185         Don't use 'exit'; just return from 'main'.
39186         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
39187
39188         * lib/fnmatch_.h: Readjust white space and comments to match
39189         glibc, to avoid spurious diffs.
39190
39191 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
39192
39193         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
39194         2004-12-01 change by Jakub Jelinek, since this code won't compile
39195         if !LIBC.  Problem reported by Bob Proulx.
39196
39197 2007-01-23  Bruno Haible  <bruno@clisp.org>
39198
39199         * lib/striconveh.c: Include c-strcaseeq.h.
39200         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
39201         * modules/striconveh (Depends-on): Add c-strcaseeq.
39202
39203 2007-01-23  Bruno Haible  <bruno@clisp.org>
39204
39205         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
39206
39207         * modules/c-strcaseeq: New file.
39208         * lib/c-strcaseeq.h: New file.
39209
39210         * modules/streq: New file.
39211         * lib/streq.h: New file.
39212
39213 2007-01-23  Bruno Haible  <bruno@clisp.org>
39214
39215         * modules/striconveha-tests: New file.
39216         * tests/test-striconveha.c: New file.
39217
39218         * lib/striconveha.h: Include <stdbool.h>.
39219         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
39220         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
39221         (mem_iconveha_notranslit): Renamed from mem_iconveha.
39222         (mem_iconveha): New function.
39223         (str_iconveha_notranslit): Renamed from str_iconveha.
39224         (str_iconveha): New function.
39225         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
39226         c-strcase.
39227
39228 2007-01-23  Bruno Haible  <bruno@clisp.org>
39229
39230         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
39231         encodings without forgiving before trying any encoding with handler.
39232         (str_iconveha): Try all encodings without forgiving before trying any
39233         encoding with handler.
39234
39235 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
39236
39237         Import the following changes from libc.
39238
39239         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
39240
39241         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
39242
39243         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
39244
39245         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
39246         normal_bracket label.
39247
39248         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
39249
39250         [BZ #361]
39251         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
39252         to normal_bracket after fetching the next character.
39253
39254 2007-01-22  Bruno Haible  <bruno@clisp.org>
39255
39256         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
39257         argument.
39258         * lib/striconveh.c (iconv_carefully_1): New function.
39259         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
39260         argument.
39261         (str_cd_iconveh): Update.
39262         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
39263         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
39264         * tests/test-striconveh.c (MAGIC): New macro.
39265         (new_offsets): New function.
39266         (main): Test call with and without offsets.
39267
39268 2007-01-22  Bruno Haible  <bruno@clisp.org>
39269
39270         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
39271         * modules/sys_select (Makefile.am): Likewise.
39272         * modules/sys_socket (Makefile.am): Likewise.
39273         * modules/sys_time (Makefile.am): Likewise.
39274
39275 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
39276
39277         * modules/gettimeofday (License): Change from GPL to LGPL, since
39278         gettimeofday is a library function.
39279
39280 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39281
39282         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
39283
39284 2007-01-21  Bruno Haible  <bruno@clisp.org>
39285
39286         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
39287
39288 2007-01-21  Bruno Haible  <bruno@clisp.org>
39289
39290         * modules/striconveha: New file.
39291         * lib/striconveha.h: New file.
39292         * lib/striconveha.c: New file.
39293         * MODULES.html.sh (Internationalization functions): Add striconveha.
39294         * lib/striconv.c (str_iconv): Optimize the case of an empty input
39295         string.
39296         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
39297
39298 2007-01-21  Bruno Haible  <bruno@clisp.org>
39299
39300         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
39301         * lib/striconveh.c (str_iconveh): Likewise.
39302
39303 2007-01-21  Bruno Haible  <bruno@clisp.org>
39304
39305         * lib/striconveh.h (mem_iconveh): New declaration.
39306         * lib/striconveh.c (mem_iconveh): New function.
39307         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
39308
39309 2007-01-21  Bruno Haible  <bruno@clisp.org>
39310
39311         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
39312
39313         * lib/striconveh.h (mem_cd_iconveh): Change specification.
39314         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
39315         original result buffer.
39316         (str_cd_iconveh): Update.
39317         * tests/test-striconveh.c (main): Update.
39318
39319         * lib/striconv.h (mem_cd_iconv): Change specification.
39320         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
39321         result buffer.
39322         (str_cd_iconv): Update.
39323         * tests/test-striconv.c (main): Update.
39324
39325 2007-01-21  Bruno Haible  <bruno@clisp.org>
39326
39327         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
39328
39329 2007-01-20  Jim Meyering  <jim@meyering.net>
39330
39331         * lib/userspec.c (parse_with_separator): If a user or group string
39332         starts with "+", skip the corresponding name-to-ID look-up, since
39333         such a look-up must fail: user and group names may not include "+".
39334
39335 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
39336
39337         * lib/poll.c: Include sys/time.h and time.h unconditionally,
39338         since we now assume the sys_time module.
39339         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
39340         check for sys/time.h; no longer needed.
39341         * modules/poll (Depends-on): Depend on sys_time.
39342
39343 2007-01-18  Bruno Haible  <bruno@clisp.org>
39344
39345         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
39346         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
39347
39348         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
39349         gettimeofday.
39350
39351         * tests/test-gettimeofday.c: Include <time.h>.
39352         (dummy): Remove variable.
39353
39354         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
39355         gl_HEADER_SYS_TIME_H.
39356         (gl_HEADER_SYS_TIME_H): New macro.
39357
39358         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
39359         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39360         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
39361         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
39362         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39363         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
39364         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
39365         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39366         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
39367         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
39368         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39369
39370         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
39371         last change; it caused a compilation error when cross-compiling to
39372         Cygwin.
39373
39374 2007-01-18  Jim Meyering  <jim@meyering.net>
39375
39376         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
39377         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
39378         than the race-prone "test -d sys || mkdir sys".
39379         (configure.ac): Use AC_PROG_MKDIR_P.
39380         * modules/sys_select: Likewise.
39381         * modules/sys_socket: Likewise.
39382         * modules/sys_time: Likewise.
39383
39384 2007-01-18  Eric Blake  <ebb9@byu.net>
39385
39386         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
39387         replace gettimeofday.
39388         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
39389         name, to avoid infinite recursion.
39390
39391 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
39392
39393         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
39394         module sys_time.
39395         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
39396         assume timespec.h defines struct timeval.
39397         * lib/settime.c: Likewise.
39398         * lib/utimens.c: Likewise.
39399         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
39400         since we now assume the gettimeofday module.
39401         * lib/tempname.c (__gen_tempname): Likewise.
39402         * lib/gettimeofday.h: Remove.
39403         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
39404         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
39405         Include <time.h>, for 'time()'.
39406         (localtime_buffer_addr): Also use this workaround if
39407         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
39408         to simplify the uses.  All uses changed.
39409         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
39410         that #undef is inside {}, and 'const' follows type name consistently.
39411         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
39412         (gettimeofday): Do not use the maximum possible value for
39413         tv->tv_usec, since that might break usages other than ls.c.
39414         Instead, we'll leave ls.c alone.  This undoes today's patch
39415         by Bruno.  Add a compile-time warning for 1s-clock resolution;
39416         we've never observed the problem but might as well keep the
39417         canary.
39418         * lib/nanosleep.c: Include timespec.h first, for interface check.
39419         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
39420         now assume the sys_time module.
39421         * lib/tempname.c: Likewise.
39422         * lib/timespec.h: Likewise.
39423         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
39424         needed.
39425         * lib/strftime.c: Likewise.
39426         * lib/timespec.h: Likewise.
39427         * lib/posixtm.c: Include posixtm.h first, for interface check.
39428         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
39429         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
39430         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
39431         * lib/sys_time_.h: New file.
39432         * lib/timespec.h (struct timespec): Use long int, not long.
39433         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
39434         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
39435         Remove obsolescent call to AC_HEADER_TIME.
39436         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
39437         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
39438         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
39439         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
39440         Likewise.
39441         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
39442         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
39443         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
39444         into the sys_time module.  Check for gettimeofday just once.
39445         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
39446         for gettimeofday signature to just check the signature.  Merely
39447         compile it, since linking doesn't test signature.  Improve test for
39448         whether gettimeofday.o is actually needed.
39449         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
39450         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
39451         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
39452         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39453         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
39454         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
39455         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
39456         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
39457         than worrying about sys/time.h.
39458         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
39459         Don't bother worrying about TIME_WITH_SYS_TIME.
39460         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
39461         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
39462         * m4/sys_time_h.m4: New file.
39463         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
39464         Don't include sys/time.h.  Return from main rather than exiting.
39465         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
39466         all uses changed.
39467         * modules/gethrxtime (Depends-on): Add sys_time.
39468         * modules/gettime (Depends-on): Likewise.
39469         * modules/gettimeofday (Depends-on): Likewise.
39470         * modules/nanosleep (Depends-on): Likewise.
39471         * modules/settime (Depends-on): Likewise.
39472         * modules/tempname (Depends-on): Likewise.
39473         * modules/utimens (Depends-on): Likewise.
39474         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
39475         (Include:) Change back to <sys/time.h>.
39476         (Maintainer:) Add self.
39477         * modules/sys_time: New file.
39478         * modules/tempname (Depends-on): Add gettimeofday.
39479         * tests/test-gettimeofday.c: Include <sys/time.h>
39480         rather than gettimeofday.h.
39481
39482 2007-01-17  Bruno Haible  <bruno@clisp.org>
39483
39484         * gnulib-tool (func_get_license): Revert last patch. Instead, let
39485         the license default to GPL.
39486         (func_create_testdir): Don't complain if a module is LGPL and its
39487         tests module depends on GPLed modules.
39488
39489 2007-01-17  Bruno Haible  <bruno@clisp.org>
39490
39491         * lib/gettimeofday.c (gettimeofday): Add code for the case
39492         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
39493         maximum possible value for tv->tv_usec, rather than the minimum one.
39494
39495 2005-10-08  Martin Lambers  <marlam@marlam.de>
39496 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
39497 2007-01-16  Bruno Haible  <bruno@clisp.org>
39498
39499         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
39500         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
39501         gl_FUNC_GETTIMEOFDAY.
39502         (Include): Add gettimeofday.h.
39503         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
39504         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
39505         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
39506         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
39507         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
39508         * lib/gettimeofday.h: New file.
39509         * lib/gettimeofday.c: Include <sys/timeb.h>.
39510         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
39511         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39512         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
39513         fall back on time().
39514
39515         * tests/test-gettimeofday.c: New file.
39516         * modules/gettimeofday-tests: New file.
39517
39518 2007-01-16  Eric Blake  <ebb9@byu.net>
39519
39520         * modules/fnmatch (Depends-on): Depend on wchar.
39521         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
39522         * m4/fnmatch.m4: Likewise.
39523         * modules/mbchar (Makefile.am): Assume <wchar.h>.
39524         * m4/mbchar.m4: Likewise.
39525         * modules/mbswidth (Depends-on): Depend on wchar.
39526         * lib/mbswidth.c: Assume <wchar.h>.
39527         * m4/mbswidth.m4: Likewise.
39528         * modules/quotearg (Depends-on): Depend on wchar.
39529         * lib/quotearg.c: Assume <wchar.h>.
39530         * m4/quotearg.m4: Likewise.
39531         * modules/regex (Depends-on): Depend on wchar.
39532         * lib/regex_internal.h: Assume <wchar.h>.
39533         * m4/regex.m4: Likewise.
39534         * modules/stdint (Depends-on): Depend on wchar.
39535         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
39536         * m4/stdint.m4: Likewise.
39537         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
39538         * modules/strftime (Depends-on): Depend on wchar.
39539         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
39540         * modules/strtol (Depends-on): Depend on wchar.
39541         * lib/strtol.c: Assume <wchar.h>.
39542         * modules/wcwidth (Depends-on): Depend on wchar.
39543         * lib/wcwidth.h: Assume <wchar.h>.
39544         * m4/wcwidth.m4: Likewise.
39545
39546 2007-01-16  Bruno Haible  <bruno@clisp.org>
39547
39548         * modules/csharpexec-script: New, created from...
39549         * modules/csharpexec: ... this.
39550
39551 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
39552
39553         * modules/javaexec-script: New, created from...
39554         * modules/javaexec: ... this.
39555
39556 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39557
39558         * modules/poll (Dependencies): Add sys_select.
39559
39560 2007-01-15  Jim Meyering  <jim@meyering.net>
39561
39562         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
39563         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
39564         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
39565         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
39566
39567 2007-01-15  Bruno Haible  <bruno@clisp.org>
39568
39569         * modules/striconveh: New file.
39570         * lib/striconveh.h: New file.
39571         * lib/striconveh.c: New file.
39572         * MODULES.html.sh (Internationalization functions): Add striconveh.
39573
39574         * modules/striconveh-tests: New file.
39575         * tests/test-striconveh.c: New file.
39576
39577 2007-01-15  Bruno Haible  <bruno@clisp.org>
39578
39579         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
39580         not from GNU libiconv or GNU libc.
39581
39582 2007-01-15  Bruno Haible  <bruno@clisp.org>
39583
39584         * doc/gnulib-intro.texi (Copyright): Explain the different license
39585         terms for module descriptions, autoconf macros, tests, documentation.
39586
39587 2007-01-14  Bruno Haible  <bruno@clisp.org>
39588
39589         * modules/striconv-tests: New file.
39590         * tests/test-striconv.c: New file.
39591
39592 2007-01-14  Bruno Haible  <bruno@clisp.org>
39593
39594         * modules/iconv-tests: New file.
39595         * tests/test-iconv.c: New file.
39596
39597 2007-01-14  Bruno Haible  <bruno@clisp.org>
39598
39599         * gnulib-tool (func_get_license): For test modules, use the license of
39600         the main module.
39601
39602 2007-01-14  Bruno Haible  <bruno@clisp.org>
39603
39604         * modules/iconv (Include): Clarify that <iconv.h> can only be included
39605         if iconv is found to exist.
39606
39607 2007-01-14  Bruno Haible  <bruno@clisp.org>
39608
39609         * modules/c-ctype-tests: New file.
39610         * tests/test-c-ctype.c: New file.
39611
39612 2007-01-14  Bruno Haible  <bruno@clisp.org>
39613
39614         * modules/binary-io-tests: New file.
39615         * tests/test-binary-io.sh: New file.
39616         * tests/test-binary-io.c: New file.
39617
39618 2007-01-14  Bruno Haible  <bruno@clisp.org>
39619
39620         * modules/array-oset-tests: New file.
39621         * tests/test-array_oset.c: New file.
39622
39623 2007-01-14  Bruno Haible  <bruno@clisp.org>
39624
39625         * modules/array-list-tests: New file.
39626         * tests/test-array_list.c: New file.
39627
39628 2007-01-14  Bruno Haible  <bruno@clisp.org>
39629
39630         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
39631         and make.
39632         Reported by Simon Josefsson in
39633         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
39634
39635 2007-01-14  Bruno Haible  <bruno@clisp.org>
39636
39637         * modules/allocsa-tests: New file.
39638         * tests/test-allocsa.c: New file.
39639
39640 2007-01-14  Bruno Haible  <bruno@clisp.org>
39641
39642         * modules/fchdir (Depends-on): Add absolute-header.
39643         * modules/unistd (Depends-on): Likewise.
39644
39645 2006-12-30  Bruno Haible  <bruno@clisp.org>
39646
39647         * modules/fchdir: New file.
39648         * modules/unistd (Files): Add lib/unistd_.h.
39649         (Makefile.am): Generate unistd.h from unistd_.h.
39650         * lib/fchdir.c: New file.
39651         * lib/dirent_.h: New file.
39652         * lib/unistd_.h: New file.
39653         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
39654         * m4/fchdir.m4: New file.
39655         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
39656         (gl_HEADER_UNISTD): Invoke it.
39657         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
39658         function.
39659         * lib/backupfile.c (opendir, closedir): Undefine.
39660         * lib/chown.c (open, close): Undefine.
39661         * lib/clean-temp.c (open, close): Undefine.
39662         * lib/copy-file.c (open, close): Undefine.
39663         * lib/execute.c (open, close): Undefine.
39664         * lib/fsusage.c (open, close): Undefine.
39665         * lib/gc-gnulib.c (open, close): Undefine.
39666         * lib/getcwd.c (opendir, closedir): Undefine.
39667         * lib/glob.c (opendir, closedir): Undefine.
39668         * lib/javacomp.c (open, close): Undefine.
39669         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
39670         * lib/openat-proc.c (open, close): Undefine.
39671         * lib/pagealign_alloc.c (open, close): Undefine.
39672         * lib/pipe.c (open, close): Undefine.
39673         * lib/progreloc.c (open, close): Undefine.
39674         * lib/savedir.c (opendir, closedir): Undefine.
39675         * lib/utime.c (open, close): Undefine.
39676         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
39677
39678 2007-01-10  Bruno Haible  <bruno@clisp.org>
39679
39680         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
39681
39682 2007-01-12  Eric Blake  <ebb9@byu.net>
39683
39684         Provide a robust <wchar.h>.  Further simplifications are now
39685         possible in other modules, but not included here.
39686         * modules/wchar: New module.
39687         * m4/wchar.m4: New file.
39688         * lib/wchar_.h: Likewise.
39689         * modules/mbchar (Depends-on): Depend on wchar, as the first use
39690         of the new module.
39691         * MODULES.html.sh (Extended multibyte and wide character utilities):
39692         New section.
39693
39694 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
39695
39696         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
39697         to a reasonable default for memory allocation.
39698         (xreadlink): Don't allocate a huge buffer, to work around a buggy
39699         file system that reports garbage st_size values for symlinks.
39700         Problem reported by Liyang Hu.
39701
39702 2007-01-11  Simon Josefsson  <simon@josefsson.org>
39703
39704         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
39705         Emacs .#* auto-save files).
39706
39707 2007-01-11  Bruno Haible  <bruno@clisp.org>
39708
39709         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
39710         directory.
39711
39712 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
39713
39714         Use @...@ consistently in lib/wctype_.h.
39715         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
39716         on it being set to 1 or 0.
39717         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
39718         go back to AC_SUBSTing it.
39719         * modules/wctype (Makefile.am): Undo previous change.
39720
39721 2007-01-10  Eric Blake  <ebb9@byu.net>
39722
39723         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
39724         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
39725         * modules/wctype (Makefile.am): Likewise.
39726         Reported by Chris McGuire.
39727
39728 2007-01-10  Jim Meyering  <jim@meyering.net>
39729
39730         fts.c: a small readability/maintainability improvement
39731         * lib/fts.c (fts_read): Make this code slightly more readable and
39732         maintainable by hoisting the "sp->fts_cur = p" assignments to
39733         immediately follow the statements that set P.  Derived from
39734         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
39735
39736 2007-01-10  Eric Blake  <ebb9@byu.net>
39737
39738         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
39739         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
39740         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
39741         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
39742         Reported by Chris McGuire.
39743
39744 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39745
39746         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
39747         in sed script.
39748
39749 2007-01-09  Bruno Haible  <bruno@clisp.org>
39750
39751         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
39752         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
39753         variables.
39754         (func_module): Use them.
39755
39756 2007-01-09  Bruno Haible  <bruno@clisp.org>
39757
39758         * modules/unistr/base: New file.
39759         * lib/unistr.h: New file.
39760
39761         * modules/unistr/u8-to-u16: New file.
39762         * lib/unistr/u8-to-u16.c: New file.
39763
39764         * modules/unistr/u8-to-u32: New file.
39765         * lib/unistr/u8-to-u32.c: New file.
39766
39767         * modules/unistr/u16-to-u8: New file.
39768         * lib/unistr/u16-to-u8.c: New file.
39769
39770         * modules/unistr/u16-to-u32: New file.
39771         * lib/unistr/u16-to-u32.c: New file.
39772
39773         * modules/unistr/u32-to-u8: New file.
39774         * lib/unistr/u32-to-u8.c: New file.
39775
39776         * modules/unistr/u32-to-u16: New file.
39777         * lib/unistr/u32-to-u16.c: New file.
39778
39779         * modules/unistr/u8-check: New file.
39780         * modules/unistr/u16-check: New file.
39781         * modules/unistr/u32-check: New file.
39782         * lib/unistr/u8-check.c: New file.
39783         * lib/unistr/u16-check.c: New file.
39784         * lib/unistr/u32-check.c: New file.
39785
39786         * modules/unistr/u8-chr: New file.
39787         * modules/unistr/u16-chr: New file.
39788         * modules/unistr/u32-chr: New file.
39789         * lib/unistr/u8-chr.c: New file.
39790         * lib/unistr/u16-chr.c: New file.
39791         * lib/unistr/u32-chr.c: New file.
39792
39793         * modules/unistr/u8-cmp: New file.
39794         * modules/unistr/u16-cmp: New file.
39795         * modules/unistr/u32-cmp: New file.
39796         * lib/unistr/u8-cmp.c: New file.
39797         * lib/unistr/u16-cmp.c: New file.
39798         * lib/unistr/u32-cmp.c: New file.
39799
39800         * modules/unistr/u8-cpy: New file.
39801         * modules/unistr/u16-cpy: New file.
39802         * modules/unistr/u32-cpy: New file.
39803         * lib/unistr/u8-cpy.c: New file.
39804         * lib/unistr/u16-cpy.c: New file.
39805         * lib/unistr/u32-cpy.c: New file.
39806         * lib/unistr/u-cpy.h: New file.
39807
39808         * modules/unistr/u8-cpy-alloc: New file.
39809         * modules/unistr/u16-cpy-alloc: New file.
39810         * modules/unistr/u32-cpy-alloc: New file.
39811         * lib/unistr/u8-cpy-alloc.c: New file.
39812         * lib/unistr/u16-cpy-alloc.c: New file.
39813         * lib/unistr/u32-cpy-alloc.c: New file.
39814         * lib/unistr/u-cpy-alloc.h: New file.
39815
39816         * modules/unistr/u8-endswith: New file.
39817         * modules/unistr/u16-endswith: New file.
39818         * modules/unistr/u32-endswith: New file.
39819         * lib/unistr/u8-endswith.c: New file.
39820         * lib/unistr/u16-endswith.c: New file.
39821         * lib/unistr/u32-endswith.c: New file.
39822         * lib/unistr/u-endswith.h: New file.
39823
39824         * modules/unistr/u8-mblen: New file.
39825         * modules/unistr/u16-mblen: New file.
39826         * modules/unistr/u32-mblen: New file.
39827         * lib/unistr/u8-mblen.c: New file.
39828         * lib/unistr/u16-mblen.c: New file.
39829         * lib/unistr/u32-mblen.c: New file.
39830
39831         * modules/unistr/u8-mbtouc: New file.
39832         * modules/unistr/u16-mbtouc: New file.
39833         * modules/unistr/u32-mbtouc: New file.
39834         * lib/unistr/u8-mbtouc.c: New file.
39835         * lib/unistr/u16-mbtouc.c: New file.
39836         * lib/unistr/u32-mbtouc.c: New file.
39837
39838         * modules/unistr/u8-mbtouc-safe: New file.
39839         * modules/unistr/u16-mbtouc-safe: New file.
39840         * modules/unistr/u32-mbtouc-safe: New file.
39841         * lib/unistr/u8-mbtouc-safe.c: New file.
39842         * lib/unistr/u16-mbtouc-safe.c: New file.
39843         * lib/unistr/u32-mbtouc-safe.c: New file.
39844
39845         * modules/unistr/u8-move: New file.
39846         * modules/unistr/u16-move: New file.
39847         * modules/unistr/u32-move: New file.
39848         * lib/unistr/u8-move.c: New file.
39849         * lib/unistr/u16-move.c: New file.
39850         * lib/unistr/u32-move.c: New file.
39851         * lib/unistr/u-move.h: New file.
39852
39853         * modules/unistr/u8-next: New file.
39854         * modules/unistr/u16-next: New file.
39855         * modules/unistr/u32-next: New file.
39856         * lib/unistr/u8-next.c: New file.
39857         * lib/unistr/u16-next.c: New file.
39858         * lib/unistr/u32-next.c: New file.
39859
39860         * modules/unistr/u8-prev: New file.
39861         * modules/unistr/u16-prev: New file.
39862         * modules/unistr/u32-prev: New file.
39863         * lib/unistr/u8-prev.c: New file.
39864         * lib/unistr/u16-prev.c: New file.
39865         * lib/unistr/u32-prev.c: New file.
39866
39867         * modules/unistr/u8-set: New file.
39868         * modules/unistr/u16-set: New file.
39869         * modules/unistr/u32-set: New file.
39870         * lib/unistr/u8-set.c: New file.
39871         * lib/unistr/u16-set.c: New file.
39872         * lib/unistr/u32-set.c: New file.
39873         * lib/unistr/u-set.h: New file.
39874
39875         * modules/unistr/u8-startswith: New file.
39876         * modules/unistr/u16-startswith: New file.
39877         * modules/unistr/u32-startswith: New file.
39878         * lib/unistr/u8-startswith.c: New file.
39879         * lib/unistr/u16-startswith.c: New file.
39880         * lib/unistr/u32-startswith.c: New file.
39881         * lib/unistr/u-startswith.h: New file.
39882
39883         * modules/unistr/u8-stpcpy: New file.
39884         * modules/unistr/u16-stpcpy: New file.
39885         * modules/unistr/u32-stpcpy: New file.
39886         * lib/unistr/u8-stpcpy.c: New file.
39887         * lib/unistr/u16-stpcpy.c: New file.
39888         * lib/unistr/u32-stpcpy.c: New file.
39889         * lib/unistr/u-stpcpy.h: New file.
39890
39891         * modules/unistr/u8-stpncpy: New file.
39892         * modules/unistr/u16-stpncpy: New file.
39893         * modules/unistr/u32-stpncpy: New file.
39894         * lib/unistr/u8-stpncpy.c: New file.
39895         * lib/unistr/u16-stpncpy.c: New file.
39896         * lib/unistr/u32-stpncpy.c: New file.
39897         * lib/unistr/u-stpncpy.h: New file.
39898
39899         * modules/unistr/u8-strcat: New file.
39900         * modules/unistr/u16-strcat: New file.
39901         * modules/unistr/u32-strcat: New file.
39902         * lib/unistr/u8-strcat.c: New file.
39903         * lib/unistr/u16-strcat.c: New file.
39904         * lib/unistr/u32-strcat.c: New file.
39905         * lib/unistr/u-strcat.h: New file.
39906
39907         * modules/unistr/u8-strchr: New file.
39908         * modules/unistr/u16-strchr: New file.
39909         * modules/unistr/u32-strchr: New file.
39910         * lib/unistr/u8-strchr.c: New file.
39911         * lib/unistr/u16-strchr.c: New file.
39912         * lib/unistr/u32-strchr.c: New file.
39913
39914         * modules/unistr/u8-strcmp: New file.
39915         * modules/unistr/u16-strcmp: New file.
39916         * modules/unistr/u32-strcmp: New file.
39917         * lib/unistr/u8-strcmp.c: New file.
39918         * lib/unistr/u16-strcmp.c: New file.
39919         * lib/unistr/u32-strcmp.c: New file.
39920
39921         * modules/unistr/u8-strcpy: New file.
39922         * modules/unistr/u16-strcpy: New file.
39923         * modules/unistr/u32-strcpy: New file.
39924         * lib/unistr/u8-strcpy.c: New file.
39925         * lib/unistr/u16-strcpy.c: New file.
39926         * lib/unistr/u32-strcpy.c: New file.
39927         * lib/unistr/u-strcpy.h: New file.
39928
39929         * modules/unistr/u8-strcspn: New file.
39930         * modules/unistr/u16-strcspn: New file.
39931         * modules/unistr/u32-strcspn: New file.
39932         * lib/unistr/u8-strcspn.c: New file.
39933         * lib/unistr/u16-strcspn.c: New file.
39934         * lib/unistr/u32-strcspn.c: New file.
39935         * lib/unistr/u-strcspn.h: New file.
39936
39937         * modules/unistr/u8-strdup: New file.
39938         * modules/unistr/u16-strdup: New file.
39939         * modules/unistr/u32-strdup: New file.
39940         * lib/unistr/u8-strdup.c: New file.
39941         * lib/unistr/u16-strdup.c: New file.
39942         * lib/unistr/u32-strdup.c: New file.
39943         * lib/unistr/u-strdup.h: New file.
39944
39945         * modules/unistr/u8-strlen: New file.
39946         * modules/unistr/u16-strlen: New file.
39947         * modules/unistr/u32-strlen: New file.
39948         * lib/unistr/u8-strlen.c: New file.
39949         * lib/unistr/u16-strlen.c: New file.
39950         * lib/unistr/u32-strlen.c: New file.
39951         * lib/unistr/u-strlen.h: New file.
39952
39953         * modules/unistr/u8-strmblen: New file.
39954         * modules/unistr/u16-strmblen: New file.
39955         * modules/unistr/u32-strmblen: New file.
39956         * lib/unistr/u8-strmblen.c: New file.
39957         * lib/unistr/u16-strmblen.c: New file.
39958         * lib/unistr/u32-strmblen.c: New file.
39959
39960         * modules/unistr/u8-strmbtouc: New file.
39961         * modules/unistr/u16-strmbtouc: New file.
39962         * modules/unistr/u32-strmbtouc: New file.
39963         * lib/unistr/u8-strmbtouc.c: New file.
39964         * lib/unistr/u16-strmbtouc.c: New file.
39965         * lib/unistr/u32-strmbtouc.c: New file.
39966
39967         * modules/unistr/u8-strncat: New file.
39968         * modules/unistr/u16-strncat: New file.
39969         * modules/unistr/u32-strncat: New file.
39970         * lib/unistr/u8-strncat.c: New file.
39971         * lib/unistr/u16-strncat.c: New file.
39972         * lib/unistr/u32-strncat.c: New file.
39973         * lib/unistr/u-strncat.h: New file.
39974
39975         * modules/unistr/u8-strncmp: New file.
39976         * modules/unistr/u16-strncmp: New file.
39977         * modules/unistr/u32-strncmp: New file.
39978         * lib/unistr/u8-strncmp.c: New file.
39979         * lib/unistr/u16-strncmp.c: New file.
39980         * lib/unistr/u32-strncmp.c: New file.
39981
39982         * modules/unistr/u8-strncpy: New file.
39983         * modules/unistr/u16-strncpy: New file.
39984         * modules/unistr/u32-strncpy: New file.
39985         * lib/unistr/u8-strncpy.c: New file.
39986         * lib/unistr/u16-strncpy.c: New file.
39987         * lib/unistr/u32-strncpy.c: New file.
39988         * lib/unistr/u-strncpy.h: New file.
39989
39990         * modules/unistr/u8-strnlen: New file.
39991         * modules/unistr/u16-strnlen: New file.
39992         * modules/unistr/u32-strnlen: New file.
39993         * lib/unistr/u8-strnlen.c: New file.
39994         * lib/unistr/u16-strnlen.c: New file.
39995         * lib/unistr/u32-strnlen.c: New file.
39996         * lib/unistr/u-strnlen.h: New file.
39997
39998         * modules/unistr/u8-strpbrk: New file.
39999         * modules/unistr/u16-strpbrk: New file.
40000         * modules/unistr/u32-strpbrk: New file.
40001         * lib/unistr/u8-strpbrk.c: New file.
40002         * lib/unistr/u16-strpbrk.c: New file.
40003         * lib/unistr/u32-strpbrk.c: New file.
40004         * lib/unistr/u-strpbrk.h: New file.
40005
40006         * modules/unistr/u8-strrchr: New file.
40007         * modules/unistr/u16-strrchr: New file.
40008         * modules/unistr/u32-strrchr: New file.
40009         * lib/unistr/u8-strrchr.c: New file.
40010         * lib/unistr/u16-strrchr.c: New file.
40011         * lib/unistr/u32-strrchr.c: New file.
40012
40013         * modules/unistr/u8-strspn: New file.
40014         * modules/unistr/u16-strspn: New file.
40015         * modules/unistr/u32-strspn: New file.
40016         * lib/unistr/u8-strspn.c: New file.
40017         * lib/unistr/u16-strspn.c: New file.
40018         * lib/unistr/u32-strspn.c: New file.
40019         * lib/unistr/u-strspn.h: New file.
40020
40021         * modules/unistr/u8-strstr: New file.
40022         * modules/unistr/u16-strstr: New file.
40023         * modules/unistr/u32-strstr: New file.
40024         * lib/unistr/u8-strstr.c: New file.
40025         * lib/unistr/u16-strstr.c: New file.
40026         * lib/unistr/u32-strstr.c: New file.
40027         * lib/unistr/u-strstr.h: New file.
40028
40029         * modules/unistr/u8-strtok: New file.
40030         * modules/unistr/u16-strtok: New file.
40031         * modules/unistr/u32-strtok: New file.
40032         * lib/unistr/u8-strtok.c: New file.
40033         * lib/unistr/u16-strtok.c: New file.
40034         * lib/unistr/u32-strtok.c: New file.
40035         * lib/unistr/u-strtok.h: New file.
40036
40037         * modules/unistr/u8-uctomb: New file.
40038         * modules/unistr/u16-uctomb: New file.
40039         * modules/unistr/u32-uctomb: New file.
40040         * lib/unistr/u8-uctomb.c: New file.
40041         * lib/unistr/u16-uctomb.c: New file.
40042         * lib/unistr/u32-uctomb.c: New file.
40043
40044         * MODULES.html.sh (Unicode string functions): Add the new modules.
40045
40046 2007-01-08  Bruno Haible  <bruno@clisp.org>
40047
40048         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
40049         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
40050         subdirectories.
40051
40052 2007-01-08  Karl Berry  <karl@gnu.org>
40053
40054         * doc/error.texi: mention that main() fns must set program_name
40055         when progname is used.
40056
40057 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
40058
40059         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
40060         WCTYPE_H is empty, for the benefit of builds from non-distclean
40061         directories.  Problem reported by Eric Blake in
40062         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
40063
40064 2007-01-08  Bruno Haible  <bruno@clisp.org>
40065
40066         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
40067         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
40068         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
40069         PROVIDE_CANONICALIZE_FILENAME_MODE.
40070         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
40071
40072 2007-01-08  Bruno Haible  <bruno@clisp.org>
40073
40074         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
40075         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
40076         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
40077         * lib/fts.c: Likewise.
40078         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
40079
40080 2006-12-25  Bruno Haible  <bruno@clisp.org>
40081
40082         * modules/utf8-ucs4-safe: New file.
40083         * lib/utf8-ucs4-safe.h: New file.
40084         * lib/unistr/utf8-ucs4-safe.c: New file.
40085
40086         * modules/utf16-ucs4-safe: New file.
40087         * lib/utf16-ucs4-safe.h: New file.
40088         * lib/unistr/utf16-ucs4-safe.c: New file.
40089
40090         * MODULES.html.sh (Unicode string functions): Add the new modules.
40091
40092 2007-01-08  Bruno Haible  <bruno@clisp.org>
40093
40094         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
40095         (Depends-on): Add unitypes.
40096         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
40097         (u8_mbtouc_aux): Move out to separate file.
40098         (u8_mbtouc): Use ucs4_t, uint8_t types.
40099         * lib/unistr/utf8-ucs4.c: New file.
40100
40101         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
40102         (Depends-on): Add unitypes.
40103         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
40104         (u16_mbtouc_aux): Move out to separate file.
40105         (u16_mbtouc): Use ucs4_t, uint16_t types.
40106         * lib/unistr/utf16-ucs4.c: New file.
40107
40108         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
40109         (Depends-on): Add unitypes.
40110         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
40111         (u8_uctomb_aux): Move out to separate file.
40112         (u8_uctomb): Use ucs4_t, uint8_t types.
40113         * lib/unistr/ucs4-utf8.c: New file.
40114
40115         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
40116         (Depends-on): Add unitypes.
40117         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
40118         (u16_uctomb_aux): Move out to separate file.
40119         (u16_uctomb): Use ucs4_t, uint16_t types.
40120         * lib/unistr/ucs4-utf16.c: New file.
40121
40122 2006-12-25  Bruno Haible  <bruno@clisp.org>
40123
40124         * modules/unitypes: New file.
40125         * lib/unitypes.h: New file.
40126         * MODULES.html.sh (func_all_modules): New section "Unicode string
40127         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
40128         this section. Add unitypes.
40129
40130 2007-01-08  Bruno Haible  <bruno@clisp.org>
40131
40132         Avoid variable names that conflict with those from libtool.
40133         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
40134         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
40135         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
40136         library_names_spec to acl_library_names_spec, hardcode_* to
40137         acl_hardcode_*.
40138         Reported by Ralf Wildenhues.
40139
40140 2007-01-08  Bruno Haible  <bruno@clisp.org>
40141
40142         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
40143         definition.
40144         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
40145         definition.
40146         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
40147         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
40148         definition.
40149         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
40150         definition.
40151         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
40152         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
40153         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
40154         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
40155         definition.
40156         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
40157         definition.
40158         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
40159         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
40160         GC_USE_<algorithm>.
40161         * lib/gc-libgcrypt.c: Likewise.
40162         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
40163         * modules/gc-arctwo (configure.ac): Likewise.
40164         * modules/gc-des (configure.ac): Likewise.
40165         * modules/gc-hmac-md5 (configure.ac): Likewise.
40166         * modules/gc-hmac-sha1 (configure.ac): Likewise.
40167         * modules/gc-md2 (configure.ac): Likewise.
40168         * modules/gc-md4 (configure.ac): Likewise.
40169         * modules/gc-md5 (configure.ac): Likewise.
40170         * modules/gc-random (configure.ac): Likewise.
40171         * modules/gc-rijndael (configure.ac): Likewise.
40172         * modules/gc-sha1 (configure.ac): Likewise.
40173
40174 2007-01-08  Bruno Haible  <bruno@clisp.org>
40175
40176         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
40177         macro definition.
40178         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
40179         definition.
40180         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
40181         definition.
40182         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
40183         * modules/fcntl-safer (configure.ac): Likewise.
40184         * modules/fopen-safer (configure.ac): Likewise.
40185         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
40186         GNULIB_FWRITEERROR macro definition.
40187
40188 2007-01-08  Bruno Haible  <bruno@clisp.org>
40189
40190         * m4/gnulib-common.m4: New file.
40191         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
40192         (func_get_filelist): Add m4/gnulib-common.m4.
40193
40194 2007-01-08  Bruno Haible  <bruno@clisp.org>
40195
40196         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
40197         command.
40198
40199 2007-01-08  Jim Meyering  <jim@meyering.net>
40200
40201         Use a more robust test for a "can't happen" condition.
40202         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
40203         narrowed the st_size value.  Presuming the "can't happen" condition
40204         is true, that narrowing could conceivably convert an invalid st_size
40205         value into a valid one.  Instead, use a change based on Matthew
40206         Woehlke's original patch.
40207
40208         Slight readability improvement: use an assert-like macro
40209         in place of literal "abort ()" uses.
40210         * lib/fts.c (fts_assert): Define.
40211         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
40212         Use this macro instead of a bare 'abort'.
40213
40214 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
40215
40216         Don't worry about using IRIX 5.3's wctype.h broken definitions;
40217         simply work around them.
40218         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
40219         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
40220         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
40221         declaring.
40222         Don't bother to define as macros, since the standard doesn't require it.
40223         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
40224         longer worry about IRIX 5.3.
40225         (HAVE_WCTYPE_CTMP_BUG): Remove.
40226
40227 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
40228
40229         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
40230         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
40231         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
40232         Problems reported by Georg Schwarz for IRIX 5.3.
40233
40234         * gnulib-tool (autoconf_minversion): Take the maximum version number
40235         found, not the minimum.  Problem reported by James Youngman.
40236
40237 2007-01-03  Karl Berry  <karl@gnu.org>
40238
40239         * doc/error.texi: new file, explaining interaction with progname.
40240         * doc/gnulib.texi: include it.  Update copyright.
40241
40242 2007-01-03  Simon Josefsson  <simon@josefsson.org>
40243
40244         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
40245         AC_CANONICAL_HOST, to improve autobuild outputs.
40246
40247 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
40248             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
40249
40250         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
40251         sockets, server sockets, and other file descriptors.  Count errors
40252         to compute the return value.  Reorder the code a bit to be easier
40253         to follow.  Don't set event bits that were not requested (except
40254         POLLERR and POLLHUP).
40255
40256 2007-01-01  Bruno Haible  <bruno@clisp.org>
40257
40258         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
40259
40260 2007-01-03  Jim Meyering  <jim@meyering.net>
40261
40262         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
40263
40264 2007-01-02  Bruno Haible  <bruno@clisp.org>
40265
40266         * modules/settime (Include): Require timespec.h.
40267         * modules/nanosleep (Include): Likewise.
40268
40269 2007-01-01  Bruno Haible  <bruno@clisp.org>
40270
40271         * gnulib-tool (func_emit_copyright_notice): Bump year.
40272         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
40273
40274 2007-01-01  Bruno Haible  <bruno@clisp.org>
40275
40276         Improve support for OpenBSD.
40277         * build-aux/config.rpath (libname_spec): Export.
40278         (library_names_spec): New variable. Export.
40279         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
40280         library_names_spec from the config.rpath output. Locate shared library
40281         through the name pattern in library_names_spec.
40282
40283 2007-01-01  Eric Blake  <ebb9@byu.net>
40284
40285         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
40286
40287 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
40288
40289         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
40290         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
40291         assume the C locale, and avoid an "eval" that could cause trouble.
40292         Problem with SORT reported by Bob Proulx.
40293
40294         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
40295         Define.  Trivial patch from Henning Nielsen Lund, originally
40296         sent to bug-grep@gnu.org today.
40297
40298 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
40299
40300         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
40301         struct stat.  Problem reported by Henning Nielsen Lund.
40302         * lib/acl.c: Include acl.h first, to check interface.  Don't
40303         bother to include sys/types.h and sys/stat.h again.
40304
40305 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
40306
40307         Import the following change from libc; problem reported by
40308         Sven Verdoolaege.
40309
40310         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
40311
40312         [BZ #1373]
40313         * lib/argp.h: Remove __NTH for __argp_usage inline function.
40314
40315 2006-12-28  Jim Meyering  <jim@meyering.net>
40316
40317         * build-aux/announce-gen: Do not assume that the package
40318         builds any of tar.gz, tar.bz2, and .xdelta files.
40319         Suggestion from Simon Josefsson.
40320
40321 2006-12-28  Simon Josefsson  <simon@josefsson.org>
40322
40323         * modules/announce-gen: New file.
40324
40325 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
40326
40327         * lib/mbchar.h: Just include <wctype.h>; the wctype module
40328         handles its gotchas now.
40329         * lib/mbswidth.c: Likewise.
40330         * lib/wcwidth.h: Likewise.
40331         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
40332         and iswcntrl; the wctype module does this stuff now.
40333         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
40334         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
40335         * modules/mbchar (Depends-on): Add wctype.
40336         * modules/mbswidth (Depends-on): Likewise.
40337         * modules/wcwidth (Depends-on): Likewise.
40338
40339 2006-12-27  Eric Blake  <ebb9@byu.net>
40340
40341         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
40342         module uses more than what <wctype.h> is required to provide.
40343
40344 2006-12-26  Eric Blake  <ebb9@byu.net>
40345
40346         * gnulib-tool (sed_extract_prog): Avoid space-tab.
40347
40348 2006-12-26  Eric Blake  <ebb9@byu.net>
40349
40350         * modules/absolute-header: New module.
40351         * modules/fcntl (Depends-on): Depend on it.
40352         * modules/inttypes (Depends-on): Likewise.
40353         * modules/stdint (Depends-on): Likewise.
40354         * modules/sys_stat (Depends-on): Likewise.
40355         * modules/wctype (Depends-on): Likewise.
40356         * MODULES.html.sh (Support for building libraries and
40357         executables): Document it.
40358
40359 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
40360
40361         * gnulib-tool (SED): Remove, undoing previous change.
40362         The problem was that it broke coreutils on Solaris, because
40363         "sed --posix" leaked into a makefile.
40364         (sed): New alias, if 'alias' and GNU sed.
40365
40366 2006-12-24  Jim Meyering  <jim@meyering.net>
40367
40368         Work around an fchownat bug in glibc-2.4:
40369         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
40370         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
40371         in spite of the -P option.
40372         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
40373         New macros.
40374         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
40375         * modules/openat (Files): Add lib/fchownat.c.
40376         * lib/openat.c (fchownat): Don't define here.  Move to...
40377         * lib/fchownat.c: ...this new file.
40378
40379 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
40380
40381         Fix bug reported by Bruno Haible in
40382         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
40383         where quotearg.c didn't compile on Mac OS X 10.2 because it
40384         lacks <wchar.h> and wint_t.
40385         * lib/wctype_.h (__wctype_wint_t): New type.
40386         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
40387         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
40388         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
40389         Arg is now of type __wctype_wint_t, not wint_t.
40390         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
40391         substitute HAVE_WINT_T.
40392         * modules/wctype (Files): Add m4/wint_t.m4.
40393         (wctype.h): Substitute HAVE_WINT_T.
40394
40395 2006-12-23  Bruno Haible  <bruno@clisp.org>
40396
40397         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
40398
40399 2006-12-23  Bruno Haible  <bruno@clisp.org>
40400
40401         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
40402         S_ISLNK.
40403         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
40404         mingw.
40405
40406 2006-12-22  Bruno Haible  <bruno@clisp.org>
40407
40408         * lib/copy-file.c: Include acl.h.
40409         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
40410         Close the file descriptors only after being done with copy_acl.
40411         * modules/copy-file (Depends-on): Add acl.
40412
40413 2006-12-22  Bruno Haible  <bruno@clisp.org>
40414
40415         * gnulib-tool (SED): New variable.
40416         Use $SED instead of sed everywhere.
40417
40418 2006-12-22  Bruno Haible  <bruno@clisp.org>
40419
40420         * modules/no-c++: New file.
40421         * m4/no-c++.m4: New file.
40422         * MODULES.html.sh (Support for building libraries and executables):
40423         Add no-c++.
40424
40425 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
40426
40427         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
40428         Include <limits.h>, and use its INT_MAX to rewrite the
40429         j loop so that it does not overflow 'int'.  Problem reported by
40430         Ralf Wildenhues in
40431         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
40432         Play it safe by shifting left by 1 rather than multiplying by 2,
40433         as GCC is less likely to optimize this away when the value
40434         is signed (when it assumes overflow leads to undefined behavior).
40435         Also, don't assume time_t uses two's complement.
40436
40437 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
40438
40439         * MODULES.html.sh: New module wctype.
40440         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
40441         * lib/fnmatch.c: Don't bother to include <wchar.h> before
40442         <wctype.h>, since the new wctype module should fix this.
40443         * lib/quotearg.c: Include <wctype.h> unconditionally, since
40444         the wctype module should arrange for it.
40445         * lib/regex_internal.h: Likewise.
40446         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
40447         since the wctype module should handle this now.
40448         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
40449         * modules/fnmatch (Depends-on): Add wctype.
40450         * modules/quotearg (Depends-on): Likewise.
40451         * modules/regex (Depends-on): Likewise.
40452
40453 2006-12-19  Bruno Haible  <bruno@clisp.org>
40454
40455         * lib/strdup.h [C++]: Wrap definitions in extern "C".
40456         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
40457
40458 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40459
40460         * modules/savewd (Depends-on): Fix dependency on fcntl.
40461
40462 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
40463
40464         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
40465         conforms to C99, rather than relying on the user's environment
40466         setting of STDINT_H.
40467
40468 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
40469         and Eric Blake  <ebb9@byu.net>
40470
40471         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
40472         This is more consistent with the other defines here.
40473         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
40474         Port to z/OS.  Problem reported by Paul Gilmartin.
40475         Change local vars to use gl_ prefix rather than ac_.
40476         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
40477         with other defines.
40478         * modules/double-slash-root: New module.
40479         * modules/dirname (Files): Remove m4/double-slash-root.m4.
40480         (Depends-on): Add double-slash-root.
40481         * MODULES.html.sh (File system functions): Mention new module.
40482
40483 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
40484
40485         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
40486         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
40487         This is for the benefit of gzip, which doesn't do i18n.
40488
40489 2006-12-12  Jim Meyering  <jim@meyering.net>
40490
40491         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
40492         Reported by Andreas Schwab <schwab@suse.de>.
40493
40494 2006-12-12  Bruno Haible  <bruno@clisp.org>
40495
40496         Merge these changes.
40497         2006-09-05  Bruno Haible  <bruno@clisp.org>
40498         * lib/iconvme.c (iconv_string): No need to save and restore errno when
40499         iconv_alloc succeeded.
40500         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
40501         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
40502         test for " && dest " at the end - dest is always != NULL there. Call
40503         iconv with 4xNULL arguments initially, to reset the state. Call iconv
40504         with 2xNULL arguments, also to flush the state storage. Handle the
40505         IRIX iconv behaviour. Realloc the final result, to throw away unused
40506         memory.
40507
40508 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
40509
40510         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
40511         and fchmodat unconditionally, since glibc 2.4 has them.
40512         Problem reported by Arkadiusz Miskiewicz.
40513
40514 2006-12-10  Bruno Haible  <bruno@clisp.org>
40515
40516         * gnulib-tool (func_import): Show the include files only for those
40517         modules that are copied and specified.
40518         Reported by Karl Berry.
40519
40520 2006-12-08  Jim Meyering  <jim@meyering.net>
40521
40522         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
40523         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
40524
40525         * build-aux/announce-gen: Add two new options, both optional:
40526         --bootstrap-tools=TOOL_LIST
40527               a comma-separated list of tools, e.g.,
40528               autoconf,automake,bison,gnulib
40529         --gnulib-snapshot-date=DATE
40530               if gnulib is in the bootstrap tool list,
40531               then report this as the snapshot date.
40532               If not specified, use the current date/time.
40533               If you specify a date here, be sure it's UTC.
40534
40535 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40536
40537         * tests/test-argp-2.sh: Fix test to match actual output.
40538         (func_compare): Fix sed script to be portable.
40539
40540 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
40541
40542         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
40543         workaround for this case.  It is not autoconfigured now; offhand
40544         it's hard to see how to autoconfigure it.
40545
40546 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
40547
40548         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
40549         a directory that is about to be chowned.  Such a directory's
40550         initial file permissions should permit the owner only and this
40551         should not be changed until after the chown, since the group and
40552         other bits would be incorrect if they granted permission before
40553         the chown.
40554
40555         Fix porting problem for iswctype reported by Georg Schwarz in:
40556         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
40557         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
40558         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
40559         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
40560         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
40561
40562 2006-12-03  Jim Meyering  <jim@meyering.net>
40563
40564         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
40565         p->fts_statp may not yet be defined.
40566         (fts_read): Instead, set it in the caller, once p->fts_statp is
40567         sure to be defined, and corresponds to a top-level directory.
40568         This bug made du -x fail.  Here's the coreutils test case:
40569         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
40570         Reported by Mike Frysinger.
40571
40572 2006-12-01  Jim Meyering  <jim@meyering.net>
40573
40574         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
40575         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
40576         Reported by Simon Josefsson.
40577
40578 2006-11-30  Jim Meyering  <jim@meyering.net>
40579
40580         * m4/warning.m4: Use the all-permissive copyright notice
40581         recommended by RMS (rather than LGPL).
40582         * m4/vararrays.m4: Likewise.
40583         * m4/flexmember.m4: Likewise.
40584
40585 2006-11-29  Bruno Haible  <bruno@clisp.org>
40586
40587         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
40588         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
40589         using +=.
40590         Reported by Simon Josefsson <simon@josefsson.org>.
40591
40592 2006-11-28  James Youngman <jay@gnu.org>
40593
40594         * README: Advise users that they might find the bug-gnulib@gnu.org
40595         and autotools-announce@gnu.org mailing lists useful.
40596
40597 2006-11-28  Bruno Haible  <bruno@clisp.org>
40598
40599         * m4/ptrdiff_max.m4: Remove file.
40600
40601 2006-11-21  Bruno Haible  <bruno@clisp.org>
40602
40603         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
40604         _AC_COMPUTE_INT.
40605         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
40606         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
40607         _AC_COMPUTE_INT.
40608         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
40609         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
40610         _AC_COMPUTE_INT.
40611         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
40612
40613 2006-11-28  Jim Meyering  <jim@meyering.net>
40614
40615         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
40616         warning from "gcc -Wshadow" about shadowing the builtin.
40617
40618 2006-11-27  Bruno Haible  <bruno@clisp.org>
40619
40620         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
40621         _AC_COMPUTE_INT.
40622         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
40623
40624 2006-11-27  Bruno Haible  <bruno@clisp.org>
40625             Paul Eggert  <eggert@cs.ucla.edu>
40626
40627         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
40628
40629 2006-11-26  Bruno Haible  <bruno@clisp.org>
40630
40631         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
40632         noinst_LTLIBRARIES.
40633
40634 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
40635             Bruno Haible  <bruno@clisp.org>
40636
40637         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
40638         if compiling with "gcc -ansi".
40639
40640 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
40641
40642         Fix some incompatibilities with gcc -ansi -pedantic.
40643         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
40644         if compiling pedantically with GCC, unless it's C99 or later.
40645         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
40646         it mishandles gcc -ansi -pedantic as well.
40647         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
40648         if gcc -pedantic.
40649         * lib/regexec.c (check_node_accept_bytes): Don't use auto
40650         initializers for struct if -pedantic, unless it's C99 or later.
40651
40652 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
40653
40654         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
40655         Don't close an fd more than once. Identical atimes indicate
40656         success, not failure.
40657
40658 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
40659
40660         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
40661
40662 2006-11-23  Jim Meyering  <jim@meyering.net>
40663
40664         * build-aux/announce-gen: New file.  From coreutils.
40665
40666 2006-11-22  Jim Meyering  <jim@meyering.net>
40667
40668         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
40669         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
40670         (fts_read): Use a temporary to narrow the overused st_size member
40671         before using it in a switch statement.  Reported by Matthew Woehlke.
40672
40673         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
40674         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
40675
40676 2006-11-20  Bruno Haible  <bruno@clisp.org>
40677
40678         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
40679         changequote instead of pairs of brackets.
40680         Reported by Andreas Schwab <schwab@suse.de>.
40681
40682 2006-11-21  Jim Meyering  <jim@meyering.net>
40683
40684         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
40685         so as to remain compatible with older compilers.
40686         Patch from Michael Deutschmann.
40687
40688 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
40689
40690         * MODULES.html.sh (File system functions): Add openat.
40691
40692         * lib/openat.h (rpl_fstatat): New macro, if
40693         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
40694         (fstatat): Define to rpl_fstatat under the same conditions,
40695         unless COMPILING_FSTATAT.
40696         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
40697         seems to have the bug.
40698         * lib/fstatat.c: New file.
40699         * modules/openat (Files): Add it.
40700
40701 2006-11-20  Bruno Haible  <bruno@clisp.org>
40702
40703         * Makefile: New file.
40704
40705 2006-11-20  Jim Meyering  <jim@meyering.net>
40706
40707         The beginnings of syntax-related checks for gnulib.
40708         * lib/Makefile: New file.
40709         * lib/t-idcache: New script.  Ensure that the two halves of
40710         idcache.c stay in sync.
40711
40712         * lib/idcache.c: Adjust comments in user- and group- portions to
40713         be more accurate, and to be consistent with one another.
40714
40715 2006-11-20  Jim Meyering  <jim@meyering.net>
40716
40717         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
40718         continue using the flexible array member (thus, this module performs
40719         half as many malloc calls), with the addition that...
40720         (getgroup, getuser): Consistently record a non-match via an empty
40721         "name" string, and map an empty string match to a NULL return value.
40722         * modules/idcache (Depends-on): Re-add flexmember.
40723
40724         * lib/idcache.c (getuser): Remove all uses of the register keyword.
40725         (getuidbyname, getgroup, getgidbyname): Likewise.
40726
40727         Use cleaner syntax: NULL rather than 0.
40728         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
40729
40730 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
40731
40732         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
40733         It mishandled the case where the group was missing.
40734         Problem reported by Greg Schafer.
40735         * modules/idcache: Likewise.
40736
40737 2006-11-18  Jim Meyering  <jim@meyering.net>
40738
40739         * check-module (%exempt_header): Add exception for some
40740         conditionally-included headers.
40741
40742         * modules/i-ring (Depends-on): Add verify.
40743         (License): Change to LGPL.
40744
40745 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
40746
40747         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
40748         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
40749         and inttostr.h.  Use snprintf rather than uinttostr, so that
40750         LGPLed code doesn't depend on GPLed.
40751
40752 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
40753
40754         * modules/inline (License): Change from GPL to LGPL.
40755
40756 2006-11-17  Jim Meyering  <jim@meyering.net>
40757
40758         * modules/d-type (License): Switch to LGPL.
40759
40760 2006-11-15  Bruno Haible  <bruno@clisp.org>
40761
40762         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
40763
40764 2006-11-15  Eric Blake  <ebb9@byu.net>
40765
40766         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
40767         the module dependency.
40768
40769 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40770             Bruno Haible  <bruno@clisp.org>
40771
40772         * gnulib-tool (func_create_testdir): Add license consistency check.
40773
40774 2006-11-15  Eric Blake  <ebb9@byu.net>
40775
40776         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
40777         random "(cached)" in configure output.
40778
40779 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40780
40781         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
40782         test for conforming inttypes.h is both announced and cached.
40783
40784         * MODULES.html.sh (seen_modules, seen_files): New variables.
40785         (func_module): Rewrite to use a few less gnulib-tool and sed
40786         invocations.  Avoid a couple of quadratic algorithms for ...
40787         (missed_modules, missed_files): ... these, with ...
40788         (func_append, func_tmpdir): ... these new functions, from
40789         gnulib-tool.  Analogously, install traps for cleanup.
40790
40791         * tests/test-gc.c (main): Remove unused variables.
40792         * tests/test-read-file.c: Include stdlib.h, for 'free'.
40793
40794 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
40795
40796         * modules/inttostr (License): Change to LGPL.
40797
40798 2006-11-14  Eric Blake  <ebb9@byu.net>
40799
40800         * modules/tempname (License): Change to LGPL.
40801
40802 2006-11-14  Eric Blake  <ebb9@byu.net>
40803
40804         * doc/functions.texi (Function Portability): *printf functions on
40805         Cygwin now understand all POSIX size specifiers.
40806
40807 2006-11-14  Bruno Haible  <bruno@clisp.org>
40808
40809         * modules/c-ctype (License): Change to LGPL.
40810
40811 2006-11-12  Bruno Haible  <bruno@clisp.org>
40812
40813         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
40814         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
40815         for GNOME libraries, for which the include files are installed in
40816         subdirectories of $prefix/include.
40817
40818 2006-11-12  Bruno Haible  <bruno@clisp.org>
40819
40820         * m4/lib-link.m4: Require at least autoconf-2.54.
40821         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
40822         name to underscores for the --with option.
40823
40824 2006-11-13  Bruno Haible  <bruno@clisp.org>
40825
40826         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
40827         the tests directory.
40828         Reported by Ralf Wildenhues.
40829
40830 2006-11-13  Bruno Haible  <bruno@clisp.org>
40831
40832         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
40833         (func_emit_initmacro_end): Undo the override here.
40834         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
40835         Works around the famous automake error in coreutils.
40836
40837 2006-11-13  Eric Blake  <ebb9@byu.net>
40838
40839         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
40840         element, not its node.
40841
40842 2006-11-12  Bruno Haible  <bruno@clisp.org>
40843
40844         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
40845         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
40846
40847 2006-11-12  Bruno Haible  <bruno@clisp.org>
40848
40849         * gnulib-tool: New option --local-symlink.
40850         (func_usage): Document it.
40851         (lsymbolic): New variable.
40852         (func_import, func_create_testdir): If --symlink was not specified,
40853         test whether --local-symlink was specified and the file comes from
40854         the local_gnulib_dir.
40855
40856 2006-11-12  Bruno Haible  <bruno@clisp.org>
40857
40858         * gnulib-tool (func_ln): New function.
40859         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
40860
40861 2006-11-12  Bruno Haible  <bruno@clisp.org>
40862
40863         Finish support for source files in subdirectories.
40864         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
40865         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
40866         AUTOMAKE_OPTIONS.
40867         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
40868
40869 2006-11-12  Bruno Haible  <bruno@clisp.org>
40870
40871         * gnulib-tool (func_get_automake_snippet): Synthesize also an
40872         EXTRA_lib_SOURCES augmentation.
40873         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
40874
40875 2006-11-12  Jim Meyering  <jim@meyering.net>
40876
40877         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
40878         file descriptors.  This also averts a failure on systems with
40879         native openat support when a traversed directory lacks "x" access.
40880         * lib/fts_.h: Include "i-ring.h"
40881         (struct FTS) [fts_fd_ring]: New member.
40882         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
40883         (FCHDIR): Add parentheses.
40884         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
40885         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
40886         When descending, rather than simply closing the previous
40887         fts_cwd_fd value, push that file descriptor onto the ring.
40888         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
40889         (fts_open): Initialize the new fd_ring member.
40890         (fts_close): Clear the ring.
40891         (fts_safe_changedir): When possible, use our new fd_ring to skip
40892         the diropen and fstat and dev/ino comparison that would normally
40893         accompany a virtual `chdir ("..")'.
40894
40895         * modules/fts (Depends-on): Add i-ring.
40896         * modules/i-ring: New module.
40897         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
40898         * m4/i-ring.m4: New file.
40899
40900 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40901
40902         * gnulib-tool (func_create_testdir): Fix replacement of
40903         `build-aux' in configure.ac.  Run autotools in gltests
40904         subdirectory.
40905         (func_create_testdir, func_create_megatestdir, test): There is
40906         no need for '--force' in most autotool invocations in a new
40907         tree.  Actually fail the whole test if any of the tools, or the
40908         configure or make stages fail.
40909
40910         Sync from Automake.
40911         * build-aux/gnupload: Revert last change.  Add pointer to upload
40912         instructions of the GNU Maintenance Instructions.
40913         Suggestion by Karl Berry.
40914
40915 2006-11-10  Jim Meyering  <jim@meyering.net>
40916
40917         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
40918
40919 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
40920
40921         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
40922         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
40923         (bind_textdomain_codeset) [! ENABLE_NLS]:
40924         Evaluate all the arguments.  That way, callers get compatible behavior
40925         if the arguments have side effects.  Also, it avoids some GCC
40926         diagnostics in some cases; Joel E. Denny reported problems when Bison
40927         was configured with --enable-gcc-warnigs.
40928
40929 2006-11-10  Jim Meyering  <jim@meyering.net>
40930
40931         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
40932         relevant options in CFLAGS (like -O, -fno-inline) are taken into
40933         account.
40934
40935 2006-11-10  Jim Meyering  <jim@meyering.net>
40936
40937         * modules/inline: New file/module.
40938         * modules/xalloc (Files): Remove m4/inline.m4.
40939         (Depends-on): Add inline, instead.
40940         * modules/oset: Likewise.
40941         * modules/list: Likewise.
40942
40943 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
40944
40945         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
40946         Problem reported by Matthew Woehlke.
40947
40948 2006-11-09  Bruno Haible  <bruno@clisp.org>
40949
40950         * lib/tempname.c (gen_tempname): Remove variant that invokes
40951         __gen_tempname.
40952         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
40953         __gen_tempname.
40954
40955 2006-11-08  Bruno Haible  <bruno@clisp.org>
40956
40957         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
40958         to 'yes' instead of 'cross-compiling'.
40959
40960 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
40961
40962         * lib/quotearg.h (quotearg_free): New decl.
40963         * lib/quotearg.c (quotearg_free): New function.
40964         (slot0, nslots, slotvec0, slotvec):
40965         Now file-scope so that quotearg_free can get at them.
40966
40967 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40968
40969         Sync from Automake.
40970         * build-aux/gnupload: Add missing 'gnu' to example URL.
40971         Report by Karl Berry.
40972
40973 2006-11-08  Bruno Haible  <bruno@clisp.org>
40974
40975         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
40976         Suggested by Paul Eggert.
40977
40978 2006-11-08  Jim Meyering  <jim@meyering.net>
40979
40980         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
40981         It's already included if !_LIBC.
40982         (fts_safe_changedir): Add a comment.
40983
40984 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
40985
40986         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
40987         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
40988         Matthew Woehlke.
40989
40990         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
40991         definitions up, to avoid colliding with change below.
40992         (static_inline) [HAVE_INLINE]: New macro.
40993         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
40994         Provide extern decls when !HAVE_INLINE.  Do not define unless
40995         static_inline is defined, either by us or by xmalloc.c.  Use
40996         static_inline rather than static inline.
40997         (XCALLOC): Optimize sizeof(T) = 1 case.
40998         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
40999
41000 2006-11-07  Bruno Haible  <bruno@clisp.org>
41001
41002         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
41003         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
41004         AC_C_INLINE.
41005         * modules/xalloc (Files): Add m4/inline.m4.
41006
41007 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41008
41009         * README: Fix typo.
41010         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
41011         (Miscellanous Notes): ...from this.
41012
41013 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
41014
41015         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
41016         Mention that offsetof should be used instead of sizeof.
41017         From Bruno Haible.
41018
41019 2006-11-07  Bruno Haible  <bruno@clisp.org>
41020
41021         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
41022
41023 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
41024
41025         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
41026         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
41027         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
41028         (gl_tree_add_before, gl_tree_add_after):
41029         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
41030         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
41031         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
41032         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
41033         (gl_linked_add_after, gl_linked_add_at): Likewise.
41034         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
41035         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
41036         (gl_tree_add_before, gl_tree_add_after): Likewise.
41037         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
41038         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
41039         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
41040
41041 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41042
41043         * lib/gl_oset.h: Use C comment style, not C++ comment style.
41044
41045 2006-11-06  Bruno Haible  <bruno@clisp.org>
41046
41047         * m4/inline.m4: New file.
41048         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
41049         * modules/list (Files): Add m4/inline.m4.
41050         * modules/oset (Files): Likewise.
41051
41052 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
41053
41054         * lib/idcache.c: Include <stddef.h>, for offsetof.
41055         (struct userid.name): Change from char * to a flexible array member.
41056         All uses changed.
41057         * modules/idcache (Depends-on): Add flexmember.
41058
41059         * MODULES.html.sh (Core language properties): New module flexmember.
41060         * modules/flexmember, m4/flexmember.m4: New files.
41061
41062         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
41063         inline functions that are identical with the old xnmalloc_inline,
41064         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
41065         that we can avoid some unnecessary integer multiplications and
41066         divisions in the common case where the element size is known at
41067         compile time.
41068         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
41069         needed.
41070         (xnboundedmalloc): Remove.
41071         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
41072         arguments, for consistency with rest of this header.
41073         (xcharalloc): Rewrite using XNMALLOC.
41074         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
41075         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
41076         versions have been moved to lib/xalloc.h and renamed to be the
41077         non-*_inline versions.
41078         (xmalloc, xrealloc): Implement without reference to the xnmalloc
41079         and xnrealloc functions, since those functions are now inline and
41080         now call us.
41081         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
41082         renaming described above.
41083         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
41084         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
41085         captures the dependency in AC_C_INLINE.
41086
41087         New module canonicalize-lgpl, proposed by Charles Wilson in
41088         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
41089         with a few small changes afterwards.
41090         * MODULES.html.sh (File system functions): New module
41091         canonicalize-lgpl.
41092         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
41093         and canonicalize_file_name.
41094         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
41095         * modules/canonicalize-lgpl: New files.
41096
41097 2006-11-05  Bruno Haible  <bruno@clisp.org>
41098
41099         * gnulib-tool (func_import, func_create_testdir): Create directories
41100         also for files in subdirectories of lib/.
41101
41102 2006-11-05  Bruno Haible  <bruno@clisp.org>
41103
41104         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
41105         ANSI C compliant.
41106
41107 2006-11-03  Bruno Haible  <bruno@clisp.org>
41108
41109         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
41110         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
41111         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
41112         (xnboundedmalloc): New inline function.
41113         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
41114         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
41115         xmalloc.
41116         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
41117         xmalloc.
41118         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
41119         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
41120         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
41121         xmalloc.
41122         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
41123         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
41124         xmalloc.
41125         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
41126         gl_tree_add_after): Use XMALLOC instead of xmalloc.
41127         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
41128         xmalloc.
41129         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
41130         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
41131         gl_tree_add_after): Use XMALLOC instead of xmalloc.
41132         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
41133         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
41134         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
41135         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
41136
41137 2006-11-03  Bruno Haible  <bruno@clisp.org>
41138
41139         * lib/c-ctype.h [C++]: Define functions without name mangling.
41140         * lib/fwriteerror.h [C++]: Likewise.
41141         * lib/gcd.h [C++]: Likewise.
41142         * lib/linebreak.h [C++]: Likewise.
41143
41144 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
41145
41146         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
41147         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
41148         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
41149         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
41150         Check for functions and headers just once.
41151         Check for declaration of canonicalize_file_name.
41152         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
41153
41154 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
41155
41156         * gnulib-tool (func_import): Fix typo in actioncmd.
41157
41158 2006-11-02  Bruno Haible  <bruno@clisp.org>
41159
41160         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
41161         newline sequence in the Makefile.am snippet as a space, like "make"
41162         does.
41163         Reported by Roger Persson <perrog@gmail.com>.
41164
41165 2006-11-01  Bruno Haible  <bruno@clisp.org>
41166
41167         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
41168         already declared in <string.h>.
41169         * lib/strcase.h (strncasecmp): Don't declare it if yes.
41170
41171 2006-11-01  Bruno Haible  <bruno@clisp.org>
41172
41173         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
41174         * lib/strcase.h: Include <string.h>.
41175         (strcasecmp): Define to rpl_strcasecmp here.
41176
41177 2006-11-01  Bruno Haible  <bruno@clisp.org>
41178
41179         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
41180
41181 2006-11-01  Eric Blake  <ebb9@byu.net>
41182
41183         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
41184
41185         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
41186
41187 2006-10-29  Bruno Haible  <bruno@clisp.org>
41188
41189         Make it compile in C++ mode.
41190         * lib/full-write.c (full_rw): Add a cast.
41191
41192 2006-11-01  Bruno Haible  <bruno@clisp.org>
41193
41194         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
41195         be POSIX compliant.
41196         Reported by Roger Persson <perrog@gmail.com>.
41197
41198 2006-11-01  Eric Blake  <ebb9@byu.net>
41199
41200         * lib/getopt_.h: Fix comments.
41201
41202 2006-10-31  Eric Blake  <ebb9@byu.net>
41203
41204         * modules/tmpdir (Depends-on): Add sys_stat.
41205         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
41206         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
41207         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
41208         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
41209         tempname.
41210
41211 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
41212
41213         Avoid some C++ diagnostics reported by Bruno Haible.
41214         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
41215         xmalloc.
41216         (quotearg_alloc): Use xcharalloc rather than xmalloc.
41217         (struct slotvec): Move to top level.
41218         (quotearg_n_options): Rewrite to avoid xmalloc.
41219         * lib/xalloc.h (xcharalloc): New function.
41220         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
41221         [defined __cplusplus]: Add function template that provides result
41222         type propagation.  This part of the change is from Bruno Haible.
41223
41224 2006-10-29  Bruno Haible  <bruno@clisp.org>
41225
41226         Make it compile in C++ mode.
41227         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
41228         * lib/strnlen1.c (strnlen1): Cast memchr result.
41229         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
41230         * lib/clean-temp.c (string_equals, string_hash): Add casts.
41231         (create_temp_dir): Rename local variable 'template'.
41232         (compile_csharp_using_sscli): Add cast.
41233         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
41234         * lib/findprog.c (find_in_path): Likewise.
41235         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
41236         * lib/wait-process.c (register_slave_subprocess): Likewise.
41237
41238 2006-10-22  Bruno Haible  <bruno@clisp.org>
41239
41240         * modules/tsearch: New file.
41241         * lib/tsearch.h: New file.
41242         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
41243         * m4/tsearch.m4: New file.
41244         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
41245
41246 2006-10-29  Eric Blake  <ebb9@byu.net>
41247
41248         * lib/arcfour.c: Assume config.h.
41249         * lib/arctwo.c: Likewise.
41250         * lib/base64.c: Likewise.
41251         * lib/check-version.c: Likewise.
41252         * lib/crc.c: Likewise.
41253         * lib/des.c: Likewise.
41254         * lib/gc-gnulib.c: Likewise.
41255         * lib/gc-libgcrypt.c: Likewise.
41256         * lib/gc-pbkdf2-sha1.c: Likewise.
41257         * lib/getaddrinfo.c: Likewise.
41258         * lib/getdelim.c: Likewise.
41259         * lib/getline.c: Likewise.
41260         * lib/hmac-md5.c: Likewise.
41261         * lib/hmac-sha1.c: Likewise.
41262         * lib/iconvme.c: Likewise.
41263         * lib/md2.c: Likewise.
41264         * lib/md4.c: Likewise.
41265         * lib/memxor.c: Likewise.
41266         * lib/read-file.c: Likewise.
41267         * lib/readline.c: Likewise.
41268         * lib/rijndael-alg-fst.c: Likewise.
41269         * lib/rijndael-api-fst.c: Likewise.
41270         * lib/xgetdomainname.c: Likewise.
41271
41272 2006-10-28  Eric Blake  <ebb9@byu.net>
41273
41274         * lib/xstrndup.c: Assume config.h.
41275
41276 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
41277
41278         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
41279         stat-macros.h is now for our own macros, whereas stat_h is for
41280         macros in the <sys/stat.h> name space.
41281         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
41282         (STAT_MACROS_H): Remove.
41283         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
41284         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
41285         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
41286         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
41287         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
41288         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
41289         Move these macros to ...
41290         * lib/stat_.h: here.  Don't include stat-macros.h.
41291         * lib/canonicalize.c: Don't include stat-macros.h.
41292         * lib/chown.c: Likewise.
41293         * lib/euidaccess.c: Likewise.
41294         * lib/file-type.c: Likewise.
41295         * lib/filemode.c: Likewise.
41296         * lib/glob.c: Likewise.
41297         * lib/isapipe.c: Likewise.
41298         * lib/lchown.c: Likewise.
41299         * lib/lstat.c: Likewise.
41300         * lib/mkdir-p.c: Likewise.
41301         * lib/rmdir.c: Likewise.
41302         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
41303         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
41304         unless mkdir isn't declared, to speed up 'configure'.
41305         Always create sys/stat.h, since it's unlikely any real sys/stat.h
41306         would define all the S_* symbols.
41307         * modules/canonicalize (Depends-on):
41308         Depend on sys_stat, not stat-macros.
41309         * modules/chown: Likewise.
41310         * modules/euidaccess: Likewise.
41311         * modules/filemode: Likewise.
41312         * modules/file-type: Likewise.
41313         * modules/glob: Likewise.
41314         * modules/isapipe: Likewise.
41315         * modules/lchown: Likewise.
41316         * modules/lstat: Likewise.
41317         * modules/mkancesdirs: Likewise.
41318         * modules/rmdir: Likewise.
41319         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
41320         * modules/modechange: Likewise.
41321         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
41322         (configure.ac): Remove gl_STAT_MACROS.
41323         * modules/sys_stat (Depends-on): Remove stat-macros.
41324
41325 2006-10-27  Bruno Haible  <bruno@clisp.org>
41326
41327         * m4/signed.m4: Remove file.
41328         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
41329         invocation.
41330         * modules/vasnprintf (Files): Remove m4/signed.m4.
41331
41332 2006-10-27  Bruno Haible  <bruno@clisp.org>
41333
41334         Update to GNU gettext 0.16.
41335         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
41336         m4/inttypes-h.m4, m4/signed.m4.
41337         * m4/gettext.m4: Update to GNU gettext 0.16.
41338         * m4/intl.m4: New file, from GNU gettext.
41339         * m4/intldir.m4: New file, from GNU gettext.
41340         * config/srclist.txt: Update
41341
41342 2006-10-27  Eric Blake  <ebb9@byu.net>
41343
41344         * MODULES.html.sh: Document tempname.
41345         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
41346         dependencies.
41347         (Files): Move lib/tempname.c...
41348         * modules/tempname: ...to this new module.
41349         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
41350         (gl_PREREQ_TEMPNAME): Move...
41351         * m4/tempname.m4: ...to this new file.
41352         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
41353         * modules/sys_stat (Depends-on): Add stat-macros.
41354         * lib/stat_.h (includes): Pick up stat macros.
41355         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
41356         if stat macros are broken.
41357         * lib/tempname.c (includes): No need to include "stat-macros.h".
41358         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
41359         (direxists, __path_search) [!_LIBC]: Don't compile these in
41360         gnulib; the tmpdir module covers that.
41361         * lib/tempname.h: New file.
41362
41363 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
41364
41365         * COPYING: Explain how gnulib-tool converts licence headers.
41366         Almost all wording by Eric Blake.
41367
41368 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
41369
41370         * lib/mbchar.h (is_basic_table): Make read-only.
41371         * lib/mbchar.c (is_basic_table): Likewise.
41372         Reported by John Darrington.
41373
41374 2006-10-25  Bruno Haible  <bruno@clisp.org>
41375
41376         * lib/progname.h (set_program_name): Undefine before defining.
41377
41378 2006-10-25  Bruno Haible  <bruno@clisp.org>
41379
41380         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
41381         false for non-gcc C++ compilers.
41382         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
41383
41384 2006-10-24  Bruno Haible  <bruno@clisp.org>
41385
41386         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
41387         iconv implementations like Irix iconv.
41388
41389 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41390
41391         * modules/vararrays: New file.
41392         * m4/vararrays.m4: New file, taken from diffutils.
41393         * MODULES.html.sh: New module vararrays.
41394
41395 2006-10-24  Karl Berry  <karl@gnu.org>
41396
41397         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
41398         Don't call GNU Unix.
41399
41400 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41401
41402         * users.txt: Add Libtool.
41403
41404         Sync from Libtool:
41405
41406         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41407
41408         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
41409         to gnulib's policy of including config.h unconditionally.
41410
41411 2006-10-24  Bruno Haible  <bruno@clisp.org>
41412
41413         * modules/wcwidth (Files): Add m4/wint_t.m4.
41414         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
41415         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
41416
41417 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41418
41419         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
41420         to pacify GCC with some -W flags enabled.  Problem reported by
41421         Bruno Haible.
41422
41423 2006-10-24  Jim Meyering  <jim@meyering.net>
41424
41425         * MODULES.html.sh: Remove uinttostr.  It's not a module.
41426         Reported by Karl Berry.
41427
41428 2006-10-23  Bruno Haible  <bruno@clisp.org>
41429
41430         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
41431
41432 2006-10-24  Bruno Haible  <bruno@clisp.org>
41433
41434         * lib/gl_list.h: Use C comment style, not C++ comment style.
41435
41436 2006-10-23  Eric Blake  <ebb9@byu.net>
41437
41438         * lib/getaddrinfo.c (includes): Add missing include.
41439
41440 2006-10-23  Bruno Haible  <bruno@clisp.org>
41441             Paul Eggert  <eggert@cs.ucla.edu>
41442
41443         Ability to rename obstack_free.
41444         * lib/obstack.h (__obstack_free): New macro. Declare instead of
41445         obstack_free.
41446         (obstack_free): Invoke the __obstack_free macro.
41447         * lib/obstack.c (obstack_free): Use __obstack_free macro.
41448
41449 2006-10-23  Bruno Haible  <bruno@clisp.org>
41450             Paul Eggert  <eggert@cs.ucla.edu>
41451
41452         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
41453         __argc, __argv from the declaration. (They are defined as macros on
41454         mingw.)
41455
41456 2006-10-22  Bruno Haible  <bruno@clisp.org>
41457
41458         * doc/gnulib-intro.texi: New file.
41459         * doc/gnulib.texi: Include it.
41460
41461 2006-10-21  Bruno Haible  <bruno@clisp.org>
41462
41463         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
41464         "Introduction", "Miscellanous Notes", "Particular Modules".
41465
41466 2006-10-21  Bruno Haible  <bruno@clisp.org>
41467
41468         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
41469         Change mostlyclean-local rule to avoid sh syntax error from bash
41470         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
41471
41472 2006-10-23  Jim Meyering  <jim@meyering.net>
41473
41474         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
41475         in place of snprintf.
41476
41477         * modules/inttostr (Files): Add lib/uinttostr.c.
41478         * lib/uinttostr.c (inttostr): New file/function.
41479         * lib/inttostr.h (uinttostr): Declare.
41480         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
41481         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
41482         Add uinttostr.
41483         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
41484
41485 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
41486
41487         * lib/canonicalize.c (ELOOP): Define if not already defined.
41488         Problem reported by Bruno Haible in
41489         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
41490
41491 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
41492
41493         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
41494         Problem reported by Perry Smith and Ville Laurikari.
41495
41496         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
41497         uses.
41498
41499 2006-10-19  Bruno Haible  <bruno@clisp.org>
41500
41501         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
41502         for mingw.
41503
41504 2006-10-19  Bruno Haible  <bruno@clisp.org>
41505
41506         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
41507         Needed for mingw.
41508
41509 2006-10-19  Bruno Haible  <bruno@clisp.org>
41510
41511         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
41512
41513 2006-10-19  Bruno Haible  <bruno@clisp.org>
41514
41515         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
41516         it.
41517
41518 2006-10-19  Bruno Haible  <bruno@clisp.org>
41519
41520         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
41521         invocation.
41522
41523 2006-10-19  Bruno Haible  <bruno@clisp.org>
41524
41525         * gnulib-tool (func_create_testdir): Don't include ftruncate and
41526         mountlist by default.
41527
41528 2006-10-16  Bruno Haible  <bruno@clisp.org>
41529
41530         * lib/c-strstr.c: Include c-strstr.h.
41531
41532 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
41533
41534         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
41535         in a slash.
41536
41537 2006-10-18  Bruno Haible  <bruno@clisp.org>
41538
41539         * lib/lock.h [C++]: Wrap definitions in extern "C".
41540
41541 2006-10-18  Bruno Haible  <bruno@clisp.org>
41542
41543         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
41544         gl_LIBOBJS list.
41545
41546 2006-10-18  Bruno Haible  <bruno@clisp.org>
41547
41548         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
41549
41550 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
41551
41552         * lib/xstrtol.h: Include gettext.h.
41553         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
41554         Problem reported by Eric Blake.
41555         * modules/xstrtol (Depends-on): Add gettext-h.
41556
41557 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
41558
41559         * lib/strftime.c (advance): New macro.
41560         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
41561         incomplete type, so you can't add 0 to it.  Problem and patch
41562         reported by Eelco Dolstra for dietlibc.
41563
41564 2006-10-18  Jim Meyering  <jim@meyering.net>
41565
41566         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
41567         type for a local, and rename it: s/up/user_proc/.
41568
41569 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
41570
41571         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
41572         READ_UTMP_USER_PROCESS.
41573         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
41574
41575 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
41576
41577         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
41578         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
41579
41580 2006-10-17  Eric Blake  <ebb9@byu.net>
41581
41582         * lib/sigprocmask.c (sigprocmask): Fix typo.
41583
41584         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
41585
41586         * modules/clean-temp (Makefile.am): Don't add to make output...
41587         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
41588         config.h.
41589
41590 2006-10-17  Bruno Haible  <bruno@clisp.org>
41591
41592         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
41593         differently if DEFAULT_TEXT_DOMAIN is set.
41594
41595 2006-10-16  Bruno Haible  <bruno@clisp.org>
41596
41597         * lib/clean-temp.c: Include fwriteerror.h.
41598
41599 2006-10-16  Bruno Haible  <bruno@clisp.org>
41600
41601         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
41602
41603 2006-10-16  Bruno Haible  <bruno@clisp.org>
41604
41605         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
41606         * lib/sigprocmask.h: Include <sys/types.h>.
41607         (sigset_t): Use the system's definition if present.
41608
41609 2006-10-17  Eric Blake  <ebb9@byu.net>
41610
41611         * lib/xvasprintf.c (includes): Assume config.h.
41612         * lib/xasprintf.c (includes): Likewise.
41613
41614 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
41615
41616         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
41617         at least as wide as intmax_t.
41618
41619 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
41620
41621         (Imported from Automake.)
41622         * build-aux/gnupload: Update to version 1.1 of directive file.
41623
41624 2006-10-16  Eric Blake  <ebb9@byu.net>
41625
41626         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
41627         match Automake 1.10a.
41628
41629 2006-10-14  Bruno Haible  <bruno@clisp.org>
41630
41631         * modules/sigprocmask: New file.
41632         * lib/sigprocmask.h: New file.
41633         * lib/sigprocmask.c: New file.
41634         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
41635         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
41636         request sigprocmask.o.
41637         (gl_PREREQ_SIGPROCMASK): New macro.
41638         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
41639         (Depends-on): Add sigprocmask.
41640         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
41641         gt_SIGNALBLOCKING. Test for 'raise' only once.
41642         * lib/fatal-signal.c: Include sigprocmask.h.
41643         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
41644         unblock_fatal_signals): Define always.
41645         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
41646         sigprocmask.
41647
41648 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
41649
41650         Sync from Automake.
41651         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
41652         which incorrectly sets the mode of an existing destination
41653         directory.  In some cases the unpatched install-sh could do the
41654         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
41655         system.  We hope this is rare in practice, but it's clearly worth
41656         fixing.  Problem reported by Alex Unleashed in
41657         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
41658         Also, don't bother to check for -m bugs unless we're using -m;
41659         suggested by Stepan Kasal.
41660
41661 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41662
41663         Sync from Automake.
41664         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
41665         `-c' flag, so they appear at the same position as in %FASTDEP%
41666         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
41667         which ignores unknown options only after the first non-option.
41668         Bug report against M4 by Nelson H. F. Beebe.
41669
41670 2006-10-13  Jim Meyering  <jim@meyering.net>
41671
41672         Fix a bug in yesterday's change.
41673         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
41674         p->fts_statp->st_dev would be used uninitialized.
41675         Ensures that we always call fts_stat on the very first entry.
41676         Miklos Szeredi reported that find -xdev stopped working.
41677
41678 2006-10-12  Bruno Haible  <bruno@clisp.org>
41679
41680         * gnulib-tool (func_get_automake_snippet): Append an automatically
41681         computed EXTRA_DIST augmentation.
41682         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
41683         * modules/alloca-opt (Makefile.am): Likewise.
41684         * modules/allocsa (Makefile.am): Likewise.
41685         * modules/arcfour (Makefile.am): Likewise.
41686         * modules/arctwo (Makefile.am): Likewise.
41687         * modules/argmatch (Makefile.am): Likewise.
41688         * modules/argz (Makefile.am): Likewise.
41689         * modules/atexit (Makefile.am): Likewise.
41690         * modules/backupfile (Makefile.am): Likewise.
41691         * modules/byteswap (Makefile.am): Likewise.
41692         * modules/c-strtod (Makefile.am): Likewise.
41693         * modules/c-strtold (Makefile.am): Likewise.
41694         * modules/calloc (Makefile.am): Likewise.
41695         * modules/canon-host (Makefile.am): Likewise.
41696         * modules/canonicalize (Makefile.am): Likewise.
41697         * modules/chdir-long (Makefile.am): Likewise.
41698         * modules/chdir-safer (Makefile.am): Likewise.
41699         * modules/check-version (Makefile.am): Likewise.
41700         * modules/chown (Makefile.am): Likewise.
41701         * modules/cloexec (Makefile.am): Likewise.
41702         * modules/close-stream (Makefile.am): Likewise.
41703         * modules/closeout (Makefile.am): Likewise.
41704         * modules/crc (Makefile.am): Likewise.
41705         * modules/csharpexec (Makefile.am): Likewise.
41706         * modules/cycle-check (Makefile.am): Likewise.
41707         * modules/des (Makefile.am): Likewise.
41708         * modules/dev-ino (Makefile.am): Likewise.
41709         * modules/dirfd (Makefile.am): Likewise.
41710         * modules/dirname (Makefile.am): Likewise.
41711         * modules/dup2 (Makefile.am): Likewise.
41712         * modules/eealloc (Makefile.am): Likewise.
41713         * modules/error (Makefile.am): Likewise.
41714         * modules/euidaccess (Makefile.am): Likewise.
41715         * modules/exclude (Makefile.am): Likewise.
41716         * modules/exitfail (Makefile.am): Likewise.
41717         * modules/fcntl-safer (Makefile.am): Likewise.
41718         * modules/fcntl (Makefile.am): Likewise.
41719         * modules/file-type (Makefile.am): Likewise.
41720         * modules/fileblocks (Makefile.am): Likewise.
41721         * modules/filemode (Makefile.am): Likewise.
41722         * modules/filenamecat (Makefile.am): Likewise.
41723         * modules/fnmatch (Makefile.am): Likewise.
41724         * modules/fopen-safer (Makefile.am): Likewise.
41725         * modules/fpending (Makefile.am): Likewise.
41726         * modules/fprintftime (Makefile.am): Likewise.
41727         * modules/free (Makefile.am): Likewise.
41728         * modules/fsusage (Makefile.am): Likewise.
41729         * modules/ftruncate (Makefile.am): Likewise.
41730         * modules/fts (Makefile.am): Likewise.
41731         * modules/gc-arcfour (Makefile.am): Likewise.
41732         * modules/gc-des (Makefile.am): Likewise.
41733         * modules/gc-hmac-md5 (Makefile.am): Likewise.
41734         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
41735         * modules/gc-md4 (Makefile.am): Likewise.
41736         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
41737         * modules/gc-sha1 (Makefile.am): Likewise.
41738         * modules/gc (Makefile.am): Likewise.
41739         * modules/getaddrinfo (Makefile.am): Likewise.
41740         * modules/getcwd (Makefile.am): Likewise.
41741         * modules/getdelim (Makefile.am): Likewise.
41742         * modules/getdomainname (Makefile.am): Likewise.
41743         * modules/getgroups (Makefile.am): Likewise.
41744         * modules/gethostname (Makefile.am): Likewise.
41745         * modules/gethrxtime (Makefile.am): Likewise.
41746         * modules/getline (Makefile.am): Likewise.
41747         * modules/getloadavg (Makefile.am): Likewise.
41748         * modules/getlogin_r (Makefile.am): Likewise.
41749         * modules/getndelim2 (Makefile.am): Likewise.
41750         * modules/getopt (Makefile.am): Likewise.
41751         * modules/getpagesize (Makefile.am): Likewise.
41752         * modules/getpass-gnu (Makefile.am): Likewise.
41753         * modules/getpass (Makefile.am): Likewise.
41754         * modules/getsubopt (Makefile.am): Likewise.
41755         * modules/gettime (Makefile.am): Likewise.
41756         * modules/gettimeofday (Makefile.am): Likewise.
41757         * modules/getugroups (Makefile.am): Likewise.
41758         * modules/getusershell (Makefile.am): Likewise.
41759         * modules/glob (Makefile.am): Likewise.
41760         * modules/group-member (Makefile.am): Likewise.
41761         * modules/hard-locale (Makefile.am): Likewise.
41762         * modules/hash (Makefile.am): Likewise.
41763         * modules/hmac-md5 (Makefile.am): Likewise.
41764         * modules/hmac-sha1 (Makefile.am): Likewise.
41765         * modules/human (Makefile.am): Likewise.
41766         * modules/idcache (Makefile.am): Likewise.
41767         * modules/imaxabs (Makefile.am): Likewise.
41768         * modules/imaxdiv (Makefile.am): Likewise.
41769         * modules/inet_ntop (Makefile.am): Likewise.
41770         * modules/inet_pton (Makefile.am): Likewise.
41771         * modules/intprops (Makefile.am): Likewise.
41772         * modules/inttostr (Makefile.am): Likewise.
41773         * modules/inttypes (Makefile.am): Likewise.
41774         * modules/isapipe (Makefile.am): Likewise.
41775         * modules/javaversion (Makefile.am): Likewise.
41776         * modules/lchmod (Makefile.am): Likewise.
41777         * modules/lchown (Makefile.am): Likewise.
41778         * modules/localcharset (Makefile.am): Likewise.
41779         * modules/long-options (Makefile.am): Likewise.
41780         * modules/lstat (Makefile.am): Likewise.
41781         * modules/malloc (Makefile.am): Likewise.
41782         * modules/mathl (Makefile.am): Likewise.
41783         * modules/mbchar (Makefile.am): Likewise.
41784         * modules/md2 (Makefile.am): Likewise.
41785         * modules/md4 (Makefile.am): Likewise.
41786         * modules/md5 (Makefile.am): Likewise.
41787         * modules/memcasecmp (Makefile.am): Likewise.
41788         * modules/memchr (Makefile.am): Likewise.
41789         * modules/memcmp (Makefile.am): Likewise.
41790         * modules/memcoll (Makefile.am): Likewise.
41791         * modules/memcpy (Makefile.am): Likewise.
41792         * modules/memmem (Makefile.am): Likewise.
41793         * modules/memmove (Makefile.am): Likewise.
41794         * modules/mempcpy (Makefile.am): Likewise.
41795         * modules/memrchr (Makefile.am): Likewise.
41796         * modules/memset (Makefile.am): Likewise.
41797         * modules/memxor (Makefile.am): Likewise.
41798         * modules/mkancesdirs (Makefile.am): Likewise.
41799         * modules/mkdir-p (Makefile.am): Likewise.
41800         * modules/mkdir (Makefile.am): Likewise.
41801         * modules/mkdtemp (Makefile.am): Likewise.
41802         * modules/mkstemp (Makefile.am): Likewise.
41803         * modules/mktime (Makefile.am): Likewise.
41804         * modules/modechange (Makefile.am): Likewise.
41805         * modules/mountlist (Makefile.am): Likewise.
41806         * modules/nanosleep (Makefile.am): Likewise.
41807         * modules/obstack (Makefile.am): Likewise.
41808         * modules/openat (Makefile.am): Likewise.
41809         * modules/pagealign_alloc (Makefile.am): Likewise.
41810         * modules/pathmax (Makefile.am): Likewise.
41811         * modules/physmem (Makefile.am): Likewise.
41812         * modules/poll (Makefile.am): Likewise.
41813         * modules/posixtm (Makefile.am): Likewise.
41814         * modules/posixver (Makefile.am): Likewise.
41815         * modules/putenv (Makefile.am): Likewise.
41816         * modules/quote (Makefile.am): Likewise.
41817         * modules/quotearg (Makefile.am): Likewise.
41818         * modules/raise (Makefile.am): Likewise.
41819         * modules/read-file (Makefile.am): Likewise.
41820         * modules/readline (Makefile.am): Likewise.
41821         * modules/readlink (Makefile.am): Likewise.
41822         * modules/readtokens (Makefile.am): Likewise.
41823         * modules/readutmp (Makefile.am): Likewise.
41824         * modules/realloc (Makefile.am): Likewise.
41825         * modules/regex (Makefile.am): Likewise.
41826         * modules/rename-dest-slash (Makefile.am): Likewise.
41827         * modules/rename (Makefile.am): Likewise.
41828         * modules/rijndael (Makefile.am): Likewise.
41829         * modules/rmdir (Makefile.am): Likewise.
41830         * modules/rpmatch (Makefile.am): Likewise.
41831         * modules/safe-read (Makefile.am): Likewise.
41832         * modules/safe-write (Makefile.am): Likewise.
41833         * modules/same-inode (Makefile.am): Likewise.
41834         * modules/same (Makefile.am): Likewise.
41835         * modules/save-cwd (Makefile.am): Likewise.
41836         * modules/savedir (Makefile.am): Likewise.
41837         * modules/setenv (Makefile.am): Likewise.
41838         * modules/settime (Makefile.am): Likewise.
41839         * modules/sha1 (Makefile.am): Likewise.
41840         * modules/sig2str (Makefile.am): Likewise.
41841         * modules/snprintf (Makefile.am): Likewise.
41842         * modules/stat-macros (Makefile.am): Likewise.
41843         * modules/stat-time (Makefile.am): Likewise.
41844         * modules/stdbool (Makefile.am): Likewise.
41845         * modules/stdint (Makefile.am): Likewise.
41846         * modules/stdlib-safer (Makefile.am): Likewise.
41847         * modules/stpcpy (Makefile.am): Likewise.
41848         * modules/stpncpy (Makefile.am): Likewise.
41849         * modules/strcase (Makefile.am): Likewise.
41850         * modules/strcasestr (Makefile.am): Likewise.
41851         * modules/strchrnul (Makefile.am): Likewise.
41852         * modules/strcspn (Makefile.am): Likewise.
41853         * modules/strdup (Makefile.am): Likewise.
41854         * modules/strerror (Makefile.am): Likewise.
41855         * modules/strftime (Makefile.am): Likewise.
41856         * modules/strndup (Makefile.am): Likewise.
41857         * modules/strnlen (Makefile.am): Likewise.
41858         * modules/strpbrk (Makefile.am): Likewise.
41859         * modules/strsep (Makefile.am): Likewise.
41860         * modules/strstr (Makefile.am): Likewise.
41861         * modules/strtod (Makefile.am): Likewise.
41862         * modules/strtoimax (Makefile.am): Likewise.
41863         * modules/strtok_r (Makefile.am): Likewise.
41864         * modules/strtol (Makefile.am): Likewise.
41865         * modules/strtoll (Makefile.am): Likewise.
41866         * modules/strtoul (Makefile.am): Likewise.
41867         * modules/strtoull (Makefile.am): Likewise.
41868         * modules/strtoumax (Makefile.am): Likewise.
41869         * modules/strverscmp (Makefile.am): Likewise.
41870         * modules/sys_socket (Makefile.am): Likewise.
41871         * modules/sys_stat (Makefile.am): Likewise.
41872         * modules/sysexits (Makefile.am): Likewise.
41873         * modules/time_r (Makefile.am): Likewise.
41874         * modules/timegm (Makefile.am): Likewise.
41875         * modules/timespec (Makefile.am): Likewise.
41876         * modules/tmpfile-safer (Makefile.am): Likewise.
41877         * modules/trim (Makefile.am): Likewise.
41878         * modules/unistd-safer (Makefile.am): Likewise.
41879         * modules/unlinkdir (Makefile.am): Likewise.
41880         * modules/unlocked-io (Makefile.am): Likewise.
41881         * modules/userspec (Makefile.am): Likewise.
41882         * modules/utime (Makefile.am): Likewise.
41883         * modules/utimecmp (Makefile.am): Likewise.
41884         * modules/utimens (Makefile.am): Likewise.
41885         * modules/vasnprintf (Makefile.am): Likewise.
41886         * modules/vasprintf (Makefile.am): Likewise.
41887         * modules/vsnprintf (Makefile.am): Likewise.
41888         * modules/xalloc (Makefile.am): Likewise.
41889         * modules/xgetcwd (Makefile.am): Likewise.
41890         * modules/xnanosleep (Makefile.am): Likewise.
41891         * modules/xreadlink (Makefile.am): Likewise.
41892         * modules/xstrtod (Makefile.am): Likewise.
41893         * modules/xstrtol (Makefile.am): Likewise.
41894         * modules/xstrtold (Makefile.am): Likewise.
41895         * modules/yesno (Makefile.am): Likewise.
41896         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
41897
41898 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
41899
41900         * modules/error (Makefile.am): Distribute files through
41901         EXTRA_DIST, not lib_SOURCES.
41902
41903 2006-10-12  Eric Blake  <ebb9@byu.net>
41904
41905         * modules/error (Makefile.am): Distribute files in /lib.
41906         * modules/obstack (Makefile.am): Likewise.
41907
41908 2006-10-12  Bruno Haible  <bruno@clisp.org>
41909
41910         * modules/acl (Makefile.am): Distribute all files in lib/ through
41911         EXTRA_DIST.
41912         * modules/arcfour (Makefile.am): Likewise.
41913         * modules/arctwo (Makefile.am): Likewise.
41914         * modules/argmatch (Makefile.am): Likewise.
41915         * modules/argz (Makefile.am): Likewise.
41916         * modules/atexit (Makefile.am): Likewise.
41917         * modules/backupfile (Makefile.am): Likewise.
41918         * modules/c-strtod (Makefile.am): Likewise.
41919         * modules/c-strtold (Makefile.am): Likewise.
41920         * modules/calloc (Makefile.am): Likewise.
41921         * modules/canon-host (Makefile.am): Likewise.
41922         * modules/canonicalize (Makefile.am): Likewise.
41923         * modules/chdir-long (Makefile.am): Likewise.
41924         * modules/chdir-safer (Makefile.am): Likewise.
41925         * modules/check-version (Makefile.am): Likewise.
41926         * modules/chown (Makefile.am): Likewise.
41927         * modules/cloexec (Makefile.am): Likewise.
41928         * modules/close-stream (Makefile.am): Likewise.
41929         * modules/closeout (Makefile.am): Likewise.
41930         * modules/crc (Makefile.am): Likewise.
41931         * modules/cycle-check (Makefile.am): Likewise.
41932         * modules/des (Makefile.am): Likewise.
41933         * modules/dirfd (Makefile.am): Likewise.
41934         * modules/dirname (Makefile.am): Likewise.
41935         * modules/dup2 (Makefile.am): Likewise.
41936         * modules/euidaccess (Makefile.am): Likewise.
41937         * modules/exclude (Makefile.am): Likewise.
41938         * modules/exitfail (Makefile.am): Likewise.
41939         * modules/fcntl-safer (Makefile.am): Likewise.
41940         * modules/file-type (Makefile.am): Likewise.
41941         * modules/fileblocks (Makefile.am): Likewise.
41942         * modules/filemode (Makefile.am): Likewise.
41943         * modules/filenamecat (Makefile.am): Likewise.
41944         * modules/fnmatch (Makefile.am): Likewise.
41945         * modules/fopen-safer (Makefile.am): Likewise.
41946         * modules/fpending (Makefile.am): Likewise.
41947         * modules/fprintftime (Makefile.am): Likewise.
41948         * modules/free (Makefile.am): Likewise.
41949         * modules/fsusage (Makefile.am): Likewise.
41950         * modules/ftruncate (Makefile.am): Likewise.
41951         * modules/fts (Makefile.am): Likewise.
41952         * modules/gc (Makefile.am): Likewise.
41953         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
41954         * modules/getaddrinfo (Makefile.am): Likewise.
41955         * modules/getcwd (Makefile.am): Likewise.
41956         * modules/getdelim (Makefile.am): Likewise.
41957         * modules/getdomainname (Makefile.am): Likewise.
41958         * modules/getgroups (Makefile.am): Likewise.
41959         * modules/gethostname (Makefile.am): Likewise.
41960         * modules/gethrxtime (Makefile.am): Likewise.
41961         * modules/getline (Makefile.am): Likewise.
41962         * modules/getloadavg (Makefile.am): Likewise.
41963         * modules/getlogin_r (Makefile.am): Likewise.
41964         * modules/getopt (Makefile.am): Likewise.
41965         * modules/getpass (Makefile.am): Likewise.
41966         * modules/getpass-gnu (Makefile.am): Likewise.
41967         * modules/getsubopt (Makefile.am): Likewise.
41968         * modules/gettime (Makefile.am): Likewise.
41969         * modules/gettimeofday (Makefile.am): Likewise.
41970         * modules/getugroups (Makefile.am): Likewise.
41971         * modules/getusershell (Makefile.am): Likewise.
41972         * modules/glob (Makefile.am): Likewise.
41973         * modules/group-member (Makefile.am): Likewise.
41974         * modules/hard-locale (Makefile.am): Likewise.
41975         * modules/hash (Makefile.am): Likewise.
41976         * modules/hmac-md5 (Makefile.am): Likewise.
41977         * modules/hmac-sha1 (Makefile.am): Likewise.
41978         * modules/human (Makefile.am): Likewise.
41979         * modules/idcache (Makefile.am): Likewise.
41980         * modules/imaxabs (Makefile.am): Likewise.
41981         * modules/imaxdiv (Makefile.am): Likewise.
41982         * modules/inet_ntop (Makefile.am): Likewise.
41983         * modules/inet_pton (Makefile.am): Likewise.
41984         * modules/inttostr (Makefile.am): Likewise.
41985         * modules/isapipe (Makefile.am): Likewise.
41986         * modules/lchown (Makefile.am): Likewise.
41987         * modules/long-options (Makefile.am): Likewise.
41988         * modules/lstat (Makefile.am): Likewise.
41989         * modules/malloc (Makefile.am): Likewise.
41990         * modules/mathl (Makefile.am): Likewise.
41991         * modules/mbchar (Makefile.am): Likewise.
41992         * modules/md2 (Makefile.am): Likewise.
41993         * modules/md4 (Makefile.am): Likewise.
41994         * modules/md5 (Makefile.am): Likewise.
41995         * modules/memcasecmp (Makefile.am): Likewise.
41996         * modules/memchr (Makefile.am): Likewise.
41997         * modules/memcmp (Makefile.am): Likewise.
41998         * modules/memcoll (Makefile.am): Likewise.
41999         * modules/memcpy (Makefile.am): Likewise.
42000         * modules/memmem (Makefile.am): Likewise.
42001         * modules/memmove (Makefile.am): Likewise.
42002         * modules/mempcpy (Makefile.am): Likewise.
42003         * modules/memrchr (Makefile.am): Likewise.
42004         * modules/memset (Makefile.am): Likewise.
42005         * modules/memxor (Makefile.am): Likewise.
42006         * modules/mkancesdirs (Makefile.am): Likewise.
42007         * modules/mkdir (Makefile.am): Likewise.
42008         * modules/mkdir-p (Makefile.am): Likewise.
42009         * modules/mkdtemp (Makefile.am): Likewise.
42010         * modules/mkstemp (Makefile.am): Likewise.
42011         * modules/mktime (Makefile.am): Likewise.
42012         * modules/modechange (Makefile.am): Likewise.
42013         * modules/mountlist (Makefile.am): Likewise.
42014         * modules/nanosleep (Makefile.am): Likewise.
42015         * modules/openat (Makefile.am): Likewise.
42016         * modules/pagealign_alloc (Makefile.am): Likewise.
42017         * modules/physmem (Makefile.am): Likewise.
42018         * modules/poll (Makefile.am): Likewise.
42019         * modules/posixtm (Makefile.am): Likewise.
42020         * modules/posixver (Makefile.am): Likewise.
42021         * modules/putenv (Makefile.am): Likewise.
42022         * modules/quote (Makefile.am): Likewise.
42023         * modules/quotearg (Makefile.am): Likewise.
42024         * modules/raise (Makefile.am): Likewise.
42025         * modules/read-file (Makefile.am): Likewise.
42026         * modules/readline (Makefile.am): Likewise.
42027         * modules/readlink (Makefile.am): Likewise.
42028         * modules/readtokens (Makefile.am): Likewise.
42029         * modules/readutmp (Makefile.am): Likewise.
42030         * modules/realloc (Makefile.am): Likewise.
42031         * modules/regex (Makefile.am): Likewise.
42032         * modules/rename (Makefile.am): Likewise.
42033         * modules/rename-dest-slash (Makefile.am): Likewise.
42034         * modules/rijndael (Makefile.am): Likewise.
42035         * modules/rmdir (Makefile.am): Likewise.
42036         * modules/rpmatch (Makefile.am): Likewise.
42037         * modules/safe-read (Makefile.am): Likewise.
42038         * modules/safe-write (Makefile.am): Likewise.
42039         * modules/same (Makefile.am): Likewise.
42040         * modules/save-cwd (Makefile.am): Likewise.
42041         * modules/savedir (Makefile.am): Likewise.
42042         * modules/setenv (Makefile.am): Likewise.
42043         * modules/settime (Makefile.am): Likewise.
42044         * modules/sha1 (Makefile.am): Likewise.
42045         * modules/sig2str (Makefile.am): Likewise.
42046         * modules/snprintf (Makefile.am): Likewise.
42047         * modules/stdlib-safer (Makefile.am): Likewise.
42048         * modules/stpcpy (Makefile.am): Likewise.
42049         * modules/stpncpy (Makefile.am): Likewise.
42050         * modules/strcase (Makefile.am): Likewise.
42051         * modules/strcasestr (Makefile.am): Likewise.
42052         * modules/strchrnul (Makefile.am): Likewise.
42053         * modules/strcspn (Makefile.am): Likewise.
42054         * modules/strdup (Makefile.am): Likewise.
42055         * modules/strerror (Makefile.am): Likewise.
42056         * modules/strftime (Makefile.am): Likewise.
42057         * modules/strndup (Makefile.am): Likewise.
42058         * modules/strnlen (Makefile.am): Likewise.
42059         * modules/strpbrk (Makefile.am): Likewise.
42060         * modules/strsep (Makefile.am): Likewise.
42061         * modules/strstr (Makefile.am): Likewise.
42062         * modules/strtod (Makefile.am): Likewise.
42063         * modules/strtoimax (Makefile.am): Likewise.
42064         * modules/strtok_r (Makefile.am): Likewise.
42065         * modules/strtol (Makefile.am): Likewise.
42066         * modules/strtoll (Makefile.am): Likewise.
42067         * modules/strtoul (Makefile.am): Likewise.
42068         * modules/strtoull (Makefile.am): Likewise.
42069         * modules/strtoumax (Makefile.am): Likewise.
42070         * modules/strverscmp (Makefile.am): Likewise.
42071         * modules/time_r (Makefile.am): Likewise.
42072         * modules/timegm (Makefile.am): Likewise.
42073         * modules/tmpfile-safer (Makefile.am): Likewise.
42074         * modules/unistd-safer (Makefile.am): Likewise.
42075         * modules/unlinkdir (Makefile.am): Likewise.
42076         * modules/userspec (Makefile.am): Likewise.
42077         * modules/utime (Makefile.am): Likewise.
42078         * modules/utimecmp (Makefile.am): Likewise.
42079         * modules/utimens (Makefile.am): Likewise.
42080         * modules/vasnprintf (Makefile.am): Likewise.
42081         * modules/vasprintf (Makefile.am): Likewise.
42082         * modules/vsnprintf (Makefile.am): Likewise.
42083         * modules/xalloc (Makefile.am): Likewise.
42084         * modules/xgetcwd (Makefile.am): Likewise.
42085         * modules/xnanosleep (Makefile.am): Likewise.
42086         * modules/xreadlink (Makefile.am): Likewise.
42087         * modules/xstrtod (Makefile.am): Likewise.
42088         * modules/xstrtol (Makefile.am): Likewise.
42089         * modules/xstrtold (Makefile.am): Likewise.
42090         * modules/yesno (Makefile.am): Likewise.
42091
42092 2006-10-12  Jim Meyering  <jim@meyering.net>
42093
42094         * m4/getloadavg.m4: Revert the change below.
42095
42096         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
42097         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
42098         fail with a symlink, which is what coreutils' ./bootstrap now
42099         creates by default.
42100
42101 2006-10-12  Bruno Haible  <bruno@clisp.org>
42102
42103         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
42104         mingw.
42105         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
42106         MSVC and mingw explicitly.
42107
42108 2006-10-11  Simon Josefsson  <jas@extundo.com>
42109             Bruno Haible  <bruno@clisp.org>
42110
42111         Add support for multiple gnulib-tool invocations in the scope of a
42112         single configure.ac file.
42113         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
42114         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
42115         with the same contents as the _LIBADD variable.
42116         (func_emit_initmacro_start, func_emit_initmacro_end,
42117         func_emit_initmacro_done): New functions.
42118         (func_import, func_create_testdir): Invoke them. Allow the identifiers
42119         gl_LIBOBJS and gl_LTLIBOBJS.
42120
42121 2006-10-11  Bruno Haible  <bruno@clisp.org>
42122
42123         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
42124         (func_create_testdir): Don't create po/Makefile.am, don't invoke
42125         autoreconf. Instead, invoke autopoint explicitly but move back the
42126         *.m4 files from gnulib.
42127
42128 2006-10-11  Bruno Haible  <bruno@clisp.org>
42129
42130         * gnulib-tool (func_usage): Make module names after --create-testdir
42131         optional.
42132         (func_create_testdir): If no module was specified, use nearly all
42133         modules.
42134
42135 2006-10-12  Jim Meyering  <jim@meyering.net>
42136
42137         Big performance improvement for fts-based tools that use FTS_NOSTAT.
42138         Avoid spurious inode-mismatch problems on non-POSIX file systems.
42139         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
42140         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
42141         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
42142         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
42143         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
42144         (fts_set_stat_required): New function.
42145         (fts_open): Defer the calls to fts_stat, if possible or requested.
42146         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
42147         into fts_stat itself.
42148         (fts_read): Perform any required (deferred) fts_stat call.
42149         (fts_build): Likewise, for the directory we're about to open and read.
42150         In the readdir loop, carefully decide whether each entry will require
42151         an eventual call to fts_stat, using dirent.d_type info if available.
42152         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
42153         a command line argument into this function.  Update all callers.
42154         Map a return value of FTS_DOT to FTS_D for a command line argument.
42155         * modules/fts (Depends-on): Add d-type.  Alphabetize.
42156         Thanks to Miklos Szeredi for his tenacity and for the initial
42157         bug report about "find" failing on a FUSE-based file system.
42158
42159         * lib/fts.c (fts_open): Use consistent indentation.
42160
42161 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
42162
42163         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
42164         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
42165         reported by Jim Meyering.  All uses of cache variables renamed
42166         to match Autoconf's.
42167         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
42168         the other one.
42169
42170         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
42171         Fix misspelling in diagnostic.
42172
42173 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
42174
42175         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
42176         defined.  Problem reported by Matthew Woehlke.
42177
42178         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
42179         Add support for Tandem NonStop R series.
42180         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
42181         Use new macro.
42182
42183         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
42184         (has_trailing_slash): Omit size arg; all callers changed.
42185         Omit 'inline', since it doesn't help performance and we'd
42186         need to configure it.
42187         Don't count //, ///, etc. as having a trailing slash.
42188         As a side effect, this removes a C99ism reported by Matthew Woehlke.
42189         (rpl_rename_dest_slash): On failure, use rename's errno rather
42190         than (in some cases) an incorrect or junk errno.
42191         Simplify code by removing need to compute length; this does
42192         cause it to make two passes instead of one over the file name,
42193         but it's worth it.
42194
42195         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
42196         change, since Autoconf's version may no longer be appropriate now
42197         that we are using CVS Autoconf's version.  Add support for Tandem.
42198
42199 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
42200             Bruno Haible  <bruno@clisp.org>
42201
42202         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
42203         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
42204         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
42205         gl_AC_TYPE_LONG_LONG.
42206
42207         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
42208         instead of HAVE_LONG_LONG.
42209         * lib/printf-args.c (printf_fetchargs): Likewise.
42210         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
42211         * lib/vasnprintf.c (VASNPRINTF): Likewise.
42212         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
42213         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
42214         gl_AC_TYPE_LONG_LONG.
42215
42216 2006-10-11  Bruno Haible  <bruno@clisp.org>
42217
42218         * m4/longlong.m4: Add comments.
42219         * m4/ulonglong.m4: Likewise.
42220
42221 2006-10-10  Bruno Haible  <bruno@clisp.org>
42222
42223         Make it possible to #define stpcpy, strdup to aliases.
42224         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
42225         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
42226
42227 2006-10-10  Bruno Haible  <bruno@clisp.org>
42228
42229         Make it possible to #define gcd to an alias.
42230         * lib/gcd.c: Include config.h.
42231
42232 2006-10-10  Bruno Haible  <bruno@clisp.org>
42233
42234         Make it possible to #define c_isascii to an alias.
42235         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
42236         defined. Undefine the macros before defining them, to avoid gcc
42237         warnings.
42238         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
42239         define NO_C_CTYPE_MACROS early.
42240
42241 2006-10-10  Bruno Haible  <bruno@clisp.org>
42242
42243         Make it possible to #define set_program_name to an alias.
42244         * lib/progname.c: Don't undefine set_program_name; instead, undefine
42245         ENABLE_RELOCATABLE early.
42246
42247 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
42248
42249         Port to Tandem NSK OSS, which has 64-bit signed int but at most
42250         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
42251         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
42252         More generally, don't assume that 64-bit signed int is available
42253         if unsigned int is, and vice versa.
42254         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
42255         unsigned symbols, not on their signed counterparts.
42256         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
42257         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
42258         (UINT64_C, UINTMAX_C):
42259         Likewise.
42260         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
42261         unsigned counterparts.
42262         (Have_long_long, Unsigned): New macros.
42263         (Int): Renamed from INT.
42264         (strtoimax): Use the new macros.
42265         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
42266         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
42267         * modules/inttypes (inttypes.h): Substitute
42268         HAVE_UNSIGNED_LONG_LONG_INT.
42269         * modules/stdint (stdint.h): Likewise.
42270         (Files): Add m4/ulonglong.m4.
42271
42272 2006-10-10  Bruno Haible  <bruno@clisp.org>
42273
42274         Fix a gcc -Wshadow warning.
42275         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
42276         to 'bucket'.
42277         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
42278         gl_linked_indexof_from_to): Likewise.
42279         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
42280         Likewise.
42281         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
42282         Likewise.
42283         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
42284         Reported by Eric Blake.
42285
42286 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
42287
42288         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
42289         for NetBSD.  Problem reported by Bruno Haible.
42290
42291 2006-10-09  Jim Meyering  <jim@meyering.net>
42292
42293         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
42294         Patch from Bruno Haible.
42295
42296 2006-10-09  Jim Meyering  <jim@meyering.net>
42297
42298         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
42299         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
42300         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
42301
42302 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
42303
42304         Don't include <config.h> twice; this doesn't work in some cases,
42305         e.g., when config.h has "#define intmax_t long long int" and
42306         we include <config.h>, <inttypes.h>, <config.h> in that order.
42307         Problem reported by Matthew Woehlke in:
42308         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
42309         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
42310         * lib/fts-cycle.c: Don't include config.h.
42311         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
42312         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
42313         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
42314         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
42315         inttypes.h.
42316         * lib/xstrtoumax.c: Likewise.
42317         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
42318         __strtol and the like, so that this module is more like its siblings.
42319         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
42320         Remove; no longer needed now that we assume gnulib inttypes.h.
42321
42322 2006-10-08  Bruno Haible  <bruno@clisp.org>
42323
42324         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
42325         option.
42326
42327 2006-10-07  Jim Meyering  <jim@meyering.net>
42328
42329         * modules/inttypes (inttypes.h): Revert what seems to have been
42330         an inadvertent part of today's change: use "|", not "/" in the
42331         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
42332
42333 2006-10-07  Bruno Haible  <bruno@clisp.org>
42334
42335         * modules/sublist: New file.
42336
42337 2006-10-07  Bruno Haible  <bruno@clisp.org>
42338
42339         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
42340         * modules/argz (argz.h): Likewise.
42341         * modules/arpa_inet (arpa/inet.h): Likewise.
42342         * modules/byteswap (byteswap.h): Likewise.
42343         * modules/configmake (configmake.h): Likewise.
42344         * modules/fcntl (fcntl.h): Likewise.
42345         * modules/fnmatch (fnmatch.h): Likewise.
42346         * modules/getopt (getopt.h): Likewise.
42347         * modules/glob (glob.h): Likewise.
42348         * modules/inttypes (inttypes.h): Likewise.
42349         * modules/netinet_in (netinet/in.h): Likewise.
42350         * modules/poll (poll.h): Likewise.
42351         * modules/stdbool (stdbool.h): Likewise.
42352         * modules/stdint (stdint.h): Likewise.
42353         * modules/sys_select (sys/select.h): Likewise.
42354         * modules/sys_socket (sys/socket.h): Likewise.
42355         * modules/sys_stat (sys/stat.h): Likewise.
42356         * modules/sysexits (sysexits.h): Likewise.
42357         * modules/unistd (unistd.h): Likewise.
42358         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
42359         Add a "DO NOT EDIT" comment to the generated file.
42360         (func_import): Likewise for gnulib-comp.m4.
42361
42362 2006-10-07  Bruno Haible  <bruno@clisp.org>
42363
42364         * lib/gl_sublist.h: New file.
42365         * lib/gl_sublist.c: New file.
42366
42367 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
42368
42369         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
42370         name (relative to the original working directory) and the file
42371         name component (relative to the temporary working directory).  All
42372         callers changed.
42373         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
42374         * lib/mkdir-p.c (make_dir_parents): Likewise.
42375         * lib/mkdir-p.h (make_dir_parents): Likewise.
42376
42377 2006-10-06  Eric Blake  <ebb9@byu.net>
42378
42379         Define several macros for use by the clean-temp module.
42380         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
42381         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
42382         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
42383
42384         * lib/clean-temp.h (close_stream_temp): New declaration.
42385         * lib/clean-temp.c (includes): Pull in headers according to what
42386         other modules are in use.
42387         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
42388
42389 2006-10-06  Bruno Haible  <bruno@clisp.org>
42390
42391         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
42392         instead of fopen, fwriteerror.
42393
42394 2006-10-06  Bruno Haible  <bruno@clisp.org>
42395
42396         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
42397         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
42398         int.
42399         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
42400         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
42401         Return an error indicator.
42402         Suggested by Eric Blake.
42403
42404 2006-10-06  Bruno Haible  <bruno@clisp.org>
42405
42406         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
42407         Reported by Eric Blake.
42408
42409 2006-10-06  Bruno Haible  <bruno@clisp.org>
42410
42411         * modules/closeout (Description): Mention stderr too.
42412
42413 2006-10-06  Bruno Haible  <bruno@clisp.org>
42414         and Paul Eggert  <eggert@cs.ucla.edu>
42415
42416         * lib/closeout.c (close_stdout): Also close stderr.
42417         * lib/closeout.h: Update comment.
42418
42419 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
42420
42421         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
42422         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
42423         * lib/dirchownmod.c: Include lchown.h.
42424         * lib/lchown.c: Don't include files that lchown.h now includes.
42425         Don't declare chown, since lchown.h now does that.
42426         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
42427         (lchown): Define to rpl_chown if lchown is declared but
42428         does not exist.  Declare using a prototype if lchown is not
42429         declared.  Add a copyright notice.
42430         * lib/mkstemp.h: Include <unistd.h>.
42431         * lib/openat.c: Include lchown.h.
42432
42433         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
42434         we now test for that separately.
42435         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
42436         rather than O_NOFOLLOW, when testing whether it's possible to
42437         avoid a race condition reliably.
42438         * lib/savewd.c (savewd_chdir): Likewise.
42439
42440         Remove macros that are no longer needed now that stdint.h is
42441         reliable.
42442         * lib/fsusage.c (UINTMAX_MAX): Remove.
42443         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
42444         * lib/utimecmp.c (SIZE_MAX): Remove.
42445
42446         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
42447
42448         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
42449         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
42450         O_NOATIME works.
42451
42452 2006-10-05  Bruno Haible  <bruno@clisp.org>
42453
42454         * lib/gl_list.h (gl_sortedlist_search_from_to,
42455         gl_sortedlist_indexof_from_to): New declarations.
42456         (gl_list_implementation): New fields sortedlist_search_from_to,
42457         sortedlist_indexof_from_to.
42458         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
42459         inline functions.
42460         * lib/gl_list.c (gl_sortedlist_search_from_to,
42461         gl_sortedlist_indexof_from_to): New functions.
42462         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
42463         function.
42464         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
42465         (gl_array_sortedlist_search_from_to): New function.
42466         (gl_array_list_implementation): Update.
42467         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
42468         function.
42469         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
42470         (gl_carray_sortedlist_search_from_to): New function.
42471         (gl_carray_list_implementation): Update.
42472         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
42473         gl_linked_sortedlist_indexof_from_to): New functions.
42474         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
42475         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
42476         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
42477         gl_tree_sortedlist_indexof_from_to): New functions.
42478         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
42479         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
42480         Update.
42481         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
42482         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
42483         Update.
42484
42485 2006-10-05  Bruno Haible  <bruno@clisp.org>
42486
42487         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
42488         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
42489         (struct gl_list_implementation): Add fields search_from_to,
42490         indexof_from_to. Remove fields search, indexof.
42491         (gl_list_search): Use the search_from_to method.
42492         (gl_list_search_from, gl_list_search_from_to): New functions.
42493         (gl_list_indexof): Use the indexof_from_to method.
42494         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
42495         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
42496         (gl_list_search_from, gl_list_search_from_to): New functions.
42497         (gl_list_indexof): Use the indexof_from_to method.
42498         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
42499         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
42500         gl_array_indexof. Add start_index, end_index arguments.
42501         (gl_array_search_from_to): Renamed from gl_array_search. Add
42502         start_index, end_index arguments.
42503         (gl_array_remove, gl_array_list_implementation): Update.
42504         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
42505         gl_carray_indexof. Add start_index, end_index arguments.
42506         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
42507         start_index, end_index arguments.
42508         (gl_carray_remove, gl_carray_list_implementation): Update.
42509         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
42510         gl_linked_search. Add start_index, end_index arguments.
42511         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
42512         start_index, end_index arguments.
42513         (gl_linked_remove): Update.
42514         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
42515         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
42516         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
42517         field to 'size_t'.
42518         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
42519         gl_tree_search. Add start_index, end_index arguments.
42520         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
42521         start_index, end_index arguments.
42522         (gl_tree_remove): Update.
42523         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
42524         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
42525         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
42526         function.
42527         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
42528         gl_tree_search. Add start_index, end_index arguments.
42529         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
42530         start_index, end_index arguments.
42531         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
42532         Update.
42533         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
42534
42535 2006-10-05  Bruno Haible  <bruno@clisp.org>
42536
42537         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
42538
42539         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
42540         fwriteerror_temp): New declarations.
42541         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
42542         (descriptors): New variable.
42543         (cleanup): First, close the descriptors.
42544         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
42545         fclose_temp, fwriteerror_temp): New functions.
42546
42547 2006-10-04  Jim Meyering  <jim@meyering.net>
42548
42549         * lib/fts.c (fts_open): Tiny comment change.
42550
42551 2006-10-04  Bruno Haible  <bruno@clisp.org>
42552
42553         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
42554         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
42555         gl_LOCK_BODY.
42556         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
42557         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
42558         gl_LOCK_EARLY_BODY.
42559         (gl_LOCK): Require gl_LOCK_BODY.
42560
42561 2006-10-04  Bruno Haible  <bruno@clisp.org>
42562
42563         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
42564         (gl_oset_search_atleast): New declaration.
42565         (struct gl_oset_implementation): Add field 'search_atleast'.
42566         (gl_oset_search_atleast): New inline function.
42567         * lib/gl_oset.c (gl_oset_search_atleast): New function.
42568         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
42569         (gl_array_oset_implementation): Update.
42570         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
42571         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
42572         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
42573
42574 2006-10-04  Bruno Haible  <bruno@clisp.org>
42575
42576         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
42577
42578 2006-10-03  Bruno Haible  <bruno@clisp.org>
42579
42580         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
42581         from gl_avltreehash_list_implementation.
42582
42583 2006-10-03  Bruno Haible  <bruno@clisp.org>
42584
42585         * lib/gl_oset.c (gl_oset_add): Fix return type.
42586
42587 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
42588
42589         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
42590
42591 2006-10-02  Eric Blake  <ebb9@byu.net>
42592
42593         * modules/strnlen (Depends-on): Add extensions.
42594
42595 2006-10-02  Eric Blake  <ebb9@byu.net>
42596
42597         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
42598         definition in 2.60+.
42599
42600 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
42601
42602         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
42603         checks.
42604
42605 2006-10-02  Bruno Haible  <bruno@clisp.org>
42606
42607         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
42608         to the AUTOMAKE_OPTIONS.
42609         Reported by Jim Meyering.
42610
42611 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
42612
42613         Work around bug in Solaris 10 /proc file system:
42614         /proc/self/fd/NNN/.. isn't the parent directory of
42615         the directory whose file descriptor is NNN.  This needs to
42616         be worked around at run time, not compile time, since a
42617         program might be built on Solaris 8, where things work, and
42618         run on Solaris 10.
42619         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
42620         to use the following interface instead:
42621         (OPENAT_BUFFER_SIZE): New macro.
42622         (openat_proc_name): New function.
42623         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
42624         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
42625         Likewise.
42626         * lib/openat-proc.c: New file.
42627         * modules/openat (Files): Add lib/openat-proc.c.
42628         (Depends-on): Add same-inode, stdbool.
42629         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
42630
42631 2006-09-29  Bruno Haible  <bruno@clisp.org>
42632
42633         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
42634         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
42635         argument. Set stdout_closed before testing for ferror, not after.
42636         (fwriteerror, fwriteerror_no_ebadf): New functions.
42637
42638 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42639
42640         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
42641
42642 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
42643
42644         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
42645         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
42646
42647 2006-09-28  Jim Meyering  <jim@meyering.net>
42648
42649         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
42650         Include <unistd.h>.
42651
42652 2006-09-28  Bruno Haible  <bruno@clisp.org>
42653
42654         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
42655         * modules/linkedhash-list (Depends-on): Likewise.
42656         * modules/rbtreehash-list (Depends-on): Likewise.
42657
42658 2006-09-28  Bruno Haible  <bruno@clisp.org>
42659
42660         * lib/strndup.h: Simplify the redefinition of strndup.
42661         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
42662         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
42663
42664 2006-09-28  Bruno Haible  <bruno@clisp.org>
42665
42666         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
42667         * lib/gl_linkedhash_list.c: Likewise.
42668         * lib/gl_rbtreehash_list.c: Likewise.
42669
42670 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
42671
42672         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
42673         getaddrinfo.
42674
42675         * lib/__fpending.h: Don't include <stdio_ext.h> unless
42676         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
42677         it causes <stdio_ext.h> to cause a compile-time error.
42678         Problem reported by Nelson H. F. Beebe.
42679         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
42680         of HAVE_DECL___PENDING.
42681
42682         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
42683         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
42684         declaration.
42685
42686 2006-09-27  Jim Meyering  <jim@meyering.net>
42687
42688         This file could end up with a definition for a function
42689         named __strndup, rather than rpl_strndup on a system with
42690         incomplete weak_alias support.
42691         * lib/strndup.c (strndup): Rename from __strndup.
42692         Remove #defines that used to map __strndup to strndup.
42693         Don't use K&R prototypes.
42694         Remove LIBC-related code, since this file is not sync'd with glibc.
42695         * lib/strndup.h: Revamp, accordingly.
42696         * m4/strndup.m4: Modernize.
42697
42698 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
42699
42700         * modules/savewd (Depends-on): Add 'raise'.
42701         * lib/savewd.c: Include <signal.h>, for 'raise'.
42702
42703 2006-09-26  Jim Meyering  <jim@meyering.net>
42704
42705         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
42706         when we detect Darwin 8.7.0's acl_get_file bug.
42707         Rearrange to perform the new (below) run-test while $LIBS
42708         contains any acl-related library.  Set USE_ACL at the end.
42709         (gl_ACL_GET_FILE): New function.
42710
42711 2006-09-26  Eric Blake  <ebb9@byu.net>
42712
42713         * lib/verror.c: Include <config.h> unconditionally.
42714
42715 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
42716
42717         * modules/clock-time (Maintainer): Add self.
42718         * modules/getlogin_r (Depends-on): Add extensions.
42719
42720 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42721
42722         * modules/clock-time: New module.
42723         * modules/nanosleep (Depends-on): Add clock-time.
42724         * modules/gethrxtime (Depends-on): Likewise.
42725         * modules/gettime (Depends-on): Likewise.
42726         * modules/settime (Depends-on): Likewise.
42727
42728         * modules/fts-lgpl: Depend on openat.
42729         * modules/mkancesdirs: Depend on savewd.
42730         * modules/mkdir-p: Likewise.
42731
42732 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42733
42734         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
42735
42736         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
42737         `gl_have_arbitrary_file_name_length_limit' to
42738         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
42739         actually works between configure runs.
42740
42741 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42742             Bruno Haible  <bruno@clisp.org>
42743
42744         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
42745
42746 2006-09-25  Jim Meyering  <jim@meyering.net>
42747
42748         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
42749         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
42750
42751 2006-09-25  Eric Blake  <ebb9@byu.net>
42752
42753         * gnulib-tool (func_import, func_create_testdir): Fix typos in
42754         exec's in 2006-09-18 patch when shuffling fds.
42755
42756 2006-09-25  Bruno Haible  <bruno@clisp.org>
42757
42758         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
42759         Reported by Jim Meyering.
42760
42761 2006-09-24  Jim Meyering  <jim@meyering.net>
42762
42763         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
42764         compare a pointer against a literal "0".  That caused failures with
42765         at least HP-UX's hpcc.
42766
42767 2006-09-22  Simon Josefsson  <jas@extundo.com>
42768
42769         * modules/gc-sha1:
42770         * modules/gc-md4:
42771         * modules/gc-hmac-sha1:
42772         * modules/gc-hmac-md5:
42773         * modules/gc-des:
42774         * modules/gc-arcfour: Distribute more files.
42775
42776 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42777
42778         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
42779         (gl_linked_iterator_from_to): Initialize struct completely.
42780         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
42781         (gl_tree_iterator_from_to): Likewise
42782         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
42783         * lib/gl_array_list.c [lint] (gl_array_iterator)
42784         (gl_array_iterator_from_to): Likewise.
42785         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
42786         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
42787         (gl_carray_iterator_from_to): Likewise.
42788
42789         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
42790         * lib/md4.c (md4_process_block): Remove unused variable.
42791         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
42792         parentheses for clarity.
42793
42794 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42795
42796         * modules/bison-i18n (Depends-on): Add gettext.
42797
42798 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42799
42800         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
42801         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
42802         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
42803         also add missing comma that caused broken test.
42804         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
42805         stdlib.h, for `abort'.
42806         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
42807         variables.
42808         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
42809         include unistd.h if present, for `rmdir'.
42810         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
42811         variables.
42812         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
42813         in the process include standard headers for prototypes.
42814         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
42815         gets declared on GNU/Linux.
42816         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
42817         unistd.h, for `rmdir'.
42818         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
42819
42820         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
42821         always true.
42822         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
42823
42824         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
42825
42826 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42827
42828         * gnulib-tool (func_version): Create output all at once.  This
42829         may help avoid triggering unnecessary SIGPIPEs, and at any
42830         rate it doesn't hurt.
42831
42832 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42833             Bruno Haible  <bruno@clisp.org>
42834
42835         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
42836         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
42837         * m4/signed.m4 (bh_C_SIGNED): Likewise.
42838
42839         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
42840         (gl_FUNC_VASPRINTF): Invoke it.
42841
42842 2006-09-22  Bruno Haible  <bruno@clisp.org>
42843
42844         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
42845         getloadavg.c as first argument.
42846
42847 2006-09-22  Bruno Haible  <bruno@clisp.org>
42848
42849         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
42850         at the beginning of the gl_INIT macro.
42851         * modules/getloadavg (configure.ac): Pass $gl_source_base to
42852         gl_GETLOADAVG.
42853
42854 2006-09-22  Bruno Haible  <bruno@clisp.org>
42855
42856         * gnulib-tool (func_create_megatestdir): Don't include the config-h
42857         module.
42858         Suggested by Ralf Wildenhues.
42859
42860 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
42861
42862         Import this patch from libc:
42863
42864         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
42865
42866         * lib/regex_internal.c (re_string_reconstruct): Handle
42867         offset < pstr->valid_raw_len && pstr->offsets_needed case.
42868         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
42869         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
42870         re_string_context_at.
42871
42872         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
42873         now requires it.
42874         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
42875         gl_REGEX now does it for us.
42876         (gl_REGEX): Add test taken from
42877         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
42878
42879         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
42880         Check that large offsets work.  Modernize Autoconf usages.
42881         Prefer "yes" to mean a good thing rather than a bad.
42882         Don't put "#define mkstemp" in config.h, as this might interfere
42883         with standard system headers that "#define mkstemp mkstemp64".
42884
42885         * modules/mkstemp (Depends-on): Add extensions, so that
42886         mkstemp is visible on some platforms.
42887         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
42888         (Include): Change to "mkstemp.h" from <stdlib.h>.
42889         (Files): Add mkstemp.h.
42890
42891         * lib/mkstemp.h: New file, since some standard headers
42892         #define mkstemp.
42893         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
42894         Include "mkstemp.h".
42895         Make the _LIBC code resemble glibc original more,
42896         e.g., use K&R style.
42897         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
42898         (mkstemp): Remove, since mkstemp.h does this for us.
42899         * lib/stdlib--.h: Include mkstemp.h.
42900
42901         Import this patch from libc:
42902
42903         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
42904
42905         * lib/tempname.c (__gen_tempname): Change attempts_min
42906         into a macro.  Use preprocessor to decide how to initialize
42907         attempts [Coverity CID 67].
42908
42909 2006-09-20  Bruno Haible  <bruno@clisp.org>
42910
42911         * lib/mkdtemp.c: Import from libc.
42912         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
42913                 * sysdeps/posix/tempname.c (__gen_tempname): Change
42914                 attempts_min into a macro.  Use preprocessor to decide how to
42915                 initialize attempts [Coverity CID 67].
42916         2001-11-27  Paul Eggert  <eggert@twinsun.com>
42917                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
42918                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
42919
42920 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42921
42922         * gnulib-tool (func_exit): New function, to allow to pass the
42923         exit status portably through the trap.  Use everywhere.
42924         (--help, --version): Signal a write error.
42925         (trap): catch SIGPIPE, for write errors.
42926         Exit at the end of the trap, with the correct exit status.
42927
42928 2006-09-19  Karl Berry  <karl@gnu.org>
42929
42930         * doc/gnulib.texi: note about the license texinfo files.
42931
42932 2006-09-19  Eric Blake  <ebb9@byu.net>
42933
42934         * gnulib-tool: Avoid space-tab.
42935
42936 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
42937
42938         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
42939         that prevented coreutils 6.1 from building.  Problem reported
42940         by Petter Reinholdtsen.
42941
42942 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
42943
42944         * gnulib-tool (avoidlist): Fix typo that broke options like
42945         --avoid=lock that are used by coreutils bootstrap.
42946
42947 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
42948
42949         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
42950         more systematically.
42951
42952 2006-09-18  Jim Meyering  <jim@meyering.net>
42953
42954         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
42955
42956 2006-09-18  Bruno Haible  <bruno@clisp.org>
42957
42958         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
42959
42960 2006-09-18  Bruno Haible  <bruno@clisp.org>
42961
42962         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
42963         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
42964         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
42965         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
42966         * m4/gettext.m4: Require autoconf >= 2.52.
42967         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
42968         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
42969         of gl_cv_header_inttypes_h.
42970
42971 2006-09-18  Bruno Haible  <bruno@clisp.org>
42972
42973         * lib/javaversion.c: Include configmake.h.
42974
42975 2006-09-18  Bruno Haible  <bruno@clisp.org>
42976
42977         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
42978         avoid that the while loops be executed in a subshell.
42979
42980 2006-09-18  Bruno Haible  <bruno@clisp.org>
42981
42982         * MODULES.html.sh (func_module): Break long lines.
42983         Suggested by Bruce Korb <bkorb@gnu.org>.
42984
42985 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42986
42987         Speed up by a factor of 1.12.
42988         * gnulib-tool (nl): New variable.
42989         (func_import): Rewrite include directive extraction to only read each
42990         directive once.
42991
42992 2006-09-17  Bruno Haible  <bruno@clisp.org>
42993
42994         * modules/javaversion (Makefile.am): Remove DEFS setting.
42995         (Depends-on): Add configmake, for PKGDATADIR definition.
42996
42997 2006-09-17  Bruno Haible  <bruno@clisp.org>
42998
42999         * gnulib-tool (func_create_testdir): Rewrite all files at once.
43000
43001 2006-09-17  Bruno Haible  <bruno@clisp.org>
43002
43003         * gnulib-tool (func_append): New function, stolen from libtool.m4.
43004         (func_modules_transitive_closure, func_modules_add_dummy,
43005         func_modules_to_filelist, func_import, func_create_testdir,
43006         func_create_megatestdir, ...): Use it wherever possible.
43007         Suggested by Ralf Wildenhues.
43008
43009 2006-09-16  Karl Berry  <karl@gnu.org>
43010
43011         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
43012         to avoid sectioning errors.
43013         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
43014         [ifinfo]: blank line after @center-ed titles.
43015         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
43016         Spell FSF address consistently with others.
43017         (These changes approved by rms.)
43018
43019 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43020
43021         Speed up by a factor of 1.61.
43022         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
43023         already checked module names again.
43024
43025 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43026
43027         Speed up by a factor of 1.13.
43028         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
43029         for new_files, and the input to func_add_or_update.
43030
43031 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43032
43033         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
43034         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
43035
43036 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43037
43038         * modules/mkancesdirs (Depends-on): Add fcntl.
43039         * modules/savewd: New file.
43040         * MODULES.html.sh (File system functions): Add savewd.
43041
43042         * modules/configmake (Makefile.am): Add support for the
43043         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
43044
43045 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43046
43047         * m4/savewd.m4: New file.
43048
43049 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43050
43051         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
43052         (dirchownmod): New arg FD.  All callers changed.
43053         Use FD rather than opening the directory ourself, as opening is
43054         now the caller's responsibility.
43055         * lib/dirchownmod.h: Likewise.
43056         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
43057         hosts that require <sys/types.h> before <sys/stat.h>.  Include
43058         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
43059         (test_dir): Remove.
43060         (mkancesdirs): Return length of prefix of FILE that has already
43061         been made, or -2 if there is a child doing the work.  Redo
43062         algorithm so that it is O(N) rather than O(N**2).  Optimize away
43063         ".", and treat ".." specially since it might stray back into
43064         already-created areas.  Use a subprocess if necessary.  New arg
43065         WD; all users changed.  MAKE_DIR function should now return 1
43066         if it creates a directory that is not readable.  Return -2 if
43067         a child process is spun off.
43068         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
43069         Adjust signature to match code.
43070         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
43071         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
43072         all users changed.
43073         * lib/savewd.c, lib/savewd.h: New files.
43074
43075 2006-09-15  Jim Meyering  <jim@meyering.net>
43076
43077         * modules/rename-dest-slash: New module.
43078         * MODULES.html.sh (posix_compat): Add it here.
43079
43080         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
43081
43082 2006-09-15  Jim Meyering  <jim@meyering.net>
43083
43084         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
43085         file.
43086
43087         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
43088
43089 2006-09-15  Jim Meyering  <jim@meyering.net>
43090
43091         * lib/rename-dest-slash.c (has_trailing_slash): Use
43092         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
43093         (rpl_rename_dest_slash): Perform the cheaper trailing slash
43094         test before testing whether SRC is a directory.
43095         Suggestions from Bruno Haible.
43096
43097         Avoid a warning about an unused variable.
43098         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
43099         into the #ifdef block where it's used.
43100
43101         * lib/rename-dest-slash.c: New file.
43102
43103 2006-09-14  Bruno Haible  <bruno@clisp.org>
43104
43105         * lib/allocsa.c: Include <config.h> unconditionally.
43106         * lib/asnprintf.c: Likewise.
43107         * lib/asprintf.c: Likewise.
43108         * lib/c-strcasecmp.c: Likewise.
43109         * lib/c-strcasestr.c: Likewise.
43110         * lib/c-strncasecmp.c: Likewise.
43111         * lib/c-strstr.c: Likewise.
43112         * lib/classpath.c: Likewise.
43113         * lib/clean-temp.c: Likewise.
43114         * lib/concatpath.c: Likewise.
43115         * lib/copy-file.c: Likewise.
43116         * lib/csharpcomp.c: Likewise.
43117         * lib/csharpexec.c: Likewise.
43118         * lib/execute.c: Likewise.
43119         * lib/fatal-signal.c: Likewise.
43120         * lib/findprog.c: Likewise.
43121         * lib/fwriteerror.c: Likewise.
43122         * lib/gl_array_list.c: Likewise.
43123         * lib/gl_array_oset.c: Likewise.
43124         * lib/gl_avltree_list.c: Likewise.
43125         * lib/gl_avltree_oset.c: Likewise.
43126         * lib/gl_avltreehash_list.c: Likewise.
43127         * lib/gl_carray_list.c: Likewise.
43128         * lib/gl_linked_list.c: Likewise.
43129         * lib/gl_linkedhash_list.c: Likewise.
43130         * lib/gl_list.c: Likewise.
43131         * lib/gl_oset.c: Likewise.
43132         * lib/gl_rbtree_list.c: Likewise.
43133         * lib/gl_rbtree_oset.c: Likewise.
43134         * lib/gl_rbtreehash_list.c: Likewise.
43135         * lib/imaxabs.c: Likewise.
43136         * lib/imaxdiv.c: Likewise.
43137         * lib/javacomp.c: Likewise.
43138         * lib/javaexec.c: Likewise.
43139         * lib/javaversion.c: Likewise.
43140         * lib/linebreak.c: Likewise.
43141         * lib/localcharset.c: Likewise.
43142         * lib/lock.c: Likewise.
43143         * lib/mbchar.c: Likewise.
43144         * lib/mbswidth.c: Likewise.
43145         * lib/mkdtemp.c: Likewise.
43146         * lib/pipe.c: Likewise.
43147         * lib/printf-args.c: Likewise.
43148         * lib/printf-parse.c: Likewise.
43149         * lib/progname.c: Likewise.
43150         * lib/progreloc.c: Likewise.
43151         * lib/readlink.c: Likewise.
43152         * lib/sh-quote.c: Likewise.
43153         * lib/stpcpy.c: Likewise.
43154         * lib/stpncpy.c: Likewise.
43155         * lib/strcasecmp.c: Likewise.
43156         * lib/strcasestr.c: Likewise.
43157         * lib/strcspn.c: Likewise.
43158         * lib/striconv.c: Likewise.
43159         * lib/strncasecmp.c: Likewise.
43160         * lib/strnlen1.c: Likewise.
43161         * lib/strstr.c: Likewise.
43162         * lib/strtok_r.c: Likewise.
43163         * lib/tls.c: Likewise.
43164         * lib/tmpdir.c: Likewise.
43165         * lib/unicodeio.c: Likewise.
43166         * lib/unsetenv.c: Likewise.
43167         * lib/vasnprintf.c: Likewise.
43168         * lib/vasprintf.c: Likewise.
43169         * lib/wait-process.c: Likewise.
43170         * lib/xallocsa.c: Likewise.
43171         * lib/xsetenv.c: Likewise.
43172         * lib/xstriconv.c: Likewise.
43173
43174 2006-09-13  Simon Josefsson  <jas@extundo.com>
43175
43176         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
43177         that internally, suggested by Ralf Wildenhues
43178         <Ralf.Wildenhues@gmx.de>.
43179
43180 2006-09-13  Simon Josefsson  <jas@extundo.com>
43181
43182         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
43183         @LIBOBJS@.
43184         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
43185
43186 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
43187
43188         * lib/_fpending.c: Include <config.h> unconditionally, since we no
43189         longer worry about uses that don't define HAVE_CONFIG_H.
43190         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
43191         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
43192         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
43193         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
43194         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
43195         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
43196         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
43197         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
43198         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
43199         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
43200         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
43201         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
43202         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
43203         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
43204         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
43205         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
43206         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
43207         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
43208         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
43209         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
43210         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
43211         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
43212         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
43213         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
43214         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
43215         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
43216         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
43217         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
43218         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
43219         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
43220         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
43221         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
43222         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
43223         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
43224         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
43225         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
43226         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
43227         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
43228         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
43229         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
43230         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
43231         Likewise.
43232
43233 2006-09-13  Eric Blake  <ebb9@byu.net>
43234
43235         * lib/getopt.c: Fix typo in last commit.
43236
43237 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
43238
43239         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
43240         dgettext.
43241
43242 2006-09-12  Jim Meyering  <jim@meyering.net>
43243
43244         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
43245         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
43246         Reported by Nelson H. F. Beebe.
43247
43248 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
43249
43250         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
43251         program_invocation_name and program_invocation_short_name are
43252         initialized.
43253         * lib/argp-namefrob.h: Move declarations of program_invocation_name
43254         and program_invocation_short_name to argp.h, so they are visible
43255         to user programs.
43256         * lib/argp.h: Likewise
43257
43258 2006-09-10  Bruno Haible  <bruno@clisp.org>
43259
43260         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
43261         m4/inttypes_h.m4, m4/uintmax_t.m4.
43262
43263 2006-09-10  Bruno Haible  <bruno@clisp.org>
43264
43265         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
43266         gl_AC_TYPE_UINTMAX_T.
43267
43268 2006-09-10  Bruno Haible  <bruno@clisp.org>
43269
43270         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
43271
43272 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
43273
43274         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
43275         convention.  Text proposed by Bruno Haible.
43276         (struct argp_option): Document the use of N_() wrappers.
43277
43278         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
43279         '\v', and translate the two parts separately, instead of feeding
43280         the whole string to gettext.  This allows to exclude
43281         '\v' from the strings visible to the translator by writing doc
43282         strings as N_("..") "\v" N_("..").
43283
43284 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
43285
43286         * config/srclist.txt: Undo latest change; the bug was fixed.
43287
43288 2006-09-09  Bruno Haible  <bruno@clisp.org>
43289
43290         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
43291         assignments if building a library without libtool.
43292         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
43293         in func_emit_lib_Makefile_am.
43294         (func_import): When building a static library libfoo.a, arrange to
43295         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
43296         (func_create_testdir): Likewise.
43297         * modules/gc (configure.ac, Makefile.am): If building statically,
43298         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
43299         * modules/iconvme (configure.ac, Makefile.am): Likewise.
43300         * modules/striconv (configure.ac, Makefile.am): Likewise.
43301         Based on a suggestion by Ralf Wildenhues.
43302
43303 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43304
43305         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
43306         Check for unistd.h too, since Autoconf doesn't assume POSIX.
43307         Also:
43308
43309         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43310         Add year_2050_test to catch glibc bug 2821
43311         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
43312
43313         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
43314         Prefer #ifdef to #if.
43315
43316         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
43317         Return from 'main' instead of calling 'exit'.
43318
43319 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43320
43321         * lib/mktime.c (guess_time_tm): Fix bug where mktime
43322         returned the maximum time_t value rather than (time_t) -1.
43323         Problem originally reported by William Bardwell
43324         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
43325
43326         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
43327         Moved to here ...
43328         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
43329         ... from here.
43330
43331 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43332
43333         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
43334         2821 is fixed.
43335
43336 2006-09-08  Jim Meyering  <jim@meyering.net>
43337
43338         Don't make generated files read-only.  That would bother too many
43339         people.  However, do retain the ability to work when targets are
43340         read-only: remove the destination and temporary files before writing
43341         them (when generated via sed or echo), or by using the -f option for
43342         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
43343         * modules/alloca-opt, modules/argz, modules/arpa_inet:
43344         * modules/byteswap, modules/configmake, modules/fcntl:
43345         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
43346         * modules/localcharset, modules/netinet_in, modules/poll:
43347         * modules/stdbool, modules/stdint, modules/sys_select:
43348         * modules/sys_socket, modules/sys_stat, modules/sysexits:
43349
43350 2006-09-08  Jim Meyering  <jim@meyering.net>
43351
43352         Avoid new build failure on FreeBSD 6.0.
43353         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
43354         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
43355         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
43356
43357 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43358
43359         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
43360
43361 2006-09-07  Jim Meyering  <jim@meyering.net>
43362
43363         Fix global typo in last change: use chmod u-w, not chmod u-x.
43364         Spotted by Paul Eggert and Bruce Korb.
43365         * modules/alloca-opt, modules/argz, modules/arpa_inet:
43366         * modules/byteswap, modules/configmake, modules/fcntl:
43367         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
43368         * modules/localcharset, modules/netinet_in, modules/poll:
43369         * modules/stdbool, modules/stdint, modules/sys_select:
43370         * modules/sys_socket, modules/sys_stat, modules/sysexits:
43371
43372 2006-09-06  Jim Meyering  <jim@meyering.net>
43373
43374         Make generated files be read-only.
43375         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
43376         Ensure that each generated file is now read-only.
43377         * modules/argz: Likewise.
43378         * modules/arpa_inet: Likewise.
43379         * modules/byteswap: Likewise.
43380         * modules/configmake: Likewise.
43381         * modules/fcntl: Likewise.
43382         * modules/fnmatch: Likewise.
43383         * modules/getopt: Likewise.
43384         * modules/glob: Likewise.
43385         * modules/inttypes: Likewise.
43386         * modules/netinet_in: Likewise.
43387         * modules/poll: Likewise.
43388         * modules/stdbool: Likewise.
43389         * modules/stdint: Likewise.
43390         * modules/sys_select: Likewise.
43391         * modules/sys_socket: Likewise.
43392         * modules/sys_stat: Likewise.
43393         * modules/sysexits: Likewise.
43394         * modules/localcharset: Same as above, but continue using temporary
43395         file named "t-$@" (why different?) rather than the "$@-t" used
43396         everywhere else.
43397
43398         * modules/sysexits (Makefile.am): Replace literal occurrences
43399         of "sysexit.h" more readable, and more consistent, "$@".
43400
43401 2006-09-06  Bruno Haible  <bruno@clisp.org>
43402
43403         * modules/striconv: New file.
43404         * modules/xstriconv: New file.
43405         * MODULES.html.sh (Internationalization functions): Add striconv,
43406         xstriconv.
43407
43408 2006-09-06  Bruno Haible  <bruno@clisp.org>
43409
43410         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
43411         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
43412         not using libtool correctly.
43413
43414 2006-09-06  Bruno Haible  <bruno@clisp.org>
43415
43416         * lib/striconv.h: New file.
43417         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
43418         iconvstring.c.
43419         * lib/xstriconv.h: New file.
43420         * lib/xstriconv.c: New file.
43421
43422 2006-09-06  Bruno Haible  <bruno@clisp.org>
43423
43424         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
43425         lib_..._LDFLAGS.
43426
43427 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43428
43429         * lib/argz_.h: Sync from Libtool.
43430
43431         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
43432                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
43433
43434         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
43435
43436 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
43437
43438         * modules/trim: New file.
43439
43440 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
43441
43442         * lib/trim.h: New file.
43443         * lib/trim.c: New file.
43444
43445 2006-09-05  Bruno Haible  <bruno@clisp.org>
43446
43447         * MODULES.html.sh (String handling): Add trim.
43448
43449 2006-09-04  Karl Berry  <karl@gnu.org>
43450
43451         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
43452         until next release.
43453
43454 2006-09-03  Bruno Haible  <bruno@clisp.org>
43455
43456         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
43457         correctly.
43458
43459 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43460
43461         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
43462         not gl_GETLOADAVG.  Omit unneeded semicolons.
43463         Problems reported by Ralf Wildenhues in
43464         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
43465         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
43466         at the end, which is the usual gnulib style.
43467
43468         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
43469         of doing all the work ourselves.
43470         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
43471         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
43472
43473 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43474
43475         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
43476         Problem reported by Ralf Wildenhues in
43477         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
43478
43479         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
43480         HAVE_STRUCT_STATFS_F_FSTYPENAME.
43481
43482 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43483
43484         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
43485         yesterday's patch by changing test -n to test -z.
43486
43487 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43488
43489         * modules/getloadavg (Files): Add m4/getloadavg.m4.
43490         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
43491         the former is now obsolescent.
43492
43493         * modules/chdir-long (Depends-on): Add fcntl.
43494
43495 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43496
43497         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
43498         obsolescent, and programs should use gnulib instead.
43499         * m4/getloadavg.m4: New file, with contents taken from Autoconf
43500         but with prefixes changed.
43501
43502 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43503
43504         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
43505         or stdbool.h, because they might not exist while configuring.
43506
43507         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
43508         Don't include unistd.h or limits.h; not needed, since chdir-long.h
43509         does that for us.
43510         (O_DIRECTORY): Remove.
43511
43512 2006-08-31  Eric Blake  <ebb9@byu.net>
43513
43514         * gnulib-tool: Don't let emacs change spaces to TAB.
43515
43516 2006-08-31  Bruno Haible  <bruno@clisp.org>
43517
43518         * gnulib-tool: When calling func_import more than once, do it in a
43519         subshell.
43520         Reported by Eric Blake <ebb9@byu.net>.
43521
43522 2006-08-31  Bruno Haible  <bruno@clisp.org>
43523
43524         * gnulib-tool (nl): Remove variable.
43525         (sed_transform_lib_file): Use more robust test for config-h module.
43526         (func_import): Fix typo in 2006-08-25 patch.
43527
43528 2006-08-31  Bruno Haible  <bruno@clisp.org>
43529
43530         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
43531         specified, augment Makefile.am variables instead of assigning them.
43532
43533 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
43534
43535         Work around a bug in both the Linux and SunOS 64-bit kernels:
43536         nanosleep mishandles sleeps for longer than 2**31 seconds.
43537         Problem reported by Frank v Waveren in
43538         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
43539         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
43540         Check for nanosleep bug.
43541         (LIB_NANOSLEEP): Append clock_gettime library if needed.
43542
43543 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
43544
43545         Work around a bug in both the Linux and SunOS 64-bit kernels:
43546         nanosleep mishandles sleeps for longer than 2**31 seconds.
43547         Problem reported by Frank v Waveren in
43548         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
43549         * lib/nanosleep.c (BILLION): New constant.
43550         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
43551         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
43552         implementation.
43553
43554 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
43555
43556         * modules/nanosleep (Depends-on): Add gettime.
43557
43558 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
43559         and Simon Josefsson  <jas@extundo.com>
43560         and Oskar Liljeblad  <oskar@osk.mine.nu>
43561
43562         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
43563         * gnulib-tool (func_import): New license type 'unmodifiable license
43564         text'.
43565         * modules/fdl: Use it.  Longer description.
43566         * module/gpl, module/lgpl: New files.
43567
43568 2006-08-30  Jim Meyering  <jim@meyering.net>
43569
43570         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
43571         shadowing the parameter.
43572
43573 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43574
43575         Sync from Libtool:
43576
43577         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43578
43579         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
43580         sharing with gnulib.  Report by Eric Blake.
43581
43582 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
43583
43584         * modules/isapipe: New file.
43585         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
43586
43587 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
43588
43589         * modules/configmake (Makefile.am): Add a comment, and omit
43590         the CONFIGMAKE_ prefix from generated macro names.  Suggested
43591         by Bruno Haible.
43592
43593 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
43594
43595         * m4/isapipe.m4: New file.
43596
43597 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
43598
43599         * lib/isapipe.c, lib/isapipe.h: New files.
43600
43601 2006-08-29  Jim Meyering  <jim@meyering.net>
43602
43603         * modules/configmake (Makefile.am): Make configmake.h depend on
43604         Makefile.  Otherwise, a stale configmake.h could hang around.
43605
43606 2006-08-29  Eric Blake  <ebb9@byu.net>
43607
43608         * lib/error.c (error_at_line, print_errno_message): Match libc, after
43609         resolution of upstream bug 3044.
43610
43611 2006-08-29  Bruno Haible  <bruno@clisp.org>
43612
43613         * modules/localcharset (Depends-on): Add configmake.
43614         (Makefile.am): Remove setting of LIBDIR through DEFS.
43615
43616 2006-08-29  Bruno Haible  <bruno@clisp.org>
43617
43618         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
43619         defined.
43620
43621 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
43622
43623         * modules/fcntl: New file.
43624         * modules/chdir-safer (Depends-on): Add fcntl.
43625         * modules/fts: Likewise.
43626         * modules/mkdir-p: Likewise.
43627
43628         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
43629         This undoes the most recent change, since we're now addressing the
43630         problem in a different way.
43631
43632         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
43633         into output, since the output might be called Makefile.am even
43634         if $makefile_name is something different.
43635         (func_import): Use $makefile_am rather than
43636         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
43637         empty.
43638
43639         * modules/inttypes (Files): Add m4/inttypes-h.m4.
43640
43641 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
43642
43643         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
43644         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
43645         recent change to stdint.m4, since we're now addressing the problem in a
43646         different way.
43647
43648 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
43649
43650         * m4/fcntl_h.m4: New file.
43651
43652 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
43653
43654         * lib/fcntl_.h: New file.
43655         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
43656         the fcntl module.
43657         * lib/dirchownmod.c: Likewise.
43658         * lib/fts.c: Likewise.
43659
43660         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
43661         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
43662         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
43663         just before including <inttypes.h>, to avoid circular inclusion.
43664
43665 2006-08-28  Jim Meyering  <jim@meyering.net>
43666
43667         * doc/visibility.texi: Actually read and correct the grammar of the
43668         sentence affected by yesterday's change.
43669
43670 2006-08-28  Eric Blake  <ebb9@byu.net>
43671
43672         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
43673         needs wrapper.
43674
43675 2006-08-28  Eric Blake  <ebb9@byu.net>
43676
43677         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
43678
43679 2006-08-28  Eric Blake  <ebb9@byu.net>
43680
43681         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
43682
43683 2006-08-28  Bruno Haible  <bruno@clisp.org>
43684
43685         * modules/c-strstr: New file, from GNU gettext.
43686         * MODULES.html.sh (String handling): Add c-strstr.
43687
43688 2006-08-28  Bruno Haible  <bruno@clisp.org>
43689
43690         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
43691         macros.
43692         Reported by Eric Blake.
43693
43694 2006-08-28  Bruno Haible  <bruno@clisp.org>
43695
43696         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
43697         (VASNPRINTF): Return a string of length > INT_MAX without failing.
43698         * lib/vasprintf.c: Include errno.h, limits.h.
43699         (EOVERFLOW): New fallback definition.
43700         (vasprintf): Test here whether the string length is > INT_MAX.
43701         * lib/vsnprintf.c: Include errno.h, limits.h.
43702         (EOVERFLOW): New fallback definition.
43703         (vsnprintf): Fix bug when generated string was too long for the buffer.
43704         Test here whether the string length is > INT_MAX.
43705
43706 2006-08-28  Bruno Haible  <bruno@clisp.org>
43707
43708         * lib/inttypes_.h (SCNX*): Remove definitions.
43709         Reported by Eric Blake.
43710
43711 2006-08-28  Bruno Haible  <bruno@clisp.org>
43712
43713         * lib/c-strstr.h: New file, from GNU gettext.
43714         * lib/c-strstr.c: New file, from GNU gettext.
43715
43716 2006-08-28  Bruno Haible  <bruno@clisp.org>
43717
43718         * gnulib-tool: Reorder some statements.
43719
43720 2006-08-28  Bruno Haible  <bruno@clisp.org>
43721
43722         * gnulib-tool: New option --makefile-name.
43723         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
43724         $makefile_name.
43725         (func_import): Write $makefile_name to the cache file, and read it from
43726         there unless explicitly specified. Use $makefile_name as file name
43727         instead of Makefile.am. Adjust the recommendations accordingly.
43728
43729 2006-08-28  Bruno Haible  <bruno@clisp.org>
43730
43731         * gnulib-tool (func_verify_module): Check against misapplying patch.
43732
43733 2006-08-28  Bruno Haible  <bruno@clisp.org>
43734
43735         * gnulib-tool (func_relativize, func_relconcat): New functions.
43736         Give an error if --local-dir is given with --update.
43737         Remove trailing slashes from $local_gnulib_dir.
43738         (func_import): Store the relativized $local_gnulib_dir in
43739         gnulib-cache.m4, and read it from there if not specified explicitly.
43740
43741 2006-08-28  Bruno Haible  <bruno@clisp.org>
43742
43743         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
43744         is the current directory. Respect also $local_gnulib_dir.
43745
43746 2006-08-28  Bruno Haible  <bruno@clisp.org>
43747             Simon Josefsson  <jas@extundo.com>
43748
43749         BeOS portability.
43750         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
43751
43752 2006-08-27  Jim Meyering  <jim@meyering.net>
43753
43754         * doc/visibility.texi: Remove duplicate word: "pointer".
43755
43756 2006-08-26  Bruno Haible  <bruno@clisp.org>
43757
43758         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
43759         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
43760         (Makefile.am): Create inttypes.h from inttypes_.h.
43761         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
43762
43763         * modules/imaxabs: New file.
43764
43765         * modules/imaxdiv: New file.
43766
43767 2006-08-26  Bruno Haible  <bruno@clisp.org>
43768
43769         * m4/inttypes.m4: New file.
43770         * m4/_inttypes_h.m4: Remove file.
43771         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
43772         PRI_MACROS_BROKEN.
43773         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
43774
43775         * m4/imaxabs.m4: New file.
43776
43777         * m4/imaxdiv.m4: New file.
43778
43779 2006-08-26  Bruno Haible  <bruno@clisp.org>
43780
43781         * lib/inttypes_.h: New file.
43782         * lib/inttypes.h: Remove file.
43783         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
43784
43785         * lib/imaxabs.c: New file.
43786
43787         * lib/imaxdiv.c: New file.
43788
43789 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
43790
43791         New config-h module, so that "make" output needn't be cluttered
43792         by -DHAVE_CONFIG_H.
43793         * MODULES.html.sh (Support for building libraries and executables):
43794         Add config-h.
43795         * modules/config-h: New file.
43796         * gnulib-tool (nl, sed_transform_lib_file): New vars.
43797         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
43798         the config-h module is used.
43799
43800         New configmake module, so that "make" output needn't be cluttered
43801         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
43802         * MODULES.html.sh (Support for building libraries and executables):
43803         Add configmake.
43804         * modules/configmake: New file.
43805
43806 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
43807
43808         * m4/config-h.m4: New file.
43809
43810 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
43811
43812         * config/srclist.txt: Add elisp-comp.
43813
43814 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
43815
43816         * MODULES.html.sh (Support for building libraries and executables):
43817         Add elisp-comp.
43818         * build-aux/elisp-comp: New file.
43819         * modules/elisp-comp: New file.
43820
43821 2006-08-24  Bruno Haible  <bruno@clisp.org>
43822
43823         * gnulib-tool (func_create_testdir): Use non-default values of
43824         sourcebase and m4base.
43825
43826 2006-08-24  Bruno Haible  <bruno@clisp.org>
43827
43828         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
43829         HTML structure.
43830
43831 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
43832
43833         * modules/openat (Depends-on): Add lchown.
43834
43835 2006-08-23  Bruno Haible  <bruno@clisp.org>
43836
43837         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
43838         of gl_LOCK_EARLY instead of gl_LOCK.
43839
43840 2006-08-23  Bruno Haible  <bruno@clisp.org>
43841
43842         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
43843         on OSF/1 to no.
43844         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
43845
43846 2006-08-23  Bruno Haible  <bruno@clisp.org>
43847
43848         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
43849         as unusable.
43850
43851         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
43852         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
43853         (gl_LOCK): New macro.
43854
43855 2006-08-22  Simon Josefsson  <jas@extundo.com>
43856
43857         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
43858         to md5 module.
43859
43860 2006-08-22  Simon Josefsson  <jas@extundo.com>
43861
43862         * MODULES.html.sh: Add "Support for maintaining and release
43863         projects".
43864
43865         * build-aux/gnupload: New file, from coreutils.
43866
43867 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
43868
43869         Avoid the need for AC_LIBSOURCES in m4 macros.
43870         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
43871         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
43872         * modules/check-version (EXTRA_DIST): Add check-version.h.
43873         * modules/crc (EXTRA_DIST): Add crc.h.
43874         * modules/des (EXTRA_DIST): Add des.h.
43875         * modules/gc (EXTRA_DIST): Add gc.h.
43876         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
43877         * modules/getline (EXTRA_DIST): Add getline.h.
43878         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
43879         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
43880         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
43881         * modules/md2 (EXTRA_DIST): Add md2.h.
43882         * modules/md4 (EXTRA_DIST): Add md4.h.
43883         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
43884         * modules/read-file (EXTRA_DIST): Add read-file.h.
43885         * modules/readline (EXTRA_DIST): Add readline.h.
43886         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
43887         rijndael-api-fst.h.
43888
43889 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
43890
43891         * m4/rijndael.m4 (gl_ARCFOUR):
43892         * m4/arctwo.m4 (gl_ARCTWO):
43893         * m4/check-version.m4 (gl_CHECK_VERSION):
43894         * m4/crc.m4 (gl_CRC):
43895         * m4/des.m4 (gl_DES):
43896         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
43897         * m4/gc.m4 (gl_GC):
43898         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
43899         * m4/getline.m4 (gl_FUNC_GETLINE):
43900         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
43901         * m4/hmac-md5.m4 (gl_HMAC_MD5):
43902         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
43903         * m4/md2.m4 (gl_MD2):
43904         * m4/md4.m4 (gl_MD4):
43905         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
43906         * m4/read-file.m4 (gl_FUNC_READ_FILE):
43907         * m4/readline.m4 (gl_FUNC_READLINE):
43908         * m4/rijndael.m4 (gl_RIJNDAEL):
43909         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
43910         to get the necessary .h files and whatnot.
43911
43912 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
43913
43914         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
43915         gnulib rather than the other way around.
43916         * config/srclistvars.sh (COREUTILS): Remove.
43917
43918 2006-08-22  Jim Meyering  <jim@meyering.net>
43919
43920         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
43921
43922         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
43923
43924 2006-08-22  Eric Blake  <ebb9@byu.net>
43925
43926         * modules/regexprops-generic: New file.
43927         * MODULES.html.sh (Support for building documentation): List it.
43928
43929 2006-08-22  Eric Blake  <ebb9@byu.net>
43930
43931         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
43932         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
43933         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
43934         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
43935
43936 2006-08-22  Bruno Haible  <bruno@clisp.org>
43937
43938         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
43939         and lib_LTLIBRARIES like the other lib_* variables.
43940
43941 2006-08-22  Bruno Haible  <bruno@clisp.org>
43942
43943         * build-aux/x-to-1.in: New file, from GNU gettext.
43944
43945 2006-08-22  Bruno Haible  <bruno@clisp.org>
43946
43947         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
43948         <utmpx.h> exists.
43949
43950 2006-08-22  Bruno Haible  <bruno@clisp.org>
43951
43952         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
43953         <utmpx.h> exists.
43954
43955 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
43956
43957         BeOS portability.
43958         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
43959         exist.
43960         Problem reported by Bruno Haible.
43961
43962 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
43963
43964         Avoid the need for AC_LIBSOURCES in m4 macros.
43965         * modules/acl (EXTRA_DIST): Add acl.h.
43966         * modules/argmatch (Files): Add m4/argmatch.m4.
43967         (configure.ac): Add gl_ARGMATCH.
43968         (EXTRA_DIST): Renamed from lib_SOURCES, for
43969         consistency with the other modules.  Remove argmatch.c.
43970         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
43971         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
43972         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
43973         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
43974         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
43975         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
43976         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
43977         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
43978         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
43979         * modules/closeout (EXTRA_DIST): Add closeout.h.
43980         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
43981         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
43982         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
43983         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
43984         dirname.h; remove basename.c and stripslash.c.
43985         * modules/exclude (EXTRA_DIST): Add exclude.h.
43986         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
43987         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
43988         * modules/file-type (EXTRA_DIST): Add file-type.h.
43989         * modules/filemode (EXTRA_DIST): Add filemode.h.
43990         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
43991         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
43992         * modules/fpending (EXTRA_DIST): Add __fpending.h.
43993         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
43994         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
43995         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
43996         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
43997         * modules/getdate (EXTRA_DIST): Add getdate.c.
43998         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
43999         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
44000         * modules/getpass (EXTRA_DIST): Add getpass.h.
44001         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
44002         * modules/group-member (EXTRA_DIST): Add group-member.h.
44003         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
44004         * modules/hash (EXTRA_DIST): Add hash.h.
44005         * modules/human (EXTRA_DIST): Add human.h.
44006         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
44007         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
44008         * modules/lchown (EXTRA_DIST): Add lchown.h.
44009         * modules/long-options (EXTRA_DIST): Add long-options.h.
44010         * modules/lstat (EXTRA_DIST): Add lstat.h.
44011         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
44012         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
44013         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
44014         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
44015         * modules/memxor (EXTRA_DIST): Add memxor.h.
44016         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
44017         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
44018         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
44019         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
44020         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
44021         * modules/physmem (EXTRA_DIST): Add physmem.h.
44022         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
44023         * modules/posixver (EXTRA_DIST): Add posixver.h.
44024         * modules/quote (EXTRA_DIST): Add quote.h.
44025         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
44026         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
44027         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
44028         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
44029         regex_internal.h regexec.c.
44030         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
44031         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
44032         * modules/same (EXTRA_DIST): Add same.h.
44033         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
44034         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
44035         * modules/savedir (EXTRA_DIST): Add savedir.h.
44036         * modules/sha1 (EXTRA_DIST): Add sha1.h.
44037         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
44038         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
44039         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
44040         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
44041         * modules/strdup (EXTRA_DIST): Add strdup.h.
44042         * modules/strftime (EXTRA_DIST): Add strftime.h.
44043         * modules/strndup (EXTRA_DIST): Add strndup.h.
44044         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
44045         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
44046         * modules/time_r (EXTRA_DIST): Add time_r.h.
44047         * modules/timespec (EXTRA_DIST): Add timespec.h.
44048         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
44049         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
44050         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
44051         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
44052         * modules/userspec (EXTRA_DIST): Add userspec.h.
44053         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
44054         * modules/utimens (EXTRA_DIST): Add utimens.h.
44055         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
44056         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
44057         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
44058         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
44059         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
44060         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
44061         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
44062         * modules/yesno (EXTRA_DIST): Add yesno.h.
44063
44064 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
44065
44066         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
44067
44068         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
44069         * m4/dev-ino.m4, same-inode.m4: Remove.
44070
44071         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
44072         * m4/acl.m4 (AC_FUNC_ACL):
44073         * m4/backupfile.m4 (gl_BACKUPFILE):
44074         * m4/c-strtod.m4 (gl_C99_STRTOLD):
44075         * m4/canon-host.m4 (gl_CANON_HOST):
44076         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
44077         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
44078         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
44079         * m4/cloexec.m4 (gl_CLOEXEC):
44080         * m4/close-stream.m4 (gl_CLOSE_STREAM):
44081         * m4/closeout.m4 (gl_CLOSEOUT):
44082         * m4/dirfd.m4 (gl_FUNC_DIRFD):
44083         * m4/dirname.m4 (gl_DIRNAME):
44084         * m4/exclude.m4 (gl_EXCLUDE):
44085         * m4/exitfail.m4 (gl_EXITFAIL):
44086         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
44087         * m4/file-type.m4 (gl_FILE_TYPE):
44088         * m4/filemode.m4 (gl_FILEMODE):
44089         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
44090         * m4/fpending.m4 (gl_FUNC_FPENDING):
44091         * m4/fprintftime.m4 (gl_FPRINTFTIME):
44092         * m4/fts.m4 (gl_FUNC_FTS):
44093         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
44094         * m4/getdate.m4 (gl_GETDATE):
44095         * m4/gethrxtime.m4 (gl_GETHRXTIME):
44096         * m4/getpagesize.m4 (gl_GETPAGESIZE):
44097         * m4/getpass.m4 (gl_FUNC_GETPASS):
44098         * m4/gettime.m4 (gl_GETTIME):
44099         * m4/getugroups.m4 (gl_GETUGROUPS):
44100         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
44101         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
44102         * m4/hard-locale.m4 (gl_HARD_LOCALE):
44103         * m4/hash.m4 (gl_HASH):
44104         * m4/idcache.m4 (gl_IDCACHE):
44105         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
44106         * m4/lchown.m4 (gl_FUNC_LCHOWN):
44107         * m4/long-options.m4 (gl_LONG_OPTIONS):
44108         * m4/lstat.m4 (gl_FUNC_LSTAT):
44109         * m4/md5.m4 (gl_MD5):
44110         * m4/memcasecmp.m4 (gl_MEMCASECMP):
44111         * m4/memcoll.m4 (gl_MEMCOLL):
44112         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
44113         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
44114         * m4/memxor.m4 (gl_MEMXOR):
44115         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
44116         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
44117         * m4/modechange.m4 (gl_MODECHANGE):
44118         * m4/mountlist.m4 (gl_MOUNTLIST):
44119         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
44120         * m4/openat.m4 (gl_FUNC_OPENAT):
44121         * m4/pathmax.m4 (gl_PATHMAX):
44122         * m4/physmem.m4 (gl_PHYSMEM):
44123         * m4/posixtm.m4 (gl_POSIXTM):
44124         * m4/posixver.m4 (gl_POSIXVER):
44125         * m4/quote.m4 (gl_QUOTE):
44126         * m4/quotearg.m4 (gl_QUOTEARG):
44127         * m4/readtokens.m4 (gl_READTOKENS):
44128         * m4/readutmp.m4 (gl_READUTMP):
44129         * m4/regex.m4 (gl_REGEX):
44130         * m4/safe-read.m4 (gl_SAFE_READ):
44131         * m4/safe-write.m4 (gl_SAFE_WRITE):
44132         * m4/same.m4 (gl_SAME):
44133         * m4/save-cwd.m4 (gl_SAVE_CWD):
44134         * m4/savedir.m4 (gl_SAVEDIR):
44135         * m4/settime.m4 (gl_SETTIME):
44136         * m4/sha1.m4 (gl_SHA1):
44137         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
44138         * m4/stat-macros.m4 (gl_STAT_MACROS):
44139         * m4/stat-time.m4 (gl_STAT_TIME):
44140         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
44141         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
44142         * m4/strdup.m4 (gl_FUNC_STRDUP):
44143         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
44144         * m4/strndup.m4 (gl_FUNC_STRNDUP):
44145         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
44146         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
44147         * m4/time_r.m4 (gl_TIME_R):
44148         * m4/timespec.m4 (gl_TIMESPEC):
44149         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
44150         * m4/unlinkdir.m4 (gl_UNLINKDIR):
44151         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
44152         * m4/userspec.m4 (gl_USERSPEC):
44153         * m4/utimecmp.m4 (gl_UTIMECMP):
44154         * m4/utimens.m4 (gl_UTIMENS):
44155         * m4/xalloc.m4 (gl_XALLOC):
44156         * m4/xgetcwd.m4 (gl_XGETCWD):
44157         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
44158         * m4/xreadlink.m4 (gl_XREADLINK):
44159         * m4/xstrtod.m4 (gl_XSTRTOD):
44160         * m4/yesno.m4 (gl_YESNO):
44161         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
44162         to get the necessary .h files and whatnot.
44163
44164 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
44165             Bruno Haible  <bruno@clisp.org>
44166
44167         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
44168         /bin/sh understanding of '!' conditional negation.
44169
44170 2006-08-21  Jim Meyering  <jim@meyering.net>
44171
44172         * modules/openat (Depends-on): Really alphabetize.
44173
44174         * modules/acl (Depends-on): Add error and quote.
44175
44176         * check-module (find_included_lib_files): Add at-func.c to the
44177         ok-to-include-more-than-once white list.
44178
44179         * modules/openat (Depends-on): Add lstat.  Alphabetize.
44180
44181 2006-08-21  Bruno Haible  <bruno@clisp.org>
44182
44183         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44184         Emit a pkgdata_DATA variable only if some snippets add contents to it.
44185         Reported by Martin Lambers <marlam@marlam.de>.
44186
44187 2006-08-21  Bruno Haible  <bruno@clisp.org>
44188
44189         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
44190         specify an installation location, don't emit a noinst_LIBRARIES or
44191         noinst_LTLIBRARIES assignment.
44192
44193 2006-08-21  Bruno Haible  <bruno@clisp.org>
44194
44195         BeOS portability.
44196         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
44197         BeOS has mbrtowc() but no <wctype.h>.
44198
44199 2006-08-21  Bruno Haible  <bruno@clisp.org>
44200
44201         BeOS portability.
44202         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
44203         exist.
44204
44205 2006-08-21  Bruno Haible  <bruno@clisp.org>
44206
44207         BeOS portability.
44208         * lib/mbchar.h: Include <wctype.h> only if it exists.
44209
44210 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44211
44212         Remove files that are no longer needed by their respective modules.
44213         * m4/obstack.m4: Remove.
44214         * m4/strerror_r.m4: Remove.
44215         * m4/uint32_t.m4: Remove.
44216         * m4/uintptr_t.m4: Remove.
44217         * m4/ullong_max.m4: Remove.
44218         * m4/xstrtoimax.m4: Remove.
44219         * m4/xstrtoumax.m4: Remove.
44220
44221         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
44222         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
44223         dependencies now capture this.
44224
44225         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
44226         Do not use AC_LIBSOURCES, since gnulib modules now do this.
44227         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
44228         * m4/human.m4 (gl_HUMAN): Likewise.
44229         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
44230         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
44231
44232         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
44233
44234         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
44235         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
44236         stdint.
44237         * m4/human.m4 (gl_HUMAN): Likewise.
44238         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
44239         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
44240         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
44241         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
44242         * m4/xstrtol (gl_XSTRTOL): Likewise.
44243
44244         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
44245         AC_TYPE_LONG_LONG_INT.
44246         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
44247         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
44248         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
44249         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
44250
44251         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
44252         on stdbool.
44253
44254         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
44255         (gl_PREREQ_XSTRTOUL): Remove.
44256
44257         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
44258
44259         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
44260         mode.
44261
44262 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44263
44264         Add and change modules to make it easier for coreutils to use
44265         gnulib-tool.
44266         * modules/backupfile (Files): Remove m4/d-ino.m4.
44267         (Depends-on): Add d-ino.
44268         * modules/cycle-check (Depends-on): Add stdint.
44269         (lib_SOURCES): Add cycle-check.h.
44270         * modules/d-ino: New module.
44271         * modules/d-type: New module.
44272         * modules/error (Files): Remove m4/strerror_r.m4.
44273         * modules/filemode (Files): Add m4/st_dm_mode.m4.
44274         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
44275         m4/inttypes_h.m4, m4/uintmax_t.m4.
44276         (Depends-on): Add stdint.
44277         (lib_SOURCES): Add fsusage.h.
44278         * modules/getcwd (Files): Remove d-ino.m4.
44279         (Depends-on): Add d-ino.
44280         * modules/getndelim2 (Depends-on): Add stdint.
44281         * modules/glob (Files): Remove m4/d-type.m4.
44282         (Depends-on): Add d-type.
44283         * modules/host-os: New module.
44284         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
44285         m4/inttypes_h.m4, m4/uintmax_t.m4.
44286         * Depends-on: Add stdint.
44287         (lib_SOURCES): Add human.h.
44288         * modules/inttostr (Files): Remove m4/intmax_t.m4,
44289         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
44290         m4/uintmax_t.m4, m4/ulonglong.m4.
44291         (Depends-on): Add stdint.
44292         (EXTRA_DIST): Add inttostr.h.
44293         * modules/lchmod: New module.
44294         * modules/link-follow: New module.
44295         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
44296         (Depends-on): Add lchmod.
44297         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
44298         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
44299         (Depends-on): Add stdint.
44300         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
44301         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
44302         (Depends-on): Add stdint.
44303         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
44304         * modules/perl: New module.
44305         * modules/regex (Depends-on): Add stdint.
44306         * modules/rmdir-errno: New module.
44307         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
44308         m4/intmax_t.m4.
44309         (Depends-on): Add stdint.
44310         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
44311         m4/uintmax_t.m4.
44312         (Depends-on): Add stdint.
44313         * modules/unlink-busy: New module.
44314         * modules/utimecmp (Depends-on): Add stdint.
44315         * modules/uptime: New module.
44316         * modules/winsz-ioctl: New module.
44317         * modules/winsz-termios: New module.
44318         * modules/xnanosleep (Depends-on): Add nanosleep.
44319         * modules/ullong_max: Remove.
44320         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
44321         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
44322         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
44323         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
44324         (Depends-on): Add inttypes.
44325         (lib_SOURCES): Add xstrtol.h.
44326         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
44327         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
44328         * MODULES.html.sh: Move 'assert' into the assert section.
44329         Move 'dummy' into the linking section.
44330         Remove ullong_max.
44331         Add section for compatibility checks for POSIX:2001 functions,
44332         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
44333         winsz-ioctl, and winsz-termios into it.
44334         Add lchmod.
44335         Add top-level Misc section and put host-os, perl, and uptime
44336         into it.
44337
44338 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44339
44340         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
44341         now assume the stdint module.  Do not include inttypes.h.
44342         * lib/fsusage.h: Likewise.
44343         * lib/getndelim2.c: Likewise.
44344         * lib/human.h: Likewise.
44345         * lib/inttostr.h: Likewise.
44346         * lib/obstack.c: Likewise.
44347         * lib/regex_internal.h: Likewise.
44348         * lib/tempname.c: Likewise.
44349         * lib/utimecmp.c: Likewise.
44350         * lib/xstrtol.h: Likewise.
44351
44352         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
44353
44354         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
44355         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
44356         * lib/xtime.h: Likewise.
44357
44358 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44359
44360         * modules/openat (Files): Add lib/fchmodat.c.
44361         Fixes problem reported by Jay Youngman.
44362
44363 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44364
44365         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
44366         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
44367
44368 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
44369             Bruno Haible  <bruno@clisp.org>
44370
44371         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
44372         and is a script that invokes bison. Tighten the code. Add comments.
44373
44374 2006-08-18  Jim Meyering  <jim@meyering.net>
44375
44376         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
44377         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
44378         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
44379         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
44380
44381 2006-08-18  Bruno Haible  <bruno@clisp.org>
44382
44383         * modules/bison-i18n: New file.
44384         * MODULES.html.sh (Internationalization functions): Add it.
44385
44386 2006-08-18  Bruno Haible  <bruno@clisp.org>
44387
44388         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
44389         sys/statvfs.h. When getmntinfo was found, check its declaration and
44390         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
44391
44392 2006-08-18  Bruno Haible  <bruno@clisp.org>
44393
44394         * m4/bison-i18n.m4: New file, from bison.
44395
44396 2006-08-18  Bruno Haible  <bruno@clisp.org>
44397
44398         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
44399         (ME_DUMMY): Treat "kernfs" as a dummy.
44400         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
44401
44402 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44403
44404         Update from coreutils.
44405
44406         2006-08-15  Jim Meyering  <jim@meyering.net>
44407
44408         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
44409
44410         2006-01-17  Jim Meyering  <jim@meyering.net>
44411
44412         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
44413
44414         2006-01-11  Jim Meyering  <jim@meyering.net>
44415
44416         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
44417         Check for the lchmod function.
44418
44419 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44420
44421         Update from coreutils.
44422
44423         * lib/__fpending.h: Add copyright notice.
44424         * lib/fprintftime.h: Likewise.
44425         * lib/savedir.c: Use (C) in copyright notice.
44426         * lib/savedir.h: Likewise.
44427
44428         2006-08-15  Jim Meyering  <jim@meyering.net>
44429
44430         * lib/at-func.c: New file, with the logic of all emulated at-functions.
44431         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
44432         in support of the EXPECTED_ERRNO macro.
44433         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
44434         definitions.  Instead, define the appropriate symbols and include
44435         "at-func.c".
44436         * lib/mkdirat.c (mkdirat): Likewise.
44437         * lib/fchmodat.c (fchmodat): Likewise.
44438         (ENOSYS): Remove definition.
44439         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
44440         it.  Don't include "unistd--.h" -- it wasn't ever used.
44441
44442         2006-01-17  Jim Meyering  <jim@meyering.net>
44443
44444         Rewrite fts.c not to change the current working directory,
44445         by using openat, fstatat, fdopendir, etc..
44446
44447         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
44448         (HAVE_OPENAT_SUPPORT): Define.
44449         [_LIBC] (fchdir): Don't undef or define; no longer used.
44450         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
44451         Now, this `function' always succeeds, and consumes its file descriptor
44452         parameter -- so callers must not close such FDs.  Update callers.
44453         (diropen_fd, opendirat, cwd_advance_fd): New functions.
44454         (diropen): Add parameter, SP.  Adjust all callers.
44455         Implement using diropen_fd, rather than open.
44456         (fts_open): Initialize new member, fts_cwd_fd.
44457         Remove fts_rft-setting code.
44458         (fts_close): Close fts_cwd_fd, if necessary.
44459         (__opendir2): Define in terms of opendir or opendirat,
44460         depending on whether the FST_NOCHDIR flag is set.
44461         (fts_build): Since fts_safe_changedir consumes its FD, and since
44462         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
44463         and close the dup'd file descriptor upon failure.
44464         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
44465         (fts_safe_changedir): Tweak semantics to reflect that this function
44466         now calls cwd_advance_fd and hence consumes its FD argument.
44467         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
44468         [struct FTS] (fts_rft): Remove now-unused member.
44469         [struct FTS] (fts_cycle.state): Improve comment.
44470
44471         * lib/openat.c (openat_needs_fchdir): New function.
44472         * lib/openat.h (openat_needs_fchdir): Declare it.
44473
44474 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
44475
44476         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
44477         Problem and fix reported by Pádraig Brady in
44478         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
44479
44480 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44481
44482         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
44483
44484 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44485
44486         * lib/memcoll.c (memcoll): Optimize for the common case where the
44487         arguments are bytewise equal.
44488
44489 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44490
44491         * doc/regexprops-generic.texi: Add a copyright notice.
44492
44493 2006-08-15  Bruno Haible  <bruno@clisp.org>
44494
44495         * modules/tmpdir (License): Change to LGPL.
44496
44497 2006-08-15  Bruno Haible  <bruno@clisp.org>
44498
44499         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
44500         module.
44501
44502 2006-08-14  Simon Josefsson  <jas@extundo.com>
44503
44504         * config/srclist.txt: Add gnupload.
44505
44506 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
44507
44508         Change copyright notice from LGPL 2 to GPL 2, since that's the
44509         standard form used in the gnulib repository.
44510         * tests/test-lock.c: Likewise.
44511         * tests/test-stdint.c: Likewise.
44512         * tests/test-tls.c: Likewise.
44513
44514         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
44515         prelude-manager.  User shorter URLs for GNU projects, without '?'.
44516         Add copyright notice.
44517
44518         * check-module: Add copyright notice.  Output a copyright
44519         notice if "--version" is specified.
44520         * modules/COPYING: New file.
44521         * tests/test-getaddrinfo.c: Add copyright notice.
44522         * tests/test-verify.c: Likewise.
44523
44524 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
44525
44526         Change copyright notice from LGPL 2 to GPL 2, since that's the
44527         standard form used in the gnulib repository.
44528         * lib/lock.c: LGPL -> GPL.
44529         * lib/lock.h: Likewise.
44530         * lib/strnlen1.c: Likewise.
44531         * lib/strnlen1.h: Likewise.
44532         * lib/tls.c: Likewise.
44533         * lib/tls.h: Likewise.
44534         * lib/tmpdir.c: Likewise.
44535
44536         * lib/TODO: Remove; this belongs only in coreutils.
44537
44538 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
44539
44540         Add copyright notices to long-enough files that lack them, since
44541         otherwise the files aren't clearly free.  Use the same notice that
44542         getdate.texi already uses.
44543         * doc/alloca-opt.texi: Add copyright notice.
44544         * doc/alloca.texi: Likewise.
44545         * doc/ctime.texi: Likewise.
44546         * doc/functions.texi: Likewise.
44547         * doc/gcd.texi: Likewise.
44548         * doc/gnulib-tool.texi: Likewise.
44549         * doc/inet_ntoa.texi: Likewise.
44550         * doc/visibility.texi: Likewise.
44551
44552         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
44553         * doc/quote.texi: Add copyright notice.
44554
44555         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
44556         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
44557         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
44558         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
44559         is now obsolete, and give a pointer to the Sun list.
44560         Add copyright notice.
44561
44562 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
44563
44564         * config/srclistvars.sh: Add copyright notice.
44565
44566 2006-08-14  Eric Blake  <ebb9@byu.net>
44567
44568         Import the following change from libc:
44569
44570         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
44571
44572         Upstream bug 2997.
44573         * lib/misc/error.c: Add space between program name and message if file
44574         name is missing.
44575
44576 2006-08-12  Karl Berry  <karl@gnu.org>
44577
44578         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
44579         remove, these originate in gnulib now.
44580
44581 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44582
44583         * doc/Makefile (standards.info standards.html standards.dvi):
44584         Also depend on make-stds.texi.
44585
44586 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
44587
44588         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
44589         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
44590
44591         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
44592         in wchar_t.  Problem reported by Eric Blake.
44593
44594         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
44595         LEN is smaller than SIZE.  Suggested by Bruno Haible.
44596         Also, help the compiler to keep LEN in a register.
44597
44598 2006-08-11  Eric Blake  <ebb9@byu.net>
44599
44600         * users.txt: Sort.  Add tar.
44601
44602 2006-08-11  Bruno Haible  <bruno@clisp.org>
44603
44604         * users.txt: New file.
44605
44606 2006-08-11  Bruno Haible  <bruno@clisp.org>
44607
44608         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
44609         before <wchar.h>. Needed for OSF/1 and BSD/OS.
44610
44611 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
44612
44613         * modules/snprintf (Depends-on): Remove minmax.
44614         (Maintainer): Add self and Bruno.
44615
44616 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
44617
44618         * lib/.cppi-disable: Add snprintf.h, socket_.h.
44619         * lib/snprintf.c: Include <errno.h> and <limits.h>.
44620         (EOVERFLOW): Define if the system does not.
44621         Do not include "minmax.h"; it wasn't used.
44622         (snprintf): Don't assume size_t promotes to an unsigned type.
44623         Fix bug when generated string was too long for the buffer: the
44624         buffer's contents are supposed to be the initial prefix of the
44625         output.  Don't assume vasnprintf returns EOVERFLOW if the size
44626         exceeds INT_MAX; do the check ourselves.
44627
44628         Import the following changes from libc:
44629
44630         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
44631
44632         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
44633         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
44634         set wc to the byte which couldn't be converted.
44635         (re_string_reconstruct): Don't clear valid_raw_len before calling
44636         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
44637         tip_context using re_string_context_at.
44638
44639         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
44640
44641         * lib/posix/regex.h: g++ still cannot handled [restrict].
44642
44643         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
44644
44645         * lib/posix/regex.h: Remove special handling for VMS.
44646
44647 2006-08-10  Jim Meyering  <jim@meyering.net>
44648
44649         * modules/same-inode: New module.
44650         * modules/dev-ino: New module.
44651         * modules/cycle-check: Depend on these modules, rather than simply
44652         including their .h files.
44653         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
44654         required via m4/cycle-check.m4.
44655         * modules/same: Depend on new same-inode module, rather than
44656         including same-inode.h.
44657         * modules/chdir-safer: New file.
44658
44659         * modules/chown (Depends-on): Add stat-macros.
44660
44661 2006-08-10  Jim Meyering  <jim@meyering.net>
44662
44663         * m4/cycle-check.m4: New file.
44664         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
44665         * m4/dev-ino.m4, m4/same-inode.m4: New files.
44666
44667 2006-08-10  Eric Blake  <ebb9@byu.net>
44668
44669         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
44670         in from original proposal.
44671
44672 2006-08-10  Eric Blake  <ebb9@byu.net>
44673         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
44674
44675         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
44676         namespace.
44677
44678 2006-08-10  Bruno Haible  <bruno@clisp.org>
44679
44680         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
44681         as well.
44682
44683 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
44684
44685         Sync from coreutils.
44686
44687         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
44688
44689         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
44690         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
44691
44692 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
44693
44694         * modules/restrict: Remove; no longer needed now that we assume
44695         Autoconf 2.59 or later.
44696         * MODULES.html.sh: Remove 'restrict'.
44697         * modules/argp (Depends-on): Remove 'restrict'.
44698         * modules/base64 (Depends-on): Likewise.
44699         * modules/gc (Depends-on): Likewise.
44700         * modules/getaddrinfo (Depends-on): Likewise.
44701         * modules/glob (Depends-on): Likewise.
44702         * modules/inet_ntop (Depends-on): Likewise.
44703         * modules/inet_pton (Depends-on): Likewise.
44704         * modules/memxor (Depends-on): Likewise.
44705         * modules/regex (Depends-on): Likewise.
44706         * modules/strtok_r (Depends-on): Likewise.
44707         * modules/time_r (Depends-on): Likewise.
44708
44709 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
44710
44711         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
44712         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
44713         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
44714         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
44715         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
44716         * m4/memxor.m4 (gl_MEMXOR): Likewise.
44717         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
44718         gl_C_RESTRICT replaced by AC_C_RESTRICT.
44719
44720         Merge from coreutils.
44721         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
44722         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
44723         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
44724         * m4/time_r.m4 (gl_TIME_R): Likewise.
44725
44726 2006-08-09  Karl Berry  <karl@gnu.org>
44727
44728         * config/srclist.txt: no more gettext-tools, per Bruno.
44729
44730 2006-08-08  Eric Blake  <ebb9@byu.net>
44731
44732         * modules/verror: New module.
44733         * MODULES.html.sh: Document it.
44734
44735 2006-08-08  Eric Blake  <ebb9@byu.net>
44736
44737         * lib/verror.h, lib/verror.c: New files.
44738
44739 2006-08-08  Eric Blake  <ebb9@byu.net>
44740
44741         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
44742         verror_at_line output complies with GNU Coding Standards even when
44743         file is NULL.
44744
44745 2006-08-07  Bruno Haible  <bruno@clisp.org>
44746
44747         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
44748         versions of AIX.
44749         Reported by Ralf Wildenhues.
44750
44751 2006-08-07  Bruno Haible  <bruno@clisp.org>
44752
44753         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
44754         in an AC_DEFUN. Needed so that the autoconf snippets can use
44755         AC_REQUIRE.
44756
44757 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44758
44759         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44760         Initialize pkgdata_DATA.
44761         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
44762         overriding it.
44763
44764 2006-08-06  Eric Blake  <ebb9@byu.net>
44765
44766         * lib/error.h: Fold in some upstream changes from glibc.
44767         * lib/error.c: Likewise.
44768
44769 2006-08-04  Bruno Haible  <bruno@clisp.org>
44770
44771         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44772         Make the mostlyclean-local rule depend on mostlyclean-generic.
44773         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
44774
44775 2006-07-31  Bruno Haible  <bruno@clisp.org>
44776
44777         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
44778         <stdlib.h>, <string.h>.
44779
44780 2006-07-30  Bruno Haible  <bruno@clisp.org>
44781
44782         * modules/readlink (License): Change to LGPL.
44783
44784 2006-07-30  Bruno Haible  <bruno@clisp.org>
44785
44786         * modules/javaversion (Makefile.am): Distribute javaversion.java and
44787         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
44788         set PKGDATADIR to point to it.
44789
44790 2006-07-30  Bruno Haible  <bruno@clisp.org>
44791
44792         * modules/csharpexec (configure.ac): Comment out macro invocation.
44793         * modules/javaexec (configure.ac): Likewise.
44794         * modules/javacomp-script (configure.ac): Likewise.
44795
44796         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
44797
44798 2006-07-30  Bruno Haible  <bruno@clisp.org>
44799
44800         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
44801         linked-list.
44802
44803 2006-07-30  Bruno Haible  <bruno@clisp.org>
44804
44805         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
44806
44807 2006-07-30  Bruno Haible  <bruno@clisp.org>
44808
44809         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44810         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
44811         get removed.
44812
44813 2006-07-29  Bruno Haible  <bruno@clisp.org>
44814
44815         Make it possible for gnulib-tool to work with locally modified or
44816         augmented gnulib repositories.
44817         * gnulib-tool (func_usage): Document --local-dir option.
44818         (local_gnulib_dir): New variable.
44819         Handle --local-dir option.
44820         (func_lookup_file): New function.
44821         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
44822         (func_get_description, func_get_filelist, func_get_description,
44823         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
44824         func_get_automake_snippet, func_get_include_directive,
44825         func_get_license, func_get_maintainer): Use func_lookup_file.
44826         (func_import, func_create_testdir): Use func_lookup_file.
44827
44828 2006-07-29  Bruno Haible  <bruno@clisp.org>
44829
44830         * modules/setenv (Depends-on): Add unistd.
44831
44832 2006-07-29  Bruno Haible  <bruno@clisp.org>
44833
44834         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
44835
44836 2006-07-29  Bruno Haible  <bruno@clisp.org>
44837
44838         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
44839
44840 2006-07-29  Bruno Haible  <bruno@clisp.org>
44841
44842         * gnulib-tool (import, update): If there is no Makefile.am, look at
44843         aclocal.m4, instead of bailing out.
44844
44845 2006-07-29  Bruno Haible  <bruno@clisp.org>
44846
44847         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
44848         Categorize the options by when they are useful.
44849
44850 2006-07-29  Bruno Haible  <bruno@clisp.org>
44851
44852         * gnulib-tool (func_usage): Document option --no-libtool.
44853         Handle option --no-libtool.
44854         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
44855         for changed semantics of $libtool variable.
44856         (func_import): Likewise. If libtool is not used, show this through
44857         an option --no-libtool.
44858         (func_create_testdir): Update.
44859
44860 2006-07-29  Bruno Haible  <bruno@clisp.org>
44861
44862         * gnulib-tool (func_import): Extend error message about missing
44863         --doc-base.
44864
44865 2006-07-29  Bruno Haible  <bruno@clisp.org>
44866
44867         * gnulib-tool (func_import): Don't create the $docbase directory if
44868         there is no file to store there.
44869
44870 2006-07-29  Bruno Haible  <bruno@clisp.org>
44871
44872         * gnulib-tool (autoconf_minversion): If a --dir option is given and
44873         relevant, look for configure.ac there, not in the current directory.
44874         Also use a simple search for AC_PREREQ, not "autoconf --trace".
44875
44876 2006-07-29  Bruno Haible  <bruno@clisp.org>
44877
44878         * gnulib-tool (SORT): New variable.
44879         (func_usage): Undocument --assume-autoconf option.
44880         Remove --assume-autoconf option handling.
44881         (autoconf_minversion): Determine from the contents of configure.ac.
44882         (func_import): Remove autoconf_minversion handling.
44883         Suggested by Eric Blake.
44884
44885 2006-07-29  Bruno Haible  <bruno@clisp.org>
44886
44887         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
44888
44889 2006-07-29  Bruno Haible  <bruno@clisp.org>
44890
44891         * config/srclist.txt (*setenv.[ch]): Remove rules.
44892
44893 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
44894
44895         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
44896
44897 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
44898
44899         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
44900         arpa/inet.h.
44901
44902 2006-07-28  Simon Josefsson  <jas@extundo.com>
44903
44904         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
44905         * modules/inet_pton (Depends-on): Likewise.
44906
44907 2006-07-28  Simon Josefsson  <jas@extundo.com>
44908
44909         * m4/netinet_in_h.m4: New file.
44910
44911 2006-07-28  Simon Josefsson  <jas@extundo.com>
44912
44913         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
44914         #include's.
44915
44916 2006-07-28  Simon Josefsson  <jas@extundo.com>
44917
44918         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
44919         #include's.
44920
44921 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
44922
44923         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
44924         setgid on directories only if they set these bits.
44925         * lib/modechange.h: Remove obsolete comment about masks.
44926
44927 2006-07-28  Eric Blake  <ebb9@byu.net>
44928
44929         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
44930         macro expansion.
44931
44932 2006-07-28  Bruno Haible  <bruno@clisp.org>
44933
44934         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
44935
44936 2006-07-28  Bruno Haible  <bruno@clisp.org>
44937
44938         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
44939
44940 2006-07-28  Bruno Haible  <bruno@clisp.org>
44941
44942         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
44943         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
44944         Define fallbacks.
44945         Avoids link error on FreeBSD 4.x.
44946         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
44947
44948         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
44949         encoding.
44950         * lib/mbswidth.c (iswcntrl): Likewise.
44951
44952 2006-07-27  Bruno Haible  <bruno@clisp.org>
44953
44954         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
44955         test.
44956
44957 2006-07-27  Bruno Haible  <bruno@clisp.org>
44958
44959         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
44960         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
44961         defined.
44962
44963 2006-07-26  Eric Blake  <ebb9@byu.net>
44964
44965         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
44966
44967 2006-07-26  Eric Blake  <ebb9@byu.net>
44968
44969         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
44970         like mingw that lack mkstemp.
44971         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
44972         avoid compilation warning on mingw.
44973
44974 2006-07-26  Bruno Haible  <bruno@clisp.org>
44975
44976         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
44977         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
44978         INT_FAST*_MIN, INTPTR_MIN.
44979
44980 2006-07-25  Bruno Haible  <bruno@clisp.org>
44981
44982         * modules/version-etc (Depends-on): Add stdarg.
44983
44984 2006-07-25  Bruno Haible  <bruno@clisp.org>
44985
44986         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
44987         complex commands.
44988
44989 2006-07-25  Bruno Haible  <bruno@clisp.org>
44990
44991         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
44992         defined in <stdarg.h> or config.h.
44993
44994 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
44995
44996         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
44997         (gl_STDIO_SAFER): Remove.
44998
44999 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
45000
45001         * MODULES.html.sh (File stream based Input/Output):
45002         Add fopen-safer, tmpfile-safer; remove stdio-safer.
45003         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
45004         * modules/fopen-safer, modules/tmpfile-safer: New files.
45005         * modules/stdio-safer: Remove.
45006
45007 2006-07-24  Bruno Haible  <bruno@clisp.org>
45008
45009         * modules/tmpdir: New file.
45010         * MODULES.html.sh (File system functions): Add it.
45011
45012 2006-07-24  Bruno Haible  <bruno@clisp.org>
45013
45014         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
45015         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
45016
45017 2006-07-24  Bruno Haible  <bruno@clisp.org>
45018
45019         * modules/clean-temp: New file.
45020
45021 2006-07-24  Bruno Haible  <bruno@clisp.org>
45022
45023         * m4/tmpdir.m4: New file, from GNU gettext.
45024
45025 2006-07-24  Bruno Haible  <bruno@clisp.org>
45026
45027         * lib/tmpdir.h: New file, from GNU gettext.
45028         * lib/tmpdir.c: New file, from GNU gettext.
45029
45030 2006-07-24  Bruno Haible  <bruno@clisp.org>
45031
45032         * lib/clean-temp.h: New file, from GNU gettext.
45033         * lib/clean-temp.c: New file, from GNU gettext.
45034
45035 2006-07-23  Eric Blake  <ebb9@byu.net>
45036
45037         * modules/stdio-safer (Files): Add tmpfile-safer.c.
45038         (Depends-on): Add binary-io.
45039
45040 2006-07-23  Eric Blake  <ebb9@byu.net>
45041
45042         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
45043
45044 2006-07-23  Eric Blake  <ebb9@byu.net>
45045
45046         * lib/tmpfile-safer.c: New file.
45047         * lib/stdio-safer.h (fopen_safer): Add prototype.
45048         * lib/stdio--.h (tmpfile): Make safer.
45049
45050 2006-07-23  Bruno Haible  <bruno@clisp.org>
45051
45052         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
45053         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
45054         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
45055         gl_linked_remove_at): Use it.
45056
45057 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45058         and Simon Josefsson <jas@extundo.com>
45059
45060         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
45061
45062         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
45063
45064 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45065
45066         * modules/close-stream: New file.
45067         * modules/closeout (Description): Make it clear that it exits
45068         with a diagnostic on error.
45069         (Depends-on): Add close-stream.  Remove fpending, stdbool.
45070         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
45071
45072 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45073
45074         * m4/close-stream.m4: New file.
45075
45076 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45077
45078         * lib/close-stream.c, lib/close-stream.h: New files.
45079
45080 2006-07-22  Bruno Haible  <bruno@clisp.org>
45081
45082         Merge from GNU gettext 0.15.
45083
45084         2006-05-01  Bruno Haible  <bruno@clisp.org>
45085
45086                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
45087
45088         2006-07-22  Bruno Haible  <bruno@clisp.org>
45089
45090                 * modules/javaversion: New file.
45091                 * MODULES.html.sh (Java): Add javaversion.
45092
45093         2006-03-12  Bruno Haible  <bruno@clisp.org>
45094
45095                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
45096
45097         2005-12-04  Bruno Haible  <bruno@clisp.org>
45098
45099                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
45100                 (untested).
45101
45102         2006-06-21  Bruno Haible  <bruno@clisp.org>
45103
45104                 Avoid warnings from recent versions of mcs.
45105                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
45106                 -o, -L, -r any more. Use options documented since mcs-1.0
45107                 instead. Similarly for -g.
45108
45109         2005-12-04  Bruno Haible  <bruno@clisp.org>
45110
45111                 * build-aux/csharpcomp.sh.in: Suffix for resources is
45112                 .resources, not .resource.
45113
45114         2005-07-09  Bruno Haible  <bruno@clisp.org>
45115
45116                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
45117                 add a .dll suffix.
45118                 Reported by Mark Junker <mjscod@gmx.de>.
45119
45120         2006-07-22  Bruno Haible  <bruno@clisp.org>
45121
45122                 * modules/gettext: Upgrade to gettext-0.15.
45123                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
45124                 m4/visibility.m4.
45125                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
45126
45127 2006-07-22  Bruno Haible  <bruno@clisp.org>
45128
45129         Merge from GNU gettext 0.15.
45130
45131         2006-03-25  Bruno Haible  <bruno@clisp.org>
45132
45133                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
45134
45135         2006-07-21  Bruno Haible  <bruno@clisp.org>
45136
45137                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
45138                 "1.1".
45139
45140         2006-05-09  Bruno Haible  <bruno@clisp.org>
45141
45142                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
45143                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
45144                 for the conftestver execution.
45145
45146         2006-05-01  Bruno Haible  <bruno@clisp.org>
45147
45148                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
45149                 optional target-version argument. Verify that the compiler
45150                 groks source of the specified source-version, or add -source
45151                 option as necessary. Verify that the compiler produces
45152                 bytecode in the specified target-version, or add -target and
45153                 -source options as necessary. Make the result of the test
45154                 available as variable CONF_JAVAC. Also log error output in
45155                 config.log.
45156
45157         2006-03-11  Bruno Haible  <bruno@clisp.org>
45158
45159                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
45160
45161         2006-05-09  Bruno Haible  <bruno@clisp.org>
45162
45163                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
45164                 CLASSPATH_SEPARATOR to a semicolon.
45165
45166         2006-03-12  Bruno Haible  <bruno@clisp.org>
45167
45168                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
45169                 available as variable CONF_JAVA, for subsequent autoconf
45170                 tests. Also log error output in config.log.
45171
45172         2006-07-19  Bruno Haible  <bruno@clisp.org>
45173
45174                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
45175                 that getline works on glibc2 systems. Needed to avoid trouble
45176                 in relocatable.c.
45177                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
45178
45179         2005-12-04  Bruno Haible  <bruno@clisp.org>
45180
45181                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
45182                 launcher (untested).
45183
45184         2005-12-04  Bruno Haible  <bruno@clisp.org>
45185
45186                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
45187
45188         2006-07-22  Bruno Haible  <bruno@clisp.org>
45189
45190                 * gettext.m4: Update from GNU gettext-0.15.
45191                 * nls.m4: Likewise.
45192                 * po.m4: Likewise.
45193                 * inttypes-pri.m4: Likewise.
45194                 * inttypes-h.m4: Renamed from inttypes.m4.
45195                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
45196
45197 2006-07-22  Bruno Haible  <bruno@clisp.org>
45198
45199         Merge from GNU gettext 0.15.
45200
45201         2005-07-05  Bruno Haible  <bruno@clisp.org>
45202
45203                 * printf-args.c (printf_fetchargs): Work around broken
45204                 definition of wint_t on mingw.
45205
45206         2005-02-12  Bruno Haible  <bruno@clisp.org>
45207
45208                 * xallocsa.h: Add extern "C" for C++.
45209
45210         2006-05-17  Bruno Haible  <bruno@clisp.org>
45211
45212                 Cygwin portability.
45213                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
45214
45215         2006-04-30  Bruno Haible  <bruno@clisp.org>
45216
45217                 * progreloc.c: Include <mach-o/dyld.h> if available.
45218                 (find_executable): Use _NSGetExecutablePath when possible.
45219
45220         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
45221
45222                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
45223                 function.
45224
45225         2005-12-29  Bruno Haible  <bruno@clisp.org>
45226
45227                 * progreloc.c (set_program_name_and_installdir): Fix
45228                 compilation error.
45229
45230         2005-12-04  Bruno Haible  <bruno@clisp.org>
45231
45232                 Cygwin portability.
45233                 * progreloc.c: Include <windows.h> also on Cygwin.
45234                 (find_executable): Add support for Cygwin.
45235                 (set_program_name_and_installdir): Handle also platforms with
45236                 nonempty EXEEXT.
45237
45238         2006-07-11  Bruno Haible  <bruno@clisp.org>
45239
45240                 * javacomp.c: Fix a comment.
45241                 Reported by Jim Meyering.
45242
45243         2006-04-30  Bruno Haible  <bruno@clisp.org>
45244
45245                 * javacomp.h (compile_java_class): Add source_version,
45246                 target_version arguments.
45247                 * javacomp.c: Rewritten to choose only a compiler that
45248                 respects the specified source_version and target_version.
45249
45250         2006-06-27  Bruno Haible  <bruno@clisp.org>
45251
45252                 Assume correct S_ISDIR macro.
45253                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
45254
45255         2006-07-22  Bruno Haible  <bruno@clisp.org>
45256
45257                 * javaversion.h: New file, from GNU gettext.
45258                 * javaversion.c: New file, from GNU gettext.
45259                 * javaversion.java: New file, from GNU gettext.
45260                 * javaversion.class: New file, from GNU gettext.
45261
45262         2006-05-17  Bruno Haible  <bruno@clisp.org>
45263
45264                 Cygwin portability.
45265                 * javaexec.c (execute_java_class): Test for jview program
45266                 also on Cygwin.
45267
45268         2006-04-09  Bruno Haible  <bruno@clisp.org>
45269
45270                 * fatal-signal.c: Don't include string.h.
45271                 (at_fatal_signal): Use a copying loop instead of memcpy.
45272
45273         2005-12-04  Bruno Haible  <bruno@clisp.org>
45274
45275                 * csharpexec.c: Add support for 'clix' launcher (untested).
45276                 (execute_csharp_using_sscli): New function.
45277                 (execute_csharp_program): Call it.
45278
45279         2006-06-21  Bruno Haible  <bruno@clisp.org>
45280
45281                 Avoid warnings from recent versions of mcs.
45282                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
45283                 -o, -L, -r any more. Use options documented since mcs-1.0
45284                 instead. Similarly for -g.
45285
45286         2005-07-09  Bruno Haible  <bruno@clisp.org>
45287
45288                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
45289                 add a .dll suffix.
45290                 Reported by Mark Junker <mjscod@gmx.de>.
45291
45292         2006-06-17  Bruno Haible  <bruno@clisp.org>
45293
45294                 * config.charset: Update for NetBSD 3.0.
45295
45296         2006-05-17  Bruno Haible  <bruno@clisp.org>
45297
45298                 Cygwin portability.
45299                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
45300
45301         2006-05-16  Bruno Haible  <bruno@clisp.org>
45302
45303                 * localcharset.c [CYGWIN]: Include <windows.h>.
45304                 (get_charset_aliases): For Cygwin, return the same CPxxx
45305                 aliases list as under WIN32.
45306                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
45307                 the environment variables. Fall back to GetACP().
45308
45309         2006-04-05  Bruno Haible  <bruno@clisp.org>
45310
45311                 * config.charset: Update Juan Manuel Guerrero's address.
45312
45313         2005-02-12  Bruno Haible  <bruno@clisp.org>
45314
45315                 * allocsa.h: Add extern "C" for C++.
45316
45317         2005-02-10  Bruno Haible  <bruno@clisp.org>
45318
45319                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
45320                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
45321
45322         2006-07-22  Bruno Haible  <bruno@clisp.org>
45323
45324                 * gettext.h: Update to GNU gettext-0.15.
45325
45326 2006-07-22  Bruno Haible  <bruno@clisp.org>
45327
45328         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
45329         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
45330         lib-prefix.m4, longdouble.m4, ssize_t.m4.
45331
45332 2006-07-21  Eric Blake  <ebb9@byu.net>
45333
45334         * modules/stdlib-safer: New file.
45335         * MODULES.html.sh (File stream based Input/Output): Add
45336         stdlib-safer.
45337
45338 2006-07-21  Eric Blake  <ebb9@byu.net>
45339
45340         * lib/stdlib-safer.h: New file from coreutils, required by
45341         stdlib--.h.
45342
45343 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
45344
45345         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
45346
45347 2006-07-20  Bruno Haible  <bruno@clisp.org>
45348
45349         * gnulib-tool: Recognize new option --assume-autoconf.
45350         (autoconf_minversion): New variable.
45351         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
45352
45353 2006-07-20  Bruno Haible  <bruno@clisp.org>
45354
45355         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
45356
45357 2006-07-19  Derek R. Price  <derek@ximbiot.com>
45358
45359         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
45360         Reindent and repaginate.
45361
45362 2006-07-19  Derek Price  <derek@ximbiot.com>
45363
45364         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
45365         Correct grammar.
45366
45367 2006-07-17  Bruno Haible  <bruno@clisp.org>
45368
45369         * modules/list: New file.
45370         * modules/array-list: New file.
45371         * modules/carray-list, modules/carray-list-tests: New files.
45372         * modules/linked-list, modules/linked-list-tests: New files.
45373         * modules/avltree-list, modules/avltree-list-tests: New files.
45374         * modules/rbtree-list, modules/rbtree-list-tests: New files.
45375         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
45376         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
45377         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
45378         * modules/oset: New file.
45379         * modules/array-oset: New file.
45380         * modules/avltree-oset, modules/avltree-oset-tests: New files.
45381         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
45382         * tests/test-carray_list.c: New file.
45383         * tests/test-linked_list.c: New file.
45384         * tests/test-avltree_list.c: New file.
45385         * tests/test-rbtree_list.c: New file.
45386         * tests/test-linkedhash_list.c: New file.
45387         * tests/test-avltreehash_list.c: New file.
45388         * tests/test-rbtreehash_list.c: New file.
45389         * tests/test-avltree_oset.c: New file.
45390         * tests/test-rbtree_oset.c: New file.
45391         * MODULES.html.sh (Container data structures): New section.
45392
45393 2006-07-17  Bruno Haible  <bruno@clisp.org>
45394
45395         * m4/gl_list.m4: New file.
45396
45397 2006-07-17  Bruno Haible  <bruno@clisp.org>
45398
45399         * lib/gl_list.h: New file.
45400         * lib/gl_list.c: New file.
45401         * lib/gl_array_list.h: New file.
45402         * lib/gl_array_list.c: New file.
45403         * lib/gl_carray_list.h: New file.
45404         * lib/gl_carray_list.c: New file.
45405         * lib/gl_linked_list.h: New file.
45406         * lib/gl_linked_list.c: New file.
45407         * lib/gl_anylinked_list1.h: New file.
45408         * lib/gl_anylinked_list2.h: New file.
45409         * lib/gl_avltree_list.h: New file.
45410         * lib/gl_avltree_list.c: New file.
45411         * lib/gl_anyavltree_list1.h: New file.
45412         * lib/gl_anyavltree_list2.h: New file.
45413         * lib/gl_rbtree_list.h: New file.
45414         * lib/gl_rbtree_list.c: New file.
45415         * lib/gl_anyrbtree_list1.h: New file.
45416         * lib/gl_anyrbtree_list2.h: New file.
45417         * lib/gl_anytree_list1.h: New file.
45418         * lib/gl_anytree_list2.h: New file.
45419         * lib/gl_linkedhash_list.h: New file.
45420         * lib/gl_linkedhash_list.c: New file.
45421         * lib/gl_anyhash_list1.h: New file.
45422         * lib/gl_anyhash_list2.h: New file.
45423         * lib/gl_avltreehash_list.h: New file.
45424         * lib/gl_avltreehash_list.c: New file.
45425         * lib/gl_rbtreehash_list.h: New file.
45426         * lib/gl_rbtreehash_list.c: New file.
45427         * lib/gl_anytreehash_list1.h: New file.
45428         * lib/gl_anytreehash_list2.h: New file.
45429
45430         * lib/gl_oset.h: New file.
45431         * lib/gl_oset.c: New file.
45432         * lib/gl_array_oset.h: New file.
45433         * lib/gl_array_oset.c: New file.
45434         * lib/gl_avltree_oset.h: New file.
45435         * lib/gl_avltree_oset.c: New file.
45436         * lib/gl_rbtree_oset.h: New file.
45437         * lib/gl_rbtree_oset.c: New file.
45438         * lib/gl_anytree_oset.h: New file.
45439
45440 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
45441
45442         * m4/mkancesdirs.m4: New file.
45443         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
45444         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
45445         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
45446         it.
45447
45448 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
45449
45450         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
45451         * lib/mkancesdirs.h: New files.
45452         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
45453         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
45454         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
45455         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
45456         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
45457         callers changed.  Revamp internals significantly, by not
45458         attempting to create directories that are temporarily more
45459         permissive than the final results.  Do not attempt to use
45460         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
45461         This removes some race conditions, fixes some bugs, and simplifies
45462         things.  Use new dirchownmod function to do owner and mode changes.
45463         * lib/mkdir-p.h: Likewise.
45464         * lib/modechange.c (octal_to_mode): New function.
45465         (struct mode_change): New member mentioned.
45466         (make_node_op_equals): New arg mentioned.  All callers changed.
45467         (mode_compile): Keep track of which mode bits the user has explicitly
45468         mentioned.
45469         (mode_adjust): New arg DIR, so that we implement the X op correctly.
45470         New arg PMODE_BITS, to keep track of which mode bits the user
45471         mentioned; it treats S_ISUID and S_ISGID speciall.
45472         All callers changed.
45473         * lib/modechange.h: Likewise.
45474
45475 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
45476
45477         * MODULES.html.sh: Add mkancestors.
45478         * modules/mkancesdirs: New module.
45479         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
45480         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
45481         The chdir-safer and afs files are now orphans; I'll remove them
45482         unless someone speaks up.
45483         Add lib/dirchownmod.c, lib/dirchownmod.h.
45484         (Depends-on): Remove alloca, chown, save-cwd, dirname.
45485         Add lchown, mkancesdirs.
45486         (Maintainer): Add self.
45487
45488 2006-07-15  Karl Berry  <karl@gnu.org>
45489
45490         * gnulib-tool: help message wording/arrangement.
45491
45492 2006-07-14  Simon Josefsson  <jas@extundo.com>
45493
45494         * doc/gnulib.texi (Libtool and Windows): New section.
45495
45496 2006-07-12  Simon Josefsson  <jas@extundo.com>
45497
45498         * modules/gendocs (License): Fix license, approved by Karl.
45499
45500 2006-07-12  Eric Blake  <ebb9@byu.net>
45501
45502         * MODULES.html.sh: Add gendocs.
45503
45504 2006-07-11  Eric Blake  <ebb9@byu.net>
45505
45506         * modules/fdl: New module, to install doc/fdl.texi.
45507         * MODULES.html.sh: Add new section for documentation modules.
45508         * gnulib-tool: Avoid space-tab.
45509         (--doc-base): New option, to manage files from doc.
45510
45511 2006-07-11  Eric Blake  <ebb9@byu.net>
45512
45513         * m4/absolute-header.m4: Fix comments to match recent change.
45514
45515 2006-07-11  Eric Blake  <ebb9@byu.net>
45516
45517         * gnulib-tool: List --doc-base before --tests-base.
45518
45519 2006-07-11  Derek R. Price  <derek@ximbiot.com>
45520
45521         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
45522
45523 2006-07-11  Bruno Haible  <bruno@clisp.org>
45524
45525         * README: Mention where to put documentation.
45526
45527 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45528
45529         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
45530
45531 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
45532
45533         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
45534         to stdint.m4.
45535
45536 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
45537
45538         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
45539         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
45540         "no/such/file/stdint.h" when there is no such file, so that
45541         the resulting C code can be parsed by dodgy compilers.
45542         Problems reported by Bob Proulx.
45543
45544 2006-07-10  Derek R. Price  <derek@ximbiot.com>
45545
45546         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
45547         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
45548         macros into the GNU _D_EXACT_NAMLEN.
45549         * lib/savedir.c:  Likewise.
45550         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
45551
45552 2006-07-10  Derek R. Price  <derek@ximbiot.com>
45553         and Paul Eggert  <eggert@cs.ucla.edu>
45554
45555         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
45556         * m4/savedir.m4:
45557         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
45558         macros into the GNU _D_EXACT_NAMLEN.
45559
45560 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
45561
45562         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
45563         around the absolute name, to work around a problem with the HP-UX
45564         11.23 native C compiler, reported by Bob Proulx.
45565
45566 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
45567
45568         * doc/maintain.texi, make-stds.texi: Sync from
45569         <http://savannah.gnu.org/projects/gnustandards>.
45570
45571 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
45572
45573         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
45574
45575 2006-07-09  Jim Meyering  <jim@meyering.net>
45576
45577         * m4/glob.m4: Remove a doubled word in a comment.
45578
45579 2006-07-09  Jim Meyering  <jim@meyering.net>
45580
45581         * lib/argp-pv.c: Remove a doubled word in a comment.
45582         * lib/check-version.c (check_version): Likewise.
45583         * lib/javacomp.c (compile_java_class): Likewise.
45584
45585 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
45586
45587         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
45588         for the benefit of people using Autoconf 2.60.  If you want to
45589         support older Autoconf versions you can copy m4/onceonly_2_57.m4
45590         (or m4/onceonly.m4, if pre-2.57) manually.
45591
45592 2006-07-08  Jim Meyering  <jim@meyering.net>
45593
45594         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
45595         comment.
45596         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
45597         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
45598         comment.
45599
45600 2006-07-08  Jim Meyering  <jim@meyering.net>
45601
45602         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
45603
45604 2006-07-07  Simon Josefsson  <jas@extundo.com>
45605
45606         * tests/test-crc.c: Change expected crc value, the test vector
45607         were probably computed using the old broken crc.c?
45608
45609 2006-07-06  Simon Josefsson  <jas@extundo.com>
45610
45611         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
45612         now the canonical place for the M4 file).
45613
45614         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
45615         from the sys_socket dependency now.
45616
45617         * modules/inet_pton (Files): Ditto.
45618
45619         * modules/inet_ntop (Files): Ditto.
45620
45621 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
45622
45623         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
45624         not gl_PREREQ_GETUSERSHELL.
45625
45626 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45627
45628         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
45629         with only one argument, for Autoconf 2.60.
45630         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
45631         expand to nothing, so add a shell command to avoid syntax error.
45632         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
45633
45634 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45635
45636         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
45637
45638 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45639
45640         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
45641         no longer needed.  Check for isblank decl.
45642         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
45643         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
45644         of existence.
45645
45646 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45647
45648         * lib/getloadavg.c: Use __VMS, not VMS.
45649         * lib/getopt.c: Likewise.
45650         * lib/getpagesize.h: Likewise.
45651         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
45652         and probably does not work.
45653
45654 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45655
45656         * lib/.cppi-disable: Add wcwidth.
45657         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
45658         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
45659         (ISGRAPH): Remove.  All uses changed to isgraph.
45660         (FOLD) [!defined _LIBC]: Remove special case.
45661         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
45662         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
45663         HAVE_ISBLANK.
45664         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
45665         case.
45666
45667 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
45668
45669         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
45670         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
45671         brackets.  Other minor changes to suppress some compiler
45672         warnings.
45673
45674 2006-07-06  Derek R. Price  <derek@ximbiot.com>
45675         and Paul Eggert  <eggert@cs.ucla.edu>
45676
45677         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
45678         of invoking obsolescent AC_HEADER_DIRENT macro.
45679         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
45680         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
45681         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
45682         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
45683         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
45684         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
45685         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
45686         * m4/readdir.m4: Remove; no longer needed.
45687
45688 2006-07-06  Derek R. Price  <derek@ximbiot.com>
45689         and Paul Eggert  <eggert@cs.ucla.edu>
45690
45691         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
45692         Don't worry about this obsolete case any more.
45693         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
45694         directories.
45695         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
45696         worry about this obsolete case any more.
45697         * lib/fts.c: Likewise.
45698         * lib/getcwd.c: Likewise.
45699         * lib/glob.h: Likewise.
45700         * lib/savedir.c: Likewise.
45701
45702 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
45703
45704         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
45705         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
45706         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
45707         needed.
45708         All uses removed.
45709         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
45710         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
45711         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
45712         needed.
45713         * m4/getdate.m4 (gl_GETDATE): Likewise.
45714         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
45715         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
45716         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
45717         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
45718         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
45719         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
45720         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
45721         needed.
45722
45723 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
45724
45725         * lib/memcasecmp.c: Include <limits.h>.
45726         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
45727         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
45728         Don't assume isdigit succeeds only on '0' through '9'.
45729
45730 2006-07-05  Eric Blake  <ebb9@byu.net>
45731
45732         * modules/getaddrinfo (Depends-on): Add snprintf.
45733
45734 2006-07-05  Eric Blake  <ebb9@byu.net>
45735
45736         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
45737         to avoid 'header present but could not be compiled' on cygwin.
45738
45739 2006-07-05  Eric Blake  <ebb9@byu.net>
45740
45741         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
45742         missing from netdb.h.
45743         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
45744
45745 2006-07-05  Derek R. Price  <derek@ximbiot.com>
45746
45747         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
45748         no longer needed.
45749         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
45750         * m4/getdate.m4 (gl_GETDATE): Likewise.
45751         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
45752         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
45753         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
45754         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
45755         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
45756
45757 2006-07-05  Derek R. Price  <derek@ximbiot.com>
45758
45759         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
45760         All uses of is_space replaced by isspace.
45761         * lib/exit.h: Don't talk about STDC_HEADERS.
45762         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
45763         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
45764         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
45765         replaced by isprint etc.
45766         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
45767         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
45768         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
45769         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
45770         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
45771         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
45772
45773 2006-07-05  Bruno Haible  <bruno@clisp.org>
45774
45775         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
45776         the function exists, before testing against AIX.
45777         Reported by Martin Lambers <marlam@marlam.de>.
45778
45779 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
45780
45781         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
45782         From Mark D. Baushke.
45783
45784 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
45785
45786         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
45787         to the absolute name, not just one, to bypass Sun C 5.8's
45788         "warning: #include of /usr/include/... may be non-portable".
45789
45790 2006-07-04  Eric Blake  <ebb9@byu.net>
45791
45792         * modules/dirname-tests: New test module.
45793         * tests/test-dirname.c: New file, replacing dirname.c
45794         TEST_DIRNAME section that was recently deleted.
45795
45796 2006-07-04  Bruno Haible  <bruno@clisp.org>
45797
45798         Assume ANSI C header files and <ctype.h> functions.
45799         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
45800         (mbsnwidth): Use isprint, iscntrl instead.
45801
45802 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45803
45804         Merge from coreutils.
45805         * MODULES.html.sh: Add xstrtold.
45806         * modules/xstrtold: New file.
45807         * modules/cycle-check (Files): Add lib/same-inode.h.
45808         * modules/dirname (Files): Add m4/double-slash-root.m4.
45809         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
45810         * modules/mkdir-p (Files): Add lib/same-inode.h.
45811         * modules/same (Files): Add lib/same-inode.h.
45812
45813 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45814
45815         * m4/absolute-header.m4: Renamed from full-header-path.m4.
45816         This is to keep the terminology clean; POSIX talks about
45817         "absolute pathnames", not "full pathnames", but the GNU
45818         Coding Standards say to use "path" for something else;
45819         so use "absolute" to keep both sides happy.
45820         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
45821         Set gl_absolute_header, not gl_full_header_path.
45822         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
45823         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
45824         All uses changed.
45825
45826         Merge from coreutils.
45827
45828         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
45829
45830         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
45831         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
45832         want to require the building of c-strtod.o.
45833         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
45834         needs -lm directly.
45835         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
45836
45837         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
45838
45839         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
45840         --as-needed option if available.  Problem reported by Albert Chin in
45841         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
45842         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
45843         cc merely issues a bunch of annoying warnings for --as-needed
45844         (this problem was reported by Bob Proulx).  Also, try linking with
45845         -lm to detect a bug in binutils 2.16 (this problem was reported
45846         by Ralf Wildenhues).
45847
45848         2006-06-18  Jim Meyering  <jim@meyering.net>
45849
45850         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
45851         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
45852         macro.
45853         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
45854         also check for glibc-2.4's abort-inducing bug.
45855
45856         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
45857         Low-probability clean-up should be to use rmdir to get rid of
45858         the just-created directory, not unlink.
45859
45860         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
45861         configure fail, and request a bug report to inform us about it.
45862         Add a comment that, barring reports to the contrary, in 2007 we'll
45863         assume ftruncate is universally available.
45864
45865         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
45866
45867         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
45868
45869         2006-03-12  Jim Meyering  <jim@meyering.net>
45870
45871         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
45872         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
45873         * m4/same.m4 (gl_SAME): Likewise.
45874         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
45875
45876         2006-03-11  Eric Blake  <ebb9@byu.net>
45877
45878         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
45879         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
45880         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
45881         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
45882
45883 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45884
45885         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
45886         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
45887         reported by Mark D. Baushke, one in
45888         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
45889
45890         Merge from coreutils.
45891
45892         * lib/.cppi-disable: Add stdint_.h.
45893         * lib/.cvsignore: Add stdint.h.
45894
45895         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
45896
45897         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
45898         both double and long double versions.
45899         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
45900         * lib/xstrtold.c: New file.
45901         * lib/xstrtod.h (xstrtold): New decl.
45902
45903         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
45904
45905         * lib/filemode.c (setst): Remove.
45906         (strmode): Rewrite to avoid setst.  This makes the code shorter,
45907         (arguably) clearer, and the generated code is a bit smaller on my
45908         Debian GNU/Linux stable x86 host.
45909
45910         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
45911
45912         * lib/filemode.c: Include "filemode.h" first, to test the interface.
45913         Assume that filemode.h includes sys/types.h and sys/stat.h.
45914         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
45915         (ftypelet): Reorder to put common cases first, for efficiency.
45916         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
45917         to do 'M'.
45918         (strmode): Renamed from mode_string, and now stores 12 bytes instead
45919         of 10, for compatibility with FreeBSD.  All callers changed.
45920         (filemodestring): Now stores 12 bytes instead of 10, and sets file
45921         types that can't be deduced solely from st_mode.  First arg is now a
45922         const pointer.
45923         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
45924         (strmode): Renamed from mode_string.
45925         (filemodestring): New decl.
45926         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
45927         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
45928         needed.
45929         (S_ISPORT, S_ISWHT): New macros, if not already defined.
45930
45931         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
45932
45933         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
45934         fsusage.h now does that.  Include fsusage.h first, to test interface.
45935         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
45936         at most one method (the old code could have generated decls that
45937         didn't conform to C89, not that this was ever exercised).
45938         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
45939
45940         2006-03-19  Jim Meyering  <jim@meyering.net>
45941
45942         Work even in a chroot where d_ino values for entries in "/"
45943         don't match the stat.st_ino values for the same names.
45944         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
45945         number, iterate through all entries again, using lstat instead.
45946         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
45947         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
45948
45949         * lib/getcwd.c (__getcwd): Clarify a comment.
45950         Use memcpy in place of a call to strcpy.
45951
45952         2006-03-12  Jim Meyering  <jim@meyering.net>
45953
45954         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
45955         matches that of the current directory (which we're about to chdir ".."
45956         out of), then save the dev-ino of the parent, instead.
45957
45958         * lib/same-inode.h (SAME_INODE): New file/macro.
45959         * lib/chdir-safer.c (SAME_INODE): Remove definition.
45960         Include "same-inode.h", instead.
45961         * lib/same.c: Likewise.
45962         * lib/cycle-check.h: Include "same-inode.h".
45963         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
45964         * lib/cycle-check.c (SAME_INODE): Remove definition.
45965         * lib/root-dev-ino.h: Include "same-inode.h".
45966
45967         2006-03-11  Eric Blake  <ebb9@byu.net>
45968
45969         * lib/same.c (same_name): s/base_name/last_component/
45970         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
45971         * lib/filenamecat.c (file_name_concat): Likewise.
45972
45973         2006-03-11  Eric Blake  <ebb9@byu.net>,
45974                     Paul Eggert  <eggert@cs.ucla.edu>
45975
45976         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
45977         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
45978         drive prefix.
45979         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
45980         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
45981         (last_component): New method.
45982         * lib/dirname.c (dir_len): Determine when drive letters need a
45983         subsequent slash.  Preserve // when it is special.
45984         (dir_name): Don't append dot when drive letter is absolute.
45985         [TEST_DIRNAME]: Move into a full-blown gnulib test.
45986         * lib/basename.c (base_name): New semantics - malloc the result.
45987         Preserve // when it is special.  Preserve relative files that look
45988         like drive letters.
45989         (base_len): Preserve // when it is special.
45990         (last_component): New method, similar to old base_name semantics.
45991         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
45992         base_name.  Strip redundant slashes from ///.
45993
45994 2006-07-03  Jim Meyering  <jim@meyering.net>
45995
45996         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
45997         macro is used before the first cycle_check call.
45998
45999 2006-07-03  Eric Blake  <ebb9@byu.net>
46000
46001         * modules/dirname (Depends-on): Add xstrndup.
46002
46003 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
46004
46005         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
46006         test cases, so that config.log is a bit easier to follow.
46007
46008 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
46009
46010         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
46011         both are 64 bits, since this seems to be the tradition, and this
46012         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
46013         we ever run into a host that prefers long long to long in this
46014         case, we'll need another configure-time test.  Problem reported by
46015         Jim Meyering.
46016
46017 2006-07-02  Eric Blake  <ebb9@byu.net>
46018
46019         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
46020
46021 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46022
46023         * modules/inttypes (Depends-on): No longer depends on stdint.
46024         * modules/stdint (Description): Say more about assumptions.
46025         Say that the fast types might differ.  Say macros are used.
46026         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
46027         (Makefile.am): Revise list of substituted symbols to match
46028         new stdint.m4.
46029         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
46030         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
46031         * tests/test-stdint.c (verify_same_types)
46032         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
46033         the code conforms to C99/C89.
46034         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
46035         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
46036
46037 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46038
46039         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
46040         but fix a bug, by requiring at least 64 bits.
46041         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
46042         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
46043         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
46044         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
46045
46046         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
46047         changes.  Make 2.59 a prerequisite.  Check and substitute for
46048         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
46049         inttypes.h.  Do not use special include files; just use the
46050         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
46051         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
46052         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
46053         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
46054         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
46055         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
46056         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
46057         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
46058         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
46059         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
46060         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
46061         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
46062         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
46063         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
46064         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
46065         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
46066         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
46067         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
46068         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
46069         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
46070         WINT_MAX.  Check for C99 conformance more strictly, by detecting
46071         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
46072         not check for things that C99 does not require, e.g., int8_t.  If
46073         a test isn't needed unless <stdint.h> isn't working, and is
46074         unlikely to be needed for any other reason, then don't do it
46075         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
46076         size_t, since we assume C89 freestanding at least.  Do not check
46077         for sig_atomic_t, wchar_t, or wint_t, since the code now does
46078         the right thing even if the types are not defined.  Instead use:
46079         (gl_STDINT_TYPE_PROPERTIES): New macro.
46080         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
46081         testing whether <sys/types.h> clashes, as Autoconf does this for
46082         us now.  All uses removed.
46083         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
46084         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
46085         (gl_CHECK_TYPE_SAME):
46086         Remove; no longer needed.
46087         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
46088         exists, since we'll return 0 anyway in that case.
46089         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
46090
46091 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46092
46093         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
46094         possible collision with system files.
46095         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
46096         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
46097         WCHAR_MIN and WCHAR_MAX in this case.
46098         (<stddef.h>): Do not include; no longer needed.
46099         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
46100         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
46101         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
46102         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
46103         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
46104         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
46105         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
46106         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
46107         !defined(__c99))]: Include in this case too, since it's harmless
46108         now.
46109         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
46110         dangerous to do so.
46111         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
46112         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
46113         (_STDINT_MIN, _STDINT_MAX): New macros.
46114         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
46115         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
46116         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
46117         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
46118         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
46119         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
46120         macros, not typedefs; this simplifies things quite a bit.
46121         Use long int for all types narrower than int64_t.
46122         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
46123         Define in terms of long long int or int64_t or long int,
46124         not int64_t or int32_t.  This saves some compile-time testing.
46125         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
46126         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
46127         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
46128         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
46129         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
46130         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
46131         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
46132         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
46133         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
46134         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
46135         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
46136         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
46137         undef any previous version and define our own version, for
46138         simplicity and consistency with the new macros for types.
46139         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
46140         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
46141         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
46142         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
46143         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
46144         @WINT_T_SUFFIX@ to keep things simple here.
46145         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
46146         Simplify by assuming typical 8/16/32/64 host, since we're
46147         already doing that elsewhere anyway.
46148         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
46149         and assume long long int is 64 bits if available.  This
46150         speeds up 'configure'.
46151
46152 2006-07-01  Eric Blake  <ebb9@byu.net>
46153
46154         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
46155         Reported by Andreas Buening.
46156
46157 2006-07-01  Eric Blake  <ebb9@byu.net>
46158
46159         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
46160
46161 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
46162
46163         * lib/getaddrinfo.c: fixed typo
46164
46165 2006-06-29  Jim Meyering  <jim@meyering.net>
46166
46167         * modules/strftime (Maintainer): Add my name, since with the
46168         FPRINTFTIME changes strftime.c has forked from glibc.
46169
46170 2006-06-29  Eric Blake  <ebb9@byu.net>
46171
46172         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
46173
46174 2006-06-29  Eric Blake  <ebb9@byu.net>
46175
46176         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
46177
46178 2006-06-29  Eric Blake  <ebb9@byu.net>
46179
46180         * lib/stat_.h: New file.
46181
46182 2006-06-29  Eric Blake  <ebb9@byu.net>
46183
46184         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
46185         unused static function.
46186
46187 2006-06-29  Eric Blake  <ebb9@byu.net>
46188
46189         * doc/functions.texi (Function Portability): Document missing lstat
46190         on mingw.
46191
46192 2006-06-29  Eric Blake  <ebb9@byu.net>
46193
46194         * MODULES.html.sh: Add sys_stat.
46195         * modules/sys_stat: New module.
46196         * modules/mkstemp (Depends-on): Add sys_stat.
46197
46198 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46199
46200         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
46201
46202 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46203
46204         * m4/c-bs-a.m4: Removed.
46205
46206 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46207
46208         * lib/strftime.c: Assume strftime() exists.
46209
46210 2006-06-29  Derek Price  <derek@ximbiot.com>
46211
46212         * modules/c-bs-a: Removed - \a is C89.
46213         * MODULES.html.sh: Remove c-bs-a.
46214
46215 2006-06-29  Bruno Haible  <bruno@clisp.org>
46216
46217         * modules/wcwidth (License): Change to LGPL.
46218
46219 2006-06-28  Simon Josefsson  <jas@extundo.com>
46220
46221         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
46222         on _WIN32.
46223
46224         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
46225         getnameinfo.
46226
46227 2006-06-28  Simon Josefsson  <jas@extundo.com>
46228
46229         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
46230
46231 2006-06-28  Simon Josefsson  <jas@extundo.com>
46232
46233         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
46234         functions there.  It will succeed on Windows XP, but on Windows
46235         2000 and (presumably) earlier, it will fail, and use the internal
46236         re-implementation.
46237         (use_win32_p): New function.
46238         (getaddrinfo): Use strtoul on servname, to support numeric ports.
46239         Support AI_NUMERICSERV to disable getservbyname.
46240         (getnameinfo): New function, only supports
46241         NI_NUMERICHOST|NI_NUMERICSERV for now.
46242
46243         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
46244         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
46245         getnameinfo.
46246
46247 2006-06-28  Eric Blake  <ebb9@byu.net>
46248
46249         * modules/wcwidth: New file.
46250         * modules/mbchar (Depends-on): Add wcwidth.
46251         * modules/mbswidth (Depends-on): Add wcwidth.
46252         * MODULES.html.sh: Add wcwidth.
46253
46254 2006-06-28  Eric Blake  <ebb9@byu.net>
46255
46256         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
46257         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
46258
46259 2006-06-28  Eric Blake  <ebb9@byu.net>
46260
46261         * lib/xvasprintf.h: Fix comments.
46262
46263 2006-06-28  Eric Blake  <ebb9@byu.net>
46264
46265         * lib/mbchar.h (wcwidth): Include wcwidth.h.
46266         * lib/mbswidth.c (wcwidth): Move from here...
46267         * lib/wcwidth.h: ...to this new file.
46268
46269 2006-06-28  Derek R. Price  <derek@ximbiot.com>
46270
46271         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
46272
46273         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
46274         it's obsolete.
46275         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
46276
46277 2006-06-28  Derek R. Price  <derek@ximbiot.com>
46278
46279         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
46280         Autoconf 2.60 says this stuff was obsolete.
46281
46282 2006-06-28  Bruno Haible  <bruno@clisp.org>
46283
46284         * modules/wcwidth (Files): Add m4/wchar_t.m4.
46285
46286 2006-06-28  Bruno Haible  <bruno@clisp.org>
46287
46288         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
46289         gt_TYPE_WCHAR_T.
46290
46291 2006-06-28  Bruno Haible  <bruno@clisp.org>
46292
46293         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
46294         declaration for wcwidth.
46295         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
46296
46297 2006-06-28  Bruno Haible  <bruno@clisp.org>
46298
46299         * lib/mkdtemp.c [MINGW]: Include <io.h>.
46300         (mkdir): Define using _mkdir.
46301
46302 2006-06-28  Bruno Haible  <bruno@clisp.org>
46303
46304         * lib/getaddrinfo.h: Fix POSIX URL.
46305         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
46306         _WIN32.
46307         (use_win32_p): Make static.
46308         (getaddrinfo): Reject service name if it is empty or does not consist
46309         solely of decimal digits, or if its value is > 65535.
46310         (getnameinfo): Remove useless casts.
46311
46312 2006-06-27  Simon Josefsson  <jas@extundo.com>
46313
46314         * modules/sys_select: New file, suggested by Bruno Haible, Paul
46315         Eggert and Martin Lambers.
46316
46317 2006-06-27  Simon Josefsson  <jas@extundo.com>
46318
46319         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
46320         Eggert and Martin Lambers.
46321
46322 2006-06-27  Bruno Haible  <bruno@clisp.org>
46323
46324         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
46325         result to 0, not to empty.
46326         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
46327
46328 2006-06-27  Bruno Haible  <bruno@clisp.org>
46329
46330         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
46331
46332 2006-06-26  Simon Josefsson  <jas@extundo.com>
46333
46334         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
46335         present.
46336
46337 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
46338
46339         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
46340         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
46341         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
46342
46343 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
46344
46345         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
46346
46347 2006-06-26  Bruno Haible  <bruno@clisp.org>
46348
46349         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
46350
46351 2006-06-26  Bruno Haible  <bruno@clisp.org>
46352
46353         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
46354
46355 2006-06-26  Bruno Haible  <bruno@clisp.org>
46356
46357         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
46358         SGI C compiler in pre-C99 mode.
46359         Suggested by Mark D. Baushke and Larry Jones.
46360
46361 2006-06-26  Bruno Haible  <bruno@clisp.org>
46362
46363         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
46364         WCHAR_MAX.
46365         Reported by Mark D. Baushke and Larry Jones.
46366
46367 2006-06-26  Bruno Haible  <bruno@clisp.org>
46368
46369         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
46370         in pre-C99 mode.
46371         Suggested by Mark D. Baushke and Larry Jones.
46372
46373 2006-06-23  Simon Josefsson  <jas@extundo.com>
46374             Bruno Haible  <bruno@clisp.org>
46375
46376         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
46377         Emit mostlyclean-local rule.
46378         (func_emit_tests_Makefile_am): Likewise.
46379         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
46380
46381 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
46382
46383         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
46384
46385 2006-06-23  Bruno Haible  <bruno@clisp.org>
46386
46387         * tests/test-stdint.c: Update to match ISO C 99 Technical
46388         Corrigendum 1.
46389
46390 2006-06-23  Bruno Haible  <bruno@clisp.org>
46391
46392         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
46393
46394 2006-06-23  Bruno Haible  <bruno@clisp.org>
46395
46396         * lib/stdint_.h: Treat IRIX like OpenBSD.
46397
46398 2006-06-23  Bruno Haible  <bruno@clisp.org>
46399
46400         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
46401         ISO C 99 Technical Corrigendum 1.
46402
46403 2006-06-22  Simon Josefsson  <jas@extundo.com>
46404
46405         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
46406         MinGW.
46407
46408 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
46409
46410         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
46411         needed.  Some compiler complained about some of them.  Problem reported
46412         by Larry Jones in
46413         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
46414
46415 2006-06-21  Simon Josefsson  <jas@extundo.com>
46416
46417         * tests/test-getaddrinfo.c: New file.
46418
46419         * modules/getaddrinfo-tests: New file.
46420
46421         * MODULES.html.sh: Add inet_pton.
46422
46423         * modules/inet_pton: New file.
46424
46425 2006-06-21  Simon Josefsson  <jas@extundo.com>
46426
46427         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
46428         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
46429         of using the (limited) gnulib implementation on Windows XP.
46430
46431         * m4/inet_pton.m4: New file.
46432
46433 2006-06-21  Simon Josefsson  <jas@extundo.com>
46434
46435         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
46436         variable.
46437
46438         * lib/socket_.h: Don't define WINVER.
46439
46440         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
46441         slightly modified to work in gnulib.
46442
46443 2006-06-21  Simon Josefsson  <jas@extundo.com>
46444
46445         * doc/gnulib.texi (Windows sockets): Add.
46446
46447 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
46448
46449         * lib/read-file.c (fread_file): Start with buffer allocation of
46450         0 bytes rather than 1 byte; this simplifies the code.
46451         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
46452         code to free buffer and save/restore errno.
46453         (internal_read_file): Remove unused local.
46454
46455 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
46456
46457         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
46458         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
46459         Problem reported by Denis Excoffier in
46460         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
46461
46462 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46463
46464         * modules/sys_socket, modules/socklen: Include sys/types since
46465         FreeBSD 4.x's sys/socket.h needs it.
46466
46467 2006-06-19  Simon Josefsson  <jas@extundo.com>
46468
46469         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
46470
46471 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
46472
46473         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
46474
46475 2006-06-19  Bruno Haible  <bruno@clisp.org>
46476
46477         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
46478         and FULL_PATH_INTTYPES_H in angle brackets.
46479         Reported by Mark D. Baushke <mdb@gnu.org>.
46480
46481 2006-06-17  Eric Blake  <ebb9@byu.net>
46482
46483         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
46484         errno.
46485
46486 2006-06-17  Bruno Haible  <bruno@clisp.org>
46487
46488         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
46489         <sys/inttypes.h>.
46490
46491 2006-06-17  Bruno Haible  <bruno@clisp.org>
46492
46493         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
46494         whether errno is declared. Assume <errno.h> declares errno.
46495
46496 2006-06-17  Bruno Haible  <bruno@clisp.org>
46497
46498         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
46499
46500 2006-06-17  Bruno Haible  <bruno@clisp.org>
46501
46502         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
46503         problem on Solaris 2.5.1.
46504
46505 2006-06-16  Eric Blake  <ebb9@byu.net>
46506
46507         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
46508         * lib/unicodeio.c [!defined errno]: Likewise.
46509         * lib/strtol.c [!defined errno]: Likewise.
46510         * lib/strtod.c [!defined errno]: Likewise.
46511
46512 2006-06-15  Eric Blake  <ebb9@byu.net>
46513
46514         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
46515
46516 2006-06-15  Eric Blake  <ebb9@byu.net>
46517
46518         * config/srclist.txt (ssize_t.m4): Lose sync.
46519
46520 2006-06-15  Bruno Haible  <bruno@clisp.org>
46521
46522         * modules/stdint (Files): Include m4/full-header-path.m4,
46523         m4/size_max.m4, m4/wchar_t.m4.
46524         (Makefile.am): Many more substitutions.
46525         * modules/stdint-tests: New file.
46526         * tests/test-stdint.c: New file.
46527
46528 2006-06-15  Bruno Haible  <bruno@clisp.org>
46529
46530         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
46531         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
46532         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
46533         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
46534         gl_CHECK_TYPE_SAME): New macros.
46535
46536 2006-06-15  Bruno Haible  <bruno@clisp.org>
46537
46538         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
46539
46540 2006-06-15  Bruno Haible  <bruno@clisp.org>
46541
46542         * lib/stdint_.h: Rewritten to be fully auto-configured.
46543         Fixes bug on HP-UX/IA64.
46544
46545 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
46546
46547         * lib/getdate.y (__attribute__): Don't define if already defined.
46548         Problem reported by Larry Jones.
46549         * lib/utimens.c (__attribute__): Likewise.
46550
46551 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
46552
46553         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
46554         reported by Andreas Schwab.
46555
46556 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46557             Bruno Haible  <bruno@clisp.org>
46558
46559         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
46560         check for the declaration of strnlen and a run test that exposes the
46561         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
46562         rpl_strndup.
46563
46564 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46565             Bruno Haible  <bruno@clisp.org>
46566
46567         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
46568
46569 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46570
46571         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
46572         compile test, for Tru64 4.0D.
46573
46574 2006-05-28  Karl Berry  <karl@gnu.org>
46575
46576         * config/srclist.txt (printf-args.c): lose sync.
46577
46578 2006-05-26  Martin Lambers  <marlam@marlam.de>
46579
46580         * lib/getpass.c: Updates the test for the native W32 API, and adds
46581         missing includes, thus fixing compilation warnings.
46582
46583 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
46584
46585         * lib/exclude.c (exclude_fnmatch): New function.
46586         (excluded_file_name): Call exclude_fnmatch.
46587         * lib/exclude.h (excluded_file_name): New prototype
46588
46589 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
46590
46591         * lib/tempname.c (small_open, large_open): New macros.
46592         (__open, __open64) [!_LIBC]: Remove.
46593         (__gen_tempname): Use small_open and large_open instead of __open
46594         and __open64.  This fixes a portability bug on HP-UX 11.11i
46595         reported by Simon Wing-Tang in
46596         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
46597
46598 2006-05-24  Bruno Haible  <bruno@clisp.org>
46599
46600         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
46601         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
46602         Reported by Thorsten Maerz <torte@netztorte.de> via
46603         Aaron Stone <aaron@serendipity.cx>.
46604
46605 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
46606
46607         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
46608         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
46609         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
46610         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
46611         not really conditional on the cache.
46612         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
46613
46614 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
46615
46616         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
46617         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
46618         (my_usleep): Don't mishandle maximum value.
46619
46620 2006-05-19  Jim Meyering  <jim@meyering.net>
46621
46622         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
46623
46624 2006-05-17  Bruno Haible  <bruno@clisp.org>
46625
46626         Cygwin portability.
46627         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
46628
46629 2006-05-17  Bruno Haible  <bruno@clisp.org>
46630
46631         * lib/stdint_.h: Fix recognition of Cygwin.
46632
46633 2006-05-15  Bruno Haible  <bruno@clisp.org>
46634
46635         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
46636         on libtool patch by Ralf Wildenhues.
46637
46638 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
46639
46640         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
46641         test for C99 conformance; (bool) 0.5 is an integer constant
46642         expression, but (bool) -0.5 is not.  Problem reported by Fedor
46643         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
46644
46645 2006-05-11  Simon Josefsson  <jas@extundo.com>
46646
46647         * m4/xvasprintf.m4: Fix obvious typo.
46648
46649 2006-05-11  Jim Meyering  <jim@meyering.net>
46650
46651         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
46652         James Lemley.
46653
46654 2006-05-10  Simon Josefsson  <jas@extundo.com>
46655
46656         * lib/md4.c: Typo fix, update copyright years.
46657         (K1, K2): Don't use L because it turn computations into 64-bit on
46658         64-bit platforms.
46659
46660 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
46661
46662         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
46663         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
46664         unwanted sign propagation, e.g., on hosts with 64-bit int.
46665         There still are some problems with reeelly weird theoretical hosts
46666         (e.g., 33-bit int) but it's not worth worrying about now.
46667         * lib/sha1.c (rol): Likewise.
46668         (K1, K2, K3, K4): Remove unnecessary L suffix.
46669
46670 2006-05-10  Bruno Haible  <bruno@clisp.org>
46671
46672         * lib/des.c: Cast to avoid warnings.
46673
46674 2006-05-09  Bruno Haible  <bruno@clisp.org>
46675
46676         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
46677         (Depends-on): Depend also on xsize, stdarg.
46678         (configure.ac): Add gl_XVASPRINTF.
46679
46680 2006-05-09  Bruno Haible  <bruno@clisp.org>
46681
46682         * m4/xvasprintf.m4: New file.
46683
46684 2006-05-09  Bruno Haible  <bruno@clisp.org>
46685
46686         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
46687         (EOVERFLOW): Define fallback value.
46688         (xstrcat): New function.
46689         (xvasprintf): Recognize the special case of a string concatenation.
46690
46691 2006-05-08  Eric Blake  <ebb9@byu.net>
46692
46693         * gnulib-tool (func_version): Base copyright year on CVS date.
46694         (func_emit_copyright_notice): New function.
46695         (func_emit_lib_Makefile_am): Use it.
46696         (func_emit_tests_Makefile_am): Likewise.
46697         (func_import): Likewise.
46698
46699 2006-05-08  Bruno Haible  <bruno@clisp.org>
46700
46701         * modules/stdarg: New file.
46702         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
46703
46704 2006-05-08  Bruno Haible  <bruno@clisp.org>
46705
46706         * m4/stdarg.m4: New file, from GNU gettext.
46707
46708 2006-05-08  Bruno Haible  <bruno@clisp.org>
46709
46710         * config/srclist.txt (build-aux/config.rpath): different from latest
46711         release.
46712
46713 2006-05-08  Bruno Haible  <bruno@clisp.org>
46714
46715         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
46716
46717 2006-05-05  Jim Meyering  <jim@meyering.net>
46718
46719         * m4/warning.m4: New file, derived from bison's file by the same name.
46720
46721 2006-05-03  Bruno Haible  <bruno@clisp.org>
46722
46723         * lib/stdint_.h: Shorter URL.
46724         * lib/inttypes.h: Likewise.
46725
46726 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
46727
46728         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
46729
46730 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
46731
46732         * lib/verify.h: Document the internals better.  Most of this change
46733         was written by Bruno Haible.
46734
46735 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
46736
46737         * doc/verify.texi: New file, partly based on a proposal by
46738         Bruno Haible.
46739
46740 2006-05-02  Bruno Haible  <bruno@clisp.org>
46741
46742         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
46743         test from here...
46744         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
46745
46746 2006-04-29  Bruno Haible  <bruno@clisp.org>
46747
46748         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
46749         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
46750
46751 2006-04-29  Bruno Haible  <bruno@clisp.org>
46752
46753         * gnulib-tool: Make --update option actually work.
46754
46755 2006-04-29  Bruno Haible  <bruno@clisp.org>
46756
46757         * doc/gcd.texi: New file.
46758         * doc/gnulib.texi: Include it.
46759
46760 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
46761
46762         * lib/getdate.y (get_date): When adding relative date, start with the
46763         initial time, not with the result of the first mktime call.
46764
46765 2006-04-25  Bruno Haible  <bruno@clisp.org>
46766
46767         * gnulib-tool (func_import): Output the include directives in three
46768         blocks, sorted separately.
46769         Reported by Ben Pfaff <blp@cs.stanford.edu>.
46770
46771 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
46772
46773         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
46774         to define main with arguments, for C++.  Reported by Eric Blake.
46775         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
46776         Prefer 'int main ()' to 'int main (void)', for C++.
46777         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
46778         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
46779         for 'main', for C99 and C++.
46780
46781 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
46782
46783         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
46784         Don't assume that exit status -1 is valid.
46785         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
46786         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
46787         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
46788         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
46789         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
46790         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
46791         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
46792         functions can be used without declaring them, or that you can
46793         exit with status -1.
46794         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
46795
46796 2006-04-24  Karl Berry  <karl@gnu.org>
46797
46798         * config/srclist.txt (longdouble.m4): sync lost.
46799
46800 2006-04-24  Eric Blake  <ebb9@byu.net>
46801
46802         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
46803
46804 2006-04-24  Bruno Haible  <bruno@clisp.org>
46805
46806         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
46807         poll() implementation in AIX.
46808         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
46809
46810 2006-04-24  Bruno Haible  <bruno@clisp.org>
46811
46812         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
46813         assigned exactly once.
46814
46815 2006-04-23  Claudio Fontana  <claudio@gnu.org>
46816             Bruno Haible  <bruno@clisp.org>
46817
46818         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
46819         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
46820         for AM_CPPFLAGS.
46821
46822 2006-04-23  Bruno Haible  <bruno@clisp.org>
46823
46824         * modules/copy-file: Depend on unistd.
46825         * modules/execute: Likewise.
46826         * modules/fatal-signal: Likewise.
46827         * modules/findprog: Likewise.
46828         * modules/mkdtemp : Likewise.
46829         * modules/pipe: Likewise.
46830         * modules/wait-process: Likewise.
46831
46832 2006-04-23  Bruno Haible  <bruno@clisp.org>
46833
46834         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
46835         condition was already detected.
46836         Reported by Ben Pfaff <blp@cs.stanford.edu>.
46837
46838 2006-04-23  Bruno Haible  <bruno@clisp.org>
46839
46840         * lib/copy-file.c: Include <unistd.h> unconditionally.
46841         * lib/execute.c: Likewise.
46842         * lib/fatal-signal.c: Likewise.
46843         * lib/findprog.c: Likewise.
46844         * lib/mkdtemp.c: Likewise.
46845         * lib/pipe.h: Likewise.
46846         * lib/pipe.c: Likewise.
46847         * lib/wait-process.h: Likewise.
46848
46849 2006-04-23  Bruno Haible  <bruno@clisp.org>
46850
46851         * gnulib-tool (func_usage): Fix --import description. Document
46852         --update.
46853         (func_import): Create temporary file in a temporary directory, if
46854         --dry-run is specified. Silence errors from 'grep' when there are no
46855         m4 files in $m4dir.
46856         (func_create_testdir): Silence errors from 'grep' when there are no
46857         m4 files in $m4dir.
46858         Reported by Karl Berry <karl@freefriends.org>.
46859
46860 2006-04-20  Bruno Haible  <bruno@clisp.org>
46861
46862         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
46863         one argument, so that the code will be portable to Autoconf 2.60.
46864         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
46865         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
46866         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
46867
46868 2006-04-19  Derek Price  <derek@ximbiot.com>
46869             Eric Blake  <ebb9@byu.net>
46870
46871         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
46872         rather than "/full/path.h".  Update comment to match.  Shorten &
46873         generalize m4_translit call via AS_TR_CPP.
46874
46875 2006-04-19  Derek Price  <derek@ximbiot.com>
46876             Eric Blake  <ebb9@byu.net>
46877
46878         * lib/inttypes.h: Correct grammar in comment.
46879
46880 2006-04-18  Derek Price  <derek@ximbiot.com>
46881             Paul Eggert  <eggert@cs.ucla.edu>
46882
46883         * modules/inttypes: New file.
46884         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
46885
46886 2006-04-18  Derek Price  <derek@ximbiot.com>
46887             Paul Eggert  <eggert@cs.ucla.edu>
46888
46889         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
46890         New files.
46891
46892 2006-04-18  Derek Price  <derek@ximbiot.com>
46893             Paul Eggert  <eggert@cs.ucla.edu>
46894
46895         * lib/inttypes.h: New file.
46896         * lib/strtoimax.c: Assume <inttypes.h>.
46897
46898 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
46899
46900         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
46901         isn't mounted.  Problem reported by Kir Kolyshkin.
46902
46903 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
46904
46905         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
46906         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
46907         Derek R. Price.
46908         * lib/regex.h (RE_DUP_MAX): Update comment to match current
46909         implementation.
46910
46911 2006-04-12  Eric Blake  <ebb9@byu.net>
46912
46913         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
46914         is now done automatically by the corresponding Autoconf macro.
46915
46916 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
46917
46918         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
46919         time_r.h.
46920
46921 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
46922
46923         Merge regex changes from libc, removing some of our
46924         POSIX-conformance changes that were rejected and redoing them in a
46925         less-intrusive way.
46926
46927         * lib/regcomp.c (re_compile_internal, init_dfa):
46928         Length arg is now size_t, not Idx.  All uses changed.
46929         (peek_token): Forward decl now says internal_function.
46930         (__re_error_msgid, __re_error_msgid_idx):
46931         Now static rather than extern with attribute_hidden.
46932         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
46933         For some reason libc prefers K&R style defns for external functions.
46934         (regerror) [!defined _LIBC]: Likewise.
46935         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
46936         (seek_collating_symbol_entry, lookup_collation_sequence_value):
46937         (build_range_exp, build_collating_symbol):
46938         Use K&R-style defn.
46939         (re_compile_fastmap): Use '\0' to memset, not 0.
46940         (utf8_sb_map): Make the calculations more obvious.
46941         (init_dfa, parse_bracket_exp, build_charclass_op):
46942         Call calloc and cast result, as glibc does.
46943         (init_word_char, fetch_token, peek_token, peek_token_bracket):
46944         (build_range_exp, build_collating_symbol):
46945         Now internal functions.
46946
46947         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
46948
46949         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
46950         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
46951         Don't depend on VMS; depend on __VMS instead, for POSIX
46952         namespace cleanness.
46953         (regoff_t): Define to ssize_t, not long int.
46954
46955         Remove the REG_ macros named below.  Instead, make the old names
46956         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
46957         __USE_GNU_REGEX.
46958         (REG_BACKSLASH_ESCAPE_IN_LISTS):
46959         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
46960         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
46961         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
46962         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
46963         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
46964         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
46965         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
46966         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
46967         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
46968         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
46969         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
46970         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
46971         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
46972         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
46973         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
46974         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
46975         (REG_NREGS):
46976         Remove.  All uses replaced by the old RE_* names.
46977         (RE_BACKSLASH_ESCAPE_IN_LISTS):
46978         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
46979         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
46980         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
46981         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
46982         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
46983         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
46984         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
46985         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
46986         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
46987         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
46988         Don't bother having these macros be independent of each others'
46989         values, since they no longer exist in the POSIX name space.
46990
46991         Rename the following member names back to their old names,
46992         unless !__USE_GNU_REGEX.  All uses changed back.
46993         (buffer): Renamed from re_buffer.
46994         (allocated): Renamed from re_allocated.
46995         (used): Renamed from re_used.
46996         (syntax): Renamed from re_syntax.
46997         (fastmap): Renamed from re_fastmap.
46998         (translate): Renamed from re_translate.
46999         (can_be_null): Renamed from re_can_be_null.
47000         (regs_allocated): Renamed from re_regs_allocated.
47001         (fastmap_accurate): Renamed from re_fastmap_accurate.
47002         (no_sub): Renamed from re_no_sub.
47003         (not_bol): Renamed from re_not_bol.
47004         (not_eol): Renamed from re_not_eol.
47005         (newline_anchor): Renamed from re_newline_anchor.
47006         (num_regs): Renamed from rm_num_regs.
47007         (start): Renamed from rm_start.
47008         (end): Renamed from rm_end.
47009
47010         (free_state): Move up a bit.
47011
47012         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
47013         #define to be empty.
47014         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
47015         when that is what is intended.
47016         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
47017         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
47018         (MAX): New macro.
47019         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
47020         All uses changed back to re_malloc, etc.  It's now the caller's
47021         responsibility to check for overflow; all callers changed.
47022         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
47023         (re_x2nrealloc): Remove.
47024         (free_state): Remove decl.
47025
47026         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
47027         (re_set_registers, re_exec):
47028         Use K&R-style defn.
47029
47030         2006-01-31  Roland McGrath  <roland@redhat.com>
47031
47032         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
47033         Reported by Mike Frysinger <vapier@gentoo.org>.
47034
47035         2006-01-15  Andreas Jaeger  <aj@suse.de>
47036
47037         [BZ #1950]
47038         * lib/regex_internal.c (re_string_reconstruct): Adjust for
47039         build_wcs_upper_buffer change.
47040         (build_wcs_upper_buffer): Change return type.
47041
47042         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
47043
47044         * lib/regex_internal.h: Include <stdint.h> if available.
47045
47046         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
47047
47048         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
47049
47050         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
47051
47052         * lib/regcomp.c: Adjust for changed secondary hash function.
47053
47054         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
47055
47056         * lib/regex.h: Pretty printing.
47057         Clean up namespace a bit.
47058
47059         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
47060
47061         * lib/regexec.c (update_cur_sifted_state, check_arrival,
47062         check_arrival_add_next_nodes): Avoid using uninitialized variable.
47063
47064         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
47065                     Ulrich Drepper  <drepper@redhat.com>
47066
47067         [BZ #1302]
47068         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
47069         changed.
47070         (bitset_word_t): Renamed from bitset_word.  All uses changed.
47071
47072         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
47073
47074         [BZ #281]
47075         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
47076         * lib/regcomp.c: Remove unnecessary uses of
47077         unsigned RE_TRANSLATE_TYPE.
47078         * lib/regex_internal.h: Likewise.
47079         * lib/regex_internal.c: Likewise.
47080         * lib/regexec.c: Likewise.
47081         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
47082
47083         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
47084
47085         * lib/regexec.c (find_recover_state): Remove unnecessary
47086         initialization.
47087         (transit_state_bkref): Make DFA a const pointer.
47088         (get_subexp): Likewise.
47089         (check_arrival): Likewise.
47090         (update_cur_sifted_state): Likewise.
47091         (re_search_internal): Likewise.
47092         (prune_impossible_nodes): Likewise.
47093         (acquire_init_state_context): Likewise.
47094         (proceed_next_node): Likewise.
47095         (set_regs): Likewise.
47096         (free_fail_stack_return): Likewise.
47097         (check_arrival_expand_ecl): Mark DFA parameter as const.
47098         (check_arrival_expand_ecl_sub): Likewise.
47099         (check_subexp_limits): Likewise.
47100         (sub_epsilon_src_nodes):  Likewise.
47101         (add_epsilon_src_nodes):  Likewise.
47102         (merge_state_array): Likewise.
47103         (update_regs): Likewise.
47104         (build_trtable): Likewise.
47105         (sift_states_backward): Mark MCTX parameter as const.
47106         (build_sifted_states): Likewise.
47107         (update_cur_sifted_state): Likewise.
47108         (sift_states_mkref): Likewise.
47109         (check_arrival_expand_ecl): Mark eclosure as const.
47110         (check_dst_limits_calc_pos_1): Likewise.
47111         * lib/regex_internal.h (re_match_context_t): Make dfa a const
47112         pointer.
47113
47114         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
47115
47116         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
47117         (transit_state_sb): Likewise.
47118         (transit_state_mb): Likewise.
47119         (sift_states_iter_mb): Likewise.
47120         (check_arrival_add_next_nodes): Likewise.
47121         (check_node_accept_bytes): Change first parameter to pointer-to-const.
47122         [_LIBC] (re_search_2_stub): Use mempcpy.
47123
47124         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
47125         mbrtowc for very simple UTF-8 case.
47126
47127         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
47128         a pointer-to-const.
47129         (re_acquire_state_context): Likewise.
47130         * lib/regex_internal.h: Adjust prototypes.
47131
47132         * lib/regex.c: Prevent using C++ compilers.
47133
47134         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
47135         (re_acquire_state_context): Likewise.
47136
47137 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47138
47139         * modules/regex (Depends-on): Add ssize_t.
47140
47141 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47142
47143         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
47144         translation table.
47145
47146 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47147
47148         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
47149
47150 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
47151             Bruno Haible  <bruno@clisp.org>
47152
47153         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
47154         <sys/types.h> and <inttypes.h>.
47155
47156 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47157
47158         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
47159         `__error_t_defined', so argp.h will not typedef the former.
47160
47161 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
47162
47163         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
47164         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
47165         glibc names.  Even if glibc is changed to conform to POSIX, the
47166         traditional names will be available anyway, since regex depends on
47167         the extensions module.  Also, fix a longstanding typo in the
47168         implementation of Spencer ERE test #75 from grep 2.3.  Problems
47169         reported by Emanuele Giaquinta.  Also, change sense of cached
47170         variable, so that the message makes sense.
47171
47172 2006-03-24  Simon Josefsson  <jas@extundo.com>
47173
47174         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
47175         including some doc fixes.
47176         (base64_encode_alloc): Fix +1 bug on allocation failures.
47177
47178 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47179
47180         * lib/base64.c (base64_encode): Do not read past end of array with
47181         unsanitized input on systems with CHAR_BIT > 8.
47182
47183 2006-03-24  Eric Blake  <ebb9@byu.net>
47184
47185         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
47186
47187 2006-03-22  Karl Berry  <karl@gnu.org>
47188
47189         * config/srclist.txt (*setenv.[ch]): get from coreutils.
47190         * config/srclistvars.sh (COREUTILS): new var.
47191
47192 2006-03-17  Jim Meyering  <jim@meyering.net>
47193
47194         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
47195         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
47196
47197 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
47198
47199         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
47200         no longer needs it.  Instead, check that regoff_t is as least
47201         as wide as ptrdiff_t.
47202
47203         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
47204         so that our regex.h stays compatible with the installed regex.
47205         This is helpful for installers who configure --without-included-regex.
47206         Problem reported by Emanuele Giaquinta.
47207
47208 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
47209
47210         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
47211         Typedef to long int, not to off_, as POSIX will likely change
47212         in that direction.
47213
47214 2006-03-15  Eric Blake  <ebb9@byu.net>
47215
47216         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
47217
47218 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
47219
47220         * lib/argp-help.c (validate_uparams): Fix typo
47221         * lib/argp-parse.c (argp_default_options): Consistently begin help
47222         messages with a lowercase letter.
47223
47224 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
47225
47226         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
47227         overrun buffers and shouldn't be used (much as gets shouldn't be
47228         used).
47229         * lib/time_r.c (asctime_r, ctime_r): Likewise.
47230
47231 2006-03-08  Simon Josefsson  <jas@extundo.com>
47232
47233         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
47234         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47235
47236 2006-03-08  Simon Josefsson  <jas@extundo.com>
47237
47238         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
47239         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47240
47241 2006-03-08  Simon Josefsson  <jas@extundo.com>
47242
47243         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
47244         signal that configure disabled the device.
47245
47246 2006-03-08  Simon Josefsson  <jas@extundo.com>
47247
47248         * build-aux/maint.mk: Fix refresh-po, to handle no translated
47249         languages.
47250
47251 2006-03-07  Simon Josefsson  <jas@extundo.com>
47252
47253         * modules/getopt (Depends-on): Add unistd.
47254
47255         * modules/unistd: New file.
47256
47257 2006-03-07  Simon Josefsson  <jas@extundo.com>
47258
47259         * modules/gc-random: New file.
47260
47261 2006-03-07  Simon Josefsson  <jas@extundo.com>
47262
47263         * m4/unistd_h.m4: New file.
47264
47265 2006-03-07  Simon Josefsson  <jas@extundo.com>
47266
47267         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
47268         test to be side-effect free by storing the result in the cache
47269         variable gl_cv_lib_readline, and moving the assignment of
47270         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
47271         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47272
47273 2006-03-07  Simon Josefsson  <jas@extundo.com>
47274
47275         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
47276         error on missing devices (the functions will return an error).
47277
47278         * m4/gc.m4: Move random stuff to gc-random.m4
47279
47280 2006-03-07  Simon Josefsson  <jas@extundo.com>
47281
47282         * lib/unistd_.h: New file.
47283
47284 2006-03-07  Simon Josefsson  <jas@extundo.com>
47285
47286         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
47287
47288 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
47289
47290         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
47291         Problem reported by Juan Manuel Guerrero.
47292
47293 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
47294
47295         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
47296         the unistd module.
47297         * lib/getlogin_r.c: Likewise.
47298         * lib/getlogin_r.h: Likewise.
47299         * lib/glob.c: Likewise.
47300         * lib/pagealign_alloc.c: Likewise.
47301         * lib/unistd_.h: Remove; no longer needed.
47302
47303 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
47304
47305         * MODULES.html.sh (Support for systems lacking POSIX:2001):
47306         Add unistd.
47307         * modules/c-stack (Depends-on): Add unistd.
47308         * modules/getlogin_r: Likewise.
47309         * modules/glob: Likewise.
47310         * modules/pagealign_alloc: Likewise.
47311         * modules/unistd (Files): Remove lib/unistd_.h.
47312         (EXTRA_DIST): Remove.
47313         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
47314         need unistd_.h.
47315         (MOSTLYCLEANFILES): Remove unistd.h-t.
47316
47317 2006-03-03  Simon Josefsson  <jas@extundo.com>
47318
47319         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
47320
47321 2006-03-03  Simon Josefsson  <jas@extundo.com>
47322
47323         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
47324         libidn and bison.
47325
47326 2006-03-03  Simon Josefsson  <jas@extundo.com>
47327
47328         * build-aux/maint.mk: Add indent target.
47329
47330 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
47331
47332         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
47333         our replacement poll.h in any case, to avoid a differing
47334         declaration from a system header.  Seen on AIX.
47335
47336 2006-03-01  Simon Josefsson  <jas@extundo.com>
47337
47338         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
47339         <kasal@ucw.cz>.
47340
47341 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
47342
47343         * modules/gettime (Depends-on): Add extensions module.
47344         * modules/nanosleep (Depends-on): Likewise.
47345         * modules/settime (Depends-on): Likewise.
47346
47347 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
47348
47349         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
47350         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
47351         pedantically.
47352         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
47353         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
47354
47355         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
47356         not "==".  Reported by Ralf Wildenhues.
47357
47358 2006-03-01  Karl Berry  <karl@gnu.org>
47359
47360         * doc/Copyright/request-*: new files, synced from gnuorg.
47361
47362 2006-03-01  Karl Berry  <karl@gnu.org>
47363
47364         * config/srclist.txt (Copyright/*): new entries.
47365
47366 2006-02-28  Simon Josefsson  <jas@extundo.com>
47367
47368         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
47369
47370 2006-02-27  Simon Josefsson  <jas@extundo.com>
47371
47372         * lib/base64.h: Indent #define's.  From Jim Meyering
47373         <jim@meyering.net>.
47374
47375 2006-02-27  Jim Meyering  <jim@meyering.net>
47376
47377         Revert the change of 2006-02-24, so these files can continue
47378         to be sync'd from gettext.
47379         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
47380         of `config.h'.
47381
47382 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
47383
47384         * modules/intprops: New file.
47385         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
47386         Add intprops.
47387         * modules/getloadavg (Files): Remove lib/intprops.h.
47388         (Depends-on): Add intprops.
47389         * modules/human: Likewise.
47390         * modules/inttostr: Likewise.
47391         * modules/openat: Likewise.
47392         * modules/sig2str: Likewise.
47393         * modules/userspec: Likewise.
47394         * modules/utimecmp: Likewise.
47395         * modules/xnanosleep: Likewise.
47396         * modules/xstrtol: Likewise.
47397
47398 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
47399
47400         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
47401         * modules/lock-tests (TESTS): Use $(EXEEXT).
47402         * modules/tls-tests: Likewise.
47403         * modules/argp-tests: Likewise.
47404         (check_PROGRAMS): New var, replacing...
47405         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
47406
47407 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47408
47409         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
47410         `config.h'.
47411
47412 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
47413
47414         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
47415
47416 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47417
47418         Sync from coreutils.
47419         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
47420         gl_CHDIR_SAFER.
47421
47422 2006-02-22  Jim Meyering  <jim@meyering.net>
47423
47424         Sync from coreutils.
47425         * m4/chdir-safer.m4: New file.
47426
47427 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
47428
47429         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
47430         AT_FDCWD exceeds INT_MAX.
47431         * lib/openat.h (AT_FDCWD): Likewise.
47432
47433 2006-02-17  Eric Blake  <address@hidden>
47434
47435         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
47436
47437 2006-02-16  Simon Josefsson  <jas@extundo.com>
47438
47439         * modules/getaddrinfo (Depends-on): Add sys_socket.
47440
47441 2006-02-15  Simon Josefsson  <jas@extundo.com>
47442
47443         * build-aux/maint.mk: Add dsyntax-check rule.
47444
47445 2006-02-15  Eric Blake  <ebb9@byu.net>
47446
47447         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
47448         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
47449         'present but cannot compile' warnings on cygwin.
47450         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
47451         use ws2tcpip.h if sys/socket.h works.
47452         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
47453         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
47454
47455 2006-02-14  Simon Josefsson  <jas@extundo.com>
47456
47457         * modules/maintainer-makefile (Files): Rename.
47458
47459         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
47460         and (the local) Makefile.cfg to maint-cfg.mk.
47461
47462         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
47463         to the latter.
47464
47465         * modules/maintainer-makefile: New module.
47466
47467         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
47468         severaly stripped to make it possible to build it up from scratch
47469         with reliable tests.
47470
47471         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
47472         fixes to permit overriding the default actions when configure and
47473         makefile are not available.
47474
47475 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
47476
47477         Sync from coreutils.
47478         * modules/lstat (Depends-on): Don't depend on xalloc.
47479         (License): Change from GPL to LGPL, since this is now simply a
47480         replacement for a libc function.
47481
47482 2006-02-14  Jim Meyering  <jim@meyering.net>
47483
47484         Sync from coreutils.
47485
47486         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
47487         failure on deficient systems, and simplify gnulib lgpl dependencies.
47488         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
47489         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
47490
47491         * lib/xalloc-die.c: Remove unused definition of N_.
47492
47493 2006-02-14  Jim Meyering  <jim@meyering.net>
47494
47495         Sync from coreutils.
47496         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
47497         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
47498         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
47499         double-quote uses of that variable, to accommodate the rare case in
47500         which getmntent is available in none of the libraries checked.  This
47501         happens at least on FreeBSD 5.0.
47502
47503 2006-02-13  Simon Josefsson  <jas@extundo.com>
47504
47505         * gnulib-tool (Usage): Fix --import, from
47506         karl@freefriends.org (Karl Berry).
47507
47508 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
47509
47510         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
47511
47512 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
47513
47514         * lib/argp-namefrob.h: Restore changes accidentally lost during the
47515         "autoupdate" on 2005-12-12.
47516
47517 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
47518
47519         * modules/closeout (Depends-on): Remove atexit.
47520
47521 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
47522
47523         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
47524         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
47525
47526 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
47527
47528         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
47529         __EXTENSIONS__ if this causes compilation to fail.  Problem
47530         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
47531         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
47532
47533 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
47534
47535         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
47536         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
47537         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
47538         All uses changed.
47539
47540 2006-01-26  Simon Josefsson  <jas@extundo.com>
47541
47542         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
47543         prototype is visible on mingw32.
47544
47545         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
47546         for mingw32.
47547
47548         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
47549         mingw32).
47550
47551 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
47552
47553         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
47554         attempt to open for write; this always fails, at least on POSIX
47555         hosts.  This reinstates the 2006-01-09 change, which was
47556         inadvertently removed.
47557
47558 2006-01-26  Bruno Haible  <bruno@clisp.org>
47559
47560         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
47561         Reported by Paul Eggert.
47562
47563 2006-01-26  Bruno Haible  <bruno@clisp.org>
47564             Paul Eggert  <eggert@cs.ucla.edu>
47565
47566         * lib/stdbool_.h (_Bool)
47567         [(! (defined __cplusplus || defined __BEOS__)
47568           && !defined __GNUC__
47569           && !(defined __HP_cc || defined __xlc__
47570                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
47571                || defined __sgi))]:
47572         #define to signed char in these cases too; this simplifies
47573         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
47574         etc., separately) and makes it more conservative.
47575
47576 2006-01-25  Simon Josefsson  <jas@extundo.com>
47577
47578         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
47579         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
47580         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
47581
47582 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
47583
47584         * lib/argp-namefrob.h: Bugfix. Remove stray #
47585
47586 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
47587
47588         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
47589         so that we test the test.
47590         Check for yet another HP-UX cc bug involving *bool |= bool.
47591
47592 2006-01-25  Karl Berry  <karl@gnu.org>
47593
47594         * config/srclist.txt (vasnprintf.c): sync lost.
47595
47596 2006-01-25  Jim Meyering  <jim@meyering.net>
47597
47598         Sync from the stable (b5) branch of coreutils:
47599
47600         * lib/fts.c (fts_children): Don't let close() clobber errno from
47601         failed fchdir().
47602
47603         * lib/fts.c (fts_stat): When following a symlink-to-directory,
47604         don't necessarily interpret stat-fails+lstat-succeeds as indicating
47605         a dangling symlink.  That can also happen at least for ELOOP.
47606         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
47607         FYI, this bug predates the inclusion of fts.c in coreutils.
47608
47609         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
47610         in their own block, so pre-c99 compilers don't object.
47611
47612         Avoid the double-free (first in fts_read, second in fts_close) that
47613         would occur when an `active' directory is made inaccessible (e.g.,
47614         via chmod a-x) during a traversal.
47615         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
47616         before returning.  Reproduce this failure by
47617         mkdir -p a/b; cd a; chmod a-x . b
47618         Reported by Stavros Passas.
47619
47620 2006-01-25  Jim Meyering  <jim@meyering.net>
47621
47622         * lib/fileblocks.c: Remove more useless parentheses.
47623         * lib/readutmp.h: Likewise.
47624
47625 2006-01-25  Bruno Haible  <bruno@clisp.org>
47626
47627         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
47628         warnings.
47629         Reported by Paul Eggert.
47630
47631 2006-01-25  Bruno Haible  <bruno@clisp.org>
47632
47633         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
47634         rid of a trap command. For Solaris sh.
47635         Reported by Mark D. Baushke <mdb@gnu.org>.
47636
47637 2006-01-24  Simon Josefsson  <jas@extundo.com>
47638
47639         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
47640         Bruno.
47641
47642 2006-01-24  Karl Berry  <karl@gnu.org>
47643
47644         * config/srclist.txt (argp-namefrob.h): sync lost.
47645
47646 2006-01-24  Jim Meyering  <jim@meyering.net>
47647
47648         * modules/openat (Files): Add lib/intprops.h.
47649         From Mark D. Baushke.
47650
47651 2006-01-24  Jim Meyering  <jim@meyering.net>
47652
47653         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
47654         Reported by Mark D. Baushke.
47655
47656 2006-01-24  Jim Meyering  <jim@meyering.net>
47657
47658         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
47659
47660 2006-01-24  Bruno Haible  <bruno@clisp.org>
47661
47662         * modules/strnlen (Maintainer): Change from glibc to all.
47663
47664 2006-01-24  Bruno Haible  <bruno@clisp.org>
47665
47666         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
47667         Patch by Paul Eggert.
47668
47669 2006-01-24  Bruno Haible  <bruno@clisp.org>
47670
47671         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
47672         already has it.
47673         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
47674         2005-11-26.
47675
47676         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
47677         'signed char' to avoid problems with the built-in _Bool type.
47678         Reported by Paul Eggert on 2005-11-26.
47679
47680 2006-01-24  Bruno Haible  <bruno@clisp.org>
47681
47682         * gnulib-tool (func_import): Avoid constructing complicated sed
47683         expressions inside backquote.
47684         Report and solution by Mark D. Baushke <mdb@gnu.org>.
47685
47686 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
47687
47688         These changes imported from libc.
47689         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
47690         test and two separate function calls.
47691         * lib/strndup.c (__strndup): Add libc_hidden_def.
47692
47693 2006-01-23  Simon Josefsson  <jas@extundo.com>
47694
47695         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
47696         Remove the test_*_SOURCES variable: automake infers it by default.
47697         * modules/tls-tests: Likewise.
47698
47699 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
47700
47701         Work around porting bugs reported by Dieter in
47702         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
47703         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
47704         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
47705         Include "getopt.h" first, to check interface.
47706         (getenv): Declare only if defined HAVE_DECL_GETENV &&
47707         !HAVE_DECL_GETENV.
47708         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
47709         (__strndup): Revert to K&R-style function dfns, the glibc style.
47710         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
47711         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
47712         Include strnlen.h first, to get prototype properly.
47713         (strnlen): Renamed from __strnlen.
47714         Remove weak alias.
47715
47716 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
47717
47718         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
47719
47720 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
47721
47722         * config/srclist.txt: Adjust to reflect glibc reorganization.
47723         This affects only comments.
47724
47725 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
47726
47727          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
47728          Reported by Bruce Korb <bkorb@gnu.org>.
47729
47730 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
47731
47732         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
47733         to pacify gcc -Wswitch-default.
47734
47735 2006-01-22  Bruno Haible  <bruno@clisp.org>
47736
47737         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
47738         temporary buffer for sprintf, take into account the precision also
47739         for 'd', 'i', 'u', 'o', 'x', 'X'.
47740
47741 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
47742
47743         * modules/argp-tests: New module
47744         * tests/test-argp.c: New file
47745         * tests/test-argp-2.sh: New file
47746
47747 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
47748
47749         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
47750         (__argp_base_name): Removed
47751         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
47752         typo.
47753         (__argp_base_name): Provide macro definition or extern declaration
47754         depending on the configuration
47755
47756 2006-01-20  Simon Josefsson  <jas@extundo.com>
47757
47758         * modules/inet_ntop (Depends-on): Depend on sys_socket.
47759
47760 2006-01-20  Simon Josefsson  <jas@extundo.com>
47761
47762         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
47763
47764 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
47765
47766         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
47767         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
47768         Suggested by Bruno Haible.
47769
47770 2006-01-20  Karl Berry  <karl@gnu.org>
47771
47772         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
47773         until changes propagate, I guess.
47774
47775 2006-01-19  Simon Josefsson  <jas@extundo.com>
47776
47777         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
47778
47779 2006-01-19  Simon Josefsson  <jas@extundo.com>
47780
47781         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
47782
47783 2006-01-19  Simon Josefsson  <jas@extundo.com>
47784
47785         * gnulib-tool: Set check_PROGRAMS.
47786
47787         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
47788         modules/des-tests, modules/gc-arcfour-tests,
47789         modules/gc-arctwo-tests, modules/gc-des-tests,
47790         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
47791         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
47792         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
47793         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
47794         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
47795         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
47796         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
47797         test_*_SOURCES.
47798
47799 2006-01-18  Simon Josefsson  <jas@extundo.com>
47800
47801         * modules/socklen (Depends-on): Depend on sys_socket.
47802
47803 2006-01-18  Simon Josefsson  <jas@extundo.com>
47804
47805         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
47806         modules/des-tests, modules/gc-arcfour-tests,
47807         modules/gc-arctwo-tests, modules/gc-des-tests,
47808         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
47809         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
47810         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
47811         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
47812         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
47813         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
47814         $(EXEEXT) to automake TESTS variable, for mingw32.
47815
47816 2006-01-17  Simon Josefsson  <jas@extundo.com>
47817
47818         * modules/socklen (Include): Need sys/socket.h.
47819
47820 2006-01-17  Bruno Haible  <bruno@clisp.org>
47821
47822         * modules/ssize_t (Include): Add <sys/types.h>.
47823
47824 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
47825
47826         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
47827         it's not portable and it doesn't work with cross-compiles.
47828         Problem reported by Bruno Haible.  Fix missing-$ typo in
47829         'test "gl_cv_ignore_unused_libraries" ...' that prevented
47830         -zignore from being used with Sun's C compiler.
47831
47832 2006-01-12  Simon Josefsson  <jas@extundo.com>
47833
47834         * lib/base64.c: Fix warning, reported by Bruno Haible
47835         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
47836
47837 2006-01-12  Bruno Haible  <bruno@clisp.org>
47838
47839         * modules/ldd: New file.
47840         * build-aux/ldd.sh.in: New file.
47841         * MODULES.html.sh (Support for building libraries and executables): Add
47842         ldd.
47843
47844 2006-01-12  Bruno Haible  <bruno@clisp.org>
47845
47846         * m4/ldd.m4: New file.
47847
47848 2006-01-12  Bruno Haible  <bruno@clisp.org>
47849
47850         * gnulib-tool (func_import, func_create_testdir): Don't go into an
47851         endless loop while replacing $auxdir with build-aux.
47852
47853 2006-01-11  Simon Josefsson  <jas@extundo.com>
47854
47855         * lib/stdint_.h (SIZE_MAX): Add missing (.
47856
47857 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
47858
47859         Sync from coreutils.
47860         * lib/md5.c: Fix commentary typos.
47861         (alignof, UNALIGNED_P): No need for a GCC-specific version.
47862         * lib/md5.h (__attribute__): Remove; unused.
47863         * lib/sha1.c: Fix commentary to match md5 better.
47864         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
47865         so that we don't need to worry about alignment.  All uses changed.
47866         This merges the 2005-10-28 md5 change into sha1.
47867
47868 2006-01-11  Jim Meyering  <jim@meyering.net>
47869
47870         Sync from coreutils.
47871         * lib/md5.c (OP): Fix spacing.
47872
47873 2006-01-11  Bruno Haible  <bruno@clisp.org>
47874
47875         Ensure automatic ordering between gl_LOCK and gl_ARGP.
47876         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
47877         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
47878
47879 2006-01-11  Bruno Haible  <bruno@clisp.org>
47880
47881         Ensure automatic ordering between gl_LOCK and gl_ARGP.
47882         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
47883         the "early" section as well.
47884
47885 2006-01-11  Bruno Haible  <bruno@clisp.org>
47886
47887         Avoid "ar: no archive members specified" error on MacOS X.
47888         * gnulib-tool (func_modules_add_dummy): New function.
47889         (func_import, func_create_testdir): Invoke it.
47890
47891 2006-01-11  Bruno Haible  <bruno@clisp.org>
47892
47893         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
47894         with $auxdir in AC_CONFIG_FILES statements.
47895
47896 2006-01-11  Bruno Haible  <bruno@clisp.org>
47897
47898         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
47899         Initialize also noinst_HEADERS to empty.
47900
47901 2006-01-11  Bruno Haible  <bruno@clisp.org>
47902
47903         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
47904         variables.
47905         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
47906         autoreconf.
47907
47908 2006-01-11  Bruno Haible  <bruno@clisp.org>
47909
47910         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
47911         overridable by the user.
47912         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47913
47914 2006-01-10  Simon Josefsson  <jas@extundo.com>
47915
47916         * modules/sys_socket: New file.
47917
47918 2006-01-10  Simon Josefsson  <jas@extundo.com>
47919
47920         * m4/sys_socket_h.m4: New file.
47921
47922 2006-01-10  Simon Josefsson  <jas@extundo.com>
47923
47924         * lib/socket_.h: New file.
47925
47926 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
47927
47928         * modules/readutmp (Maintainer): Add myself.
47929
47930 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
47931
47932         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
47933         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
47934         People who are still concerned with buggy memcmp implementations
47935         can invoke gl_FUNC_MEMCMP themselves.
47936
47937 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
47938
47939         * lib/regex_internal.h (BITSET_WORD_BITS):
47940         Work around a bug in 64-bit PGC (before version 6.1-2), where the
47941         preprocessor mishandles large unsigned values as if they were signed.
47942         Problem reported by Claudio Fontana in
47943         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
47944
47945 2006-01-10  Jim Meyering  <jim@meyering.net>
47946
47947         Avoid the double-free (first in fts_read, second in fts_close) that
47948         would occur when an `active' directory is made inaccessible (e.g.,
47949         via chmod a-x) during a traversal.
47950         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
47951         before returning.  Reproduce this failure by
47952         mkdir -p a/b; cd a; chmod a-x . b
47953         Reported by Stavros Passas.
47954
47955         Sync from coreutils.
47956         * lib/sha1.c: Tweak grammar in a comment.
47957
47958 2006-01-10  Jim Meyering  <jim@meyering.net>
47959
47960         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
47961         Patch by Joerg Sonnenberger.
47962
47963 2006-01-10  Bruno Haible  <bruno@clisp.org>
47964
47965         * modules/readutmp: Depend on module free.
47966         * modules/strtok_r: Depend on module restrict.
47967
47968 2006-01-10  Bruno Haible  <bruno@clisp.org>
47969
47970         * modules/gettext (configure.ac): Add an invocation of
47971         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
47972
47973 2006-01-10  Bruno Haible  <bruno@clisp.org>
47974
47975         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
47976         Reported by Werner Lemberg <wl@gnu.org>.
47977
47978 2006-01-10  Bruno Haible  <bruno@clisp.org>
47979
47980         * lib/localcharset.c: Update from GNU gettext.
47981
47982 2006-01-10  Bruno Haible  <bruno@clisp.org>
47983
47984         * lib/argp.h (__const): Remove macro. Use const instead.
47985         * lib/argp-fmtstream.h (__const): Likewise.
47986         * lib/glob_.h (__const): Remove macro.
47987         * lib/glob-libc.h: Use const instead of __const.
47988
47989 2006-01-10  Bruno Haible  <bruno@clisp.org>
47990
47991         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
47992         variable.
47993         Needed to avoid an automake error regarding the 'gettext' module.
47994
47995 2006-01-09  Simon Josefsson  <jas@extundo.com>
47996
47997         * modules/inet_ntop (Depends-on): Add restrict.
47998
47999 2006-01-09  Simon Josefsson  <jas@extundo.com>
48000
48001         * modules/gc-rijndael-tests (License): Put under LGPL.
48002
48003         * modules/gc-des-tests (License): Likewise.
48004
48005         * modules/gc-arcfour-tests (License): Likewise.
48006
48007         * modules/gc-arctwo-tests (License): Likewise.
48008
48009         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
48010
48011         * modules/gc-hmac-sha1-tests (Files): Likewise.
48012
48013         * modules/gc-hmac-md5-tests (License): Likewise.
48014
48015         * modules/gc-sha1-tests (License): Likewise.
48016
48017         * modules/gc-md5-tests (License): Likewise.
48018
48019         * modules/gc-md4-tests (License): Likewise.
48020
48021         * modules/gc-md2-tests (License): Likewise.
48022
48023         * modules/gc-tests (License): Likewise.
48024
48025         * modules/des-tests (License): Likewise.
48026
48027         * modules/md4-tests (License): Likewise.
48028
48029         * modules/md2-tests (License): Likewise.
48030
48031 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48032
48033         Sync from coreutils:
48034
48035         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
48036         * modules/lib-ignore: New file.
48037         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
48038         chdir-safer.m4, lchmod.m4.
48039         * modules/openat: Add mkdirat.c, openat-priv.h.
48040
48041 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48042
48043         Sync from coreutils.
48044         * m4/lib-ignore.m4: New file.
48045         * m4/lchmod.m4: New file.
48046
48047 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48048
48049         Sync from coreutils.
48050         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
48051         for write access: POSIX says that must fail.
48052         * lib/fts.c (diropen): Likewise.
48053         * lib/save-cwd.c (save_cwd): Likewise.
48054         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
48055         well, for minor improvements on hosts that lack O_DIRECTORY.
48056         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
48057         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
48058         Fall back on chown if open failed with EACCES.
48059
48060         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
48061         Report an error at compile-time if only a 1-second nominal clock
48062         resolution is found.
48063
48064         * lib/lchmod.h: New file.
48065         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
48066         (make_dir_parents): Use lchown rather than chown, and
48067         lchmod rather than chmod.
48068
48069         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
48070         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
48071         "proc" reported by n0dalus.
48072
48073         * lib/mountlist.c: Include <limits.h>.
48074         (dev_from_mount_options)
48075         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
48076         New function.  It no longer assumes "dev=" has the System V meaning
48077         on Linux (since it doesn't).  It also parses "dev=" more carefully.
48078         (read_file_system_list)
48079         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
48080         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
48081         dev= in that case.
48082
48083         * lib/posixtm.h (PDS_PRE_2000): New macro.
48084         * lib/posixtm.c (year): Arg is now syntax_bits rather than
48085         allow_century.  All usages changed.  Reject dates outside the range
48086         1969-1999 if PDS_PRE_2000 is used.
48087
48088 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48089
48090         Sync from coreutils.
48091         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
48092         (Time of day items): Mention the possibility of leap seconds.
48093         Problem reported by Dr. David Alan Gilbert.
48094
48095 2006-01-09  Jim Meyering  <jim@meyering.net>
48096
48097         Sync from coreutils.
48098
48099         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
48100
48101         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
48102
48103         * lib/modechange.c (mode_compile): Reject an invalid mode string
48104         that starts with an octal digit.  From Andreas Gruenbacher.
48105
48106         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
48107         and dup to open_safer and dup_safer, respectively.
48108         (openat_permissive): Fix typo in comment.
48109
48110         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
48111         "gettext.h"; either no longer needed or are guaranteed by openat.h.
48112         (_): Remove; no longer needed.
48113         (openat): Renamed from rpl_openat; no need for rpl_openat
48114         since openat.h renames openat for us.
48115         Replace most of the body with a call to openat_permissive,
48116         to avoid duplicate code.
48117         Port to (probably hypothetical) environments were mode_t is
48118         wider than int.
48119         (openat_permissive): Require mode arg, so that we can check
48120         types better.  Put it just after flags.  Change cwd failure
48121         indicator from pointer-to-bool to pointer-to-errno-value.
48122         All callers changed.
48123         Invoke openat_save_fail and/or openat_restore_fail if
48124         cwd_errno is null, so that openat can call us.
48125         (openat_permissive, fdopendir, fstatat, unlinkat):
48126         Simplify errno handling to avoid some duplicate code,
48127         as it's OK to set errno on success.
48128         * lib/openat.h: Revamp code so that function macros depend on
48129         __OPENAT_PREFIX only, not also on AT_FDCWD.
48130         (openat_ro): Remove.  Caller changed to use openat_permissive.
48131         (openat_permissive): Now a macro, if not a function.
48132         (openat_restore_fail, openat_save_fail): Now always functions,
48133         since mkdirat needs them even if __OPENAT_PREFIX is defined.
48134
48135         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
48136         and openat.c.
48137         * lib/mkdirat.c: Include openat-priv.h.
48138         Remove definitions of macros defined therein.
48139         * lib/openat.c: Likewise.
48140
48141         * lib/mkdirat.c (mkdirat): New file and function.
48142         * lib/openat.h (mkdirat): Declare.
48143
48144         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
48145
48146         * lib/openat.h (openat_permissive): Declare.
48147         (openat_ro): Define.
48148
48149         * lib/openat.c (EXPECTED_ERRNO): New macro.
48150         (openat_permissive): New function -- used in remove.c rewrite.
48151         (all functions): Set errno just before returning, only if there
48152         was an actual failure.
48153         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
48154
48155         Emulate openat-family functions using Linux's procfs, if possible.
48156         Idea and some code based on Ulrich Drepper's glibc changes.
48157
48158         * lib/openat.c: (BUILD_PROC_NAME): New macro.
48159         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
48160         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
48161         before falling back on save_cwd and restore_cwd.
48162         (fdopendir, fstatat, unlinkat): Likewise.
48163
48164         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
48165         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
48166
48167         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
48168         as second argument to va_arg.  Otherwise, some versions of gcc
48169         warn that `if this code is reached, the program will abort'.
48170
48171 2006-01-09  Jim Meyering  <jim@meyering.net>
48172
48173         Sync from coreutils.
48174         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
48175         Require openat-priv.h.
48176
48177 2006-01-09  Bruno Haible  <bruno@clisp.org>
48178
48179         * modules/strnlen (Include): Use strnlen.h.
48180
48181 2006-01-09  Bruno Haible  <bruno@clisp.org>
48182
48183         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
48184
48185 2006-01-09  Bruno Haible  <bruno@clisp.org>
48186
48187         * lib/sysexit_.h (EX_OK): New macro.
48188         Suggested by Martin Lambers <marlam@marlam.de>.
48189
48190 2006-01-09  Bruno Haible  <bruno@clisp.org>
48191
48192         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
48193         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
48194
48195 2006-01-09  Bruno Haible  <bruno@clisp.org>
48196
48197         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
48198         numbers.
48199
48200 2006-01-09  Bruno Haible  <bruno@clisp.org>
48201
48202         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
48203         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
48204         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
48205         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
48206
48207 2006-01-09  Bruno Haible  <bruno@clisp.org>
48208
48209         * build-aux/javacomp.sh.in: New file, moved from lib/.
48210         * modules/javacomp-script (Files): Update.
48211         (configure.ac): Add AC_CONFIG_FILES invocation.
48212         (EXTRA_DIST): Remove variable.
48213
48214         * build-aux/javaexec.sh.in: New file, moved from lib/.
48215         * modules/javaexec (Files): Update.
48216         (configure.ac): Add AC_CONFIG_FILES invocation.
48217         (EXTRA_DIST): Remove javaexec.sh.in.
48218
48219         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
48220         * modules/csharpcomp-script (Files): Update.
48221         (configure.ac): Add AC_CONFIG_FILES invocation.
48222         (EXTRA_DIST): Remove variable.
48223
48224         * build-aux/csharpexec.sh.in: New file, moved from lib/.
48225         * modules/csharpexec (Files): Update.
48226         (configure.ac): Add AC_CONFIG_FILES invocation.
48227         (EXTRA_DIST): Remove csharpexec.sh.in.
48228
48229 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
48230
48231         Sync from coreutils.
48232
48233         Add POSIX ACL support
48234         * lib/acl.h (copy_acl, set_acl): Add declarations.
48235         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
48236         systems other than Linux.
48237         (chmod_or_fchmod): New function: use fchmod when possible,
48238         and chmod otherwise.
48239         (file_has_acl): Add a POSIX ACL implementation, with a
48240         Linux-specific subcase.
48241         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
48242         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
48243         acls are unsupported.
48244         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
48245         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
48246         are unsupported.
48247
48248 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
48249
48250         Sync from coreutils.
48251         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
48252
48253 2006-01-07  Bruno Haible  <bruno@clisp.org>
48254
48255         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
48256         gl_EARLY.
48257
48258 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
48259
48260         * lib/strftime.c (tzname): Don't declare if it is already #defined.
48261         Problem reported for Mingw by Mark Junker.
48262
48263 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
48264
48265         * README: Gnulib normally doesn't generate a tarball.
48266
48267 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
48268
48269         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
48270         long int, not int, for nanosecond counts, so that people who are
48271         used to POSIX struct timespec won't be surprised.  Reported by Jim
48272         Meyering.
48273
48274 2005-12-28  Bruno Haible  <bruno@clisp.org>
48275
48276         * build-aux/config.rpath: Update from GNU gettext.
48277
48278 2005-12-16  Jim Meyering  <jim@meyering.net>
48279
48280         * modules/fprintftime: New module.
48281         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
48282
48283 2005-12-16  Jim Meyering  <jim@meyering.net>
48284
48285         * m4/fprintftime.m4: New file.
48286
48287 2005-12-16  Jim Meyering  <jim@meyering.net>
48288
48289         * lib/fprintftime.c, lib/fprintftime.h: New files.
48290
48291 2005-12-15  Simon Josefsson  <jas@extundo.com>
48292
48293         * modules/socklen (configure.ac): Fix M4 macro name, to align with
48294         new m4/socklen.m4.
48295
48296 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
48297
48298         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
48299         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
48300
48301 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
48302
48303         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
48304         * lib/argp-help.c (fill_in_uparams): Check if the constructed
48305         struct uparams is valid. Fall back to the default values if it is
48306         not.
48307
48308 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
48309
48310         * modules/argp (Files): Add argp-pin.c
48311         (Depends-on): dirname
48312         (lib_SOURCES): Add argp-pin.c
48313
48314 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
48315
48316         * m4/argp.m4:  Check if program_invocation_name and
48317         program_invocation_short_name are declared and define appropriate
48318         macros if they are not.
48319
48320 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
48321
48322         * lib/argp-help.c (__argp_base_name): New function
48323         (__argp_short_program_name): Rewrite using __argp_base_name
48324         * lib/argp-namefrob.h: Define program_invocation_name and
48325         program_invocation_short_name if requested
48326         (__argp_base_name): Add prototype
48327         * lib/argp-parse.c (argp_def): Use gettext wrappers
48328         (argp_default_parser): Use __argp_base_name
48329         * lib/argp-pin.c: New file. Defines program_invocation_name and
48330         program_invocation_short_name on systems that lack them.
48331
48332 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
48333
48334         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
48335         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
48336         porting problem reported by Georg Schwarz in
48337         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
48338
48339 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
48340
48341         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
48342         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
48343         porting problem reported by Georg Schwarz in
48344         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
48345
48346 2005-12-05  Bruno Haible  <bruno@clisp.org>
48347
48348         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
48349         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
48350         Reported by Mark Junker <mjscod@gmx.de>.
48351
48352 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
48353
48354         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
48355         Use implementation from Albert Chin, with some
48356         comments/corrections by Stepan Kasal and myself.
48357
48358 2005-12-02  Bruno Haible  <bruno@clisp.org>
48359
48360         * gnulib-tool (func_import): Accept GPLed build tool modules when
48361         --lgpl is given.
48362         * modules/csharpcomp-script: New file.
48363         * modules/csharpcomp: Depend on it.
48364         * modules/javacomp-script: New file.
48365         * modules/javacomp: Depend on it.
48366         Suggested by Simon Josefsson.
48367
48368 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
48369
48370         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
48371         statement, to work around an HP-UX 10.20 compiler bug reported by
48372         Peter O'Gorman.
48373
48374 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
48375
48376         * modules/savedir (Depends-on): Add openat.
48377
48378 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
48379
48380         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
48381         (uintmax_t) [defined uintmax_t]: Do not declare.
48382         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
48383         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
48384         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
48385         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
48386         sake of portability to weird hosts that C allows (though we don't
48387         know of any practical examples).
48388
48389         * lib/savedir.h (fdsavedir): New decl.
48390         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
48391         contains most of the former guts of savedir.
48392         (savedir): Use savedirstream.
48393         Include "openat.h".
48394
48395 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
48396
48397         * modules/obstack (Files): Add m4/ulonglong.m4.
48398         Problem reported by Davide Angelocola.
48399
48400 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
48401
48402         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
48403         coreutils no longer futzes with rounding modes.
48404
48405 2005-11-14  Jim Meyering  <jim@meyering.net>
48406
48407         * lib/mkstemp-safer.c: Include <config.h>, required for possible
48408         replacement of mkstemp.
48409
48410 2005-11-10  Simon Josefsson  <jas@extundo.com>
48411
48412         * lib/readline.c: Remove EOL.
48413
48414 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
48415
48416         * modules/gethrxtime (Depends-on): Add gettime.
48417
48418 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
48419
48420         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
48421         or gettimeofday; no longer needed.
48422
48423 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
48424
48425         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
48426         time business.
48427         (gethrxtime) [! (HAVE_NANOUPTIME
48428         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
48429         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
48430         our own approximation.
48431
48432 2005-11-08  Eric Blake  <ebb9@byu.net>
48433
48434         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
48435
48436 2005-11-08  Eric Blake  <ebb9@byu.net>
48437
48438         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
48439
48440 2005-11-04  Bruno Haible  <bruno@clisp.org>
48441
48442         * gnulib-tool: Implement --update mode.
48443
48444 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
48445
48446         Fix porting problem reported by Theodoros V. Kalamatianos.
48447         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
48448         Don't assume that futimes failing means we must fail.
48449
48450 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
48451
48452         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
48453         variables to suggest the intended function of the PATH_MAX check.
48454
48455 2005-10-30  Kean Johnston  <jkj@sco.com>
48456
48457         Trivial changes to support SCO systems.
48458         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
48459         as PATH_MAX.
48460         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
48461         where __ptr is null when no I/O is pending.
48462
48463 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
48464
48465         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
48466         leave errno alone.  Problem reported by Dmitry V. Levin.
48467
48468 2005-10-28  Simon Josefsson  <jas@extundo.com>
48469
48470         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
48471         Test more.
48472
48473         * tests/test-gc-md2.c, tests/test-md2.c: New files.
48474
48475         * modules/md2, modules/md2-tests: New files.
48476
48477 2005-10-28  Simon Josefsson  <jas@extundo.com>
48478
48479         * m4/inet_ntop.m4: More tests.
48480
48481         * m4/gc-md2.m4, md2.m4: New file.
48482
48483 2005-10-28  Simon Josefsson  <jas@extundo.com>
48484
48485         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
48486         "restrict" keywords, as per POSIX.  Protect the function
48487         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
48488         Don't use K&R prototypes.  Check the sprintf return values.
48489         Re-define EAFNOSUPPORT if not present.  Indent.
48490
48491         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
48492         suggested by Bruno Haible <bruno@clisp.org>.
48493
48494         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
48495
48496         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
48497
48498         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
48499         libgcrypt).
48500
48501         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
48502
48503         * lib/md2.h, lib/md2.c: New files.
48504
48505 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
48506
48507         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
48508         errno alone.  Problem reported by Frederic Jolliton.
48509
48510 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
48511
48512         * modules/verify (License): Change from GPL to LGPL.  This is a
48513         tiny module and there are apparently near-equivalents that are
48514         under the BSD license.
48515
48516 2005-10-24  Simon Josefsson  <jas@extundo.com>
48517
48518         * modules/sha1: Relicense to LGPL.
48519
48520 2005-10-24  Simon Josefsson  <jas@extundo.com>
48521
48522         * lib/md4.h: Shrink buffer size, now that we changed the type.
48523
48524 2005-10-23  Simon Josefsson  <jas@extundo.com>
48525
48526         * gnulib-tool (func_import): Fix --tests-base.
48527
48528 2005-10-22  Simon Josefsson  <jas@extundo.com>
48529
48530         * modules/arcfour (Depends-on): Need stdint.
48531
48532 2005-10-22  Simon Josefsson  <jas@extundo.com>
48533
48534         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
48535         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
48536
48537 2005-10-22  Simon Josefsson  <jas@extundo.com>
48538
48539         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
48540         suggested by Bruno Haible <bruno@clisp.org>.
48541
48542 2005-10-22  Simon Josefsson  <jas@extundo.com>
48543
48544         * lib/crc.h: Include stddef.h, for size_t.
48545
48546 2005-10-22  Simon Josefsson  <jas@extundo.com>
48547
48548         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
48549         arcfour_context struct (simplify test vector testing in GNU
48550         Shishi).
48551
48552 2005-10-21  Simon Josefsson  <jas@extundo.com>
48553
48554         * modules/des, modules/des-tests: New files.
48555
48556         * modules/gc-des, modules/gc-des-tests: New files.
48557
48558         * tests/test-des.c, tests/test-gc-des.c: New file.
48559
48560 2005-10-21  Simon Josefsson  <jas@extundo.com>
48561
48562         * modules/arctwo, modules/arctwo-tests: New files.
48563
48564         * tests/test-arctwo.c: New file.
48565
48566         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
48567
48568         * tests/test-gc-arctwo.c: New file.
48569
48570 2005-10-21  Simon Josefsson  <jas@extundo.com>
48571
48572         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
48573         Bruno Haible <bruno@clisp.org>.
48574
48575         * m4/gc-des.m4: New file.
48576
48577 2005-10-21  Simon Josefsson  <jas@extundo.com>
48578
48579         * m4/arctwo.m4: New file.
48580
48581         * m4/gc-arctwo.m4: New file.
48582
48583 2005-10-21  Simon Josefsson  <jas@extundo.com>
48584
48585         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
48586         block.
48587
48588 2005-10-21  Simon Josefsson  <jas@extundo.com>
48589
48590         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
48591         <bruno@clisp.org>.
48592
48593         * lib/hmac-sha1.c (hmac_sha1): Likewise.
48594
48595         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
48596         Bruno Haible <bruno@clisp.org>.
48597
48598         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
48599         <bruno@clisp.org>.
48600
48601 2005-10-21  Simon Josefsson  <jas@extundo.com>
48602
48603         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
48604
48605 2005-10-21  Simon Josefsson  <jas@extundo.com>
48606
48607         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
48608
48609 2005-10-21  Simon Josefsson  <jas@extundo.com>
48610
48611         * lib/des.h, lib/des.c: New files.
48612
48613         * lib/gc-gnulib.c: Support DES.c
48614
48615 2005-10-21  Simon Josefsson  <jas@extundo.com>
48616
48617         * lib/arctwo.h, lib/arctwo.c: New files.
48618
48619         * lib/gc-gnulib.c: Support ARCTWO.
48620
48621 2005-10-21  Simon Josefsson  <jas@extundo.com>
48622
48623         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
48624         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
48625
48626 2005-10-21  Simon Josefsson  <jas@extundo.com>
48627
48628         * gnulib-tool (func_import, func_create_testdir): Define automake
48629         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
48630         Makefile.am snippet),
48631         suggested by Bruno Haible <bruno@clisp.org>.
48632
48633         * modules/gc (Makefile.am): Use it.
48634
48635 2005-10-21  Bruno Haible  <bruno@clisp.org>
48636
48637         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
48638         patch.
48639
48640 2005-10-19  Simon Josefsson  <jas@extundo.com>
48641
48642         * tests/test-gc-rijndael.c: New file.
48643
48644         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
48645
48646 2005-10-19  Simon Josefsson  <jas@extundo.com>
48647
48648         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
48649         interface too.
48650
48651 2005-10-19  Simon Josefsson  <jas@extundo.com>
48652
48653         * tests/test-gc-arcfour.c: New file.
48654
48655         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
48656
48657 2005-10-19  Simon Josefsson  <jas@extundo.com>
48658
48659         * modules/gc-md4, modules/gc-md4-tests: New file.
48660
48661         * tests/test-gc-md4.c: New file.
48662
48663 2005-10-19  Simon Josefsson  <jas@extundo.com>
48664
48665         * m4/gc-md4.m4: New file.
48666
48667 2005-10-19  Simon Josefsson  <jas@extundo.com>
48668
48669         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
48670         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
48671         <kasal@ucw.cz>.
48672
48673 2005-10-19  Simon Josefsson  <jas@extundo.com>
48674
48675         * m4/gc-arcfour.m4: New file.
48676
48677         * m4/gc-rijndael.m4: New file.
48678
48679 2005-10-19  Simon Josefsson  <jas@extundo.com>
48680
48681         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
48682
48683 2005-10-19  Simon Josefsson  <jas@extundo.com>
48684
48685         * lib/gc-gnulib.c: Support ARCFOUR.
48686
48687 2005-10-19  Simon Josefsson  <jas@extundo.com>
48688
48689         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
48690         support.
48691
48692         * lib/gc.h: Add ECB enum type.
48693
48694         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
48695
48696 2005-10-18  Simon Josefsson  <jas@extundo.com>
48697
48698         * tests/test-md5.c: New file.
48699
48700         * modules/md5-tests: New file.
48701
48702 2005-10-18  Simon Josefsson  <jas@extundo.com>
48703
48704         * tests/test-md4.c: New file.
48705
48706         * modules/md4, modules/md4-tests: New files.
48707
48708 2005-10-18  Simon Josefsson  <jas@extundo.com>
48709
48710         * m4/md4.m4: New file.
48711
48712 2005-10-18  Simon Josefsson  <jas@extundo.com>
48713
48714         * lib/md4.h, lib/md4.c: New files, based on md5.?.
48715
48716 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
48717
48718         * gnulib-tool (func_create_testdir): Omit the second check whether
48719         BUILT_SOURCES in nonempty.
48720
48721 2005-10-17  Simon Josefsson  <jas@extundo.com>
48722
48723         * tests/test-rijndael.c: New file.
48724
48725 2005-10-17  Simon Josefsson  <jas@extundo.com>
48726
48727         * modules/sha1: Depend on stdint instead of md5.
48728
48729         * modules/md5: Depend on stdint, remove uint32_t.
48730
48731 2005-10-17  Simon Josefsson  <jas@extundo.com>
48732
48733         * modules/gc-sha1-tests: New file.
48734
48735         * tests/test-gc-sha1.c: New file.
48736
48737 2005-10-17  Simon Josefsson  <jas@extundo.com>
48738
48739         * m4/md5.m4: Remove call to uint32_t.m4.
48740
48741 2005-10-17  Simon Josefsson  <jas@extundo.com>
48742
48743         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
48744
48745         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
48746         md5.h.
48747
48748         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
48749
48750         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
48751
48752 2005-10-17  Simon Josefsson  <jas@extundo.com>
48753
48754         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
48755
48756 2005-10-17  Simon Josefsson  <jas@extundo.com>
48757
48758         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
48759
48760 2005-10-17  Simon Josefsson  <jas@extundo.com>
48761
48762         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
48763
48764         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
48765
48766 2005-10-17  Bruno Haible  <bruno@clisp.org>
48767
48768         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
48769         that it can also be used in a test.
48770
48771 2005-10-16  Bruno Haible  <bruno@clisp.org>
48772
48773         * gnulib-tool (func_emit_tests_Makefile_am): Also define
48774         TESTS_ENVIRONMENT, so that individual tests can augment it.
48775
48776         * gnulib-tool (func_create_testdir): Use an intermediate target for
48777         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
48778         macros, like $(ALLOCA_H), which cannot be passed through the command
48779         line.
48780
48781 2005-10-15  Simon Josefsson  <jas@extundo.com>
48782
48783         * modules/rijndael-tests: New file.
48784
48785         * modules/rijndael: New file.
48786
48787 2005-10-15  Simon Josefsson  <jas@extundo.com>
48788
48789         * m4/rijndael.m4: New file.
48790
48791 2005-10-15  Simon Josefsson  <jas@extundo.com>
48792
48793         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
48794
48795         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
48796
48797 2005-10-14  Simon Josefsson  <jas@extundo.com>
48798
48799         * tests/test-arcfour.c: New file.
48800
48801         * modules/arcfour, modules/arcfour-tests: New files.
48802
48803 2005-10-14  Simon Josefsson  <jas@extundo.com>
48804
48805         * m4/arcfour.m4: New file.
48806
48807 2005-10-14  Simon Josefsson  <jas@extundo.com>
48808
48809         * lib/arcfour.h, lib/arcfour.c: New files.
48810
48811 2005-10-14  Roland McGrath  <roland@redhat.com>
48812
48813         Import from libc.  [BZ #1331]
48814         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
48815         macro argument.
48816         Reported by Matej Vela <vela@debian.org>.
48817
48818 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
48819
48820         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
48821         include <wchar.h>; no longer needed.
48822
48823 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
48824
48825         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
48826
48827 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
48828         and  Ulrich Drepper  <drepper@redhat.com>
48829
48830         Import from libc.
48831         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
48832         instead of inline stream orientation test and two separate
48833         function calls.  Pay no attention to USE_IN_LIBIO.
48834
48835 2005-10-13  Simon Josefsson  <jas@extundo.com>
48836
48837         * modules/gc-hmac-md5-tests: New file.
48838
48839         * tests/test-gc-hmac-sha1.c: New file.
48840
48841         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
48842
48843         * modules/gc-hmac-md5-tests: New file.
48844
48845         * tests/test-gc-md5.c: New file.
48846
48847         * modules/gc-md5-tests: New file.
48848
48849 2005-10-13  Simon Josefsson  <jas@extundo.com>
48850
48851         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
48852         Move memory allocation outside of loop.
48853
48854 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
48855
48856         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
48857         intermediate directory is in a read-only file system.  Problem
48858         reported by Eric Blake.
48859
48860 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
48861
48862         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
48863
48864 2005-10-12  Simon Josefsson  <jas@extundo.com>
48865
48866         * tests/test-hmac-sha1.c: New file.
48867
48868         * modules/hmac-sha1-tests: New file.
48869
48870         * modules/hmac-sha1: New file.
48871
48872 2005-10-12  Simon Josefsson  <jas@extundo.com>
48873
48874         * modules/gc-sha1: New file.
48875
48876 2005-10-12  Simon Josefsson  <jas@extundo.com>
48877
48878         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
48879
48880         * tests/test-gc-pbkdf2-sha1.c: New file.
48881
48882 2005-10-12  Simon Josefsson  <jas@extundo.com>
48883
48884         * modules/gc-md5, modules/gc-hmac-md5: New files.
48885
48886         * modules/gc (Files): Remove md5, memxor and hmac files.
48887
48888 2005-10-12  Simon Josefsson  <jas@extundo.com>
48889
48890         * m4/gc-pbkdf2-sha1.m4: New file.
48891
48892         * m4/gc-hmac-sha1.m4: New file.
48893
48894         * m4/gc-sha1: New file.
48895
48896         * m4/hmac-sha1.m4: New file.
48897
48898 2005-10-12  Simon Josefsson  <jas@extundo.com>
48899
48900         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
48901
48902         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
48903
48904 2005-10-12  Simon Josefsson  <jas@extundo.com>
48905
48906         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
48907         suggested by Bruno Haible <bruno@clisp.org>.
48908
48909 2005-10-12  Simon Josefsson  <jas@extundo.com>
48910
48911         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
48912
48913 2005-10-12  Simon Josefsson  <jas@extundo.com>
48914
48915         * lib/gc-pbkdf2-sha1.c: New file.
48916
48917         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
48918
48919 2005-10-12  Simon Josefsson  <jas@extundo.com>
48920
48921         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
48922
48923         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
48924
48925 2005-10-12  Simon Josefsson  <jas@extundo.com>
48926
48927         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
48928         GC_USE_HMAC_MD5, respectively.
48929
48930         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
48931         (gc_md5): Fix typo.
48932
48933         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
48934
48935         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
48936
48937         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
48938
48939 2005-10-12  Bruno Haible  <bruno@clisp.org>
48940
48941         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
48942         Reported by Stepan Kasal <kasal@ucw.cz>.
48943
48944 2005-10-11  Simon Josefsson  <jas@extundo.com>
48945
48946         * tests/test-crc.c: New file.
48947
48948         * modules/crc, modules/crc-tests: New files.
48949
48950 2005-10-11  Simon Josefsson  <jas@extundo.com>
48951
48952         * m4/crc.m4: New file.
48953
48954 2005-10-11  Simon Josefsson  <jas@extundo.com>
48955
48956         * lib/gc.h: Add gc_hash and gc_hash_buffer.
48957
48958         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
48959
48960         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
48961
48962 2005-10-11  Simon Josefsson  <jas@extundo.com>
48963
48964         * lib/crc.h, lib/crc.c: New files.
48965
48966         * lib/gc.h (gc_hash_buffer): Add doc.
48967
48968 2005-10-11  Bruno Haible  <bruno@clisp.org>
48969
48970         * modules/c-strcasestr: New file.
48971         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
48972
48973 2005-10-11  Bruno Haible  <bruno@clisp.org>
48974
48975         * modules/c-strcase: New file.
48976         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
48977
48978 2005-10-11  Bruno Haible  <bruno@clisp.org>
48979
48980         * lib/strcasecmp.c: Include limits.h.
48981         (strcasecmp): Avoid integer overflow on exotic platforms.
48982         * lib/strncasecmp.c: Include limits.h.
48983         (strncasecmp): Avoid integer overflow on exotic platforms.
48984         Reported by Paul Eggert.
48985
48986 2005-10-11  Bruno Haible  <bruno@clisp.org>
48987
48988         * lib/c-strcasestr.h: New file, from GNU gettext.
48989         * lib/c-strcasestr.c: New file, from GNU gettext.
48990
48991 2005-10-11  Bruno Haible  <bruno@clisp.org>
48992
48993         * lib/c-strcase.h: New file, from GNU gettext.
48994         * lib/c-strcasecmp.c: New file, from GNU gettext.
48995         * lib/c-strncasecmp.c: New file, from GNU gettext.
48996
48997 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
48998
48999         * modules/mempcpy (License): GPL -> LGPL.
49000         * modules/strchrnul (License): Likewise.
49001         * modules/sysexits (License): Likewise.
49002
49003 2005-10-08  Simon Josefsson  <jas@extundo.com>
49004
49005         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
49006
49007 2005-10-07  Simon Josefsson  <jas@extundo.com>
49008
49009         * m4/memxor.m4: Remove gl_C_RESTRICT call.
49010
49011 2005-10-06  Simon Josefsson  <jas@extundo.com>
49012
49013         * tests/test-hmac-md5.c: New file.
49014
49015         * modules/hmac-md5-tests: New file.
49016
49017         * modules/hmac-md5: New file.
49018
49019 2005-10-06  Simon Josefsson  <jas@extundo.com>
49020
49021         * m4/hmac-md5.m4: New file.
49022
49023         * m4/memxor.m4: Require gl_C_RESTRICT.
49024
49025 2005-10-06  Simon Josefsson  <jas@extundo.com>
49026
49027         * lib/memxor.c (memxor): Avoid casts and warnings.
49028
49029 2005-10-06  Simon Josefsson  <jas@extundo.com>
49030
49031         * lib/hmac-md5.c: New file.
49032
49033         * lib/hmac.h: New file.
49034
49035 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
49036
49037         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
49038         promotes to int, not unsigned int, to catch the AIX 5.3
49039         compiler bug.
49040
49041 2005-10-05  Simon Josefsson  <jas@extundo.com>
49042
49043         * modules/memxor: New file.
49044
49045         * modules/iconv (Files): Move config.rpath to havelib, it is used
49046         there.
49047
49048         * modules/havelib (Files): Add config.rpath.
49049
49050 2005-10-05  Simon Josefsson  <jas@extundo.com>
49051
49052         * m4/memxor.m4: New file.
49053
49054 2005-10-05  Simon Josefsson  <jas@extundo.com>
49055
49056         * lib/memxor.c (memxor): Fix compiler error.
49057
49058         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
49059         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
49060
49061         * lib/memxor.h, lib/memxor.c: New files.
49062
49063         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
49064         we assume all systems have it, suggested by Jim Meyering
49065         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
49066         any systems lack sys/socket.h; mingw32 is known to lack it, but we
49067         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
49068         same reasons.
49069
49070 2005-10-05  Simon Josefsson  <jas@extundo.com>
49071
49072         * config/srclist.txt: Add glibc bug 1423 for md5.h.
49073
49074 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
49075
49076         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
49077         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
49078         needed, since the source code now assumes these .h files.
49079
49080 2005-10-05  Derek Price  <derek@ximbiot.com>
49081
49082         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
49083
49084 2005-10-05  Bruno Haible  <bruno@clisp.org>
49085
49086         * modules/stdint (License): Change to LGPL.
49087
49088 2005-10-04  Simon Josefsson  <jas@extundo.com>
49089
49090         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
49091         D. Baushke" <mdb@gnu.org>.
49092
49093 2005-10-04  Bruno Haible  <bruno@clisp.org>
49094
49095         * lib/verify.h (verify_true): Provide alternative definition for C++.
49096
49097 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
49098
49099         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
49100         (SSIZE_MAX): New macro, if not already defined.
49101         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
49102         than 2 GiB.
49103
49104 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49105
49106         Sync from coreutils.
49107         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
49108         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
49109         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
49110         ULLONG_MAX doesn't work with 2.7.2.1.
49111
49112 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49113
49114         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
49115         From Ben Pfaff.
49116
49117         * modules/exclude (Depends-on): Depend on verify.
49118         * modules/strtoimax (Depends-on): Likewise.
49119         * modules/utimecmp (Depends-on): Likewise.
49120
49121 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49122
49123         * lib/exclude.c: Include verify.h.
49124         (verify): Remove.  All callers changed to use verify.h's version.
49125         * lib/strtoimax.c: Likewise.
49126         * lib/utimecmp.c: Likewis.e
49127
49128         Sync from coreutils.
49129         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
49130         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
49131         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
49132         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
49133         bother returning ENOSYS if settimeofday or stime fails; just let
49134         them return whatever errno they want to return.
49135         * lib/utimens.c: Include unistd.h, for dup2.
49136         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
49137         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
49138
49139 2005-10-02  Jim Meyering  <jim@meyering.net>
49140
49141         Sync from coreutils.
49142         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
49143         from glibc-2.2.5 that fails for read-only files.
49144
49145 2005-10-02  Jim Meyering  <jim@meyering.net>
49146
49147         Sync from coreutils.
49148         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
49149         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
49150         `#if HAVE_CONFIG_H'.
49151         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
49152         Remove AT_FDCWD test.
49153         Do not consume the fd unless successful.
49154         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
49155         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
49156         block, so that we don't even try to compile it if settimeofday is
49157         available.  This works around a compilation failure on OSF1 V5.1,
49158         due to stime requiring a `long int*' while tv_sec is `int'.
49159
49160 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
49161
49162         Sync from coreutils.
49163         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
49164         against `yes', rather than just testing for nonempty.
49165
49166 2005-10-01  Simon Josefsson  <jas@extundo.com>
49167
49168         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
49169         and Darwin.
49170
49171         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
49172         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
49173         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
49174         freeaddrinfo and gai_strerror are declared by the POSIX headers.
49175         Check if struct addrinfo is declared.
49176
49177 2005-10-01  Simon Josefsson  <jas@extundo.com>
49178
49179         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
49180         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
49181         AI_* and EAI_* definitions.  Protect function declarations.
49182
49183 2005-10-01  Jim Meyering  <jim@meyering.net>
49184
49185         Sync from coreutils.
49186
49187         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
49188         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
49189         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
49190         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
49191         in the inet and nsl libraries.  Required on Solaris 5.7.
49192
49193 2005-10-01  Jim Meyering  <jim@meyering.net>
49194
49195         Sync from coreutils.
49196         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
49197         in the inet and nsl libraries.  Required on Solaris 5.7.
49198
49199 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
49200
49201         * lib/getdelim.c (getdelim): Remove unused variables.
49202
49203 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
49204
49205         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
49206         so that the code works even with ancient cpp.  Portability problem
49207         with GCC 2.7.2.1 reported by Thomas M.Ott.
49208
49209 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
49210
49211         * modules/regex (Depends-on): Add strcase.
49212
49213         * modules/gethostname (Licence): Change from GPL to LGPL, since
49214         gethostname.c is a trivial implementation of a standard library
49215         function.
49216         * modules/poll (License): Change from GPL to LGPL, since it's
49217         derived from LGPL code.
49218
49219 2005-09-27  Jim Meyering  <jim@meyering.net>
49220
49221         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
49222         HAVE_CONFIG_H.
49223
49224         * lib/intprops.h (signed_type_or_expr__): Define.
49225         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
49226         for unsigned types.
49227
49228 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
49229
49230         * lib/verify.h (verify_expr): Remove, replacing with:
49231         (verify_true): New macro that returns true instead of void.
49232         (verify_type__): Remove.
49233         (verify): Use verify_true rather than verify_type__.
49234
49235 2005-09-26  Bruno Haible  <bruno@clisp.org>
49236
49237         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
49238         is necessary.
49239         (lib_SOURCES): Remove mbchar.c.
49240         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
49241         (Files): Add m4/mbrtowc.m4.
49242         * modules/mbiter: Likewise.
49243         * modules/mbuiter: Likewise.
49244
49245 2005-09-26  Bruno Haible  <bruno@clisp.org>
49246
49247         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
49248         compile mbchar.c if they are not both present.
49249         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
49250         * m4/mbiter.m4 (gl_MBITER): Likewise.
49251         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
49252         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
49253         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
49254
49255 2005-09-25  Jim Meyering  <jim@meyering.net>
49256
49257         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
49258         also uses socklen_t.
49259
49260 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
49261
49262         * lib/utimens.c (ENOSYS): Define if not already defined.
49263         (futimens): Support having a null PATH if the file descriptor
49264         is nonnegative.
49265
49266         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
49267         Remove.
49268         (__attribute): Define to empty unless GCC 3.1 or later.
49269         This works around a core dump on OpenBSD 3.4, which has GCC
49270         2.95.3, which dumps core when given __attribute__(()).  It also
49271         simplifies other tests, since we really don't want to bother with
49272         worrying about which ancient version of GCC supported what.
49273         Original problem reported by Yoann Vandoorselaere, with part of
49274         the fix suggested by Derek Price.
49275
49276 2005-09-24  Jim Meyering  <jim@meyering.net>
49277
49278         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
49279         so we can once again use a positive bitfield width of 1 -- now we
49280         don't have to explain why we were using a bitfield width of 2.
49281
49282 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
49283
49284         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
49285         and similarly for the other external symbols.  Problem reported
49286         by James Gallager.
49287
49288         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
49289         bug reported by Jim Meyering.
49290
49291         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
49292         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
49293         not needed, since socklen is a prerequisite module.
49294
49295 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
49296
49297         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
49298         Problem reported by Eric Blake.
49299         (getaddrinfo): Initialize se so that it's not garbage.
49300         Redo internal storage allocation so that it doesn't make unportable
49301         assumptions about alignment.
49302         Fix a memory leak.
49303
49304         * lib/utimens.c (futimens): Use futimesat if available.
49305         Prefer it to futimes since it doesn't have the futimes bug.
49306
49307         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
49308         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
49309         Instead, declare a function that returns a pointer to an array,
49310         and use verify_type__ to declare the size of the array.
49311         Problem and germ of a solution reported by Bruno Haible.
49312         (verify_type__): Use 2, not 1, for bitfield size, to avoid
49313         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
49314
49315 2005-09-23  Jim Meyering  <jim@meyering.net>
49316
49317         Sync from coreutils.
49318         Correct build failure (socklen_t not defined) on at least
49319         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
49320         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
49321
49322 2005-09-23  Jim Meyering  <jim@meyering.net>
49323
49324         * modules/getaddrinfo (Depends-on): Add socklen.
49325
49326 2005-09-23  Bruno Haible  <bruno@clisp.org>
49327
49328         * tests/test-verify.c: New file.
49329
49330 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49331
49332         Sync from coreutils.
49333
49334         * modules/argmatch (Depends-on): Add verify.
49335         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
49336         unistd-safer.
49337         * modules/save-cwd (Depends-on): Likewise.
49338
49339         * modules/openat (Files): Add lib/openat-die.c.
49340         (Depends-on): Remove error, exitfail.
49341         Add dirname.
49342
49343         * modules/verify: New file.
49344         * MODULES.html.sh (Diagnostics <assert.h>): New section,
49345         with "verify" module.
49346
49347 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49348
49349         Sync from coreutils.
49350
49351         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
49352         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
49353         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
49354         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
49355         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
49356         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
49357         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
49358         Don't bother checking for string.h, stdlib.h, unistd.h.
49359         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
49360         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
49361         module's job.
49362         * m4/jm-macros.m4 (gl_MACROS): Likewise.
49363         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
49364
49365         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
49366         (gl_GETDATE): Use it.
49367
49368         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
49369
49370 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49371
49372         Sync from coreutils.
49373
49374         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
49375         stat-time.h.
49376         * lib/argmatch.h: Include verify.h
49377         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
49378         (ARGMATCH_ASSERT): Remove; unused.
49379         * lib/canonicalize.c: Assume STDC_HEADERS.
49380         * lib/exclude.c: Include "strcase.h".
49381         * lib/regex_internal.h [!defined _LIBC]: Likewise.
49382         * lib/getusershell.c: Include stdio--.h rather than stdio.h
49383         and stdio-safer.h.
49384         (getusershell): Call fopen, not fopen_safer.
49385         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
49386         Do not include unistd-safer.h.
49387         (save_cwd): Don't call fd_safer; no longer needed
49388         now that we include fcntl--.h.
49389
49390         * lib/getdate.y (relative_time): New type.
49391         (RELATIVE_TIME_0): New constant.
49392         (parser_control): Use relative_time instead of doing it ourselves.
49393         (%union): Add new relative_time rel member.
49394         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
49395         Now typeless.
49396         (relunit, relunit_snumber): Now of type rel.
49397         (zone, rel, relunit, get_date): Adjust to above changes.
49398
49399         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
49400         Do not include unistd-safer.h.
49401         (getloadavg): Don't call fd_safer; no longer needed
49402         now that we include fcntl--.h.
49403
49404         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
49405         (make_dir_parents): Treat ENOSYS like EEXIST.
49406
49407         Improve quality of diagnostics on restore_cwd failure.
49408         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
49409         (make_dir_parents): Last arg is now int * (for errno), not bool *.
49410         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
49411         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
49412         each time through the loop.  Do not diagnose restore_cwd failure;
49413         that is the caller's job (and perhaps the caller does not care).
49414
49415         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
49416         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
49417         If the file already exists but is not a directory, don't bother
49418         to try to make its parents.
49419         Close potential file descriptor leak if we can't chdir("/") (!).
49420         Don't always return true if chdir($PWD) fails; return true only
49421         if the requested action was done successfully (except for the
49422         chdir($PWD)).
49423         Don't log final directory unless we actually made it.
49424         Refactor to avoid duplicate code to fix up permissions.
49425         Don't attempt to fix up parent permissions if chdir($PWD) fails.
49426
49427         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
49428         to make it a bit faster and (I hope) clearer.
49429         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
49430         Fix bug in formats like %2N.
49431
49432         * lib/verify.h: New file.
49433
49434 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49435
49436         Sync from coreutils.
49437         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
49438
49439 2005-09-22  Jim Meyering  <jim@meyering.net>
49440
49441         Sync from coreutils.
49442
49443         * m4/lstat.m4 (gl_FUNC_LSTAT):
49444         Use AC_LIBSOURCES to require lstat.c and lstat.h.
49445         Remove obsolete comment.
49446         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
49447         * m4/xstrtod.m4: Likewise.
49448
49449         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
49450
49451 2005-09-22  Jim Meyering  <jim@meyering.net>
49452
49453         Sync from coreutils.
49454
49455         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
49456
49457         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
49458         the .tm_year member, since otherwise gcc-4.0 would now warn about
49459         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
49460
49461         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
49462         order to avoid an unsuppressible warning from gcc on 64-bit systems.
49463
49464         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
49465         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
49466         when run in a time zone for which daylight savings time is in effect
49467         for the starting date.
49468
49469         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
49470         stop us from restricting permissions of just-created absolute-named
49471         directories.
49472         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
49473         to restore initial working directory.
49474         * lib/mkdir-p.c (make_dir_parents): New parameter:
49475         different_working_dir, to tell caller if/when we change the working
49476         directory and are unable to return to the initial one.
49477         * lib/mkdir-p.h (make_dir_parents): Update prototype.
49478         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
49479         `return false'.  This fixes a bug introduced on 2004-07-30.
49480
49481         * lib/openat.c (fdopendir): Be sure to close the supplied
49482         file descriptor before returning.  This makes our replacement
49483         implementation a little closer to Solaris's, where fdopendir
49484         ties the file descriptor to the returned DIR* pointer.
49485         * lib/openat.c (unlinkat): New function.
49486         * lib/openat.h (unlinkat): Add prototype.
49487         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
49488         (openat_restore_fail): Rename from openat_restore_die.
49489         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
49490
49491         Provide an alternative to exiting immediately upon save_cwd or
49492         restore_cwd failure.  Now, an application can arrange e.g.,
49493         to perform a longjump in that case.
49494         * lib/openat.c: Include dirname.h.
49495         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
49496         (rpl_openat, fdopendir, fstatat): Call openat_save_die
49497         and openat_restore_die rather than calling error directly.
49498         Don't include "error.h" or "exitfail.h"; they're no longer needed.
49499
49500         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
49501         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
49502         define.
49503
49504         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
49505         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
49506                             int utc, int nanoseconds);
49507         Background:
49508         date should not have to allocate a megabyte of virtual memory to
49509         handle a format argument like +%1048575T.  When implemented with
49510         strftime, it must allocate such a buffer, use strftime to fill it
49511         in, print it, then free it.
49512         With fprintftime, it simply prints everything and exits.
49513         With no need for memory allocation, that's one fewer way to fail.
49514         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
49515         optional field width, not before, so we accept %9:z, not %:9z.
49516         (my_strftime): Be sure to use L_('x') for literals.
49517
49518         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
49519         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
49520         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
49521         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
49522         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
49523         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
49524         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
49525         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
49526         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
49527         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
49528         * lib/xgethostname.c, lib/xreadlink.c:
49529         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
49530
49531         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
49532         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
49533         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
49534         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
49535         and don't include <sys/file.h>).
49536
49537 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
49538
49539         Sync from coreutils.
49540
49541         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
49542         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
49543         [!LDAV_DONE]: Avoid unused variable warning.
49544
49545 2005-09-21  Bruno Haible  <bruno@clisp.org>
49546
49547         * lib/unicodeio.h (unicode_to_mb): New declaration.
49548
49549 2005-09-20  Derek Price  <derek@ximbiot.com>
49550
49551         * lib/getaddrinfo.c: Don't include <netdb.h> included from
49552         getaddrinfo.h.
49553
49554 2005-09-20  Bruno Haible  <bruno@clisp.org>
49555
49556         * gnulib-tool: Remove trailing slashes from the values specified for
49557         --source-base, --m4-base, --tests-base, --aux-dir.
49558         Suggested by Simon Josefsson <jas@extundo.com>.
49559
49560 2005-09-20  Bruno Haible  <bruno@clisp.org>
49561
49562         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
49563         func_modules_to_filelist, func_import, func_create_testdir): Make all
49564         sorting results locale-independent, so that gnulib-cache.m4 doesn't
49565         change when gnulib-tool is invoked in a different locale.
49566
49567 2005-09-19  Simon Josefsson  <jas@extundo.com>
49568
49569         * m4/socklen.m4: Fix typo.
49570
49571 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
49572
49573         Use a consistent style for including <config.h>.
49574         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
49575         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
49576         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
49577         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
49578         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
49579         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
49580         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
49581         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
49582         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
49583         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
49584         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
49585         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
49586         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
49587         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
49588         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
49589         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
49590         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
49591         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
49592         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
49593         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
49594         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
49595         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
49596         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
49597         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
49598         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
49599         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
49600         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
49601         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
49602         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
49603         lib/xstrtoumax.c, lib/yesno.c:
49604         Standardize inclusion of config.h.
49605         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
49606         lib/inttostr.h:  Removed inclusion of config.h from header files.
49607         * lib/inttostr.c:  Adjusted in-tree users.
49608         * lib/timespec.h: Remove superfluous warning to include config.h.
49609         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
49610         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
49611         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
49612         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
49613         config.h with HAVE_CONFIG_H.
49614
49615 2005-09-19  Jim Meyering  <jim@meyering.net>
49616
49617         * modules/pathmax (License): Change to LGPL.
49618
49619 2005-09-19  Derek Price  <derek@ximbiot.com>
49620
49621         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
49622
49623 2005-09-19  Bruno Haible  <bruno@clisp.org>
49624
49625         * gnulib-tool (import): Provide default for --tests-base.
49626
49627 2005-09-19  Bruno Haible  <bruno@clisp.org>
49628
49629         * doc/quote.texi: New file, extracted from gnulib.texi.
49630         * doc/ctime.texi: New file, extracted from gnulib.texi.
49631         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
49632         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
49633         * doc/gnulib.texi: Include them.
49634
49635 2005-09-18  Bruno Haible  <bruno@clisp.org>
49636
49637         Portability fix.
49638         * gnulib-tool (func_readlink): New function.
49639         (func_ln_if_changed): Use it.
49640
49641 2005-09-18  Bruno Haible  <bruno@clisp.org>
49642
49643         * gnulib-tool: Support --with-tests also with --import.
49644         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
49645         (func_import): Use variables $testsbase and $inctests. Emit a
49646         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
49647         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
49648         SUBDIRS += $testsdir.
49649         (func_create_testdir): Update.
49650
49651 2005-09-18  Bruno Haible  <bruno@clisp.org>
49652
49653         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
49654         instead of $dry_run.
49655         (func_cp_if_changed, func_mv_if_changed): Remove functions.
49656         (func_ln_if_changed): Don't handle dry-run here.
49657         (func_import): In dry-run mode, detect more precisely which actions
49658         would be performed, and don't use "...ing" verbs.
49659
49660 2005-09-18  Bruno Haible  <bruno@clisp.org>
49661
49662         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
49663         (func_import): Use join on two temporary files instead of three nested
49664         loops, in order to determine which files are new or old.
49665
49666 2005-09-18  Bruno Haible  <bruno@clisp.org>
49667
49668         * gnulib-tool (func_import): Comment out code that spits out the
49669         new files with --dry-run.
49670
49671 2005-09-18  Bruno Haible  <bruno@clisp.org>
49672
49673         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
49674
49675 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
49676
49677         * lib/stat-time.h: New file.
49678         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
49679         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
49680         in a different way.
49681         (timespec_cmp): New function.
49682         * lib/utimecmp.c: Include stat-time.h.
49683         (SYSCALL_RESOLUTION): Depend on whether various struct stat
49684         members exist, not on the obsolescent ST_MTIM_NSEC.
49685         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
49686
49687 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
49688
49689         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
49690
49691 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
49692
49693         * MODULES.html.sh (File system functions): Add stat-time.
49694         * modules/stat-time: New file.
49695         * modules/timespec (Files): Remove m4/st_mtim.m4; this
49696         is now done in a different way, by the stat-time module.
49697         * modules/utimecmp (Depends-on): Add stat-time.
49698
49699 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
49700
49701         * m4/st_mtim.m4: Remove.  Superseded by...
49702         * m4/stat-time.m4: New file.
49703         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
49704         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
49705
49706 2005-09-15  Derek Price  <derek@ximbiot.com>
49707
49708         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
49709
49710 2005-09-15  Derek Price  <derek@ximbiot.com>
49711
49712         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
49713         * lib/regex_internal.c: Ditto, using this...
49714         (__GNUC_PREREQ): ...new macro.
49715         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
49716         using...
49717         (__GNUC_PREREQ): ...this new macro.
49718
49719         * lib/strstr.h: Include string.h. Define strstr as a macro here.
49720
49721 2005-09-15  Derek Price  <derek@ximbiot.com>
49722             Paul Eggert  <eggert@cs.ucla.edu>
49723
49724         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
49725         changes, consolidating in...
49726         * lib/regex_internal.h: ...this file.
49727
49728 2005-09-13  Jim Meyering  <jim@meyering.net>
49729
49730         * lib/canon-host.c: Filter through gnu indent and reword comments
49731         slightly.
49732         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
49733
49734 2005-09-13  Derek Price  <derek@ximbiot.com>
49735
49736         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
49737         failure.
49738         Reported by Jim Meyering  <jim@meyering.net>.
49739
49740 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
49741
49742         * lib/base64.c: Typo.
49743         (base64_encode): Put b64str in initialized data section.
49744
49745 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
49746
49747         Merge glibc and coreutils changes into gnulib, plus a few
49748         extra fixes.
49749         * lib/md5.c: Use #error rather than a string.
49750         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
49751         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
49752         (__attribute__): Define to empty for non recent-GCC.
49753         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
49754         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
49755         Renamed from their non-__ counterparts, with new macros replacing
49756         them if not _LIBC.  Add __THROW attribute.
49757         (rol): Remove.
49758         (struct md5_ctx): Align buffer if using GCC.
49759         * lib/sha1.h (struct sha1_ctx): Likewise.
49760         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
49761         The old name was backwards.
49762         (NOTSWAP): Remove; not used.
49763         (rol): New macro, moved here from md5.h.
49764         (sha1_process_block): Remove a FIXME that doesn't make sense.
49765
49766 2005-09-12  Derek Price  <derek@ximbiot.com>
49767
49768         Return usable errors from canon-host.
49769         * lib/canon-host.h: New file.
49770         * lib/canon-host.c (canon_host): Wrap...
49771         (canon_host_r): ...this new function, which now relies exclusively on
49772         getaddrinfo.
49773         (ch_strerror): New function.
49774         (last_cherror): New global.
49775         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
49776         interface.
49777         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
49778         void *.
49779         (freeaddrinfo): Free ai->ai_canonname when set.
49780
49781 2005-09-12  Derek Price  <derek@ximbiot.com>
49782
49783         Make canon-host require getaddrinfo.
49784         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
49785         AC_LIBSOURCE canon-host.h.  Call...
49786         (gl_PREREQ_CANON_HOST): ...this new function, which requires
49787         gl_GETADDRINFO.
49788         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
49789
49790 2005-09-12  Derek Price  <derek@ximbiot.com>
49791
49792         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
49793         LGPL.
49794         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
49795
49796 2005-09-12  Derek Price  <derek@ximbiot.com>
49797
49798         * lib/gai_strerror.c: Include config.h when available.  Include
49799         getaddrinfo.h before other headers to test interface.
49800         Reported by Larry Jones <lawrence.jones@ugs.com>.
49801
49802 2005-09-12  Derek Price  <derek@ximbiot.com>
49803             Paul Eggert  <eggert@cs.ucla.edu>
49804
49805         * modules/glob (Files): Add glob-libc.h.
49806
49807 2005-09-12  Derek Price  <derek@ximbiot.com>
49808             Paul Eggert  <eggert@cs.ucla.edu>
49809
49810         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
49811         glob_.h, glob-libc.h.
49812         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
49813
49814 2005-09-12  Derek Price  <derek@ximbiot.com>
49815             Paul Eggert  <eggert@cs.ucla.edu>
49816
49817         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
49818         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
49819         protecting things that should be done only in gnulib contexts.
49820         * lib/glob_.h: New file, containing only the glob things needed for
49821         gnulib.
49822         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
49823         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
49824         (glob, globfree, glob_pattern_p): Now defined simply in terms of
49825         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
49826         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
49827         and to respect the namespace rules better.
49828
49829 2005-09-08  Simon Josefsson  <jas@extundo.com>
49830
49831         * modules/socklen: New file.
49832
49833 2005-09-08  Simon Josefsson  <jas@extundo.com>
49834
49835         * m4/socklen.m4: New file.
49836
49837 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
49838
49839         * modules/utimens (Files): Add m4/utimbuf.m4, since
49840         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
49841         Reported by Sergey Poznyakoff.
49842
49843 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
49844
49845         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
49846         definitions, since that's the preferred style in glibc.
49847         Fix a minor spacing issue, and update copyright notice to match
49848         glibc's.
49849
49850 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
49851
49852         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
49853
49854 2005-09-06  Simon Josefsson  <jas@extundo.com>
49855
49856         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
49857         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
49858
49859 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
49860
49861         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
49862         warning.
49863
49864 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
49865
49866         * config/srclist.txt: Add glibc bug 1302.
49867
49868 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
49869
49870         Change bitset word type from unsigned int to unsigned long int,
49871         as this has better performance on typical 64-bit hosts.
49872         Port bitset code to hosts with unusual word sizes.
49873         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
49874         (build_collating_symbol):
49875         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
49876         argument is a bitset.  This is merely a style issue, but it makes
49877         it clearer that an entire array is expected.
49878         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
49879         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
49880         Port to the case where bitset_word is not the same as unsigned int.
49881         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
49882         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
49883         Likewise.
49884         * lib/regexec.c (check_dst_limits_calc_pos_1,
49885         check_subexp_matching_top):
49886         (build_trtable, group_nodes_into_DFAstates):
49887         Likewise.
49888         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
49889         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
49890         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
49891         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
49892         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
49893         * lib/regcomp.c (optimize_subexps, lower_subexp):
49894         Work even if bitset_word has holes in its bitwise representation.
49895         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
49896         * lib/regexec.c (check_dst_limits_calc_pos_1,
49897         check_subexp_matching_top):
49898         Likewise.
49899         * lib/regex_internal.c (re_string_reconstruct):
49900         Don't assume UCHAR_MAX == 255.
49901         * lib/regex_internal.h (bitset_set_all): Likewise.
49902         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
49903         All uses changed.
49904         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
49905         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
49906         All uses changed.
49907         (BITSET_WORD_MAX): New macro.
49908         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
49909         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
49910         (bitset_empty, bitset_copy):
49911         Prefer sizeof (bitset) to multiplying it out ourselves.
49912         (bitset_not_merge): Remove; unused.
49913         (bitset_contain): Return bool, not unsigned int with one bit on.
49914         All callers changed.
49915         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
49916         alignment than re_node_set; do this by defining a new internal
49917         type struct dests_alloc and using it to allocate memory.
49918
49919 2005-09-05  Bruno Haible  <bruno@clisp.org>
49920
49921         * gnulib-tool (func_import): Fix comparison in handling of symbolic
49922         links.
49923
49924 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
49925
49926         * modules/size_max (Makefile.am): Add size_max.h
49927
49928 2005-09-04  Derek Price  <derek@ximbiot.com>
49929
49930         * gnulib-tool (func_import): Fix reversed $symbolic logic.
49931
49932 2005-09-03  Simon Josefsson  <jas@extundo.com>
49933
49934         * gnulib-tool: Fix typo.
49935
49936 2005-09-03  Simon Josefsson  <jas@extundo.com>
49937
49938         * config/srclist.txt: Add glibc bug 1293.
49939
49940 2005-09-03  Derek Price  <derek@ximbiot.com>
49941
49942         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
49943         From Larry Jones <lawrence.jones@ugs.com>.
49944
49945 2005-09-02  Simon Josefsson  <jas@extundo.com>
49946
49947         * modules/socklen: New file.
49948
49949 2005-09-02  Simon Josefsson  <jas@extundo.com>
49950
49951         * modules/havelib: New module.
49952
49953         * modules/gettext, modules/iconv, modules/lock, modules/readline:
49954         Use havelib.
49955
49956 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
49957
49958         Check for arithmetic overflow when calculating sizes, to prevent
49959         some buffer-overflow issues.  These patches are conservative, in the
49960         sense that when I couldn't determine whether an overflow was possible,
49961         I inserted a run-time check.
49962         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
49963         macros.
49964         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
49965         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
49966         (re_xnrealloc, re_x2nrealloc): New inline functions.
49967         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
49968         parse_bracket_exp):
49969         (build_equiv_class, build_charclass): Check for arithmetic overflow
49970         in size expression calculations.
49971         * lib/regex_internal.c (re_string_realloc_buffers):
49972         (build_wcs_upper_buffer, re_node_set_add_intersect):
49973         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
49974         (re_dfa_add_node, register_state): Likewise.
49975         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
49976         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
49977         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
49978         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
49979
49980 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
49981
49982         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
49983         m4/ulonglong.m4.  Problem reported by Martin Lambers.
49984
49985 2005-09-02  Bruno Haible  <bruno@clisp.org>
49986
49987         Support for lib vs. lib64 distinction on biarch platforms.
49988         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
49989         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
49990         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
49991
49992 2005-09-02  Bruno Haible  <bruno@clisp.org>
49993
49994         * gnulib-tool (import): In the other first-use case, provide defaults
49995         as well.
49996
49997 2005-09-02  Bruno Haible  <bruno@clisp.org>
49998
49999         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
50000         patches not yet found in the latest gettext release.
50001
50002 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
50003
50004         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
50005         to avoid a collision with bits/local_lim.h in glibc.
50006         All uses changed.  Problem reported by Dmitry V. Levin in
50007         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
50008
50009         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
50010         bugs in int versus size_t comparisons.
50011         (re_string_context_at): Fix bug where the code assumed that
50012         Idx is signed.
50013
50014         Use bool where appropriate.
50015         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
50016         All callers changed.
50017         (calc_eclosure_iter): Likewise, for ROOT arg.
50018         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
50019         (build_charclass_op): Likewise, for NON_MATCH arg.
50020         * lib/regex_internal.c (re_string_allocate, re_string_construct):
50021         (re_string_construct_common): Likewise, for ICASE arg.
50022         * lib/regexec.c (re_search_2_stub, re_search_stub):
50023         Likewise, for RET_LEN arg.
50024         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
50025         (set_regs): Likewise, for FL_BACKTRACK arg.
50026         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
50027         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
50028         (calc_eclosure_iter, parse_bracket_exp):
50029         Use bool for internal variables that are booleans.
50030         * lib/regexec.c (re_search_internal, check_matching,
50031         proceed_next_node):
50032         (set_regs, build_sifted_states, sift_states_bkref):
50033         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
50034         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
50035         (find_collation_sequence_value):
50036         Likewise.
50037         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
50038         (re_node_set_compare):
50039         Return bool, not int. All callers changed.
50040         * lib/regexec.c (check_halt_node_context, check_dst_limits):
50041         (build_trtable, check_node_accept): Likewise.
50042         * lib/regex_internal.h: Include stdbool.h.
50043
50044         Fix bugs uncovered when converting to bool.
50045         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
50046         failure instead of charging ahead blindly.
50047         * lib/regex_internal.c (register_state): Likewise.
50048         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
50049         for freeing internal storage.
50050         (group_nodes_into_DFA_states): Use unsigned int, not int, for
50051         bitset pieces used as boolean, to avoid undefined behavior
50052         on hosts that do int overflow checking.
50053
50054 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
50055
50056         * config/srclist.txt: Add glibc bugs 1285-1287.
50057
50058 2005-09-01  Jim Meyering  <jim@meyering.net>
50059
50060         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
50061         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
50062         Require gl_STAT_MACROS, too.
50063
50064 2005-09-01  Bruno Haible  <bruno@clisp.org>
50065
50066         * gnulib-tool (import): In the first-use case, provide defaults.
50067
50068 2005-09-01  Bruno Haible  <bruno@clisp.org>
50069
50070         * gnulib-tool (func_import): Remove the .tmp files.
50071
50072 2005-09-01  Bruno Haible  <bruno@clisp.org>
50073
50074         * gnulib-tool (func_import): Fix handling of symbolic links.
50075
50076 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50077
50078         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
50079         old glibc regex code mishandles strings longer than 2**31 bytes.
50080         This patch fixes this when the regex code is used in gnulib
50081         (i.e., outside glibc).
50082
50083         This patch should not affect the use of the regex code inside
50084         glibc.  No doubt this problem also needs to be handled for glibc
50085         as well, but the result will be an incompatible change to the
50086         glibc ABI, and the old ABI will have to be supported too.  That
50087         can be the the subject for another patch.
50088
50089         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
50090         governing whether the rest of this patch is active.  By default,
50091         the macro is disabled and the patch has no effect.
50092         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
50093         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
50094         (struct re_pattern_buffer, re_search, re_search_2, re_match):
50095         (re_match_2, re_set_registers): Use the new types.
50096         * lib/regex_internal.h (Idx, re_hashval_t): New types.
50097         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
50098         New macros.
50099         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
50100         (re_string_context_at, bin_tree_t, re_dfastate_t):
50101         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
50102         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
50103         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
50104         (re_string_char_size_at, re_string_wchar_at):
50105         (re_string_elem_size_at):
50106         Use the new types and macros to port to 64-bit hosts.
50107         Use unsigned types for internal values, so that the code
50108         mostly works even for arrays larger than SSIZE_MAX.
50109         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
50110         (search_duplicated_node, calc_eclosure_iter, fetch_number):
50111         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
50112         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
50113         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
50114         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
50115         (calc_inveclosure, parse_dup_op, build_range_exp):
50116         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
50117         (fetch_number, create_token_tree, mark_opt_subexp):
50118         Likewise.
50119         * lib/regex_internal.c (re_string_construct_common,
50120         create_ci_newstate):
50121         (create_cd_newstate, re_string_allocate, re_string_construct):
50122         (re_string_realloc_buffers, build_wcs_upper_buffer):
50123         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
50124         (re_string_reconstruct, re_string_peek_byte_case):
50125         (re_string_fetch_byte_case, re_string_context_at):
50126         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
50127         (re_node_set_init_copy, re_node_set_add_intersect):
50128         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
50129         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
50130         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
50131         (re_acquire_state, re_acquire_state_context, register_state):
50132         Likewise.
50133         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
50134         search_cur_bkref_entry):
50135         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
50136         (re_search_internal, re_search_2_stub, re_search_stub)
50137         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
50138         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
50139         (update_cur_sifted_state, check_dst_limits):
50140         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
50141         (check_subexp_limits, sift_states_bkref, merge_state_array):
50142         (check_subexp_matching_top, get_subexp, get_subexp_sub):
50143         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
50144         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
50145         (expand_bkref_cache, check_node_accept_bytes):
50146         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
50147         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
50148         (acquire_init_state_context, check_halt_node_context):
50149         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
50150         (sift_states_backward, clean_state_log_if_needed):
50151         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
50152         (find_recover_state, transit_state_sb, transit_state_mb):
50153         (transit_state_bkref, build_trtable, match_ctx_clean):
50154         Likewise.
50155         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
50156         to work around an assumption that REG_MISSING is negative.
50157
50158         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
50159         (seek_collating_symbol_entry) [defined _LIBC]:
50160         (lookup_collation_sequence_value) [defined _LIBC]:
50161         (build_range_exp, build_collating_symbol) [defined _LIBC]:
50162         Use prototypes rather than old-style function definitions.
50163         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
50164         (transit_state_sb) [0]:
50165         (find_collation_sequence_value) [defined _LIBC]: Likewise.
50166
50167         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
50168         rm_eo.
50169
50170         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
50171         (optimize_subexps, lower_subexp):
50172         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
50173         since the signed shift might overflow.  Use 1u<<31 instead.
50174         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
50175         Likewise.
50176         * lib/regexec.c (check_dst_limits_calc_pos_1,
50177         check_subexp_matching_top): Likewise.
50178
50179         * lib/regcomp.c (optimize_subexps, lower_subexp):
50180         Use CHAR_BIT rather than 8, for clarity.
50181         * lib/regexec.c (check_dst_limits_calc_pos_1):
50182         (check_subexp_matching_top): Likewise.
50183         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
50184         have to worry about portability issues when shifting it left.
50185         Remove no-longer-needed test for table_size > 0.
50186         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
50187         in a word, as the resulting behavior is undefined.
50188         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
50189         in one case, a <= should have been an <, and in another case the
50190         whole test was missing.
50191         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
50192         the standard name CHAR_BIT.
50193         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
50194         this is not true on one's complement and signed-magnitude hosts.
50195
50196         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
50197         next_last_offset.
50198         (struct re_dfa_t): Remove unused member states_alloc.
50199         * lib/regcomp.c (init_dfa): Don't initialize unused members.
50200
50201 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50202
50203         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
50204         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
50205         and large-file glibc and in 32-bit large-file Solaris.
50206
50207 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50208
50209         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
50210         lengths fit in regoff_t; this isn't true if regoff_t is the same
50211         width as size_t.
50212         * lib/regex.c (re_search_internal): 5th arg is LAST_START
50213         (= START + RANGE) instead of RANGE.  This avoids overflow
50214         problems when regoff_t is the same width as size_t.
50215         All callers changed.
50216         (re_search_2_stub): Check for overflow when adding the
50217         sizes of the two strings.
50218         (re_search_stub): Check for overflow when adding START
50219         to RANGE; if it occurs, substitute the extreme value.
50220
50221 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50222
50223         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
50224
50225 2005-08-31  Jim Meyering  <jim@meyering.net>
50226
50227         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
50228         a pointer-to-const.
50229         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
50230         (register_state): Likewise.
50231         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
50232         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
50233         (group_nodes_into_DFAstates): Likewise.
50234
50235 2005-08-31  Jim Meyering  <jim@meyering.net>
50236
50237         * check-module: Add a FIXME comment.
50238
50239 2005-08-31  Eric Blake  <ebb9@byu.net>
50240
50241         * modules/unistd-safer (Files): Add unistd--.h.
50242         * modules/stdio-safer (Files): Add stdio--.h.
50243
50244 2005-08-31  Derek Price  <derek@ximbiot.com>
50245
50246         * lib/getdelim.c (getdelim): Return EOF on EOF.
50247         Reported by Larry Jones <lawrence.jones@ugs.com>.
50248
50249 2005-08-31  Bruno Haible  <bruno@clisp.org>
50250
50251         Avoid unnecessary diffs in the generated lib/Makefile.am.
50252         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
50253         the generated files.
50254         (func_import): Don't set cmd.
50255
50256 2005-08-31  Bruno Haible  <bruno@clisp.org>
50257
50258         * lib/strstr.c: Include <stddef.h>, for NULL.
50259         * lib/strcasestr.c: Likewise.
50260         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
50261
50262 2005-08-31  Bruno Haible  <bruno@clisp.org>
50263
50264         * gnulib-tool: New option --macro-prefix.
50265         (func_import): Use macro_prefix.
50266         (import): Handle option --macro-prefix.
50267
50268 2005-08-31  Bruno Haible  <bruno@clisp.org>
50269
50270         * gnulib-tool (import): Rename most ac_* variables to cached_*.
50271         Also use new variables cached_lgpl, cached_libtool.
50272
50273 2005-08-31  Bruno Haible  <bruno@clisp.org>
50274
50275         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
50276         always instantiating them.
50277
50278 2005-08-31  Bruno Haible  <bruno@clisp.org>
50279
50280         * gnulib-tool (func_import): Read the previous cached settings
50281         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
50282         earlier added by gnulib but are now dropped. Warn when a gnulib file
50283         overwrites a non-gnulib file.
50284
50285 2005-08-31  Bruno Haible  <bruno@clisp.org>
50286
50287         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
50288         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
50289         projects that don't keep autogenerated files in CVS. Put into
50290         actioncmd only the specified modules, not the transitive closure.
50291
50292 2005-08-31  Bruno Haible  <bruno@clisp.org>
50293
50294         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
50295         Create directories that shall be filled.
50296         (import): Don't look for gl_* macros in configure.ac. Recurse across
50297         all directories containing a gnulib-cache.m4 files, if meaningful.
50298
50299 2005-08-31  Bruno Haible  <bruno@clisp.org>
50300
50301         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
50302         (import): Set seen_libtool when we see gl_LIBTOOL.
50303
50304 2005-08-31  Bruno Haible  <bruno@clisp.org>
50305
50306         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
50307         declaration macro definitions from generated gnulib.m4.
50308
50309 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
50310
50311         * lib/iconvme.h: Add prototype for iconv_alloc.
50312
50313 2005-08-29  Simon Josefsson  <jas@extundo.com>
50314
50315         * lib/iconvme.c: Fix errno.
50316
50317 2005-08-29  Bruno Haible  <bruno@clisp.org>
50318
50319         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
50320         that it works when the directory contains spaces.
50321
50322 2005-08-29  Bruno Haible  <bruno@clisp.org>
50323
50324         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
50325
50326 2005-08-29  Bruno Haible  <bruno@clisp.org>
50327
50328         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
50329         Emit more advice.
50330
50331 2005-08-29  Bruno Haible  <bruno@clisp.org>
50332         and Stepan Kasal  <kasal@ucw.cz>
50333
50334         * check-module: If more parameters are given, check each of them
50335         separately; add more exceptions, as noted by Jim Meyering.
50336         (check_module): New procedure.
50337         (%exempt_header): Now contains all exceptions.
50338
50339 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
50340
50341         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
50342
50343 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
50344
50345         * lib/iconvme.c: Split iconv_string into iconv_alloc.
50346
50347 2005-08-28  Bruno Haible  <bruno@clisp.org>
50348
50349         * m4/gnulib-tool.m4: New file.
50350
50351 2005-08-27  Jim Meyering  <jim@meyering.net>
50352
50353         * modules/unistd-safer (Files): Add pipe-safer.c.
50354         * modules/fcntl-safer (Files): Add creat-safer.c.
50355
50356 2005-08-27  Jim Meyering  <jim@meyering.net>
50357
50358         * m4/stdlib-safer.m4: New file.  From coreutils.
50359         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
50360         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
50361         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
50362         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
50363         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
50364
50365 2005-08-27  Jim Meyering  <jim@meyering.net>
50366
50367         * lib/fopen-safer.c: Merge minor changes from coreutils.
50368         * lib/dup-safer.c: Likewise.
50369         * lib/fd-safer.c: Likewise.
50370
50371         Merge from coreutils.
50372         * lib/stdio--.h: New file.
50373         * lib/stdlib--.h: New file.
50374         * lib/mkstemp-safer.c: New file.
50375
50376         GNU tar needs these.
50377         * lib/pipe-safer.c: New file.
50378         * lib/creat-safer.c: New file.
50379         * lib/fcntl--.h (creat): Define to creat_safer.
50380         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
50381         * lib/unistd--.h (pipe): Define to pipe_safer.
50382         * lib/unistd-safer.h: Declare pipe_safer.
50383
50384 2005-08-26  Simon Josefsson  <jas@extundo.com>
50385
50386         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
50387         Haible <bruno@clisp.org>.
50388
50389 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
50390
50391         * lib/regex_internal.h: Remove all references to
50392         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
50393         or better.
50394         (bitset_not, bitset_merge, bitset_not_merge):
50395         (bitset_mask, re_string_allocate, re_string_construct):
50396         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
50397         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
50398         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
50399         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
50400         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
50401         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
50402         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
50403         (re_acquire_state_context):
50404         Remove unnecessary forward decls.
50405         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
50406         Put __attribute at function definition,
50407         now that the function decl has been removed.
50408         * lib/regex_internal.c (re_string_peek_byte_case):
50409         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
50410         Likewise.
50411
50412 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
50413
50414         * m4/regex.m4: Add AC_PREREQ(2.50).
50415         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
50416
50417 2005-08-25  Simon Josefsson  <jas@extundo.com>
50418
50419         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
50420         __fsetlocking.
50421
50422 2005-08-25  Simon Josefsson  <jas@extundo.com>
50423
50424         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
50425         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
50426         GLIBC specific code.
50427
50428 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50429
50430         Make regex safe for g++.  This fixes one real bug (an "err"
50431         that should have been "*err").  g++ problem reported by
50432         Sam Steingold.
50433         * lib/regex_internal.h (re_calloc): New macro, consistent with
50434         re_malloc etc.  All callers of calloc changed to use re_calloc.
50435         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
50436         not int.  All callers changed.
50437         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
50438         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
50439         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
50440         (find_recover_state): Change "err" to "*err"; this fixes what
50441         appears to be a real bug.
50442         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
50443         versus int.
50444
50445 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50446
50447         * modules/regex (Depends-on): Add malloc, since the code
50448         assumes that !malloc(0) means failure.
50449
50450 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50451
50452         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
50453
50454         alloca modernization/simplification for regex.
50455         * lib/regex.c: Remove portability cruft for alloca.  This no longer
50456         needs to be at the start of the file, and can be moved into
50457         regex_internal.h and simplified.
50458         * lib/regex_internal.h: Include <alloca.h>.
50459         (__libc_use_alloca) [!defined _LIBC]: New macro.
50460         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
50461         now works outside glibc.
50462
50463 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50464
50465         * config/srclist.txt: Add glibc bugs 1241, 1245.
50466
50467 2005-08-25  Jim Meyering  <jim@meyering.net>
50468
50469         * lib/open-safer.c: Include <config.h>.
50470         Otherwise, we'd lose LARGEFILE support in any file using
50471         e.g. "fcntl--.h"
50472
50473 2005-08-25  Bruno Haible  <bruno@clisp.org>
50474
50475         * m4/minmax.m4: Require autoconf 2.52.
50476         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
50477         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
50478         alternatives of translit over the alphabet.
50479         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
50480
50481 2005-08-24  Simon Josefsson  <jas@extundo.com>
50482
50483         * tests/test-getpass.c: New file.
50484
50485 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
50486
50487         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
50488         for GNU regex features.
50489
50490 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
50491
50492         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
50493         * lib/regex.h (regerror): Likewise.
50494
50495         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
50496         requires this.  (The code never needed it.)
50497
50498         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
50499         All uses of recently-renamed identifiers changed to use the new,
50500         POSIX-compliant names.  The code will build and run just fine
50501         without these changes, but it's better to eat our own dog food
50502         and use the standard-conforming names.
50503
50504         * lib/regex.h: Fix a multitude of POSIX name space violations.
50505         These changes have an effect only for programs that define
50506         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
50507         do not change anything for programs compiled in the normal way.
50508         Also, there is no effect on the ABI.
50509
50510         (_REGEX_SOURCE): New macro.
50511         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
50512         defined and _GNU_SOURCE is not; this fixes a name space violation.
50513
50514         Rename the following macros to obey POSIX requirements.
50515         The old names are still visible as macros if _REGEX_SOURCE is defined.
50516         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
50517         RE_BACKSLASH_ESCAPE_IN_LISTS.
50518         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
50519         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
50520         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
50521         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
50522         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
50523         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
50524         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
50525         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
50526         (REG_INTERVALS): renamed from RE_INTERVALS.
50527         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
50528         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
50529         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
50530         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
50531         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
50532         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
50533         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
50534         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
50535         RE_UNMATCHED_RIGHT_PAREN_ORD.
50536         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
50537         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
50538         (REG_DEBUG): renamed from RE_DEBUG.
50539         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
50540         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
50541         unusual, since we can't clash with the POSIX REG_ICASE.
50542         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
50543         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
50544         (REG_NO_SUB): renamed from RE_NO_SUB.
50545         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
50546         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
50547         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
50548         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
50549         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
50550         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
50551         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
50552         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
50553         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
50554         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
50555         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
50556         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
50557         RE_SYNTAX_POSIX_MINIMAL_BASIC.
50558         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
50559         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
50560         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
50561         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
50562         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
50563         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
50564         (REG_FIXED): Renamed from REGS_FIXED.
50565         (REG_NREGS): Renamed from RE_NREGS.
50566
50567         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
50568         of other REG_* macros, since POSIX says the user is allowed to
50569         #undef these macros selectively.
50570
50571         (reg_errcode_t): Update comment stating what other tables need
50572         to be consistent.
50573
50574         Rename the following enum values to obey POSIX requirements.
50575         The old names are still visible as macros.
50576         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
50577         is not defined, since GNU is supposed to be a superset of POSIX as
50578         much as possible, and since we want reg_errcode_t to be a signed
50579         type for implementation consistency.
50580         (_REG_NOERROR): Renamed from REG_NOERROR.
50581         (_REG_NOMATCH): Renamed from REG_NOMATCH.
50582         (_REG_BADPAT): Renamed from REG_BADPAT.
50583         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
50584         (_REG_ECTYPE): Renamed from REG_ECTYPE.
50585         (_REG_EESCAPE): Renamed from REG_EESCAPE.
50586         (_REG_ESUBREG): Renamed from REG_ESUBREG.
50587         (_REG_EBRACK): Renamed from REG_EBRACK.
50588         (_REG_EPAREN): Renamed from REG_EPAREN.
50589         (_REG_EBRACE): Renamed from REG_EBRACE.
50590         (_REG_BADBR): Renamed from REG_BADBR.
50591         (_REG_ERANGE): Renamed from REG_ERANGE.
50592         (_REG_ESPACE): Renamed from REG_ESPACE.
50593         (_REG_BADRPT): Renamed from REG_BADRPT.
50594         (_REG_EEND): Renamed from REG_EEND.
50595         (_REG_ESIZE): Renamed from REG_ESIZE.
50596         (_REG_ERPAREN): Renamed from REG_ERPAREN.
50597         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
50598         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
50599         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
50600         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
50601
50602         (_REG_RE_NAME, _REG_RM_NAME): New macros.
50603         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
50604         changed.  But support the old name if the new one is not defined
50605         and if _REGEX_SOURCE.
50606
50607         Change the following member names in struct re_pattern_buffer.
50608         The old names are still supported if !_REGEX_SOURCE.
50609         The new names are always supported, regardless of _REGEX_SOURCE.
50610         (re_buffer): Renamed from buffer.
50611         (re_allocated): Renamed from allocated.
50612         (re_used): Renamed from used.
50613         (re_syntax): Renamed from syntax.
50614         (re_fastmap): Renamed from fastmap.
50615         (re_translate): Renamed from translate.
50616         (re_can_be_null): Renamed from can_be_null.
50617         (re_regs_allocated): Renamed from regs_allocated.
50618         (re_fastmap_accurate): Renamed from fastmap_accurate.
50619         (re_no_sub): Renamed from no_sub.
50620         (re_not_bol): Renamed from not_bol.
50621         (re_not_eol): Renamed from not_eol.
50622         (re_newline_anchor): Renamed from newline_anchor.
50623
50624         Change the following member names in struct re_registers.
50625         The old names are still supported if !_REGEX_SOURCE.
50626         The new names are always supported, regardless of _REGEX_SOURCE.
50627         (rm_num_regs): Renamed from num_regs.
50628         (rm_start): Renamed from start.
50629         (rm_end): Renamed from end.
50630
50631         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
50632         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
50633         Prepend __ to parameter names.
50634
50635         Undo yesterday's changes.
50636
50637 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
50638
50639         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
50640         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
50641         lib/regex.c.
50642
50643 2005-08-24  Jim Meyering  <jim@meyering.net>
50644
50645         Sync from coreutils.
50646         * m4/fcntl-safer.m4: New file.
50647
50648         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
50649         and object files for this module.
50650
50651 2005-08-24  Jim Meyering  <jim@meyering.net>
50652
50653         Sync from coreutils.
50654         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
50655
50656 2005-08-24  Jim Meyering  <jim@meyering.net>
50657
50658         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
50659         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
50660
50661 2005-08-24  Jim Meyering  <jim@meyering.net>
50662
50663         * modules/fcntl-safer: New module.
50664         * modules/fts (Depends-on): Add fcntl-safer.
50665         * MODULES.html.sh (File descriptor based Input/Output):
50666         Add fcntl-safer.
50667
50668 2005-08-24  Bruno Haible  <bruno@clisp.org>
50669
50670         Support for unit test modules.
50671         * modules/README: Mention tests modules.
50672         * modules/TEMPLATE-TESTS: New file.
50673         * gnulib-tool: New options --extract-tests-module, --with-tests and
50674         --tests-base (unused for the moment).
50675         (testsbase, inctests): New variables.
50676         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
50677         (func_verify_module): Exclude TEMPLATE-TESTS.
50678         (func_verify_nontests_module, func_verify_tests_module): New functions.
50679         (func_get_dependencies): Add implicit dependency for tests modules.
50680         (func_get_tests_module): New function.
50681         (func_modules_transitive_closure): When --with-tests was specified,
50682         include the unit tests as well, unless explicitly avoided.
50683         (func_emit_lib_Makefile_am): Ignore the tests modules here.
50684         (func_emit_tests_Makefile_am): New function.
50685         (func_create_testdir): When --with-tests was specified, emit a
50686         tests/ directory.
50687         * MODULES.html.sh (Future developments): Update.
50688
50689 2005-08-24  Bruno Haible  <bruno@clisp.org>
50690
50691         * modules/tls-tests: New file.
50692         * tests/test-tls.c: New file, from GNU gettext.
50693
50694 2005-08-24  Bruno Haible  <bruno@clisp.org>
50695
50696         * modules/lock-tests: New file.
50697         * tests/test-lock.c: New file, from GNU gettext.
50698
50699 2005-08-24  Bruno Haible  <bruno@clisp.org>
50700
50701         * lib/lock.h: Add multiple inclusion guard.
50702         * lib/tls.h: Add multiple inclusion guard.
50703
50704 2005-08-24  Bruno Haible  <bruno@clisp.org>
50705
50706         * gnulib-tool: Add support for the --aux-dir option to
50707         --create-testdir, --create-megatestdir, --test, --megatest.
50708         (func_create_testdir, func_create_megatestdir): Optionally emit a
50709         AC_CONFIG_AUX_DIR directive.
50710         (create-testdir, create-megatestdir, test, megatest): Provide a
50711         default value for $auxdir.
50712
50713 2005-08-24  Bruno Haible  <bruno@clisp.org>
50714
50715         * gnulib-tool (import): Use compound statement instead of subshell
50716         where possible.
50717
50718 2005-08-24  Bruno Haible  <bruno@clisp.org>
50719
50720         * gnulib-tool (import): Change --aux-dir default to "build-aux".
50721
50722 2005-08-24  Bruno Haible  <bruno@clisp.org>
50723
50724         * gnulib-tool (func_version): Update.
50725
50726 2005-08-24  Bruno Haible  <bruno@clisp.org>
50727
50728         * gnulib-tool (func_import, func_create_testdir,
50729         func_create_megatestdir): Quote all autoconf macro arguments.
50730
50731 2005-08-24  Bruno Haible  <bruno@clisp.org>
50732
50733         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
50734         option --force, because --force causes the aclocal.m4 of each
50735         subdirectory to be newer than the corresponding config.h.in.
50736
50737 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
50738
50739         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
50740         All contents moved to gl_REGEX.
50741         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
50742         assume that it does.
50743
50744 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
50745
50746         * lib/regex.h (REG_NOSYS)
50747         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
50748         Define, since POSIX requires it as of 2001.
50749         (_REG_ENOSYS)
50750         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
50751         New private symbol, used to keep the enum signed in all cases.
50752         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
50753         Youngman in
50754         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
50755
50756         * lib/regex_internal.c (re_string_skip_chars, register_state):
50757         (calc_state_hash):
50758         Remove forward decls; no longer needed now that we use prototypes.
50759         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
50760         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
50761         (clean_state_log_if_needed): Likewise.
50762
50763 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
50764
50765         * config/srclist.txt: Add glibc bugs 1231-1233.
50766
50767 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
50768
50769         Fix problems reported by Sam Steingold in
50770         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
50771         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
50772         assumed that reg_errcode_t is a signed type, which is not
50773         necessarily true if _XOPEN_SOURCE is not defined.
50774         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
50775         since some compilers warn about it otherwise.
50776
50777 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
50778
50779         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
50780         (init_word_char, create_initial_state, duplicate_node_closure):
50781         (fetch_token, peek_token_bracket, build_range_exp):
50782         (build_collating_symbol): Remove forward decls; no longer needed
50783         now that we use prototypes.
50784
50785         * lib/regcomp.c:
50786         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
50787         (re_compile_fastmap_iter, regcomp, regerror, regfree):
50788         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
50789         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
50790         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
50791         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
50792         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
50793         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
50794         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
50795         (build_range_exp, build_collating_symbol, parse_bracket_exp):
50796         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
50797         (build_charclass, build_charclass_op, fetch_number, create_tree):
50798         (create_token_tree, mark_opt_subexp, duplicate_tree):
50799         Use prototypes rather than old-style definitions.
50800
50801         * lib/regex_internal.c:
50802         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
50803         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
50804         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
50805         (re_string_reconstruct, re_string_peek_byte_case):
50806         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
50807         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
50808         (re_node_set_init_copy, re_node_set_add_intersect):
50809         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
50810         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
50811         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
50812         (re_acquire_state, re_acquire_state_context, register_state):
50813         (create_ci_newstate, create_cd_newstate, free_state):
50814         Likewise.
50815         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
50816         re_search_2):
50817         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
50818         (re_search_internal, prune_impossible_nodes):
50819         (acquire_init_state_context, check_matching, static):
50820         (check_halt_node_context, check_halt_state_context, proceed_next_node):
50821         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
50822         (update_regs, sift_states_backward, build_sifted_states):
50823         (clean_state_log_if_needed, merge_state_array):
50824         (update_cur_sifted_state, add_epsilon_src_nodes):
50825         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
50826         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
50827         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
50828         (find_recover_state, check_subexp_matching_top, transit_state_mb):
50829         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
50830         (check_arrival, check_arrival_add_next_nodes):
50831         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
50832         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
50833         (check_node_accept_bytes, check_node_accept, extend_buffers):
50834         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
50835         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
50836         (sift_ctx_init):
50837         Likewise.
50838
50839         * lib/regex_internal.h:
50840         (re_string_allocate, re_string_construct, re_string_reconstruct):
50841         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
50842         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
50843         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
50844         (re_string_context_at, re_string_peek_byte_case):
50845         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
50846         is defined, since we now use prototypes always.
50847
50848         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
50849         C89 or better.  All uses removed.
50850
50851 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
50852
50853         * config/srclist.txt: Add glibc bugs 1220-1227.
50854
50855 2005-08-20  Jim Meyering  <jim@meyering.net>
50856
50857         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
50858         of unused local, dfa.
50859
50860 2005-08-20  Bruno Haible  <bruno@clisp.org>
50861
50862         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
50863
50864 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
50865
50866         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
50867         (re_node_set_insert_last, re_dfa_add_node):
50868         Rename local variables to avoid GCC shadowing warnings.
50869
50870 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
50871
50872         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
50873         [defined lint]: Suppress bogus uninitialized-variable warnings.
50874
50875         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
50876         and let the caller return REG_ESPACE if out of space.  This
50877         removes an uninitialied-variable warning with GCC 4.0.1, and also
50878         avoids taking the address of a local variable.  All callers
50879         changed.
50880
50881 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
50882
50883         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
50884         $LIBCSRC/posix/regexec.c.
50885         Add glibc bug 1217 for regcomp.c.
50886
50887 2005-08-19  Jim Meyering  <jim@meyering.net>
50888
50889         * lib/regexec.c (proceed_next_node): Redo local variables to
50890         avoid GCC shadowing warnings.
50891
50892 2005-08-18  Bruno Haible  <bruno@clisp.org>
50893
50894         * lib/strstr.c (strstr): Fix return value in multibyte case.
50895         * lib/strcasestr.c (strcasestr): Likewise.
50896
50897 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
50898
50899         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
50900
50901 2005-08-17  Jim Meyering  <jim@meyering.net>
50902
50903         Make the %s format (seconds since the epoch) work for a negative
50904         number and when used with a zero-padded field width, e.g. %015s.
50905
50906         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
50907         label so that it precedes the code to set `digits'.  Otherwise,
50908         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
50909         print `00-22'.  Now, it prints `-0022', as it should.
50910
50911 2005-08-17  Bruno Haible  <bruno@clisp.org>
50912
50913         * modules/strstr (Files): Add m4/mbrtowc.m4.
50914         (Depends-on): Add mbuiter.
50915
50916 2005-08-17  Bruno Haible  <bruno@clisp.org>
50917
50918         * modules/strcasestr: New file.
50919         * MODULES.html.sh (String handling, based on ANSI C 89): Add
50920         strcasestr.
50921
50922 2005-08-17  Bruno Haible  <bruno@clisp.org>
50923
50924         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
50925
50926 2005-08-17  Bruno Haible  <bruno@clisp.org>
50927
50928         * modules/mbuiter: New file.
50929         * MODULES.html.sh (Extended multibyte and wide character utilities):
50930         Add mbuiter.
50931
50932 2005-08-17  Bruno Haible  <bruno@clisp.org>
50933
50934         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
50935         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
50936
50937 2005-08-17  Bruno Haible  <bruno@clisp.org>
50938
50939         * m4/strcasestr.m4: New file.
50940
50941 2005-08-17  Bruno Haible  <bruno@clisp.org>
50942
50943         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
50944         * lib/strstr.c: Completely rewritten, with multibyte locale support.
50945
50946 2005-08-17  Bruno Haible  <bruno@clisp.org>
50947
50948         * lib/strcasestr.h: New file.
50949         * lib/strcasestr.c: New file.
50950
50951 2005-08-17  Bruno Haible  <bruno@clisp.org>
50952
50953         * lib/strcasecmp.c: Use mbuiter.h.
50954
50955 2005-08-17  Bruno Haible  <bruno@clisp.org>
50956
50957         * lib/mbuiter.h: New file.
50958
50959 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
50960
50961         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
50962         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
50963         and gl_GETOPT are both invoked via different paths (as happens
50964         with GNU tar CVS because it uses both argp and getopt), the former
50965         wins.
50966
50967 2005-08-16  Bruno Haible  <bruno@clisp.org>
50968
50969         * modules/tls: New file.
50970         * MODULES.html.sh (Multithreading): Add tls.
50971
50972 2005-08-16  Bruno Haible  <bruno@clisp.org>
50973
50974         * modules/strnlen1: New file.
50975         * MODULES.html.sh (String handling): Add strnlen1.
50976
50977 2005-08-16  Bruno Haible  <bruno@clisp.org>
50978
50979         * modules/strcase (Files): Add m4/mbrtowc.m4.
50980         (Depends-on): Add strnlen1, mbchar.
50981
50982 2005-08-16  Bruno Haible  <bruno@clisp.org>
50983
50984         * modules/mbiter: New file.
50985         * MODULES.html.sh (Extended multibyte and wide character utilities):
50986         Add mbiter.
50987
50988 2005-08-16  Bruno Haible  <bruno@clisp.org>
50989
50990         * modules/mbfile: New file.
50991         * MODULES.html.sh (Extended multibyte and wide character utilities):
50992         Add mbfile.
50993
50994 2005-08-16  Bruno Haible  <bruno@clisp.org>
50995
50996         * modules/mbchar: New file.
50997         * MODULES.html.sh (Extended multibyte and wide character utilities):
50998         New section.
50999
51000 2005-08-16  Bruno Haible  <bruno@clisp.org>
51001
51002         * m4/tls.m4: New file, from GNU gettext.
51003
51004 2005-08-16  Bruno Haible  <bruno@clisp.org>
51005
51006         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
51007         always.
51008         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
51009
51010 2005-08-16  Bruno Haible  <bruno@clisp.org>
51011
51012         * m4/mbiter.m4: New file.
51013
51014 2005-08-16  Bruno Haible  <bruno@clisp.org>
51015
51016         * m4/mbfile.m4: New file.
51017
51018 2005-08-16  Bruno Haible  <bruno@clisp.org>
51019
51020         * m4/mbchar.m4: New file.
51021
51022 2005-08-16  Bruno Haible  <bruno@clisp.org>
51023
51024         * lib/tls.h: New file, from GNU gettext.
51025         * lib/tls.c: New file, from GNU gettext.
51026
51027 2005-08-16  Bruno Haible  <bruno@clisp.org>
51028
51029         * lib/strnlen1.h: New file.
51030         * lib/strnlen1.c: New file.
51031
51032 2005-08-16  Bruno Haible  <bruno@clisp.org>
51033
51034         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
51035         (mbi_init): Update.
51036         (mbi_avail, mbi_advance): Let the iteration end before the terminating
51037         NUL byte, not after it.
51038
51039 2005-08-16  Bruno Haible  <bruno@clisp.org>
51040
51041         * lib/strcase.h (strcasecmp): Add note in comments.
51042         * lib/strncasecmp.c: Use code from strcasecmp.c.
51043         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
51044         (strcasecmp): Work correctly in multibyte locales.
51045
51046 2005-08-16  Bruno Haible  <bruno@clisp.org>
51047
51048         * lib/mbiter.h: New file.
51049
51050 2005-08-16  Bruno Haible  <bruno@clisp.org>
51051
51052         * lib/mbfile.h: New file.
51053
51054 2005-08-16  Bruno Haible  <bruno@clisp.org>
51055
51056         * lib/mbchar.h: New file.
51057         * lib/mbchar.c: New file.
51058
51059 2005-08-16  Bruno Haible  <bruno@clisp.org>
51060
51061         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
51062         the valid ones. Makes the comparison operations transitive:
51063         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
51064         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
51065
51066 2005-08-15  Simon Josefsson  <jas@extundo.com>
51067
51068         * modules/ssize_t (License): Change to 'unlimited'.
51069
51070         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
51071
51072 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
51073
51074         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
51075         Add comments for each pending glibc patch.
51076
51077 2005-08-15  Bruno Haible  <bruno@clisp.org>
51078
51079         * lib/regex.h (__restrict_arr): Don't define to __restrict if
51080         __cplusplus is defined.
51081
51082 2005-08-14  Jim Meyering  <jim@meyering.net>
51083
51084         Sync from coreutils.
51085
51086         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
51087         Use the hash-table-based cycle-detection code not just when
51088         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
51089         Reported by James Youngman in
51090         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
51091         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
51092         FTS_TIGHT_CYCLE_CHECK.
51093         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
51094         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
51095         once again.
51096         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
51097         * lib/fts.c (fd_safer): Remove decl.
51098         Include fcntl--.h rather than unistd-safer.h
51099         (fts_safe_changedir): Don't call fd_safer; no longer needed
51100         now that we include fcntl--.h.
51101
51102 2005-08-12  Simon Josefsson  <jas@extundo.com>
51103
51104         * modules/getndelim2: Use ssize_t module.
51105         * modules/getnline: Likewise.
51106         * modules/safe-read: Likewise.
51107         * modules/xreadlink: Likewise.
51108
51109         * modules/ssize_t: New file.
51110
51111 2005-08-12  Simon Josefsson  <jas@extundo.com>
51112
51113         * m4/readline.m4: Look for termcap, curses or ncurses if required.
51114
51115 2005-08-12  Simon Josefsson  <jas@extundo.com>
51116
51117         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
51118         ssize_t.
51119
51120 2005-08-12  Simon Josefsson  <jas@extundo.com>
51121
51122         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
51123         readline, getdelim and check_version.
51124         (Support for systems lacking ISO C 99: Sizes of integer types):
51125         Add size_max.
51126
51127 2005-08-12  Bruno Haible  <bruno@clisp.org>
51128
51129         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
51130
51131 2005-08-11  Simon Josefsson  <jas@extundo.com>
51132
51133         * modules/readline: New file.
51134
51135         * modules/strnlen (Files): Add strnlen.h.
51136
51137 2005-08-11  Simon Josefsson  <jas@extundo.com>
51138
51139         * m4/readline.m4: New file.
51140
51141 2005-08-11  Simon Josefsson  <jas@extundo.com>
51142
51143         * lib/readline.h, readline.c: New file.
51144
51145 2005-08-11  Simon Josefsson  <jas@extundo.com>
51146
51147         * doc/gnulib.texi (Initial import, Finishing touches): Mention
51148         gl_AVOID.
51149
51150 2005-08-11  Bruno Haible  <bruno@clisp.org>
51151
51152         * lib/strnlen.h (strnlen): Change parameter name to match comment.
51153
51154 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
51155
51156         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
51157
51158 2005-08-10  Simon Josefsson  <jas@extundo.com>
51159
51160         * tests/test-iconvme.c: New file.
51161
51162 2005-08-10  Simon Josefsson  <jas@extundo.com>
51163
51164         * m4/strnlen.m4: New file.
51165
51166         * m4/strndup.m4: Don't check for strnlen declaration, done in
51167         strnlen.m4.
51168
51169 2005-08-10  Simon Josefsson  <jas@extundo.com>
51170
51171         * lib/strndup.c: Use strnlen.h.
51172
51173         * lib/strnlen.h: New file.
51174
51175 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
51176
51177         * README: Typos.
51178
51179 2005-08-02  Simon Josefsson  <jas@extundo.com>
51180
51181         * modules/readline: New file.
51182
51183 2005-08-02  Simon Josefsson  <jas@extundo.com>
51184
51185         * modules/getdelim: New file.
51186
51187         * modules/getline: Rewrite, don't use getndelim2.
51188
51189 2005-08-02  Simon Josefsson  <jas@extundo.com>
51190
51191         * m4/getline.m4: Separate out getdelim stuff into separate module.
51192
51193         * m4/getdelim.m4: New file.
51194
51195 2005-08-02  Simon Josefsson  <jas@extundo.com>
51196
51197         * lib/getline.h, getline.c: Rewrite.
51198
51199         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
51200
51201 2005-07-31  Bruno Haible  <bruno@clisp.org>
51202
51203         * lib/lock.h (gl_lock_initializer): New macro.
51204         (gl_lock_define_initialized): Use it.
51205         (gl_rwlock_initializer): New macro.
51206         (gl_rwlock_define_initialized): Use it.
51207         (gl_recursive_lock_initializer): New macro.
51208         (gl_recursive_lock_define_initialized): Use it.
51209
51210 2005-07-30  Karl Berry  <karl@gnu.org>
51211
51212         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
51213         Report from Ben Pfaff, regarding getopt.
51214
51215 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
51216
51217         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
51218         normal way.
51219         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
51220         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
51221         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
51222         (gl_GETOPT): Use the new macros.  Most of the implementation
51223         is moved to the new macros.  This is for programs like Emacs
51224         that don't want all the functionality of gl_GETOPT.
51225
51226 2005-07-26  Bruno Haible  <bruno@clisp.org>
51227
51228         * m4/lock.m4: Update from GNU gettext.
51229
51230 2005-07-26  Bruno Haible  <bruno@clisp.org>
51231
51232         * lib/lock.h: Update from GNU gettext.
51233         * lib/lock.c: Update from GNU gettext.
51234
51235 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
51236
51237         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
51238         obsolescent AC_TRY_RUN.  Include the default includes files, for
51239         'exit'.
51240
51241 2005-07-24  Bruno Haible  <bruno@clisp.org>
51242
51243         * modules/visibility: New file.
51244         * MODULES.html.sh (Misc): Add visibility.
51245
51246 2005-07-24  Bruno Haible  <bruno@clisp.org>
51247
51248         * m4/visibility.m4: New file.
51249
51250 2005-07-24  Bruno Haible  <bruno@clisp.org>
51251
51252         * doc/visibility.texi: New file.
51253
51254 2005-07-22  Bruno Haible  <bruno@clisp.org>
51255
51256         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
51257         $(ALLOCA_H), redundant through BUILT_SOURCES.
51258         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
51259         redundant through BUILT_SOURCES.
51260         * modules/byteswap (Makefile.am): Remove explicit dependency on
51261         $(BYTESWAP_H), redundant through BUILT_SOURCES.
51262         * modules/fnmatch (Makefile.am): Remove explicit dependency on
51263         $(FNMATCH_H), redundant through BUILT_SOURCES.
51264         * modules/getopt (Makefile.am): Remove explicit dependency on
51265         $(GETOPT_H), redundant through BUILT_SOURCES.
51266         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
51267         redundant through BUILT_SOURCES.
51268         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
51269         redundant through BUILT_SOURCES.
51270         * modules/stdbool (Makefile.am): Remove explicit dependency on
51271         $(STDBOOL_H), redundant through BUILT_SOURCES.
51272         * modules/stdint (Makefile.am): Remove explicit dependency on
51273         $(STDINT_H), redundant through BUILT_SOURCES.
51274         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
51275         Remove explicit dependency on $(SYSEXITS_H).
51276         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
51277
51278 2005-07-18  Simon Josefsson  <jas@extundo.com>
51279
51280         * lib/check-version.c (check_version): Accept identical versions too.
51281
51282 2005-07-18  Bruno Haible  <bruno@clisp.org>
51283
51284         * modules/lock: New file.
51285         * MODULES.html.sh (Multithreading): New section.
51286
51287 2005-07-18  Bruno Haible  <bruno@clisp.org>
51288
51289         * m4/lock.m4: New file, from GNU gettext.
51290
51291 2005-07-18  Bruno Haible  <bruno@clisp.org>
51292
51293         * lib/lock.h: New file, from GNU gettext.
51294         * lib/lock.c: New file, from GNU gettext.
51295
51296 2005-07-18  Bruno Haible  <bruno@clisp.org>
51297
51298         * lib/lock.h (gl_once_t): New type.
51299         (gl_once_define, gl_once): New macros.
51300         * lib/lock.c (fresh_once): New variable.
51301         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
51302         functions.
51303
51304 2005-07-16  Simon Josefsson  <jas@extundo.com>
51305
51306         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
51307         workaround, suggested by Bruno.
51308
51309 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
51310
51311         * modules/xalloc (Depends-on): Add xalloc-die.
51312         * modules/xvasprintf (Depends-on): Add xalloc-die.
51313
51314 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
51315
51316         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
51317         with a minor change.
51318
51319 2005-07-15  Bruno Haible  <bruno@clisp.org>
51320
51321         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
51322         When using lib/poll.c, define poll as rpl_poll.
51323
51324 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
51325
51326         * modules/argp (Depends-on): Remove unlocked-io.
51327
51328 2005-07-14  Derek Price  <derek@ximbiot.com>
51329
51330         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
51331         for glob symlink bug.
51332
51333 2005-07-14  Bruno Haible  <bruno@clisp.org>
51334
51335         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
51336         Instead, test for *_unlocked function declarations directly.
51337
51338 2005-07-11  Simon Josefsson  <jas@extundo.com>
51339
51340         * modules/size_max: New file.
51341
51342         * modules/xsize: Depend on size_max module for size_max.m4.
51343
51344 2005-07-11  Simon Josefsson  <jas@extundo.com>
51345
51346         * lib/size_max.h: New file.
51347
51348 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
51349
51350         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
51351         copyright symbol and the year.
51352         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
51353         (version_etc_va): Use parameterized copyright notice.
51354         Reword to conform to the current GNU coding standards.
51355
51356 2005-07-11  Karl Berry  <karl@gnu.org>
51357
51358         * doc/gnulib.texi (Quoting): new node.
51359         (Initial import): more info, from Patrice.
51360
51361 2005-07-11  Bruno Haible  <bruno@clisp.org>
51362
51363         * gnulib-tool (func_usage): Document option --avoid.
51364         (Command line options): Handle --avoid.
51365         (func_acceptable): New function.
51366         (func_modules_transitive_closure): Use it.
51367
51368 2005-07-11  Bruno Haible  <bruno@clisp.org>
51369
51370         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
51371         Reported by Jim Meyering.
51372
51373 2005-07-10  Bruno Haible  <bruno@clisp.org>
51374
51375         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
51376         Needed when size_t is smaller than 'unsigned int'.
51377         Reported by Paul Eggert.
51378
51379 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
51380
51381         * modules/argp (Depends-on): Add unlocked-io
51382
51383 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
51384
51385         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
51386         block of defines.
51387
51388 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
51389
51390         * config/srclist.txt: Comment out regcomp.c, since we have a porting
51391         fix now.
51392
51393 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
51394         and Paul Eggert  <eggert@cs.ucla.edu>
51395
51396         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
51397         in wint_t, not wchar_t.  Remove now-unnecessary cast.
51398
51399 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51400
51401         * modules/regex (Files): Add lib/regex_internal.c,
51402         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
51403         (Depends-on): Add extensions.
51404         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
51405
51406 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51407
51408         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
51409         pathconf.
51410         * m4/same.m4 (gl_SAME): Likewise.
51411         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
51412
51413         * m4/regex.m4: Adjust to new libc regex implementation.
51414         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
51415         all the .c and .h parts of (the new) regex.
51416         Quote the m4 stuff better.
51417         Check for RE_ICASE bug of old gnulib.
51418         Check for REG_STARTEND of recent libc.
51419         Rename local variables from jm_* to gl_*.
51420         Quote operand of "test -f".
51421         Say "recent enough" version of libc, not "version 2".
51422         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
51423         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
51424         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
51425         Remove check for btowc, isascii.
51426         Require AM_LANGINFO_CODESET.
51427
51428 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51429
51430         * lib/regex.c, regex.h: Sync from libc.
51431         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
51432         * lib/regexec.c:
51433         New files, synced from libc, except that regex_internal.h
51434         currently has a small porting fix.
51435
51436 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51437
51438         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
51439         regex_internal.c, regexec.c.
51440         Add regex_internal.h too, but as a comment, since the libc version
51441         is currently broken in gnulib mode.
51442
51443 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
51444
51445         Support programs like Emacs that use gnulib but not gettext.
51446         * MODULES.html.sh (Internationalization functions): Add gettext-h.
51447         * modules/gettext-h: New file.
51448         * modules/gettext (Files): Remove lib/gettext.h.
51449         (Depends-on): Add gettext-h.
51450         (Makefile.am): Remove lib_SOURCES.
51451         * modules/argmatch, modules/c-stack, modules/closeout:
51452         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
51453         * modules/execute, modules/file-type, modules/getaddrinfo:
51454         * modules/getopt, modules/human, modules/javacomp:
51455         * modules/javaexec, modules/mkdir-p, modules/obstack:
51456         * modules/openat, modules/pagealign_alloc, modules/pipe:
51457         * modules/quotearg, modules/regex, modules/rpmatch:
51458         * modules/unicodeio, modules/userspec, modules/version-etc:
51459         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
51460         * modules/xsetenv:
51461         Depend on gettext-h, not gettext.
51462
51463 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
51464
51465         * gnulib-tool (func_import): Add support for 'public domain' license.
51466         * modules/alloca, modules/atexit, modules/memmove:
51467         Now public domain, not GPL.
51468         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
51469         * modules/realloc, modules/strerror, modules/strtod:
51470         Now LGPL, not GPL.
51471
51472 2005-07-05  Bruno Haible  <bruno@clisp.org>
51473
51474         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
51475         autoconf CVS. Needed for mingw.
51476
51477 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
51478
51479         Remove the dependency of the strftime module on the tzset module.
51480         * modules/strftime (Depends-on): Remove dependency on tzset.
51481
51482 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
51483
51484         Remove the dependency of the strftime module on the tzset module.
51485         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
51486         gl_FUNC_TZSET_CLOBBER.
51487
51488 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
51489
51490         Remove the dependency of the strftime module on the tzset module.
51491         * lib/strftime.c (my_strftime)
51492         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
51493         Copy the input structure, to work around some of the bug with
51494         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
51495         Solaris releases, you should also use the tzset module, but we won't
51496         require it as a dependency any more since we don't want LGPLed code
51497         to depend on GPLed code.
51498
51499 2005-07-02  Jim Meyering  <jim@meyering.net>
51500
51501         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
51502         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
51503         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
51504         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
51505
51506 2005-07-02  Jim Meyering  <jim@meyering.net>
51507
51508         * lib/backupfile.c (backup_args): Change a `0' to NULL.
51509
51510 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
51511
51512         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
51513         declares only 'struct timespec;' (!).
51514
51515 2005-07-01  Jim Meyering  <jim@meyering.net>
51516
51517         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
51518         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
51519         * lib/save-cwd.c, tempname.c:
51520         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
51521         and don't include <sys/file.h>).
51522
51523 2005-06-29  Jim Meyering  <jim@meyering.net>
51524
51525         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
51526         type name.  Use the variable name instead.
51527         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
51528         Likewise.
51529
51530 2005-06-28  Simon Josefsson  <jas@extundo.com>
51531
51532         * modules/check-version (Files): Add check-version.m4.
51533
51534 2005-06-28  Simon Josefsson  <jas@extundo.com>
51535
51536         * m4/check-version.m4: New file, suggested by Jim Meyering
51537         <jim@meyering.net>.
51538
51539 2005-06-28  Simon Josefsson  <jas@extundo.com>
51540
51541         * lib/check-version.h, lib/check-version.c: New files.
51542
51543 2005-06-28  Simon Josefsson  <jas@extundo.com>
51544
51545         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
51546         collision with global variable.  Better indentation.  Don't
51547         increment buffer pointer beyond buffer end.  Based on comments
51548         from Paul Eggert <eggert@cs.ucla.edu>.
51549
51550         * lib/base64.h: Indent.
51551
51552 2005-06-28  Simon Josefsson  <jas@extundo.com>
51553
51554         * doc/gnulib.texi (Library version handling): New section.
51555
51556 2005-06-28  Jim Meyering  <jim@meyering.net>
51557
51558         * check-module (find_included_lib_files): Hard-code another
51559         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
51560         but modules/fts-lgpl (correctly) does not list those files.
51561
51562         * modules/canonicalize (Files): Add lib/pathmax.h.
51563
51564 2005-06-25  Simon Josefsson  <jas@extundo.com>
51565
51566         * modules/check-version: New file.
51567
51568 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
51569
51570         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
51571         initializer of struct addrinfo, as an indication that we don't
51572         care how many members the structure has.
51573
51574 2005-06-24  Derek Price  <derek@ximbiot.com>
51575         and Bruno Haible  <bruno@clisp.org>
51576
51577         Remove stat module & update lstat.
51578         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
51579         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
51580         * m4/stat.m4: Remove this file.
51581
51582 2005-06-24  Derek Price  <derek@ximbiot.com>
51583         and Bruno Haible  <bruno@clisp.org>
51584
51585         Remove stat module & update lstat.
51586         * lib/stat.c: Remove this file...
51587         (slash_aware_lstat): ...moving this content and its support...
51588         * lib/lstat.c (rpl_lstat): ...into here.
51589         * lib/lstat.h: New file.
51590
51591 2005-06-24  Derek Price  <derek@ximbiot.com>
51592         and Bruno Haible  <bruno@clisp.org>
51593
51594         Remove stat module & update lstat.
51595         * config/srclist.txt (libc sources): Remove stat.
51596
51597 2005-06-24  Derek Price  <derek@ximbiot.com>
51598         and Bruno Haible  <bruno@clisp.org>
51599
51600         Remove stat module & update lstat.
51601         * MODULES.html.sh (stat): Remove.
51602         * MODULES.html: Regenerated.
51603         * modules/lstat (Description): Correct function name.
51604         (Files): Add "lstat.h".
51605         (Depends-on): Remove stat, add xalloc, stat-macros.
51606         * modules/stat: Remove this file.
51607         (Include): Add "lstat.h", remove <sys/stat.h>.
51608
51609 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
51610
51611         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
51612         (ranged_convert): Don't save conversion in a temporary struct.
51613         This causes a warning with GCC 4.0.0, and anyway in the typical
51614         case it's not worth the extra 100 bytes or so of code.
51615         (ranged_convert, __mktime_internal): When calling a function via a
51616         pointer P, use P () rather than (*P) (), as we now assume C89 or
51617         better.
51618
51619 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
51620
51621         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
51622         "who -r" failed to give output.  Problem reported by Tim Waugh.
51623
51624         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
51625         (xcalloc): Use it to avoid needless tests.
51626         Problem reported by Jim Meyering.
51627
51628 2005-06-20  Derek Price  <derek@ximbiot.com>
51629
51630         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
51631         unnecessary for Autoconfs > 2.59c.
51632
51633 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
51634
51635         * lib/argp.h (__option_is_short): Check upper limit of
51636         __key. Isprint() requires its argument to have the value
51637         of an unsigned char or EOF.
51638
51639 2005-06-16  Jim Meyering  <jim@meyering.net>
51640
51641         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
51642         when either N or S is zero.
51643
51644 2005-06-16  Derek Price  <derek@ximbiot.com>
51645
51646         * m4/bison.m4: Declare YACC & YFLAGS precious.
51647
51648 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
51649
51650         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
51651         multibyte string or pattern, fall back on unibyte matching.
51652         Problem reported by James Youngman.
51653
51654 2005-06-08  Bruno Haible  <bruno@clisp.org>
51655
51656         * modules/csharpcomp: New file.
51657         * MODULES.html.sh (C#): Add csharpcomp.
51658
51659 2005-06-08  Bruno Haible  <bruno@clisp.org>
51660
51661         * m4/csharpcomp.m4: New file, from GNU gettext.
51662
51663 2005-06-08  Bruno Haible  <bruno@clisp.org>
51664
51665         * lib/csharpcomp.h: New file, from GNU gettext.
51666         * lib/csharpcomp.c: New file, from GNU gettext.
51667         * lib/csharpcomp.sh.in: New file, from GNU gettext.
51668
51669 2005-06-08  Bruno Haible  <bruno@clisp.org>
51670
51671         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
51672         warning on mingw.
51673
51674 2005-06-07  Derek Price  <derek@ximbiot.com>
51675
51676         Sync from CVS.
51677         * lib/glob_.h: Indent nested #ifdef.
51678
51679 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
51680
51681         Sync from coreutils.
51682         Use "file name" when talking about file names, instead of "filename"
51683         or "path", as per the GNU coding standards.
51684         * lib/mkdir-p.c: Renamed from makepath.c.
51685         (make_dir_parents): Renamed from make_path.  All callers changed.
51686         * lib/mkdir-p.h: Likewise.  All includers changed.
51687         * lib/filenamecat.c: Renamed from path-concat.c.
51688         (file_name_concat): Renamed from path_concat.  All callers changed.
51689         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
51690         * lib/filenamecat.h: Likewise.  All includers changed.
51691         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
51692         in comments or local variable names.
51693         * lib/basename.c: Likewise.
51694         * lib/canonicalize.c, canonicalize.h: Likewise.
51695         * lib/dirname.c, dirname.h: Likewise.
51696         * lib/euidaccess.c: Likewise.
51697         * lib/exclude.c: Likewise
51698         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
51699         * lib/fsusage.c, fsuage.h: Likewise.
51700         * lib/fts.c, fts_.h: Likewise.
51701         * lib/getcwd.c: Likewise.
51702         * lib/getloadavg.c: Likewise.
51703         * lib/mkstemp.c: Likewise.
51704         * lib/mountlist.c, mountlist.h: Likewise.
51705         * lib/openat.c, openat.h: Likewise.
51706         * lib/readlink-stub.c: Likewise.
51707         * lib/readutmp.c, readutmp.h: Likewise.
51708         * lib/rename.c: Likewise.
51709         * lib/rmdir.c: Likewise.
51710         * lib/same.c: Likewise.
51711         * lib/savedir.c: Likewise.
51712         * lib/stripslash.c: Likewise.
51713         * lib/tempname.c: Likewise.
51714         * lib/xreadlink.c: Likewise.
51715         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
51716         All uses changed.
51717         * lib/exclude.h: Likewise.
51718
51719         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
51720         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
51721         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
51722         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
51723         * lib/pathmax.h: Include <limits.h> unconditionally, since other
51724         files have been getting away with it for years (MORE/BSD 4.3
51725         is extinct now).
51726         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
51727         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
51728
51729         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
51730         Define to 256, not 255, as per modern POSIX.
51731
51732 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
51733
51734         Sync from coreutils.
51735         Use "file name" when talking about file names, instead of "filename"
51736         or "path", as per the GNU coding standards.
51737         * MODULES.html.sh: mkdir-p renamed from makepath.
51738         filenamecat renamed from path-concat.
51739         * modules/filenamecat: Renamed from modules/path-concat.
51740         (Files): filenamecat.h and filenamecat.c renamed from
51741         path-concat.h and path-concat.c.
51742         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
51743         (Include): filenamecat.h, not path-concat.h.
51744         * modules/mkdir-p: Renamed from modules/makepath.
51745         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
51746         makepath.c.
51747         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
51748         (Include): mkdir-p.h, not makepath.h.
51749
51750 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
51751
51752         Sync from coreutils.
51753         * m4/mkdir-p.m4: Renamed from makepath.m4.
51754         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
51755         Rename files from makepath.c to mkdir-p.c, and from
51756         makepath.h to mkdir-p.h.
51757         * m4/filenamecat.m4: Renamed from path-concat.m4.
51758         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
51759         Rename files from path-concat.c to filenamecat.c,
51760         and from path-concat.h to filenamecat.h.
51761         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
51762         "file name" in local variables or comments.
51763         * m4/rename.m4: Likewise.
51764
51765 2005-06-01  Bruno Haible  <bruno@clisp.org>
51766
51767         * modules/csharpexec: New file.
51768         * MODULES.html.sh (C#): New section.
51769
51770 2005-06-01  Bruno Haible  <bruno@clisp.org>
51771
51772         * m4/csharp.m4: New file, from GNU gettext.
51773         * m4/csharpexec.m4: New file, from GNU gettext.
51774
51775 2005-06-01  Bruno Haible  <bruno@clisp.org>
51776
51777         * lib/csharpexec.h: New file, from GNU gettext.
51778         * lib/csharpexec.c: New file, from GNU gettext.
51779         * lib/csharpexec.sh.in: New file, from GNU gettext.
51780
51781 2005-05-31  Derek Price  <derek@ximbiot.com>
51782             Paul Eggert  <eggert@cs.ucla.edu>
51783
51784         Sync from cvs.
51785         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
51786
51787 2005-05-31  Derek Price  <derek@ximbiot.com>
51788             Paul Eggert  <eggert@cs.ucla.edu>
51789
51790         Sync from cvs.
51791         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
51792
51793 2005-05-29  Derek Price  <derek@ximbiot.com>
51794
51795         * config/srclist.txt (glob_.h, glob.c): Add these files.
51796
51797 2005-05-29  Derek Price  <derek@ximbiot.com>
51798
51799         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
51800         * modules/glob: New file.
51801         * modules/getlogin_r: Add link to POSIX spec in description.
51802
51803 2005-05-29  Derek Price  <derek@ximbiot.com>
51804             Paul Eggert  <eggert@cs.ucla.edu>
51805
51806         * m4/glob.m4: New file.
51807
51808 2005-05-29  Derek Price  <derek@ximbiot.com>
51809             Paul Eggert  <eggert@cs.ucla.edu>
51810
51811         * lib/glob_.h, lib/glob.c: New files.
51812
51813 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
51814
51815         * modules/fts (Files): Remove m4/inttypes-pri.m4.
51816         * modules/fts-lgpl (Depends-on): Remove gettext.
51817
51818 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
51819
51820         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
51821         and don't require gt_INTTYPES_PRI.
51822
51823 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
51824
51825         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
51826
51827         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
51828         the configuration hassle isn't worth it.
51829         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
51830         (LONGEST_MODIFIER, PRIuMAX): Remove.
51831
51832 2005-05-27  Bruno Haible  <bruno@clisp.org>
51833
51834         * lib/getlogin_r.h: Remove second include of <stddef.h>.
51835
51836 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
51837
51838         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
51839         _POSIX_PTHREAD_SEMANTICS for Solaris.
51840
51841 2005-05-25  Derek Price  <derek@ximbiot.com>
51842
51843         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
51844
51845 2005-05-25  Derek Price  <derek@ximbiot.com>
51846             Paul Eggert  <eggert@cs.ucla.edu>
51847
51848         * modules/getlogin_r, m4/getlogin_r.m4: New files.
51849         * lib/getlogin_r.c, getlogin_r.h: New files.
51850
51851 2005-05-25  Bruno Haible  <bruno@clisp.org>
51852             Derek Price  <derek@ximbiot.com>
51853
51854         * lib/getlogin_r.h: Simplify API documentation.
51855
51856 2005-05-23  Derek Price  <derek@ximbiot.com>
51857
51858         * modules/minmax (Files): Add m4/minmax.m4.
51859         (configure.ac): Add gl_MINMAX.
51860
51861 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
51862
51863         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
51864         so that unistd-safer.h (GPL'ed code) need not be included.
51865
51866 2005-05-22  Bruno Haible  <bruno@clisp.org>
51867
51868         * m4/minmax.m4: New file.
51869         Based on a patch by Derek Price <derek@ximbiot.com>.
51870
51871 2005-05-22  Bruno Haible  <bruno@clisp.org>
51872
51873         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
51874         (INT64_MIN): Fix definition.
51875         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
51876
51877         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
51878         NEED_SIGNED_INT_TYPES.
51879
51880         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
51881         HAVE_SYSTEM_INTTYPES.
51882
51883 2005-05-22  Bruno Haible  <bruno@clisp.org>
51884
51885         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
51886         Also include <sys/param.h> if it defines MIN, MAX.
51887         Based on a patch by Derek Price <derek@ximbiot.com>.
51888
51889 2005-05-21  Jim Meyering  <jim@meyering.net>
51890
51891         * modules/fts (Files): Add m4/inttypes-pri.m4.
51892         (Depends-on): Add lstat and remove gettext.  Alphabetize.
51893
51894 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
51895
51896         New fts module.
51897         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
51898         (setup_dir, free_dir): New functions.
51899         (enter_dir, leave_dir): Define trivial
51900         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
51901         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
51902         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
51903         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
51904         Move to fts-cycle.c.
51905         (fts_open): Use setup_dir.
51906         (fts_close): Use free_dir.
51907         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
51908         This adds a label and some gotos, but the alternatives were messier.
51909         Check for memory allocation failure when entering a dir.
51910         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
51911         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
51912         (FTS): New member fts_cycle, that is a union that contains the
51913         old active_dir_ht and cycle_state.  All uses changed to mention
51914         fts_cycle.ht and fts_cycle.state.
51915         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
51916         fts.c, with the following changes:
51917         (setup_dir, free_dir): New functions.
51918         (enter_dir): Now returns bool.  Return true if successful, false
51919         if memory exhausted.  All callers changed.
51920         Do not bother partly cleaning up on
51921         memory allocation failure; that is free_dir's job.
51922         However, free ad if hash_insert fails, to avoid memory leak.
51923         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
51924         fts->fts_options to see which union member to use.
51925
51926 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
51927
51928         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
51929         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
51930
51931 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
51932
51933         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
51934
51935 2005-05-20  Jim Meyering  <jim@meyering.net>
51936
51937         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
51938         Now a macro, to pacify GCC.
51939
51940 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
51941
51942         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
51943         of -1.
51944
51945 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
51946
51947         * lib/chown.c (rpl_chown): Return -1 on failure.
51948
51949 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
51950
51951         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
51952         Don't check for stddef.h.
51953         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
51954         don't use its results.
51955         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
51956         since we include them unconditionally.  Don't require
51957         AM_STDBOOL_H, since stdbool is a prerequisite.
51958         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
51959         since we assume C89 or better.
51960         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
51961         as we don't use their results.
51962         Don't check for fchdir, memmove, memset, strrchr, as we use
51963         them unconditionally.
51964         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
51965         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
51966
51967 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
51968
51969         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
51970         Include <stddef.h> unconditionally, since we assume C89 now.
51971         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
51972         * lib/fts.c: Include fts_.h first, to check interface.
51973         Do not include intprops.h; no longer needed.
51974         Include cycle-check.h and hash.h, since fts_.h no longer does.
51975         Remove unnecessary casts of closedir to void.
51976         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
51977         decide whether to decrement nlinks.
51978         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
51979         (FTS): Use struct hash_table * instead of Hash_table, so that
51980         we no longer need to include hash.h here.
51981
51982 2005-05-18  Jim Meyering  <jim@meyering.net>
51983
51984         * modules/dirfd (License): Change to LGPL.  Most of the code
51985         is already in the public domain.
51986
51987 2005-05-18  Jim Meyering  <jim@meyering.net>
51988
51989         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
51990         Reported by Yoann Vandoorselaere.
51991
51992 2005-05-17  Jim Meyering  <jim@meyering.net>
51993
51994         * m4/fts.m4: New file, from coreutils.
51995
51996 2005-05-17  Jim Meyering  <jim@meyering.net>
51997
51998         * lib/fts.c, lib/fts_.h: New files, from coreutils.
51999
52000 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52001
52002         Sync from coreutils.
52003         * m4/unlinkdir.m4: New file.
52004
52005 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52006
52007         Sync from coreutils.
52008         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
52009         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
52010         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
52011         White space changes only.
52012         * lib/makepath.c (make_path): Port to hosts where leading "//" is
52013         special.
52014         * lib/yesno.c: Include getline.h, not ctype.h.
52015         (yesno): Don't remove leading white space; POSIX doesn't allow it.
52016         Use getline to remove arbitrary restriction on response length.
52017
52018 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52019
52020         * config/srclist-update: Spell out "Street" in FSF postal
52021         mail address; this is the style the FSF seems to prefer.
52022
52023         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
52024         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
52025         this updates FSF postal mail address.
52026
52027         Sync from coreutils.
52028         * modules/unlinkdir: New file.
52029         * modules/yesno (Depends-on): Add getline.
52030         * MODULES.html.sh (File system functions): Add unlinkdir.
52031
52032 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
52033
52034         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
52035         lib/strsep.h:
52036         Change the initial comment to refer to GPL, not LGPL.
52037         gnulib-tool will change it to LGPL as needed.
52038
52039         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
52040         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
52041         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
52042         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
52043         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
52044         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
52045         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
52046         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
52047         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
52048         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
52049         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
52050         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
52051         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
52052         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
52053         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
52054         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
52055         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
52056         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
52057         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
52058         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
52059         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
52060         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
52061         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
52062         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
52063         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
52064         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
52065         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
52066         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
52067         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
52068         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
52069         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
52070         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
52071         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
52072         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
52073         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
52074         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
52075         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
52076         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
52077         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
52078         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
52079         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
52080         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
52081         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
52082         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
52083         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
52084         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
52085         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
52086         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
52087         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
52088         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
52089         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
52090         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
52091         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
52092         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
52093         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
52094         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
52095         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
52096         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
52097         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
52098         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
52099         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
52100         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
52101         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
52102         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
52103         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
52104         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
52105         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
52106         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
52107         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
52108         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
52109         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
52110         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
52111         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
52112         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
52113         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
52114         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
52115         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
52116         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
52117         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
52118         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
52119         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
52120         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
52121         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
52122         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
52123         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
52124         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
52125         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
52126         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
52127         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
52128         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
52129         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
52130         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
52131         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
52132         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
52133         lib/yesno.c, lib/yesno.h:
52134         Update FSF postal mail address.
52135
52136 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
52137
52138         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
52139         tests/test-memmem.c, tests/test-stpncpy.c:
52140         Update FSF postal mail address.
52141
52142 2005-05-13  Bruno Haible  <bruno@clisp.org>
52143
52144         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
52145         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
52146         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
52147         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
52148         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
52149         Add support for 64-bit integers in the MSVC compiler.
52150
52151 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
52152
52153         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
52154
52155 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
52156
52157         * gnulib-tool (func_import): Sort and uniquify recommended includes.
52158
52159 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
52160
52161         * doc/getdate.texi (General date syntax): Don't say that date
52162         date --iso-8601=ns generates acceptable dates; it doesn't yet.
52163         Problem reported by Nic Ferrier.
52164
52165 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52166
52167         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
52168         specified in ai_socktype. Fix invalid ai_protocol
52169         check. ai_protocol is usually set to 0 or depending on
52170         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
52171         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
52172         ai_socktype / ai_protocol in the returned addrinfo structure.
52173
52174 2005-05-10  Simon Josefsson  <jas@extundo.com>
52175
52176         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
52177         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
52178
52179 2005-05-10  Karl Berry  <karl@gnu.org>
52180
52181         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
52182         (from http://www.gnu.org/licenses).
52183         * doc/COPYING.LIB: also rename to COPYING.LESSER.
52184         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
52185         fdl.texi suffices.
52186
52187 2005-05-10  Karl Berry  <karl@gnu.org>
52188
52189         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
52190         (COPYING.DOC): remove.
52191
52192         * config/srclist-update: new FSF address.
52193
52194 2005-05-10  Derek Price  <derek@ximbiot.com>
52195
52196         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
52197         possible.
52198
52199 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52200             Bruno Haible  <bruno@clisp.org>
52201
52202         * modules/inet_ntop: New file.
52203         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
52204         inet_ntop.
52205
52206 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52207             Bruno Haible  <bruno@clisp.org>
52208
52209         * m4/inet_ntop.m4: New file.
52210
52211 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52212             Bruno Haible  <bruno@clisp.org>
52213
52214         * lib/inet_ntop.h: New file.
52215         * lib/inet_ntop.c: New file, from glibc with modifications.
52216
52217 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
52218
52219         * modules/time_r (License): Change to LGPL.
52220         * modules/extensions (License): Change to LGPL.  Actually,
52221         the license is more permissive than that, but currently gnulib-tool
52222         doesn't know how to handle more-permissive licenses.
52223
52224         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
52225         Problem reported by Dave Love.
52226
52227 2005-05-08  Jim Meyering  <jim@meyering.net>
52228
52229         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
52230         blank.
52231
52232 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
52233
52234         * modules/argmatch (Depends-on): Add stdbool.
52235         * modules/backupfile (Depends-on): Likewise.
52236         * modules/chdir-long (Depends-on): Likewise.
52237         * modules/closeout (Depends-on): Likewise.
52238         * modules/cycle-check (Depends-on): Likewise.
52239         * modules/dirname (Depends-on): Likewise.
52240         * modules/fnmatch (Depends-on): Likewise.
52241         * modules/fsusage (Depends-on): Likewise.
52242         * modules/fwriteerror (Depends-on): Likewise.
52243         * modules/getcwd (Depends-on): Likewise.
52244         * modules/getloadavg (Depends-on): Likewise.
52245         * modules/hard-locale (Depends-on): Likewise.
52246         * modules/makepath (Depends-on): Likewise.
52247         * modules/mountlist (Depends-on): Likewise.
52248         * modules/nanosleep (Depends-on): Likewise.
52249         * modules/posixtm (Depends-on): Likewise.
52250         * modules/quotearg (Depends-on): Likewise.
52251         * modules/readtokens (Depends-on): Likewise.
52252         * modules/readtokens0 (Depends-on): Likewise.
52253         * modules/readutmp (Depends-on): Likewise.
52254         * modules/save-cwd (Depends-on): Likewise.
52255         * modules/strftime (Depends-on): Likewise.
52256         * modules/userspec (Depends-on): Likewise.
52257         * modules/utimecmp (Depends-on): Likewise.
52258         * modules/xgetcwd (Depends-on): Likewise.
52259         * modules/xnanosleep (Depends-on): Likewise.
52260         * modules/xstrtod (Depends-on): Likewise.
52261         * modules/yesno (Depends-on): Likewise.
52262
52263 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
52264
52265         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
52266         needless checks.
52267
52268 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52269
52270         Merge from coreutils.  Among other things,
52271         add bulletproofing for cases where stdin, stdout, or stderr are closed.
52272         * lib/fd-safer.c: New file.
52273         * lib/fcntl-safer.h, open-safer.c: Remove.
52274         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
52275         * lib/dup-safer.c: Include unistd-safer.h first.
52276         Don't include errno.h.
52277         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
52278         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
52279         * lib/file-type.c: Rely on file-type.h change.
52280         * lib/getloadavg.c: Include unistd-safer.h.
52281         (getloadavg): Use safer open.
52282         * lib/getusershell.c: Include "stdio-safer.h".
52283         (getusershell): Use safer fopen.
52284         * lib/long-options.c (long_options): Use NULL rather than 0.
52285         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
52286         'free'.
52287         * lib/modechange.c: Likewise.
52288         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
52289         (MODE_DONE): New constant.
52290         (struct mode_change): Remove 'next' member.
52291         (make_node_op_equals): New function; like the old one of the
52292         same name, except it allocates an array.
52293         (mode_compile, mode_create_from_ref): Use it.
52294         (mode_compile): Allocate result as an array, not a linked list.
52295         Parse octal string ourself, so that we catch mistakes like "+0".
52296         (mode_adjust): Arg is an array, not a linked list.
52297         * lib/modechange.c: Include stat-macros.h, xalloc.h.
52298         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
52299         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
52300         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
52301         Remove.  This is now stat-macros.h's job.
52302         (talloc): Remove.  All callers replaced by xalloc, so that
52303         our invokers don't have to worry about reporting memory failures.
52304         (make_node_op_equals): Remove.
52305         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
52306         New constants.
52307         (struct mode_change): Moved here from modechange.h.
52308         (mode_append_entry): Remove.
52309         (mode_compile): Remove MASKED_OPS arg, since it encouraged
52310         apps to have incorrect behavior.  Use simpler algorithm for head
52311         and tail.  Don't futz with umask; that's now the job of mode_adjust.
52312         Detect more invalid usages rather than having somewhat-random behavior.
52313         Don't insert an "a=" action, as that leads to incorrect behavior.
52314         (mode_compile, mode_create_from_ref): Return NULL on error instead
52315         of an enum, since now there's only one way to have an error.  All
52316         callers changed.
52317         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
52318         at the correct time.  Simplify calculation of "+u" and its ilk.
52319         Don't mishandle "+X".
52320         (mode_free): Remove "register" and localize decls.
52321         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
52322         (struct mode_change): Move to modechange.c; callers don't
52323         need to see this stuff.
52324         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
52325         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
52326         (mode_change, mode_adjust): Reflect the new signatures noted above.
52327         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
52328         that might redefine system include files.
52329         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
52330         (my_usleep): Use NULL rather than (void *) 0.
52331         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
52332         Use siginterrupt to specify that system calls should be interrupted.
52333         (rpl_nanosleep): Move initialization of suspended closer to call of
52334         my_usleep.
52335         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
52336         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
52337         (desirable_utmp_entry): New function.
52338         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
52339         using x2nrealloc, to simplify logic.
52340         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
52341         size calculation.  Do not assume utmp file is a regular file.
52342         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
52343         (READ_UTMP_CHECK_PIDS): New constant.
52344         * lib/save-cwd.c: Include unistd-safer.h.
52345         (save_cwd): Use fd_safer.
52346         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
52347         [!_LIBC] Include "stat-macros.h" instead.
52348         * lib/unistd-safer.h (fd_safer): New decl.
52349
52350 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52351
52352         * modules/getloadavg (Depends-on): Add unistd-safer.
52353         * modules/getusershell (Depends-on): Add stdio-safer.
52354         * modules/lstat (Depends-on): Remove xalloc.
52355         * modules/mkstemp (Depends-on): Add stat-macros.
52356         * modules/modechange (Depends-on): Remove xstrtol.
52357         Add stat-macros, xalloc.
52358         * modules/save-cwd (Depends-on): Add unistd-safer.
52359         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
52360         * modules/unistd-safer (Files): Add lib/fd-safer.c
52361         (Makefile.am): Remove lib_SOURCES.
52362
52363         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
52364         Remove fcntl-safer; unistd-safer supersedes it.
52365
52366 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52367
52368         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
52369         AC_HEADER_STAT.
52370         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
52371         (gl_PREREQ_CHOWN): Remove.
52372         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
52373         it.  Don't require AC_HEADER_STAT.
52374         (gl_PREREQ_LSTAT): Remove.
52375         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
52376         Don't require AC_HEADER_STAT.
52377         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
52378         (gl_PREREQ_RMDIR): Remove.
52379         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
52380         mention stat-macros.h or AC_HEADER_STAT, since we'll make
52381         the stat-macros module a prerequisite.
52382         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
52383         * m4/filemode.m4 (gl_FILEMODE): Likewise.
52384         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
52385         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
52386         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
52387         variable names.
52388         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
52389         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
52390         variable prefixes.
52391         * m4/fcntl-safer.m4: Remove.
52392         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
52393         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
52394         Invoke gl_PREREQ_FD_SAFER.
52395         (gl_PREREQ_FD_SAFER): New macro.
52396         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
52397         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
52398         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
52399         Remove duplicate call to AC_LIBOBJ(readutmp).
52400         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
52401
52402         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
52403         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
52404
52405 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52406
52407         * MODULES.html.sh (Misc): Add byteswap.
52408
52409 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52410
52411         * modules/getcwd (Depends-on): Add extensions.
52412         * modules/openat (Depends-on): Likewise.
52413
52414 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52415
52416         * modules/byteswap: New file.
52417
52418 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52419
52420         * m4/byteswap.m4: New file.
52421
52422 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52423
52424         * lib/byteswap_.h: New file.
52425
52426 2005-04-25  Karl Berry  <karl@gnu.org>
52427
52428         * m4/gettext.m4: Update from GNU gettext 0.14.4.
52429
52430 2005-04-25  Albert Chin  <china@thewrittenword.com>
52431
52432         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
52433         Toolkit C bug.
52434
52435 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
52436
52437         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
52438         (func_ln_if_changed) Remove forcibly for no error message
52439         in case file does not exist.
52440
52441 2005-04-19  Simon Josefsson  <jas@extundo.com>
52442
52443         * gnulib-tool (Options): Make --symlink mean --symbolic.
52444
52445 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
52446
52447         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
52448
52449 2005-04-16  Simon Josefsson  <jas@extundo.com>
52450
52451         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
52452
52453 2005-04-15  Simon Josefsson  <jas@extundo.com>
52454
52455         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
52456
52457 2005-04-15  Simon Josefsson  <jas@extundo.com>
52458
52459         * gnulib-tool: Rename --symlink to --symbolic.
52460
52461 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
52462
52463         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
52464         symbolic links to files instead of copying/moving.  Add --aux-dir,
52465         specifying directory relative --dir where auxiliary build tools
52466         are placed.
52467
52468 2005-04-14  Bruno Haible  <bruno@clisp.org>
52469
52470         * modules/allocsa (License): Change to LGPL.
52471         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
52472
52473 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
52474
52475         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
52476         that "UTC +1 second" continues to work.  Problem reported
52477         by Dmitry V. Levin.
52478         (relunit_snumber): New rule.
52479         (relunit): Use it.
52480
52481 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
52482
52483         * lib/getdate.y (universal_time_zone_table): New constant.
52484         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
52485         universal_time_zone_table.
52486         (lookup_zone): Prefer universal_time_zone_table to
52487         local_time_zone_table, so that "GMT" time stamps are allowed in
52488         London during the summer.  Problem reported by Ian Abbott.
52489
52490 2005-04-12  Jim Meyering  <jim@meyering.net>
52491
52492         * lib/human.c (humblock): Set *options even when returning due to
52493         xstrtoumax conversion failure.  Thanks to a used-uninitialized
52494         warning from gcc-4.
52495
52496 2005-04-09  Jim Meyering  <jim@meyering.net>
52497
52498         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
52499         -Wuninitialized: initialize tm0.tm_year.
52500
52501 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
52502
52503         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
52504         count, since there's no maximum.  All uses changed.
52505         Add member dsts_seen.
52506         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
52507         not being INT_MAX.
52508         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
52509         Use pc_rels_seen to decide whther a date is absolute.
52510
52511         * lib/getdate.y (number): Don't overwrite year.
52512         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
52513         check.
52514
52515 2005-04-02  Simon Josefsson  <jas@extundo.com>
52516
52517         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
52518         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
52519
52520 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
52521
52522         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
52523         where no absolute path name can be longer than PATH_MAX.
52524
52525 2005-03-27  Jim Meyering  <jim@meyering.net>
52526
52527         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
52528
52529 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
52530
52531         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
52532         "one's complement" -> "ones' complement" in comment, as per Knuth.
52533         "value of type" -> "type or expression" in comment.
52534         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
52535
52536 2005-03-26  Jim Meyering  <jim@meyering.net>
52537
52538         Comment nits.
52539         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
52540         Correct typos: s/or/of/.
52541
52542 2005-03-26  Jim Meyering  <jim@meyering.net>
52543
52544         * modules/check-include-files: Move to ../ and rename to...
52545         * check-module: ...this.
52546
52547 2005-03-25  Jim Meyering  <jim@meyering.net>
52548
52549         * modules/xvasprintf (Files): Add xalloc.h.
52550
52551 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
52552
52553         * modules/gettext (Files): config/config.rpath ->
52554         build-aux/config.rpath
52555         * modules/iconv (Files): Likewise.
52556         Problem reported by Oskar Liljeblad.
52557
52558 2005-03-23  Jim Meyering  <jim@meyering.net>
52559
52560         * modules/check-include-files: New script to check for
52561         missing dependencies, multiple includes, etc.
52562
52563         * modules/c-strtold (Depends-on): Add xalloc.
52564         * modules/c-strtod (Depends-on): Add xalloc.
52565         * modules/hash (Depends-on): Add xalloc.
52566         (Files): Remove lib/xalloc.h.
52567
52568         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
52569         * modules/userspec (Files): Add lib/inttostr.h.
52570
52571 2005-03-23  Jim Meyering  <jim@meyering.net>
52572
52573         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
52574
52575 2005-03-22  Jim Meyering  <jim@meyering.net>
52576
52577         * modules/stat-macros: New module.
52578         * modules/canonicalize, modules/euidaccess, modules/file-type,
52579         * modules/filemode, modules/lchown, modules/makepath,
52580         * modules/rmdir, modules/stat: Depend on new stat-macros module
52581         rather than listing lib/stat-macros.h manually.
52582         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
52583
52584 2005-03-22  Jim Meyering  <jim@meyering.net>
52585
52586         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
52587
52588 2005-03-22  Bruno Haible  <bruno@clisp.org>
52589
52590         * config/srclist.txt: Replace target directory 'config' with
52591         'build-aux'.
52592         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
52593         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
52594         ../build-aux/.
52595
52596 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
52597
52598         * modules/chdir-long (Depends-on): Add mempcpy.
52599
52600         * modules/acl, modules/backupfile, modules/c-strtod,
52601         modules/c-strtold, modules/canon-host, modules/canonicalize,
52602         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
52603         modules/exclude, modules/exitfail, modules/file-type,
52604         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
52605         modules/getdate, modules/getline, modules/getpagesize,
52606         modules/getpass, modules/getugroups, modules/group-member,
52607         modules/hard-locale, modules/hash, modules/human, modules/idcache,
52608         modules/inttostr, modules/long-options, modules/makepath,
52609         modules/md5, modules/memcasecmp, modules/memcoll,
52610         modules/modechange, modules/mountlist, modules/path-concat,
52611         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
52612         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
52613         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
52614         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
52615         modules/strftime, modules/strndup, modules/strverscmp,
52616         modules/timespec, modules/unlocked-io, modules/userspec,
52617         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
52618         modules/yesno:
52619         Remove lib_SOURCES line from Makefile.am section, as this is now
52620         done automatically by the corresponding Autoconf macro.
52621
52622 2005-03-21  Jim Meyering  <jim@meyering.net>
52623
52624         Changes imported from coreutils.
52625
52626         * lib/cycle-check.c: Don't include xalloc.h.
52627
52628         * lib/path-concat.c: Don't include assert.h.
52629         (path_concat): Remove assertion that would have triggered
52630         for ABASE starting with more than one slash.
52631         Reported by Andreas Schwab.
52632
52633         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
52634         properly when ABASE is an absolute file name.
52635         Correct the description of this function.
52636         Include <assert.h>.
52637         Add an assertion and a test driver.
52638         This fixes a bug introduced on 2004-07-02.
52639         Andreas Schwab reported the resulting failure of cp --parents:
52640         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
52641
52642 2005-03-21  Jim Meyering  <jim@meyering.net>
52643
52644         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
52645         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
52646
52647 2005-03-21  Jim Meyering  <jim@meyering.net>
52648         and  Paul Eggert  <eggert@cs.ucla.edu>
52649
52650         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
52651         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
52652         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
52653         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
52654         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
52655         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
52656         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
52657         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
52658         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
52659         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
52660         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
52661         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
52662         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
52663         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
52664         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
52665         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
52666         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
52667         for these modules.
52668
52669 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
52670
52671         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
52672         (which shouldn't happen), generate nothing instead of returning 0
52673         immediately, so that nstrftime (NULL, ...) doesn't return 0.
52674
52675 2005-03-16  Bruno Haible  <bruno@clisp.org>
52676
52677         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
52678         HAVE_LONGLONG_64BIT.
52679
52680 2005-03-16  Bruno Haible  <bruno@clisp.org>
52681
52682         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
52683         HAVE_LONGLONG_64BIT.
52684
52685 2005-03-16  Bruno Haible  <bruno@clisp.org>
52686
52687         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
52688         HAVE_LONGLONG_64BIT.
52689
52690 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
52691
52692         * lib/strftime.c (my_strftime): Prepend space to format so that we can
52693         reliably distinguish strftime failure from empty output on POSIX
52694         hosts.
52695
52696 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
52697
52698         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
52699         (iconv_string): Don't guess a size-zero buffer, as that might cause
52700         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
52701         result would be 'too large', where 'too large' is (heuristically)
52702         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
52703         overflow concerns.  This will prevent some unwanted malloc failures
52704         when the inputs are very large.
52705
52706 2005-03-15  Karl Berry  <karl@gnu.org>
52707
52708         * config/srclist.txt (config.rpath): from gettext.
52709         * config/config.rpath: update.
52710
52711 2005-03-15  Bruno Haible  <bruno@clisp.org>
52712
52713         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
52714         to 'negate'.
52715
52716         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
52717         variable.
52718
52719         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
52720         results.
52721
52722 2005-03-14  Simon Josefsson  <jas@extundo.com>
52723
52724         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
52725         <fx@gnu.org>.
52726
52727 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
52728
52729         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
52730         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
52731         intprops.h.
52732         * lib/strtol.c: Likewise.
52733
52734 2005-03-14  Jim Meyering  <jim@meyering.net>
52735
52736         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
52737         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
52738         to be nonzero so that we (and caller) can detect the difference
52739         between a valid zero-length expansion and an error return, even
52740         when the underlying strftime fails before writing anything into
52741         that location.
52742
52743 2005-03-14  Bruno Haible  <bruno@clisp.org>
52744
52745         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
52746         Update from GNU gettext 0.14.3.
52747
52748 2005-03-10  Jim Meyering  <jim@meyering.net>
52749
52750         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
52751
52752 2005-03-10  Jim Meyering  <jim@meyering.net>
52753
52754         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
52755         so that this module works on systems without fchdir.
52756
52757 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
52758
52759         Factor int-properties macros into a single file, except for
52760         glibc-related files.
52761         * lib/intprops.h: New file.
52762         * lib/getloadavg.c: Include it instead of limits.h.
52763         (INT_STRLEN_BOUND): Remove.
52764         * lib/human.c: Include intprops.h.
52765         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
52766         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
52767         302/1000.
52768         * lib/inttostr.h: Include intprops.h instead of limits.h.
52769         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
52770         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
52771         for consistency with intprops.h.
52772         (time_t_is_integer, twos_complement_arithmetic): Use them.
52773         * lib/sig2str.h: Include <signal.h>, intprops.h.
52774         (INT_STRLEN_BOUND): Remove.
52775         * lib/strftime.c (TYPE_SIGNED): Remove.
52776         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
52777         * lib/strtol.c: Adjust comments to match intprops.h.
52778         * lib/userspec.c: Include intprops.h.
52779         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
52780         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
52781         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
52782         instead of rolling our own expressions.
52783         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
52784
52785         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
52786         instead of int.
52787         (my_strftime): Do not mishandle years close to INT_MAX, by doing
52788         the right thing even if adding 1900 would overflow.  Similarly
52789         for tm_mon + 1 and tm_yday + 1.
52790         Make %Y always equivalent to %C%y, and similarly for %G and %g.
52791         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
52792         (DO_SIGNED_NUMBER): New macro.
52793         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
52794
52795 2005-03-07  Bruno Haible  <bruno@clisp.org>
52796
52797         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
52798
52799 2005-03-07  Bruno Haible  <bruno@clisp.org>
52800
52801         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
52802
52803 2005-03-04  Derek R. Price  <derek@ximbiot.com>
52804
52805         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
52806         (func_import): Only replace files via --import when they have actually
52807         changed.
52808
52809 2005-03-03  Derek R. Price  <derek@ximbiot.com>
52810
52811         * m4/mmap-anon.m4: New file.
52812         * m4/pagealign_alloc.m4: New file.
52813
52814 2005-03-03  Derek R. Price  <derek@ximbiot.com>
52815             Bruno Haible  <bruno@clisp.org>
52816
52817         * modules/pagealign_alloc: New file.
52818         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
52819
52820 2005-03-03  Derek R. Price  <derek@ximbiot.com>
52821             Bruno Haible  <bruno@clisp.org>
52822
52823         * lib/pagealign_alloc.h: New file.
52824         * lib/pagealign_alloc.c: New file.
52825
52826 2005-03-03  Bruno Haible  <bruno@clisp.org>
52827
52828         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
52829         Use an all-permissive copyright notice, recommended by RMS.
52830
52831 2005-03-02  Bruno Haible  <bruno@clisp.org>
52832
52833         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
52834         of AIX, the replacement has to be done only after <string.h> is
52835         included, therefore not in config.h. stpncpy.h does the replacement,
52836         and stpncpy.c uses it.
52837
52838 2005-03-02  Bruno Haible  <bruno@clisp.org>
52839
52840         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
52841         stpncpy.c uses it.
52842
52843 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
52844
52845         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
52846         The workaround isn't strictly needed for POSIX conformance, and
52847         it's too much of a pain to configure and maintain.  We'll ask
52848         people to fix their kernels instead.
52849         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
52850         (NANOSLEEP_BUG_WORKAROUND): Remove.
52851         (xnanosleep): Remove the workaround.
52852
52853 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
52854
52855         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
52856         Reported by Derek Price.
52857         (Include): Add "timespec.h".
52858
52859         * modules/xnanosleep (Depends-on): Remove gethrxtime.
52860
52861 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
52862
52863         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
52864         to detect nanosleep bug.
52865
52866 2005-03-01  Bruno Haible  <bruno@clisp.org>
52867
52868         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
52869
52870 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
52871
52872         * modules/gethrxtime: New file.
52873         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
52874         (Depends-on): Add gethrxtime.
52875         (configure.ac): Add gl_XNANOSLEEP.
52876         (Makefile.am): Remove lib_SOURCES line.
52877
52878 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
52879
52880         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
52881         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
52882
52883 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
52884
52885         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
52886         * lib/timespec.h (gettime): Return void, since it always
52887         succeeds now.  All uses changed.
52888         * lib/gettime.c (gettime) Likewise.
52889         [HAVE_NANOTIME]: Prefer nanotime.
52890         Assume gettimeofday succeeds, as POSIX requires.
52891         Assime time () succeeds, since other code already does.
52892         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
52893         (timespec_subtract): Remove.
52894         (NANOSLEEP_BUG_WORKAROUND): New constant.
52895         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
52896         things considerably.  Use it only on GNU/Linux hosts, since the
52897         workaround shouldn't be needed elsewhere.
52898
52899 2005-02-24  Bruno Haible  <bruno@clisp.org>
52900
52901         * modules/gettext (Files): Add m4/glibc2.m4.
52902
52903 2005-02-24  Bruno Haible  <bruno@clisp.org>
52904
52905         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
52906         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
52907         * m4/progtest.m4:
52908         Update from GNU gettext 0.14.2.
52909         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
52910
52911 2005-02-24  Bruno Haible  <bruno@clisp.org>
52912
52913         * lib/localcharset.c: Update from GNU gettext 0.14.2.
52914         * lib/config.charset: Update from GNU gettext 0.14.2.
52915
52916 2005-02-24  Bruno Haible  <bruno@clisp.org>
52917
52918         * lib/gettext.h: Update from GNU gettext 0.14.2.
52919
52920 2005-02-23  Simon Josefsson  <jas@extundo.com>
52921
52922         * m4/iconvme.m4: New file.
52923
52924 2005-02-23  Jim Meyering  <jim@meyering.net>
52925
52926         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
52927         change.
52928         Thanks to Bruno Haible for catching it.
52929
52930 2005-02-22  Simon Josefsson  <jas@extundo.com>
52931
52932         * modules/iconvme: New file.
52933
52934         * MODULES.html.sh: Add iconvme.
52935
52936 2005-02-22  Simon Josefsson  <jas@extundo.com>
52937
52938         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
52939
52940 2005-02-22  Simon Josefsson  <jas@extundo.com>
52941
52942         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
52943
52944 2005-02-22  Jim Meyering  <jim@meyering.net>
52945
52946         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
52947         s/ifndef/ifdef/.
52948
52949 2005-02-20  Neil Conway  <neilc@samurai.com>
52950
52951         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
52952         returned by OSX/Darwin if the specified buffer is not large
52953         enough for the hostname.
52954
52955 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
52956
52957         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
52958         pass it to _help, otherwise the latter coredumps trying to
52959         dereference state.root_argp.
52960
52961 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
52962
52963         * modules/chdir-long (Depends-on): Add memrchr.
52964         * modules/memrchr (Files): Add lib/memrchr.h.
52965         (Include): "memrchr.h".
52966
52967 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
52968
52969         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
52970
52971 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
52972
52973         * lib/memrchr.h: New file.
52974         * lib/chdir-long.c: Include it.
52975         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
52976         Don't bother including stddef.h.
52977
52978 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
52979
52980         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
52981         inclusion.
52982         Include <sys/types.h>, for dev_t.
52983         (ME_DUMMY, ME_REMOTE): Move from here....
52984         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
52985         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
52986         Dmitry V. Levin.
52987         Include mountlist.h first, to test the interface.
52988
52989 2005-01-29  Bruno Haible  <bruno@clisp.org>
52990
52991         * lib/progname.c (program_name): Initialize.
52992         Needed when linking statically on MacOS X.
52993
52994 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
52995
52996         Sync from coreutils.
52997         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
52998         (Depends-on): Add c-strtod.
52999         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
53000
53001 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
53002
53003         Sync from coreutils.
53004         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
53005
53006         Remove files that are specific to coreutils.
53007         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
53008
53009 2005-01-28  Bruno Haible  <bruno@clisp.org>
53010
53011         * modules/javacomp: New file.
53012         * MODULES.html.sh (Java): Add javacomp.
53013
53014 2005-01-28  Bruno Haible  <bruno@clisp.org>
53015
53016         * m4/javacomp.m4: New file, from GNU gettext.
53017
53018 2005-01-28  Bruno Haible  <bruno@clisp.org>
53019
53020         * lib/javacomp.sh.in: New file, from GNU gettext.
53021         * lib/javacomp.h: New file, from GNU gettext.
53022         * lib/javacomp.c: New file, from GNU gettext.
53023
53024 2005-01-26  Simon Josefsson  <jas@extundo.com>
53025
53026         * lib/gai_strerror.c: Use GPL in header.
53027
53028 2005-01-26  Bruno Haible  <bruno@clisp.org>
53029
53030         * modules/javaexec: New file.
53031         * MODULES.html.sh (Java): Add javaexec.
53032
53033 2005-01-26  Bruno Haible  <bruno@clisp.org>
53034
53035         * m4/javaexec.m4: New file, from GNU gettext.
53036
53037 2005-01-26  Bruno Haible  <bruno@clisp.org>
53038
53039         * lib/javaexec.sh.in: New file, from GNU gettext.
53040         * lib/javaexec.h: New file, from GNU gettext.
53041         * lib/javaexec.c: New file, from GNU gettext.
53042
53043 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53044
53045         * modules/lchown (Depends-on): Remove lchown.h
53046
53047 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53048
53049         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
53050         must be defined if the header file was not found, in order
53051         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
53052
53053 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53054
53055         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
53056         initializers for struct pentry_state.
53057         (__argp_error): Check return value of __asprintf
53058         (__argp_failure): Translate error message
53059
53060         * lib/argp-parse.c: Removed braces around the expansion of N_()
53061
53062 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
53063
53064         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
53065         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
53066         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
53067         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
53068         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
53069         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
53070         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
53071         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
53072         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
53073         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
53074         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
53075         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
53076         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
53077         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
53078         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
53079         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
53080         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
53081         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
53082         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
53083         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
53084         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
53085         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
53086         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
53087         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
53088         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
53089         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
53090         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
53091         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
53092         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
53093         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
53094         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
53095         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
53096         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
53097         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
53098         xstrtol.m4, xstrtoumax.m4, yesno.m4:
53099         Use an all-permissive copyright notice, recommended by RMS.
53100
53101 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
53102
53103         * modules/chdir-long (Depends-on): Remove mempcpy.
53104
53105 2005-01-21  Jim Meyering  <jim@meyering.net>
53106
53107         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
53108         same value as for Solaris 9.
53109
53110         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
53111         component length.  This included changing the parameter to be
53112         of type `char *' rather than `char const *'.
53113         * lib/chdir-long.h (chdir_long): Update prototype.
53114
53115         * lib/openat.c (fdopendir, fstatat): New functions.
53116         * lib/openat.h: Include headers required for use of DIR and struct
53117         stat.
53118         [AT_SYMLINK_NOFOLLOW]: Define.
53119         (fdopendir, fstatat): Add prototypes.
53120
53121 2005-01-21  Bruno Haible  <bruno@clisp.org>
53122
53123         * modules/classpath: New file.
53124         * MODULES.html.sh (Java): Add classpath.
53125
53126 2005-01-21  Bruno Haible  <bruno@clisp.org>
53127
53128         * lib/classpath.h: New file, from GNU gettext.
53129         * lib/classpath.c: New file, from GNU gettext.
53130
53131 2005-01-20  Simon Josefsson  <jas@extundo.com>
53132
53133         * modules/version-etc-fsf: New file.
53134
53135 2005-01-20  Simon Josefsson  <jas@extundo.com>
53136
53137         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
53138         * lib/version-etc.c: Remove version_etc_copyright.
53139         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
53140         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
53141
53142 2005-01-20  Simon Josefsson  <jas@extundo.com>
53143
53144         * lib/base64.h (isbase64): Add.
53145
53146         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
53147         using a unsigned prototype, don't inline.
53148         (base64_decode): Use it.
53149
53150 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53151
53152         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
53153         it.
53154
53155 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53156
53157         * lib/save-cwd.c (save_cwd): Remove code to support the case
53158         where fchdir is missing or flaky.
53159
53160 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53161
53162         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
53163
53164 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
53165
53166         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
53167         AC_LIBSOURCES now does this.
53168         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
53169         with new ullong_max module.
53170
53171 2005-01-19  Bruno Haible  <bruno@clisp.org>
53172
53173         * modules/sh-quote: New file.
53174         * MODULES.html.sh (Executing programs): Add sh-quote.
53175
53176 2005-01-19  Bruno Haible  <bruno@clisp.org>
53177
53178         * lib/sh-quote.h: New file, from GNU gettext.
53179         * lib/sh-quote.c: New file, from GNU gettext.
53180
53181 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53182
53183         Merge from coreutils.
53184         * m4/ullong_max.m4: New file.
53185         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
53186         (gl_MACROS): Assume localeconv exists.
53187
53188 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53189
53190         Merge changes from coreutils, as described below in several
53191         changelogs dated today.
53192
53193         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
53194         (O_DIRECTORY): Remove; not needed here, since "." must be
53195         a directory.  All uses removed.
53196         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
53197         universal on Suns, and we also need to test for IRIX.
53198         Revamp code to use 'if' rather than '#if'.
53199         Avoid unnecessary comparison of cwd->desc to 0.
53200
53201         * lib/utimens.c (futimens): Robustify the previous patch, by checking
53202         for known valid error numbers rather than observed invalid ones.
53203
53204 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53205
53206         * modules/ullong_max: New file.
53207
53208         * modules/chdir-long, modules/openat: New files.
53209         * modules/save-cwd (Depends-on): Depend on chdir-long.
53210         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
53211
53212 2005-01-18  Jim Meyering  <jim@meyering.net>
53213
53214         Merge from coreutils.
53215         * m4/chdir-long.m4, m4/openat.m4: New files.
53216         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
53217         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
53218         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
53219         is sane and DOES follow symlinks.  Besides, testing 20 different
53220         systems found no broken chown implementations.
53221         Prompted by a change in rsync's copy of this macro.
53222         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
53223
53224         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
53225
53226         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
53227         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
53228         NULL-means-set-to-current-time semantics.
53229         Remove temporary file immediately, rather than waiting
53230         for configure's at-exit trap code to do it.
53231
53232 2005-01-18  Jim Meyering  <jim@meyering.net>
53233
53234         * lib/version-etc.c (version_etc_copyright): Update copyright date.
53235
53236         * lib/utimens.c (futimens): Account for the fact that futimes
53237         can also fail with errno == ENOSYS or errno == ENOENT.
53238         Patch from Dmitry V. Levin.
53239
53240         Change the name of the robust chdir function from chdir to chdir_long.
53241         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
53242         (restore_cwd): Use chdir_long, not chdir.
53243         * lib/chdir-long.c: Renamed from chdir.c.
53244         * lib/chdir-long.h: Renamed from chdir.h.
53245         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
53246         Hurd.
53247
53248 2005-01-18  Bruno Haible  <bruno@clisp.org>
53249
53250         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
53251         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
53252         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
53253         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
53254         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
53255         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
53256         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
53257         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
53258         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
53259         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
53260         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
53261         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
53262         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
53263         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
53264         Use an all-permissive copyright notice, recommended by RMS.
53265
53266 2005-01-18  Bob Proulx  <bob@proulx.com>
53267
53268         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
53269         simplify offsetof() macro construct to avoid compile failure with
53270         native HP-UX 11.0 ANSI C compiler.
53271
53272 2005-01-17  Bruno Haible  <bruno@clisp.org>
53273
53274         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
53275         redundant because stpncpy.m4 takes care of it.
53276
53277 2005-01-17  Bruno Haible  <bruno@clisp.org>
53278
53279         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
53280
53281 2005-01-17  Bruno Haible  <bruno@clisp.org>
53282
53283         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
53284         used.
53285
53286 2005-01-17  Bruno Haible  <bruno@clisp.org>
53287
53288         * lib/fwriteerror.h (fwriteerror): Change specification to include
53289         fclose.
53290         * lib/fwriteerror.c: Include <stdbool.h>.
53291         (fwriteerror): At the end, close the file stream. Record whether
53292         stdout was already closed.
53293
53294 2005-01-17  Bruno Haible  <bruno@clisp.org>
53295
53296         * lib/execute.c (environ): Declare if needed.
53297         * lib/pipe.c (environ): Likewise.
53298         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
53299
53300 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53301
53302         * modules/argp: Depend on vsnprintf
53303
53304 2005-01-10  Jim Meyering  <jim@meyering.net>
53305
53306         * modules/closeout (Depends-on): Add atexit.
53307
53308 2005-01-06  Bruno Haible  <bruno@clisp.org>
53309
53310         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
53311
53312 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
53313
53314         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
53315         definitions to be after all include files, to avoid collisions.
53316         Problem reported by Bob Proulx.
53317
53318 2005-01-04  Jim Meyering  <jim@meyering.net>
53319
53320         Changes imported from coreutils.
53321         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
53322         as the mkstemp template, use a temporary directory and an
53323         8.3-friendly template to avoid trouble on systems like DJGPP.
53324         Reported by Juan M. Guerrero via Stepan Kasal.
53325         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
53326         close. Remove the temporary directory right away, rather than waiting
53327         for configure's at-exit trap code to do it.
53328         Suggestion from Stepan Kasal.
53329
53330 2005-01-01  Simon Josefsson  <jas@extundo.com>
53331
53332         * gnulib-tool: Print #include directives when --import'ing.
53333
53334 2004-12-28  Simon Josefsson  <jas@extundo.com>
53335
53336         * tests/test-base64.c: Include required header files.  Remove
53337         unused variables.
53338
53339 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
53340
53341         * modules/error (Depends-on): Remove gettext.
53342
53343 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
53344
53345         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
53346         not needed.  This removes a dependency on the gettext module.
53347         [defined _LIBC]: Do not include <libintl.h>; not needed.
53348
53349 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
53350
53351         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
53352         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
53353
53354 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
53355
53356         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
53357         HAVE_DECL_STRTOLD.
53358
53359 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
53360
53361         * modules/getdate (Depends-on): Remove alloca-opt.
53362
53363 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
53364
53365         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
53366
53367 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
53368
53369         * lib/argp-parse.c: Include <stddef.h>.
53370         (alignof, alignto): New macros.
53371         (parser_init): Don't assume that void * is aligned sufficiently
53372         for struct option.
53373
53374         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
53375         need to extend the stack.
53376         (YYINITDEPTH): New macro, so that the initial stack isn't overly
53377         large.
53378
53379 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53380
53381         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
53382
53383 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
53384
53385         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
53386         (2004-10-24) change.  Apparently this was a false alarm.
53387
53388         * modules/getdate: Depend on alloca-opt, not alloca.
53389
53390 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
53391
53392         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
53393         Remove now-obsolete comment about AIX.
53394         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
53395         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
53396         (YYMAXDEPTH): New macro.
53397
53398 2004-12-18  Simon Josefsson  <jas@extundo.com>
53399
53400         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
53401
53402 2004-12-18  Bruno Haible  <bruno@clisp.org>
53403
53404         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
53405
53406 2004-12-18  Bruno Haible  <bruno@clisp.org>
53407
53408         * lib/fatal-signal.c (fatal_signals): Make non-const.
53409         (init_fatal_signals): New function.
53410         (uninstall_handlers, install_handlers): Ignore signals that were set to
53411         SIG_IGN.
53412         (at_fatal_signal): Call init_fatal_signals.
53413         (init_fatal_signal_set): Likewise. Ignore signals that were set to
53414         SIG_IGN.
53415         Reported by Paul Eggert.
53416
53417 2004-12-18  Bruno Haible  <bruno@clisp.org>
53418
53419         * doc/alloca.texi: New file.
53420         * doc/alloca-opt.texi: New file.
53421
53422 2004-12-17  Jim Meyering  <jim@meyering.net>
53423
53424         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
53425         Otherwise, install-sh could exit with improper exit status when
53426         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
53427
53428 2004-12-16  Simon Josefsson  <jas@extundo.com>
53429
53430         * tests/test-base64.c: Add license.
53431
53432 2004-12-15  Stepan Kasal  <address@hidden>
53433
53434         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
53435
53436 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
53437
53438         * modules/getcwd (Files): Add m4/d-ino.m4.
53439         Suggested by Mark D. Baushke.
53440
53441 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
53442
53443         * lib/getdate.y (textint): New member "negative".
53444         (time_zone_hhmm): New function.
53445         Expect 14 shift-reduce conflicts, not 13.
53446         (o_colon_minutes): New rule.
53447         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
53448         (yylex): Set the "negative" member of signed numbers.
53449
53450 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
53451
53452         * doc/getdate.texi (Time of day items, Time zone items):
53453         Describe new formats +00:00, UTC+00:00.
53454
53455 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
53456
53457         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
53458         spurious "-l"s.  Problem reported by Stepan Kasal.
53459
53460 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
53461
53462         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
53463         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
53464
53465 2004-12-04  Simon Josefsson  <jas@extundo.com>
53466
53467         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
53468         Vandoorselaere <yoann@prelude-ids.org>.
53469
53470 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
53471
53472         Changes imported from coreutils.
53473         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
53474         exist.
53475         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
53476
53477 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
53478
53479         Changes imported from coreutils.
53480         * lib/hard-locale.c: Assume <locale.h> exists.
53481         Include "strdup.h".
53482         (GLIBC_VERSION): New macro.
53483         (hard_locale): Assume setlocale exists.
53484         Rewrite to avoid #ifdef.
53485         Use strdup rather than malloc + strcpy.
53486         * lib/human.c: Assume <locale.h> exists.
53487         (human_readable): Assume localeconv exists.
53488
53489 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
53490
53491         * modules/hard-locale (Depends-on): Add strdup.
53492
53493 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
53494
53495         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
53496         convert T2, not T.  (Imported from libc.)
53497
53498 2004-11-30  Simon Josefsson  <jas@extundo.com>
53499
53500         * modules/restrict (License): Change to LGPL.
53501
53502 2004-11-30  Simon Josefsson  <jas@extundo.com>
53503
53504         * m4/restrict.m4: Add copyright and copying conditions.
53505
53506 2004-11-30  Simon Josefsson  <jas@extundo.com>
53507
53508         * m4/base64.m4: New file.
53509
53510 2004-11-30  Simon Josefsson  <jas@extundo.com>
53511
53512         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
53513         base64.
53514
53515         * tests/test-base64.c: New file.
53516
53517         * modules/base64: New file.
53518
53519 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
53520
53521         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
53522         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
53523
53524         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
53525
53526 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
53527
53528         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
53529         (__getcwd.c): Don't restore errno; glibc doesn't.
53530         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
53531         first, falling back to our code only if its results look suspicious.
53532         Ensure that the resulting buffer is only as large as necessary.
53533
53534         * lib/readutmp.c: Include readutmp.h first.
53535         Include <errno.h>, since readutmp.h no longer does that.
53536         * lib/readutmp.h: Don't include <errno.h>,
53537         <sys/param.h>, <time.h>; not needed to establish interface.
53538         (errno): Remove decl.
53539         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
53540         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
53541         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
53542
53543 2004-11-28  Simon Josefsson  <jas@extundo.com>
53544
53545         * lib/base64.h, base64.c: New file.
53546
53547 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
53548
53549         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
53550
53551 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
53552
53553         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
53554         (Depends-on): Remove pathmax, same.  Add mempcpy.
53555         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
53556         (Makefile.am): Append getcwd.h to lib_SOURCES.
53557         (Include): Add getcwd.h.
53558         (Maintainer): Change from Jim Meyering to "all, glibc",
53559         since getdate now uses intended-for-glibc code.
53560         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
53561         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
53562
53563 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
53564
53565         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
53566         HP's ANSI C compiler.
53567         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
53568         Declaring int functions causes warnings on some modern systems and
53569         shouldn't be needed to compile on ancient ones.
53570         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
53571         defined.
53572
53573         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
53574         with the following changes.
53575         (__set_errno): Parenthesize properly.
53576         Include <stdbool.h>.
53577         (MIN, MAX, MATCHING_INO): New macros.
53578         (__getcwd): Define with prototype, not K&R form.
53579         Use heuristics to allocate default buffer on stack if possible.
53580         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
53581         behavior, and to avoid the PATH_MAX limit when computing
53582         ../../../../...
53583         Use MATCHING_INO to compare inode number to file.
53584         Check for arithmetic overflow in size calculations.
53585         Fix bug in reallocation of dot array that caused getcwd to fail
53586         on directories nested deeper than 75.
53587         Be more careful about saving errno on error.
53588         Do not use realloc; use only free+malloc, as this is a bit
53589         more flexible and avoids a needless copy operation.
53590         Do not inspect st_dev and st_ino for symbolic links; POSIX
53591         doesn't specify the latter.
53592         Check for closedir errors.
53593         Avoid needless casts.
53594         Use "#ifdef weak_alias" around weak_alias, to be like other
53595         glibc code.
53596         The following changes to getcwd.c have effect only when used in
53597         gnulib; they have no effect inside glibc proper.
53598         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
53599         as alloca isn't used.
53600         (alloca, __alloca): Likewise.
53601         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
53602         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
53603         unconditionally, as gnulib assumes C89 or better.
53604         Do not include <sys/param.h>.
53605         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
53606         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
53607         better.
53608         (NULL) [!defined NULL]: Remove; we assume C89 or better.
53609         Include <dirent.h> in a way that is compatible with modern Autoconf.
53610         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
53611         New macros, if not already defined.
53612         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
53613         Use "_LIBC", not "defined _LIBC", for consistency.
53614         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
53615         a mempcpy module.
53616         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
53617         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
53618         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
53619         credit only to Jim Meyering and adjust the copyright dates.
53620         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
53621         <stdlib.h>, <unistd.h>, "pathmax.h".
53622         Instead, include "xgetcwd.h" (first) and "getcwd.h".
53623         (INITIAL_BUFFER_SIZE): Remove.
53624         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
53625
53626 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
53627
53628         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
53629         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
53630         Use the _ONCE methods, for efficiency.
53631         Check for fcntl.h.  In test program, include <errno.h>
53632         and <fcntl.h> if available.  Remove old K&R cruft from
53633         test program.  Check for common errors in GNU/Linux,
53634         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
53635         don't do AC_LIBOBJ, as that's getcwd.m4's job.
53636         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
53637         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
53638         name accordingly.
53639         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
53640         accommodate new getcwd.c.
53641         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
53642         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
53643         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
53644         that's all we need now.
53645
53646 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53647
53648         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
53649         argp-parse.c depends on getopt internals, that means we should
53650         always use our getopt, to be on the safe side.
53651         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
53652         order not to spoil the result of an eventual previous invocation
53653         of gl_GETOPT_SUBSTITUTE.
53654
53655 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53656
53657         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
53658         redefinition warnings. To avoid them, include the defines
53659         in `#if !defined __need_getopt ... #endif'. The only place
53660         where __getopt_argv_const is used is in definitions
53661         of getopt_long and getopt_long_only below, which are as well
53662         protected by `#ifndef __need_getopt'.
53663         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
53664         __need_getopt after including <stdio.h> and <unistd.h> These
53665         headers might have defined it.
53666
53667 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
53668
53669         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
53670
53671 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
53672
53673         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
53674         (futimens): New function, which uses futimes if available.
53675         (futimens, utimens): Support timespec==NULL, with same semantics
53676         as utime and utimens.
53677         * lib/utimens.h (futimens): New decl.
53678
53679 2004-11-23  Jim Meyering  <jim@meyering.net>
53680
53681         * lib/getopt_.h: Remove trailing blanks.
53682
53683 2004-11-23  Jim Meyering  <jim@meyering.net>
53684
53685         * lib/__fpending.c: Add comment.
53686
53687 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
53688
53689         * modules/canonicalize (Depends-on): Add xreadlink.
53690         Problem reported by James Youngman.
53691
53692 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
53693
53694         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
53695         New macros.
53696         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
53697         optopt): Use them instead of invoking ## directly; otherwise, the
53698         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
53699
53700 2004-11-19  Bruno Haible  <bruno@clisp.org>
53701
53702         * lib/strtok_r.c: Move comments from here...
53703         * lib/strtok_r.h: ... to here.
53704
53705 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
53706
53707         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
53708         implementations that mishandle size_t overflow.
53709
53710 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
53711
53712         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
53713         might fail.  Problem reported by Yoann Vandoorselaere.
53714         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
53715         implementations that mishandle size_t overflow.
53716
53717 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
53718
53719         * modules/canon-host (Depends-on): Add strdup.
53720
53721 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
53722
53723         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
53724
53725 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
53726
53727         * lib/canon-host.c: Include "strdup.h".
53728         (canon_host): Use getaddrinfo if available, so that IPv6 works.
53729         Use strdup instead of malloc/strcpy to duplicate strings.
53730
53731         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
53732         (human_space_before_unit): New constant.
53733         * lib/human.c (human_readable): Support it.
53734
53735         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
53736         (xgetcwd): Set errno correctly when failing.
53737         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
53738         the failure is actually due to a PATH_MAX problem.
53739
53740         Further getopt changes to make it more likely that glibc will
53741         buy the changes back.
53742         * lib/getopt.c (POSIXLY_CORRECT): New constant.
53743         (getopt): Use it, so to preserve glibc semantic
53744         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
53745         when compiling for libc.
53746         * lib/getopt_.h (__getopt_argv_const): Bring it back.
53747         (getopt_long, getopt_long_only): Use it.
53748
53749         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
53750         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
53751         (getopt): Argv is now char * const *, as per standard.
53752         (_getopt_internal_r, _getopt_internal): Argv is now char **,
53753         not char *__getopt_argv_const *.
53754         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
53755         _getopt_long_only_r): Likewise.
53756         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
53757         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
53758         _getopt_long_r, _getopt_long_only_r): Likewise.
53759         * lib/getopt_.h (__getopt_argv_const): Remove.
53760         (getopt): Argv is now char * const *, as per standard.
53761
53762         * lib/getdate.y (tORDINAL): New token.
53763         (day, relunit): Allow it for relative times.
53764         (relative_time_table): Use tORDINAL for ordinals.
53765
53766 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
53767
53768         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
53769         Document that "second" isn't allowed as an ordinal number.
53770
53771 2004-11-16  Jim Meyering  <jim@meyering.net>
53772
53773         * modules/closeout (Depends-on): Add fpending.
53774
53775 2004-11-15  Jim Meyering  <jim@meyering.net>
53776
53777         * lib/closeout.c: Include "__fpending.h" once again.
53778         Include <stdbool.h>.
53779         (close_stdout): Don't fail just because stdout was closed initially,
53780         since some programs don't write to stdout in the normal course of
53781         operation (other than --version and --help), and we don't want this
53782         function to make e.g. `touch file >&-' fail.
53783         But do fail if it was closed and someone has tried to write to it.
53784         E.g., `printf foo >&-' must fail.
53785
53786 2004-11-13  Jim Meyering  <jim@meyering.net>
53787
53788         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
53789
53790 2004-11-12  Simon Josefsson  <jas@extundo.com>
53791
53792         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
53793         small doc fix is still pending.
53794
53795 2004-11-11  Simon Josefsson  <jas@extundo.com>
53796
53797         * modules/strtok_r: New file.
53798
53799         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
53800         strtok_r.
53801
53802 2004-11-11  Simon Josefsson  <jas@extundo.com>
53803
53804         * m4/strtok_r.m4: New file.
53805
53806         * m4/getopt.m4: Replace opterr.
53807
53808 2004-11-11  Simon Josefsson  <jas@extundo.com>
53809
53810         * lib/strtok_r.h, strtok_r.c: New file.
53811
53812 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
53813
53814         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
53815         of replacing opterr, getopt, etc.  This should handle the
53816         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
53817
53818 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
53819
53820         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
53821         we can stop lying to compilers about the constness of argv when we
53822         are compiled outside glibc.
53823         (getopt, getopt_long, getopt_long_only): Use it.
53824         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
53825         _getopt_internal, getopt): Likewise.
53826         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
53827         _getopt_long_only_r): Likewise.
53828         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
53829         _getopt_long_r, _getopt_long_only_r): Likewise.
53830
53831         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
53832         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
53833         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
53834         the other external symbols.
53835         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
53836         declaration, since the above renaming now works around collisions.
53837
53838 2004-11-11  Jim Meyering  <jim@meyering.net>
53839
53840         * lib/linebreak.c: Remove trailing blanks.
53841         * lib/alloca_.h: Likewise.
53842         * lib/acosl.c: Likewise.
53843         * lib/euidaccess.c: Likewise.
53844         * lib/allocsa.h: Likewise.
53845
53846 2004-11-10  Simon Josefsson  <jas@extundo.com>
53847
53848         * m4/getaddrinfo.m4: New file.
53849
53850 2004-11-10  Simon Josefsson  <jas@extundo.com>
53851
53852         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
53853
53854 2004-11-10  Simon Josefsson  <jas@extundo.com>
53855
53856         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
53857         getaddrinfo.
53858
53859         * modules/getaddrinfo: New file.
53860
53861 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
53862
53863         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
53864
53865 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
53866
53867         * lib/mktime.c (SHR): New macro, which is a portable
53868         substitute for >> that should work even on Crays.
53869         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
53870         Problem reported by Mark D. Baushke in
53871         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
53872         * lib/getdate.y (SHR): Likewise.
53873         (tm_diff): Use it.
53874         * lib/strftime.c (SHR): Likewise.
53875         (tm_diff): Use it.
53876         * lib/quotearg.c (struct quoting_options): Use unsigned int for
53877         quote_these_too, so that right shifts are well defined.  All uses
53878         changed.
53879
53880 2004-11-10  Jim Meyering  <jim@meyering.net>
53881
53882         Ensure that no close failure goes unreported.
53883         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
53884         return early when it seems there's nothing to flush.
53885         Don't include __fpending.h.
53886
53887 2004-11-10  Jim Meyering  <jim@meyering.net>
53888
53889         * modules/closeout (Depends-on): Remove fpending.
53890
53891 2004-11-10  Jim Meyering  <jim@meyering.net>
53892
53893         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
53894
53895 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
53896
53897         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
53898         gl_FUNC_STRFTIME.
53899         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
53900         and AC_REQUIRE when possible, to avoid duplicate checks.
53901         Check for <wchar.h>.
53902
53903 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
53904
53905         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
53906
53907 2004-11-09  Bruno Haible  <bruno@clisp.org>
53908
53909         * m4/sockpfaf.m4: New file.
53910
53911 2004-11-05  Bruno Haible  <bruno@clisp.org>
53912
53913         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
53914         Reported by Mark D. Baushke <mdb@cvshome.org>.
53915
53916 2004-11-04  Bruno Haible  <bruno@clisp.org>
53917
53918         2004-09-11  Bruno Haible  <bruno@clisp.org>
53919                 * allocsa.valgrind: New file.
53920         2004-02-06  Bruno Haible  <bruno@clisp.org>
53921                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
53922                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
53923                 Reported by Christopher Seip <chris.seip@hp.com>.
53924
53925 2004-11-04  Bruno Haible  <bruno@clisp.org>
53926
53927         * modules/allocsa (Files): Add lib/allocsa.valgrind.
53928         (Makefile.am): Distribute it.
53929
53930 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
53931
53932         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
53933         with errno == ERANGE if the buffer is too small.
53934         Problem reported by Mark D. Baushke.
53935
53936 2004-11-03  Albert Chin  <china@thewrittenword.com>
53937             Paul Eggert  <eggert@cs.ucla.edu>
53938
53939         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
53940         equivalent, substitute $ac_type for equivalent type rather than
53941         blindly using uint32_t *always* which won't work if uint32_t is not
53942         available.  Define _UINT32_T to work around typedef of uint32_t if
53943         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
53944         2.5.1.
53945
53946 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
53947
53948         * m4/jm-macros.m4: Sync from coreutils.
53949         (gl_MACROS): Check for mbrlen, for pathchk.
53950         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
53951
53952 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
53953
53954         * lib/xreadlink.c (MAXSIZE): New macro.
53955         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
53956         size does not exceed MAXSIZE.  Avoid cast.
53957         As suggested by Mark D. Baushke in
53958         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
53959         if readlink fails with buffer size just under MAXSIZE, try again
53960         with MAXSIZE.
53961
53962 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
53963
53964         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
53965
53966 2004-11-02  Derek R. Price  <derek@ximbiot.com>
53967         and  Paul Eggert  <eggert@cs.ucla.edu>
53968
53969         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
53970         (get_date): Overparenthesize to avoid GCC warning.
53971
53972 2004-11-02  Bruno Haible  <bruno@clisp.org>
53973
53974         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
53975         returns void.
53976
53977 2004-11-02  Bruno Haible  <bruno@clisp.org>
53978
53979         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
53980         function returns void.
53981
53982 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
53983
53984         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
53985         fflush_unlocked, flockfile, funlockfile, funlockfile,
53986         fputs_unlocked, putc_unlocked.
53987
53988 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
53989
53990         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
53991         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
53992         already declared.
53993
53994 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
53995
53996         * modules/getdate (Files): Add doc/getdate.texi.
53997         (Depends-on): Add setenv, xalloc.
53998
53999 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54000
54001         * lib/getdate.y: Add support for TZ="foo" within a date string.
54002         Fix some bugs near time_t boundaries.  Reject dates with
54003         out-of-range components, e.g., "Sept 31".
54004         Include <stdlib.h>, "setenv.h", "xalloc.h".
54005         (ISDIGIT_LOCALE): Remove; unused.
54006         Note that the TZ and time functions used here are not reentrant.
54007         (mktime_ok, get_tz): New functions.
54008         (TZBUFSIZE): New constant.
54009         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
54010         This requires that we sometimes generate our own TZ="XXX..." setting.
54011
54012 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54013
54014         * doc/getdate.texi: New file, from coreutils with modifications for
54015         the new TZ parsing.
54016
54017 2004-10-27  Derek R. Price  <derek@ximbiot.com>
54018
54019         * lib/mktime.c (not_equal_tm): Remove redundant check.
54020
54021 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
54022
54023         * modules/regex (lib_SOURCES): Add regex.c.
54024         Reported by James Youngman in
54025         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
54026
54027 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
54028
54029         * lib/getdate.y: Use Bison 1.875 features, and some minor
54030         code cleanups.  This change does not affect semantics.
54031         Don't include <stdlib.h>; no longer needed.
54032         Don't include unlocked-io.h; only the "#if TEST" code uses
54033         stdio, and performance isn't crucial there.
54034         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
54035         Bison 1.875 features as described below.
54036         All uses of "PC." replaced by "pc->".
54037         (YYSTYPE): Add a forward declaration.
54038         (yylex, yyerror): Use full prototypes in forward decls.
54039         Use "%pure-parser" rather than obsolescent "%pure_parser".
54040         Use %parse-param and %lex-param instead of obsolescent
54041         YYPARSE_PARAM and YYLEX_PARAM.
54042         (meridian_table, month_and_day_table, time_units_table,
54043         relative_time_table, time_zone_table, military_table,
54044         lookup_zone, lookup_word, get_date):
54045         Use NULL instead of 0 where appropriate.
54046         (to_hour): Avoid abort (), to avoid a dependency on
54047         stdlib.h.
54048         (yyerror, yylex): Now accepts parser_control * arg.
54049         (main) [TEST]: Use '\0' rather than 0 for char.
54050
54051 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
54052
54053         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
54054
54055 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
54056
54057         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
54058         It's now the caller's responsibility to handle the case where
54059         !HAVE_GETPAGESIZE && !defined getpagesize.
54060
54061         * lib/mktime.c (leapyear): Arg is long int, not int.
54062
54063 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
54064
54065         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
54066
54067 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
54068
54069         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
54070         missing.  Problem reported by James Youngman.
54071
54072 2004-10-16  Simon Josefsson  <jas@extundo.com>
54073
54074         * gnulib-tool: Fix comments.  Fix parse problem.
54075         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
54076
54077 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
54078
54079         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
54080         implementation of getopt_long.  Problem reported by Alexander Taler in:
54081         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
54082
54083 2004-10-15  Bruno Haible  <bruno@clisp.org>
54084
54085         * gnulib-tool: Untabify. Initialize supplied_libname.
54086         (func_usage): More homogenous output.
54087         (func_modules_transitive_closure, func_modules_to_filelist,
54088         func_emit_lib_Makefile_am): New functions.
54089         (func_import): New function, extracted from big case statement. Use
54090         func_get_license, func_modules_transitive_closure,
54091         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
54092         opt_lgpl. Don't use test -a, as it's not portable.
54093         (func_create_testdir): Use func_modules_transitive_closure,
54094         func_modules_to_filelist, func_emit_lib_Makefile_am.
54095
54096 2004-10-15  Bruno Haible  <bruno@clisp.org>
54097
54098         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
54099
54100 2004-10-15  Bruno Haible  <bruno@clisp.org>
54101
54102         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
54103         the portions belonging to each module.
54104         Suggested by Derek Robert Price <derek@ximbiot.com>.
54105
54106 2004-10-12  Simon Josefsson  <jas@extundo.com>
54107
54108         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
54109         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
54110         to real functions.
54111
54112 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54113
54114         * modules/vsnprintf: New file.
54115
54116 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54117
54118         * m4/vsnprintf.m4: New file.
54119
54120 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54121
54122         * lib/vsnprintf.h: New file.
54123         * lib/vsnprintf.c: New file.
54124
54125 2004-10-11  Bruno Haible  <bruno@clisp.org>
54126
54127         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
54128         vsnprintf.
54129
54130 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
54131
54132         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
54133
54134 2004-10-07  Bruno Haible  <bruno@clisp.org>
54135
54136         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
54137         fits into the provided buffer.
54138
54139 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
54140
54141         * lib/diacrit.c, diacrit.h: Add GPL notice.
54142
54143         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
54144         notice.
54145         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
54146         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
54147         This avoids a potential constant-folding bug.
54148
54149 2004-10-05  Bruno Haible  <bruno@clisp.org>
54150
54151         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
54152         for the declaration of strsep.
54153
54154 2004-10-05  Bruno Haible  <bruno@clisp.org>
54155
54156         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
54157
54158 2004-10-04  Simon Josefsson  <jas@extundo.com>
54159
54160         * modules/memmem: New file.
54161         * tests/test-memmem.c: New file.
54162         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
54163
54164 2004-10-04  Simon Josefsson  <jas@extundo.com>
54165
54166         * m4/memmem.m4: New file.
54167
54168 2004-10-04  Simon Josefsson  <jas@extundo.com>
54169
54170         * lib/memmem.h: New file.
54171         * lib/memmem.c: New file, taken from glibc.
54172
54173 2004-10-04  Simon Josefsson  <jas@extundo.com>
54174
54175         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
54176         '#ifdef USE_UNLOCKED_IO'.
54177
54178 2004-10-04  Simon Josefsson  <jas@extundo.com>
54179
54180         * config/srclist.txt: Add memmem from glibc.
54181
54182 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54183
54184         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
54185
54186         * modules/argmatch, modules/argp, modules/closeout, modules/error,
54187         modules/exclude, modules/getdate, modules/getline,
54188         modules/getndelim2, modules/getpass, modules/getpass-gnu,
54189         modules/getusershell, modules/linebuffer, modules/md5,
54190         modules/mountlist, modules/posixtm, modules/readtokens,
54191         modules/readutmp, modules/regex, modules/sha1,
54192         modules/version-etc, modules/yesno:
54193         Remove dependency on unlocked-io.
54194
54195 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54196
54197         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
54198
54199         * m4/unlocked-io.m4: Add copyright notice.
54200         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
54201
54202 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54203
54204         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
54205         * lib/xmalloc.c (xmemdup): Likewise.
54206         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
54207         XFREE): Remove these long-obsolescent macros.
54208         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
54209         * lib/xstrdup.c: Remove.
54210
54211         * lib/regex.c (re_comp): Cast gettext return value to char *,
54212         Problem reported by Martin Neitzel via Mark D. Baushke.
54213
54214 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54215
54216         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
54217         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
54218         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
54219         regex.c, sha1.c, version-etc.c, yesno.c:
54220         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
54221         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
54222         the includer's responsibility.
54223
54224         Sync from coreutils.
54225
54226         * lib/modechange.c (mode_compile): Don't decrement a pointer that
54227         points to the start of a string, as the C Standard says the
54228         resulting behavior is undefined.
54229
54230         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
54231         simple -> simple_backups, numbered_existing ->
54232         numbered_existing_backups, numbered -> numbered_backups
54233         to avoid shadowing problems.  All uses changed.
54234         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
54235         * lib/backupfile.c (check_extension, numbered_backup):
54236         Rename locals to avoid shadowing 'basename'.
54237         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
54238         once.
54239
54240         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
54241         * lib/.cvsignore: Add getopt.h.
54242
54243 2004-10-04  Bruno Haible  <bruno@clisp.org>
54244
54245         * modules/README: New file.
54246         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
54247         not a module.
54248
54249 2004-10-02  Jim Meyering  <jim@meyering.net>
54250
54251         * lib/dirfd.h, getpagesize.h: Add copyright notice.
54252
54253 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54254
54255         * modules/strsep: New file.
54256
54257 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54258
54259         * m4/strsep.m4: New file.
54260
54261 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54262
54263         * lib/strsep.h: New file.
54264         * lib/strsep.c: New file.
54265
54266 2004-10-01  Simon Josefsson  <jas@extundo.com>
54267
54268         * lib/snprintf.c (snprintf): Handle size==0.
54269
54270 2004-10-01  Simon Josefsson  <jas@extundo.com>
54271             Bruno Haible  <bruno@clisp.org>
54272
54273         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
54274         (snprintf): Declare 'args'.
54275
54276 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
54277
54278         * lib/snprintf.c: Remove comments as to why each header is needed.
54279
54280 2004-10-01  Bruno Haible  <bruno@clisp.org>
54281
54282         * MODULES.html.sh: Add strsep.
54283
54284 2004-09-30  Simon Josefsson  <jas@extundo.com>
54285
54286         * modules/snprintf: New file.
54287
54288 2004-09-30  Simon Josefsson  <jas@extundo.com>
54289
54290         * m4/snprintf.m4: New file.
54291
54292 2004-09-30  Simon Josefsson  <jas@extundo.com>
54293
54294         * lib/snprintf.h, lib/snprintf.c: New files.
54295
54296 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54297
54298         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
54299         (hol_entry_help): Never translate an empty string.
54300         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
54301         * lib/argp.h (OPTION_NO_TRANS): New option.
54302
54303 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
54304
54305         * modules/argp (Maintainer): Replace Simon Josefsson
54306         by Sergey Poznyakoff.
54307
54308 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
54309
54310         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
54311         changes merged back into glibc.
54312
54313 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
54314
54315         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
54316
54317 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
54318
54319         * lib/xvasprintf.c: Include xalloc.h.
54320         (xvasprintf): Use xalloc_die, not xmalloc_die.
54321
54322 2004-09-29  Bruno Haible  <bruno@clisp.org>
54323
54324         * modules/alloca-opt: New file, derived from modules/alloca.
54325         * modules/allocsa: Depend on alloca-opt instead of alloca.
54326         * modules/setenv: Likewise.
54327         * modules/vasnprintf: Likewise.
54328         * MODULES.html.sh: Add alloca-opt.
54329
54330 2004-09-28  Simon Josefsson  <jas@extundo.com>
54331
54332         * gnulib-tool: New parameter --lgpl, to asseert that modules are
54333         LGPL, and to replace license template from GPL to LGPL.
54334
54335 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
54336
54337         * modules/dummy: Change license to LGPL.
54338
54339 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
54340
54341         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
54342
54343 2004-09-24  Simon Josefsson  <jas@extundo.com>
54344
54345         * modules/minmax (License): Change from GPL to LGPL.
54346
54347 2004-09-23  Simon Josefsson  <jas@extundo.com>
54348
54349         * gnulib-tool (--import): Typo.
54350
54351 2004-09-23  Simon Josefsson  <jas@extundo.com>
54352
54353         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
54354
54355 2004-09-22  Bruno Haible  <bruno@clisp.org>
54356
54357         * modules/*: Add 'License' field.
54358         * gnulib-tool: Accept --extract-license option.
54359         (func_get_license): New function.
54360
54361 2004-09-21  Bruno Haible  <bruno@clisp.org>
54362
54363         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
54364         Reported by Simon Josefsson.
54365
54366 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
54367
54368         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
54369         gl_AC_TYPE_LONG_LONG.
54370
54371 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
54372
54373         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
54374
54375 2004-09-18  Simon Josefsson  <jas@extundo.com>
54376         and  Paul Eggert  <eggert@cs.ucla.edu>
54377
54378         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
54379         calls with autoreconf.  Define GL_LIB.
54380
54381 2004-09-14  Karl Berry  <karl@gnu.org>
54382
54383         * config/srclist.txt: unsync setenv.c, sigh.
54384
54385 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
54386
54387         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
54388         Problem reported by Bruno Haible in:
54389         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
54390
54391 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
54392
54393         * config/srclist.txt: Comment out argp-pvh.c.
54394
54395 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
54396
54397         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
54398         in case some system header has #define'd it.  Problem reported by
54399         Soeren D. Schulze in
54400         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
54401
54402 2004-09-09  Karl Berry  <karl@gnu.org>
54403
54404         * regex.[ch]: delete from the root.  These were supposed to be
54405                 synced with emacs cvs, but this has not happened for about
54406                 a year, and anyway nothing else uses emacs regex.[ch].
54407                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
54408                 lib/regex[.ch] is untouched.
54409
54410 2004-09-09  Bruno Haible  <bruno@clisp.org>
54411
54412         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
54413
54414 2004-09-09  Bruno Haible  <bruno@clisp.org>
54415
54416         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
54417         modifications.
54418         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
54419
54420 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
54421
54422         * modules/xvasprintf: New file.
54423         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
54424
54425 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
54426
54427         * lib/xvasprintf.h: New file.
54428         * lib/xvasprintf.c: New file.
54429         * lib/xasprintf.c: New file.
54430
54431 2004-09-08  Bruno Haible  <bruno@clisp.org>
54432
54433         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
54434
54435 2004-09-08  Bruno Haible  <bruno@clisp.org>
54436
54437         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
54438         length is > INT_MAX.
54439         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
54440         more.
54441
54442 2004-09-08  Bruno Haible  <bruno@clisp.org>
54443
54444         * lib/stdint_.h: New file, taken from GNU clisp.
54445
54446 2004-09-08  Bruno Haible  <bruno@clisp.org>
54447             Oskar Liljeblad  <oskar@osk.mine.nu>
54448
54449         * modules/stdint: New file.
54450         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
54451
54452 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
54453
54454         Import from coreutils.
54455         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
54456         strings on unbounded length.  alloca's performance benefits aren't
54457         that important here.
54458         (V_STRDUP): Remove.
54459         (parse_with_separator): New function, with most of the internals
54460         of the old parse_user_spec.  Allow user to omit both user and group,
54461         for compatibility with FreeBSD.
54462         Clone only the user name, not the entire spec.
54463         Do not set *uid, *gid unless entirely successful.
54464         Avoid memory leak in some failing cases.
54465         Fix regression for USER.GROUP reported by Dmitry V. Levin in
54466         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
54467         (parse_user_spec): Rewrite to use parse_with_separator.
54468
54469 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
54470
54471         * modules/userspec: Don't depend on alloca.
54472
54473 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
54474
54475         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
54476
54477 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
54478
54479         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
54480         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
54481         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
54482
54483 2004-08-16  Simon Josefsson  <jas@extundo.com>
54484
54485         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
54486         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
54487         Add --dry-run for --import.
54488         Let user provided command line parameters override configure.ac
54489         settings.
54490
54491 2004-08-12  Simon Josefsson  <jas@extundo.com>
54492
54493         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
54494         as discussed with Paul Eggert in threads rooted at
54495         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
54496         and
54497         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
54498         Before, the test was empty, and relied on ELIDE_CODE in source
54499         code.)
54500         (gl_PREREQ_GETOPT): New macro.
54501         (gl_GETOPT): Use them.
54502
54503 2004-08-12  Simon Josefsson  <jas@extundo.com>
54504
54505         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
54506         * lib/getopt_.h: Renamed from getopt.h.
54507
54508 2004-08-12  Simon Josefsson  <jas@extundo.com>
54509
54510         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
54511         Change default library name from libfoo to libgnu.
54512         Now, if you have a configure.ac that says:
54513                 gl_SOURCE_BASE(gl)
54514                 gl_M4_BASE(gl/m4)
54515                 gl_MODULES(error getopt etcetera)
54516                 gl_INIT
54517         you can import all you need by running:
54518                 ../gnulib/gnulib-tool --import
54519
54520         * modules/getopt (Files): Rename getopt.h to getopt_.h.
54521         (Makefile.am): Rewrite, use logic from argz.
54522         (Include): Use <getopt.h> instead of "getopt.h".
54523
54524 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
54525
54526         * modules/argp (Files): Add m4/unlocked-io.m4.
54527         (Depends-on): Add extensions.
54528
54529 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
54530
54531         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
54532         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
54533         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
54534         Check for program_invocation_name, program_invocation_short_name,
54535         flockfile, funlockfile, features.h, _getopt_long_only_r.
54536
54537 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
54538
54539         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
54540         its complicated substitute.
54541         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
54542         and program_invocation_name.
54543         (__argp_basename) [!_LIBC]: Remove; the only use was
54544         replaced by its body.
54545         (__argp_short_program_name): Change condition from
54546         !defined __argp_short_program_name to
54547         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
54548         to match argp-namefrob.h.
54549         (__argp_failure): Don't assume strerror_r returns char *.
54550         * lib/argp-parse.c (N_): Define unconditionally.
54551         (argp_default_options): Fill out initializers with 0 to avoid
54552         gcc warnings.
54553
54554 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
54555
54556         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
54557         getopt1.c.
54558
54559 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
54560
54561         Merge from coreutils.
54562
54563         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
54564
54565         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
54566         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
54567
54568 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
54569
54570         Merge from coreutils.
54571
54572         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
54573         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
54574         for Reliant Unix 5.43.
54575
54576         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
54577         (union fooround): Use uintmax_t, not long int.
54578         The rest is a merge from libc:
54579         [defined _LIBC]: Include <shlib-compat.h>.
54580         (_obstack) [defined _LIBC]: Remove after 2.3.4.
54581
54582         * lib/settime.c (settime): Recode to avoid warning with
54583         Sun Forte C 6U2.
54584
54585         * lib/strverscmp.c: Convert to UTF-8.
54586
54587 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
54588
54589         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
54590         m4/uintmax_t.m4.
54591
54592 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
54593
54594         * modules/xalloc-die: New file.
54595         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
54596
54597         * modules/md5 (Files): Add m4/uint32_t.m4.
54598         * modules/sha1: Renamed from modules/sha.
54599         (Files):
54600         Rename lib/sha.h to lib/sha1.h.
54601         Rename lib/sha.c to lib/sha1.c.
54602         Rename m4/sha.m4 to m4/sha1.m4.
54603         (lib_SOURCES): Likewise.
54604         (configure.ac): Rename gl_SHA to gl_SHA1.
54605         (Include): sha.h -> sha1.h.
54606
54607 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
54608
54609         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
54610         * m4/sha1.m4: Renamed from sha.m4.
54611         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
54612
54613 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
54614
54615         * lib/obstack.h (obstack_empty_p):
54616         Don't assume that chunk->contents is suitably aligned.
54617         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
54618         Likewise. Problem reported by Benno in
54619         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
54620
54621         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
54622         readable.  This could be improved further but it'd take some work.
54623
54624 2004-08-08  Simon Josefsson  <jas@extundo.com>
54625
54626         * modules/xgethostname (Depends-on): Remove exit and error (not
54627         used).
54628
54629         * modules/getpass-gnu: Add getpass.h.
54630         (Depends-on): Add stdbool.
54631         * modules/getpass: Add getpass.h.
54632
54633 2004-08-08  Simon Josefsson  <jas@extundo.com>
54634
54635         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
54636         Check getpass declaration.
54637
54638 2004-08-08  Simon Josefsson  <jas@extundo.com>
54639
54640         * lib/xgethostname.c: Don't include error.h (not used).
54641
54642         * lib/getpass.h: Add.
54643         * lib/getpass.c: Include getpass.h first.
54644
54645 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
54646
54647         * lib/xalloc-die.c: New file.
54648         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
54649         All uses removed.
54650         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
54651         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
54652         xalloc-die.c.
54653         (_, N_, xalloc_die): Move to xalloc-die.c.
54654         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
54655         so that we needn't mess with xalloc_msg_memory_exhausted.
54656
54657         * lib/sha1.h: Renamed from sha.h.
54658         (SHA1_H): Renamed from _SHA_H.
54659         (sha1_ctx): Renamed from sha_ctx.
54660         (sha1_init_ctx): Renamed from sha_init_ctx.
54661         (sha1_process_block): Renamed from sha_process_block.
54662         (sha1_process_bytes): Renamed from sha_process_bytes.
54663         (sha1_finish_ctx): Renamed from sha_finish_ctx.
54664         (sha1_read_ctx): Renamed from sha_read_ctx.
54665         (sha1_stream): Renamed from sha_stream.
54666         (sha1_buffer): Renamed from sha_buffer.
54667         * lib/sha1.c: Likewise; renamed from sha.c.
54668         Do not include <sys/types.h>.
54669         Include <stddef.h> rather than <stdlib.h>.
54670
54671 2004-08-08  Bruno Haible  <bruno@clisp.org>
54672
54673         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
54674         FILESYSTEM_PREFIX_LEN.
54675         * lib/progreloc.c: Likewise.
54676         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
54677
54678 2004-08-06  Simon Josefsson  <jas@extundo.com>
54679
54680         * modules/progname (Depends-on): Don't depend on stdbool.
54681
54682 2004-08-06  Simon Josefsson  <jas@extundo.com>
54683
54684         * modules/getsubopt: New file.
54685         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
54686         getsubopt.
54687
54688 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
54689
54690         More merge from coreutils.
54691
54692         * m4/utimens.m4, m4/utimecmp.m4: New files.
54693         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
54694         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
54695         prereq.m4, sha.m4: Import changes from coreutils.
54696
54697 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
54698
54699         More merge from coreutils.
54700         * modules/raise, modules/readtokens0, modules/utimens:
54701         * modules/utimecmp, module/xnanosleep: New files.
54702         * modules/strftime: Add lib/strftime.h.
54703         Change include from <time.h> to "strftime.h".
54704         * modules/yesno: Add lib/yesno.h.
54705         * modules/backupfile: Remove lib/addext.c.
54706         * modules/euidaccess: Add stat-macros.h.
54707         * modules/canonicalize, modules/euidaccess,
54708         modules/filemode, modules/lchown, modules/makepath,
54709         modules/rmdir, modules/stat: Likewise.
54710
54711 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
54712
54713         Merge from tar.
54714         * lib/argp-help.c (make_hol, hol_append): Don't assume that
54715         SIZE_MAX is a valid preprocessor constant.
54716         (__argp_basename): Change from "#ifndef _LIBC"
54717         to "#ifndef __argp_short_program_name", so that
54718         we don't compile these functions for tar.
54719
54720         More merges from coreutils.
54721         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
54722         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
54723         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
54724         * lib/addext.c: Remove; no longer needed.
54725         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
54726         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
54727         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
54728         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
54729         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
54730         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
54731         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
54732         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
54733         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
54734         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
54735         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
54736         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
54737         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
54738         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
54739         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
54740         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
54741         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
54742         Import changes from coreutils.
54743
54744 2004-08-05  Simon Josefsson  <jas@extundo.com>
54745
54746         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
54747
54748 2004-08-05  Simon Josefsson  <jas@extundo.com>
54749
54750         * m4/getsubopt.m4: New file.
54751
54752 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
54753
54754         Merge from coreutils.
54755
54756         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
54757         * m4/getcwd-path-max.m4: New files.
54758
54759         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
54760         FILESYSTEM_PREFIX_LEN ->
54761         FILE_SYSTEM_PREFIX_LEN.
54762         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
54763         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
54764         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
54765         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
54766
54767         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
54768         prerequisite modules now handle the DOS stuff.
54769         Don't check for unistd.h.
54770
54771 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
54772
54773         Merge from coreutils.
54774
54775         * lib/.gdb-history: Remove; this doesn't belong here.
54776
54777         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
54778         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
54779         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
54780         * lib/getcwd.c: New files.
54781
54782         * lib/dirname.h: Include <stdbool.h>.
54783         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
54784         for consistency with POSIX terminology.  All uses changed.
54785         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
54786         (strip_trailing_slashes): Use bool for booleans.
54787         * lib/stripslash.c (strip_trailing_slashes): Likewise.
54788
54789         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
54790         sometimes returns a positive errno value even when it succeeds.
54791         (print_errno_message) [!LIBC]: Fall back on strerror if
54792         __strerror_r fails.
54793
54794         * lib/path-concat.c (mempcpy): Don't define if a system header defines
54795         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
54796         (longest_relative_suffix): New function.
54797         (path_concat): Use it.  Assume first argument is not NULL.
54798         Port to DOS.  Omit redundant separators.
54799         Report an error instead of returning NULL.
54800         Use mempcpy instead of memcpy.
54801         (xpath_concat): Remove: not declared or used.
54802
54803         * lib/same.h: Include <stdbool.h>
54804         (same_name): Return bool, not int.
54805         * lib/same.c (same_name): Likewise.
54806         (errno): Don't declare; we assume C89 or better now.
54807
54808         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
54809         if not already defined.
54810
54811         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
54812         * lib/dup-safer.c (errno): Likewise.
54813
54814 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
54815
54816         Merge from coreutils.
54817         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
54818         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
54819         * modules/path-concat: Don't depend on strdup.
54820
54821 2004-08-03  Simon Josefsson  <jas@extundo.com>
54822
54823         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
54824         * lib/progname.h: Don't include stdbool.h.
54825
54826 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
54827
54828         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
54829         * MODULES.html.sh (func_all_modules): Remove fatal.
54830
54831 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
54832
54833         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
54834
54835 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
54836
54837         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
54838         working.
54839
54840 2004-08-02  Simon Josefsson  <jas@extundo.com>
54841
54842         * lib/getsubopt.h: New file, with comments from Bruno Haible.
54843         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
54844         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
54845
54846 2004-08-01  Simon Josefsson  <jas@extundo.com>
54847
54848         * lib/xgetdomainname.c: Include stdlib.h, for free().
54849
54850 2004-07-19  Bruno Haible  <bruno@clisp.org>
54851
54852         * MODULES.html.sh (func_all_modules): Add dummy.
54853
54854 2004-07-16  Simon Josefsson  <jas@extundo.com>
54855
54856         * modules/dummy: New file.
54857
54858 2004-07-16  Simon Josefsson  <jas@extundo.com>
54859
54860         * lib/dummy.c: New file.
54861
54862 2004-07-16  Bruno Haible  <bruno@clisp.org>
54863
54864         * lib/backupfile.h: Add extern "C" for C++.
54865         * lib/closeout.h: Likewise.
54866         * lib/copy-file.h: Likewise.
54867         * lib/findprog.h: Likewise.
54868         * lib/full-write.h: Likewise.
54869         * lib/pathname.h: Likewise.
54870         * lib/progname.h: Likewise.
54871         * lib/stpcpy.h: Likewise.
54872         * lib/stpncpy.h: Likewise.
54873         * lib/strcase.h: Likewise.
54874         * lib/strstr.h: Likewise.
54875         * lib/xalloc.h: Likewise.
54876
54877         * lib/mbswidth.h: Add extern "C" for C++.
54878         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
54879
54880 2004-07-13  Robert Millan  <robertmh@gnu.org>
54881
54882         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
54883
54884 2004-07-09  Simon Josefsson  <jas@extundo.com>
54885
54886         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
54887         failed without this.)
54888
54889 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
54890
54891         * modules/chown (Files): Add lib/fchown-stub.c, since
54892         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
54893
54894 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
54895
54896         * lib/fchown-stub.c: New file.
54897
54898 2004-06-24  Jim Meyering  <jim@meyering.net>
54899
54900         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
54901
54902 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
54903
54904         * modules/argz: Omit "#include".
54905
54906         * MODULES.html.sh (func_all_modules): Add calloc, to match
54907         2004-06-01 addition of calloc module.
54908
54909 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
54910
54911         * m4/argz.m4: New file, which is autoupdated from libtool.
54912
54913 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
54914
54915         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
54916         libtool.
54917
54918 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
54919
54920         * config/srclist-update: Don't insist on "USA." before the
54921         close-comment, as libtool omits the period and puts the */ on a
54922         separate line.
54923         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
54924         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
54925
54926 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
54927
54928         * modules/argz: New file.
54929         * MODULES.html.sh (func_all_modules): Add argz.
54930
54931 2004-06-12  Jim Meyering  <jim@meyering.net>
54932         and  Paul Eggert  <eggert@cs.ucla.edu>
54933
54934         * modules/hash (Files): Add lib/xalloc.h.
54935         * modules/pipe (Depends-on): Add wait-process.
54936         * modules/stat (Depends-on): Add xalloc.
54937         * modules/userspec (Files): Add lib/userspec.h.
54938         * modules/xstrto
54939
54940         Upgrade from gettext-0.13.
54941         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
54942         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
54943         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
54944
54945 2004-06-10  Jim Meyering  <jim@meyering.net>
54946
54947         * lib/calloc.c: New file.
54948
54949 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
54950
54951         * lib/getdate.y (yylex): Allow space between sign and number.
54952         Problem reported by Dan Jacobson.
54953
54954 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
54955
54956         Merge from coreutils CVS.
54957
54958         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
54959         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
54960         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
54961         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
54962         xstrtol.m4: Fix copyright date and/or serial number.
54963
54964         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
54965         See if we need an fchown replacement.
54966         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
54967         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
54968         and use the replacement function if we detect either defect.
54969
54970         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
54971         gl_UTIMECMP.
54972
54973 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
54974         and  Jim Meyering  <jim@meyering.net>
54975
54976         Merge from coreutils CVS.
54977
54978         * lib/stat-macros.h: New file, with contents from file-type.h
54979         and coreutils' system.h.
54980         * lib/file-type.c: Include "stat-macros.h".
54981         * lib/file-type.h (file_type): Move all macro definitions to new file,
54982         stat-macros.h.
54983
54984         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
54985         Wrap old code with this conditional.
54986         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
54987         function that does not dereference symlinks.
54988         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
54989
54990         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
54991         dependency problems.
54992         (xreadlink): Accept new arg SIZE, for efficiency.
54993         All decls and uses changed.
54994         * lib/xreadlink.h: Include <stddef.h>, for size_t.
54995
54996         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
54997         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
54998
54999         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
55000         sysexits.h.
55001
55002 2004-06-01  Jim Meyering  <jim@meyering.net>
55003
55004         * m4/calloc.m4: New file.
55005
55006 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
55007
55008         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
55009         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
55010         Also, fix a typo in a diagnostic.
55011
55012 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
55013
55014         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
55015         or AC_FUNC_REALLOC.
55016
55017 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
55018
55019         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
55020         macros to be defined.
55021         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
55022         the allocator returns NULL because the requested size is zero.
55023
55024 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
55025
55026         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
55027         var.  Add comment explaining why libc still defines it.  This
55028         merges the following patch from glibc:
55029         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
55030
55031 2004-05-20  Andreas Schwab  <schwab@suse.de>
55032
55033         * m4/free.m4: Replace free if it not known to work, not the other
55034         way round.
55035
55036 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
55037
55038         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
55039         present in glibc since revision 1.1 of this file.
55040         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
55041         obstack_alignment_mask, obstack_alloc, obstack_base,
55042         obstack_blank, obstack_blank_fast, obstack_chunk_size,
55043         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
55044         obstack_grow0, obstack_init, obstack_int_grow,
55045         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
55046         obstack_next_free, obstack_object_size, obstack_ptr_grow,
55047         obstack_ptr_grow_fast, obstack_room): Remove declarations of
55048         nonexistent functions.
55049
55050 2004-05-18  Karl Berry  <karl@gnu.org>
55051
55052         * config/srclist.txt: break link for vasnprintf.c.
55053
55054 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
55055
55056         Port obstack to the AS/400, where pointers are 16 bytes wide and
55057         you cannot cast an integer to a valid pointer.  This patch is
55058         currently waiting to be integrated into glibc; see
55059         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
55060
55061         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
55062         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
55063         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
55064         (struct obstack): temp member is now a union of a pointer and
55065         an integer, instead of an integer.  All integer uses changed.
55066         This does not affect the physical layout of struct obstack,
55067         except on hosts (like the AS/400) where the size or alignment of
55068         void * is greater than that of ptrdiff_t.
55069         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
55070         __STDC__)]: Store temporary in pointer member of union, not
55071         integer member.
55072         * lib/obstack.c: Include <stddef.h>, for offsetof.
55073         (struct fooalign): Remove; it doesn't need a name.
55074         (union fooround): Change double to long double, and add void *.
55075         (DEFAULT_ALIGNMENT): Use offsetof to compute.
55076         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
55077         not a macro.  Hence the values are always int; so remove all
55078         casts-to-int in uses.
55079
55080 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
55081
55082         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
55083         we can get this patch merged into glibc.
55084
55085 2004-05-17  Derek R. Price  <derek@ximbiot.com>
55086             Paul Eggert  <eggert@cs.ucla.edu>
55087
55088         * m4/argp: Depend on alloca.
55089
55090 2004-05-17  Derek R. Price  <derek@ximbiot.com>
55091             Paul Eggert  <eggert@cs.ucla.edu>
55092
55093         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
55094         freecoding.
55095
55096 2004-05-17  Bruno Haible  <bruno@clisp.org>
55097
55098         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
55099         precision that consists of a '.' followed by an empty digit string.
55100         Patch by Tor Lillqvist <tml@iki.fi>.
55101
55102 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
55103
55104         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
55105         for backward compatibility with older code.  We need our own
55106         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
55107         it under some other name, and our alloca.h will define it.
55108
55109 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
55110             Derek Price  <derek@ximbiot.com>
55111
55112         * lib/alloca.c: Include <alloca.h>, to get our interface.
55113         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
55114         include <alloca.h> first.  Use C89 prototype for alloca; this
55115         requires including <stddef.h> for size_t.  Use extern "C" if C++.
55116         Use #elif for simplicity, since we can assume C89 now.
55117         Don't try to source the system alloca.h since it will not be found
55118         and to prevent recursively including its replacement.
55119         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
55120         * lib/regex.c: Likewise.
55121
55122 2004-05-16  Derek Price  <derek@ximbiot.com>
55123             Paul Eggert  <eggert@cs.ucla.edu>
55124
55125         getline cleanup.  This changes the getndelim2 API: both order of
55126         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
55127         no delimiter).
55128
55129         * lib/getline.c: Don't include stddef.h or stdio.h, since our
55130         interface does that.
55131         (getline): Always use getdelim, so that we don't have two
55132         copies of this code.
55133         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
55134         if available.
55135         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
55136         (GETNDELIM2_MAXIMUM): New macro.
55137         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
55138         instead of the old practice of delim2==0.  All callers changed.
55139         Return -1 on overflow, instead of returning junk.
55140         Do not set *linesize unless allocation succeeds.
55141         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
55142         that we include sys/types.h.
55143         * lib/getnline.h: Likewise.
55144         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
55145         (getndelim2): Reorder arguments.
55146         * lib/getnline.c (getnline, getndelim):
55147         Don't discard the NMAX argument.
55148         (getnline): Invoke getndelim, to avoid code duplication.
55149         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
55150         of (size_t) -1 by callers of the getnline family.
55151
55152 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
55153
55154         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
55155         Check for gettimeofday.
55156         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
55157         Check for settimeofday, stime.
55158
55159 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
55160
55161         * lib/nanosleep.c (suspended): Change its type from int to
55162         sig_atomic_t volatile.
55163         (first_call): Make it private to rpl_nanosleep, and have it
55164         be zero initially as that's a bit faster.
55165         (my_usleep): Round up fractional times instead of truncating them,
55166         as this is the usual meaning for 'sleep'.
55167
55168         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
55169         doesn't work.
55170         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
55171         (ENOSYS): Define if not defined.
55172         (settime): Fall back on stime if it exists and settimeofday fails.
55173         But don't bother with fallbacks if a method fails with errno == EPERM.
55174
55175 2004-05-11  Jim Meyering  <jim@meyering.net>
55176
55177         Prior to this change, the save_cwd caller required read access to the
55178         current directory on most systems (ones with the fchdir function).
55179
55180         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
55181         fails, try write-only, and finally, resort to using xgetcwd.
55182
55183 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
55184
55185         * lib/obstack.c, obstack.h: Import changes from libc.
55186
55187 2004-04-28  Bruno Haible  <bruno@clisp.org>
55188
55189         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
55190         also implicitly appends .exe to executables.
55191         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
55192         accepts Windows pathnames.
55193         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
55194         Treat Cygwin like Windows, since it now accepts Windows pathnames.
55195         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
55196         Treat Cygwin like Windows, since it now accepts Windows pathnames.
55197         Reported by Derek Robert Price <derek@ximbiot.com>.
55198
55199 2004-04-21  Karl Berry  <karl@gnu.org>
55200
55201         * config/srclist.txt (localcharset.c): break sync.
55202
55203 2004-04-20  Paul Eggert  <eggert@twinsun.com>
55204
55205         * m4/host-os.m4: Add a copyright notice.
55206
55207 2004-04-20  Jim Meyering  <jim@meyering.net>
55208
55209         Change UTILS_ to gl_ in AC_DEFINE'd names.
55210         Change utils_- and jm_-prefixed variables, too.
55211         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
55212         UTILS_FUNC_MKDIR_TRAILING_SLASH.
55213         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
55214
55215         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
55216         Don't emit trailing blanks.
55217         Also rename jm_-prefixed variables to have gl_ prefix.
55218
55219         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
55220         Also rename jm_-prefixed variables to have gl_ prefix.
55221
55222         * m4/jm-macros.m4: Reflect the renamings.
55223         * m4/prereq.m4: Likewise.
55224
55225 2004-04-20  Jim Meyering  <jim@meyering.net>
55226
55227         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
55228         memory.
55229
55230 2004-04-20  Jim Meyering  <jim@meyering.net>
55231             Bruno Haible  <bruno@clisp.org>
55232
55233         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
55234         memory when realloc fails.
55235
55236 2004-04-19  Jim Meyering  <jim@meyering.net>
55237
55238         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
55239         now that readutmp.c may call `free (0)'.
55240
55241 2004-04-19  Bruno Haible  <bruno@clisp.org>
55242
55243         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
55244         * m4/inttypes_h.m4: Likewise.
55245         * m4/stdint_h.m4: Likewise.
55246         * m4/intmax_t.m4: Likewise.
55247         * m4/uintmax_t.m4: Likewise.
55248
55249 2004-04-18  Jim Meyering  <jim@meyering.net>
55250
55251         * m4/prereq.m4: Don't forbid jm_ prefix.
55252
55253         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
55254         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
55255         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
55256         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
55257         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
55258         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
55259         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
55260         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
55261         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
55262         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
55263         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
55264         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
55265         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
55266         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
55267         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
55268         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
55269         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
55270         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
55271         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
55272
55273 2004-04-18  Jim Meyering  <jim@meyering.net>
55274
55275         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
55276         failure, don't leak memory and do call END_UTMP_ENT.
55277
55278 2004-04-16  Jim Meyering  <jim@meyering.net>
55279
55280         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
55281         coreutils' stat program.
55282         (gl_PREREQ): Don't require jm_PREREQ_STAT.
55283
55284 2004-04-11  Paul Eggert  <eggert@twinsun.com>
55285
55286         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
55287         C89.
55288         (CHAR_BIT): Remove, since we assume C89.
55289         Include <stdint.h> if available, as per current Autoconf CVS advice.
55290
55291 2004-03-31  Jim Meyering  <jim@meyering.net>
55292
55293         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
55294         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
55295         * m4/xalloc.m4: Likewise.
55296
55297 2004-03-30  Paul Eggert  <eggert@twinsun.com>
55298
55299         Merge from coreutils.
55300
55301         * m4/inttostr.m4: New file.
55302         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
55303         Require AM_STDBOOL_H and gl_TIMESPEC instead.
55304         Require gl_CLOCK_TIME.
55305         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
55306
55307 2004-03-30  Paul Eggert  <eggert@twinsun.com>
55308
55309         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
55310         not bool, to be more consistent with Unix conventions.
55311         Suggested by Bruno Haible.
55312
55313         Merge from coreutils.
55314
55315         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
55316         * lib/umaxtostr.c: New files.
55317
55318         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
55319         the usual <time.h> dance.
55320         (get_date): Change signature to support fractional time stamps.
55321         All callers changed.
55322         * lib/getdate.y: Include "getdate.h" first, as we can now
55323         assume C89 and don't need to worry about 'const'.
55324         Similarly, include "unlocked-io.h" near start, not in middle.
55325         Include <limits.h>.
55326         (textint.value): Use long int rather than int.
55327         (textint.digits): Use size_t rather than int.
55328         (BILLION, LOG10_BILLION): New constants.
55329         (parser_control): New member rel_ns.  Members day_ordinal,
55330         time_zone, month, day, hour, minutes, rel_year, rel_month,
55331         rel_day, rel_hour, rel_minutes, rel_seconds
55332         are now long int, not int.  Member seconds is now struct timespec,
55333         not int.  New member timespec_seen.  Members dates_seen, days_seen,
55334         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
55335         not int.
55336         (%union.intval): Now long int, not int.
55337         New member timespec.
55338         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
55339         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
55340         (spec): Now is a timespec or an item list.
55341         (timespec, items): New nonterminals.
55342         (time, rel, relunit, number, get_date):
55343         Add support for fractional seconds.
55344         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
55345         (gmtime, localtime, mktime): Remove decls; not needed with C89.
55346         (to_hour): First arg is now long int, not int.
55347         (to_year): Returns long int, not int.
55348         Don't treat year -70 like 70.
55349         (tm_diff): Returns long int, not int.
55350         (lookup_word): Use bool instead of int when appropriate.
55351         (yylex): Use size_t for count, not int.
55352         Detect overflow when parsing large integer constants.
55353         Add support for fractions.
55354         (get_date): Make pointers 'const' if possible.
55355         Use more-portable code to detect integer overflow.
55356         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
55357         Don't use ctime; it's not reliable if the year has >4 digits.
55358
55359         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
55360         This is for compatibility with BSD.
55361
55362         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
55363         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
55364         From coreutils' system.h.
55365
55366         * lib/userspec.c: Don't include "posixver.h".
55367         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
55368         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
55369         compatible extension.  Simplify code by removing a boolean int
55370         that was always nonzero if a string was nonnull.
55371
55372 2004-03-30  Jim Meyering  <jim@meyering.net>
55373
55374         Merge from coreutils.
55375
55376         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
55377         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
55378         on some systems one must include <grp.h> before it.
55379         Reported by Christian Krackowizer.
55380
55381 2004-03-30  Jim Meyering  <jim@meyering.net>
55382
55383         Merge from coreutils.
55384
55385         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
55386
55387         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
55388         an empty input stream.
55389
55390         * lib/readtokens.c: Include <stdbool.h>.
55391         (readtoken): Use `size_t' rather than int/long.
55392         All callers adjusted.
55393         Use `bool' rather than `int' where appropriate.
55394         Use memset rather than an explicit loop.
55395         Use x2nrealloc rather than xrealloc.
55396         Allow the use of `\0' as a delimiter.
55397         (readtokens): Likewise.
55398         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
55399
55400 2004-03-30  Jim Meyering  <jim@meyering.net>
55401
55402         * m4/realloc.m4: Remove file, since now it does no more than
55403         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
55404         the `configure.ac' section of module/realloc.
55405         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
55406
55407 2004-03-30  Bruno Haible  <bruno@clisp.org>
55408
55409         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
55410         nonnull.
55411
55412 2004-03-29  Paul Eggert  <eggert@twinsun.com>
55413
55414         Merge changes to getloadavg.c from coreutils and Emacs.
55415
55416         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
55417         Define to an expression, not to the empty string.
55418         Include cloexec.h and xalloc.h.
55419         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
55420         Use set_cloexec_flag rather than rolling our own.
55421         * lib/cloexec.c, lib/cloexec.h: New files.
55422
55423 2004-03-29  Paul Eggert  <eggert@twinsun.com>
55424
55425         * m4/cloexec.m4: New file.
55426
55427 2004-03-18  Paul Eggert  <eggert@twinsun.com>
55428
55429         * lib/getopt.h: Sync with libc CVS.
55430
55431 2004-03-18  Paul Eggert  <eggert@twinsun.com>
55432             Bruno Haible  <bruno@clisp.org>
55433
55434         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
55435         mbswidth.
55436
55437 2004-03-18  Paul Eggert  <eggert@twinsun.com>
55438             Bruno Haible  <bruno@clisp.org>
55439
55440         * lib/mbswidth.h: Include <wchar.h> only if
55441         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
55442         <wchar.h>.
55443         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
55444
55445 2004-03-09  Paul Eggert  <eggert@twinsun.com>
55446
55447         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
55448         Sync with libc CVS.
55449         * lib/getopt_int.h: New file, also synced from libc.
55450
55451 2004-03-09  Paul Eggert  <eggert@twinsun.com>
55452
55453         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
55454         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
55455         Bring back getopt.c, getopt.h, getopt1.c.
55456
55457 2004-03-07  Paul Eggert  <eggert@twinsun.com>
55458
55459         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
55460         All uses changed.  Check for sa_sigaction member; this fixes
55461         a bug first reported by Jason Andrade in
55462         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
55463
55464 2004-03-07  Paul Eggert  <eggert@twinsun.com>
55465
55466         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
55467         '#if' expressions.  Unlike the code it replaces, it does not
55468         depend on (defined _SC_PAGESIZE).  However, it does depend on
55469         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
55470         first reported by Jason Andrade in
55471         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
55472
55473 2004-02-25  Simon Josefsson  <jas@extundo.com>
55474
55475         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
55476
55477 2004-02-25  Simon Josefsson  <jas@extundo.com>
55478
55479         * lib/strdup.h: New file.
55480         * lib/strdup.c: Include it.
55481         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
55482         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
55483
55484 2004-02-23  Karl Berry  <karl@gnu.org>
55485
55486         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
55487         (from fencepost.gnu.org:/gd/gnuorg).
55488
55489 2004-02-23  Karl Berry  <karl@gnu.org>
55490
55491         * config/srclistvars.sh (GNUORG) [karl]: redefine.
55492         * config/srclist.txt: add maintain/standards documents.
55493
55494 2004-02-18  Bruno Haible  <bruno@clisp.org>
55495
55496         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
55497         Reported by Derek Robert Price <derek@ximbiot.com>.
55498
55499 2004-02-16  Karl Berry  <karl@gnu.org>
55500
55501         * config/mkinstalldirs, install-sh: update from automake.
55502
55503 2004-02-06  Karl Berry  <karl@gnu.org>
55504
55505         * m4/po.m4: update from gettext 0.14.1.
55506
55507 2004-02-06  Karl Berry  <karl@gnu.org>
55508
55509         * lib/config.charset: update from gettext 0.14.1.
55510
55511 2004-02-05  Paul Eggert  <eggert@twinsun.com>
55512
55513         Add comments and code, prompted by suggestions from Bruno Haible
55514         for sh-quote.
55515         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
55516         describing the enum quoting_style values.
55517         * lib/quotearg.c (quotearg_alloc): New function.
55518         (quotearg_buffer_restyled): Treat lone { and } as special.
55519         Treat = as special.  Work around bug with older shells
55520         that "see" a '\' that is really the 2nd byte of a multibyte char.
55521         Quote empty string with shell_quoting_style.
55522
55523 2004-02-03  Bruno Haible  <bruno@clisp.org>
55524
55525         * m4/pipe.m4: New file, from GNU gettext.
55526
55527 2004-02-03  Bruno Haible  <bruno@clisp.org>
55528
55529         * lib/pipe.h: New file, from GNU gettext.
55530         * lib/pipe.c: New file, from GNU gettext.
55531
55532 2004-01-27  Bruno Haible  <bruno@clisp.org>
55533
55534         * m4/execute.m4: New file, from GNU gettext.
55535
55536 2004-01-27  Bruno Haible  <bruno@clisp.org>
55537
55538         * lib/execute.h: New file, from GNU gettext.
55539         * lib/execute.c: New file, from GNU gettext.
55540         * lib/w32spawn.h: New file, from GNU gettext.
55541
55542 2004-01-24  Paul Eggert  <eggert@twinsun.com>
55543
55544         Merge from diffutils.
55545
55546         * lib/file-type.c (file_type): Add typed memory objects.
55547         * lib/file-type.h (S_TYPEISTMO): New macro.
55548
55549         * lib/c-stack.h (c_stack_action): Remove argv argument.
55550         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
55551         (die): Don't calculate message unless segv_action returns.
55552         (get_stack_location, min_address_from_argv, max_address_from_argv,
55553         volatile stack_base, volatile_stack_size): Remove.
55554         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
55555         that every segmentation violation is a stack overflow.  (Ouch!)
55556         See Debian bug 136249 (still outstanding) for more info about why
55557         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
55558
55559 2004-01-24  Paul Eggert  <eggert@twinsun.com>
55560
55561         Exit-status fix from coreutils.
55562
55563         Use exit_failure consistently in place of EXIT_FAILURE,
55564         so that program exit statuses are consistent on failure.
55565
55566         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
55567         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
55568         * lib/argmatch.h: Comment fix to match the above.
55569         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
55570         Now a macro referring to exit_failure, instead of a separate
55571         variable.  Include "exitfail.h" to get it.
55572         * lib/xstrtol.h: Include "exitfail.h".
55573         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
55574
55575         * lib/long-options.c (parse_long_options): Use prototype
55576         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
55577         for clarity.
55578
55579 2004-01-21  Jim Meyering  <jim@meyering.net>
55580
55581         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
55582         so as not to conflict with a different-sized __mktime_internal
55583         function in GNU libc.
55584         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
55585         Problem building statically-linked `ls' reported by Michael Brunnbauer.
55586
55587 2004-01-20  Karl Berry  <karl@gnu.org>
55588
55589         * config/config.guess: update from config.
55590
55591         * config/srclistvars.sh: GNUWWWLICENSES for karl.
55592
55593 2004-01-20  Bruno Haible  <bruno@clisp.org>
55594
55595         Safer stack allocation.
55596         * lib/setenv.c: Include allocsa.h.
55597         (alloca): Remove fallback definition.
55598         (freea): Remove macro.
55599         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
55600         instead of freea.
55601
55602 2004-01-20  Bruno Haible  <bruno@clisp.org>
55603
55604         * m4/eealloc.m4: New file, from GNU gettext.
55605
55606 2004-01-20  Bruno Haible  <bruno@clisp.org>
55607
55608         * m4/allocsa.m4: New file, from GNU gettext.
55609
55610 2004-01-20  Bruno Haible  <bruno@clisp.org>
55611
55612         * lib/xallocsa.h: New file, from GNU gettext.
55613         * lib/xallocsa.c: New file, from GNU gettext.
55614
55615 2004-01-20  Bruno Haible  <bruno@clisp.org>
55616
55617         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
55618
55619 2004-01-20  Bruno Haible  <bruno@clisp.org>
55620
55621         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
55622         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
55623         specially.
55624
55625 2004-01-20  Bruno Haible  <bruno@clisp.org>
55626
55627         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
55628         patch.
55629
55630 2004-01-20  Bruno Haible  <bruno@clisp.org>
55631
55632         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
55633
55634 2004-01-20  Bruno Haible  <bruno@clisp.org>
55635
55636         * lib/eealloc.h: New file.
55637
55638 2004-01-20  Bruno Haible  <bruno@clisp.org>
55639
55640         * lib/binary-io.h: Avoid warnings on Cygwin.
55641
55642 2004-01-20  Bruno Haible  <bruno@clisp.org>
55643
55644         * lib/allocsa.h: New file, from GNU gettext.
55645         * lib/allocsa.c: New file, from GNU gettext.
55646
55647 2004-01-18  Karl Berry  <karl@gnu.org>
55648
55649         * doc/gpl.texi, doc/lgpl.texi: new files.
55650
55651 2004-01-18  Karl Berry  <karl@gnu.org>
55652
55653         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
55654         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
55655
55656 2004-01-15  Paul Eggert  <eggert@twinsun.com>
55657
55658         Merge from coreutils.
55659
55660         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
55661         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
55662         (gl_DEFAULT_POSIX2_VERSION): Move
55663         the documentation from 'configure' into 'config.hin',
55664         so that 'configure --help' isn't burdened by it and
55665         we don't have to worry about its formatting there.
55666         Reword the documentation so that it's more succinct
55667         and can be run together into a single paragraph.
55668         * m4/same.m4 (gl_SAME): Check for pathconf.
55669
55670 2004-01-15  Paul Eggert  <eggert@twinsun.com>
55671
55672         Merge from coreutils.
55673
55674         * lib/posixver.c: Include posixver.h.
55675
55676         * lib/same.c: Include <stdbool.h>, <limits.h>.
55677         (_POSIX_NAME_MAX): Define if not defined.
55678         (MIN): New macro.
55679         (same_name): If file names are silently truncated, report
55680         that the file names are the same if they are the same after
55681         the silent truncation.
55682
55683         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
55684         conversion function.
55685         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
55686         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
55687         longer needed.
55688
55689 2004-01-15  Jim Meyering  <jim@meyering.net>
55690
55691         Merge from coreutils.
55692
55693         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
55694         if no library is required.
55695         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
55696         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
55697         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
55698         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
55699         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
55700         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
55701         value, $ac_cv_search_crypt, if it's "none required".
55702         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
55703         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
55704         not gl_FUNC_GETLOADAVG.
55705         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
55706         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
55707
55708 2004-01-15  Jim Meyering  <jim@meyering.net>
55709
55710         Merge from coreutils.
55711
55712         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
55713         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
55714         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
55715
55716         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
55717         optional configure-time default.
55718
55719         * lib/version-etc.c (version_etc_copyright): Update copyright date.
55720
55721         * lib/xreadlink.c (xreadlink): Correct outdated comment.
55722
55723 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
55724
55725         Merge from coreutils.
55726
55727         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
55728         value, $ac_cv_search_nanosleep, if it's "none required".
55729
55730 2004-01-14  Paul Eggert  <eggert@twinsun.com>
55731
55732         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
55733         with like-named macro in fnmatch.c.
55734         (EXT): Use an internal constant instead.
55735
55736         Merge fnmatch patches from glibc.
55737         * lib/fnmatch.c (mbsinit): Remove define.
55738         Add libc_hidden_ver (__fnmatch, fnmatch).
55739         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
55740         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
55741
55742 2004-01-14  Karl Berry  <karl@gnu.org>
55743
55744         * config/install-sh: update from automake.
55745
55746 2004-01-13  Karl Berry  <karl@gnu.org>
55747
55748         * config/install-sh: update from automake.
55749
55750 2004-01-09  Karl Berry  <karl@gnu.org>
55751
55752         * config/install-sh: update from automake.
55753
55754 2004-01-05  Karl Berry  <karl@gnu.org>
55755
55756         * config/config.{sub,guess}: update from config.
55757
55758 2003-12-31  Karl Berry  <karl@gnu.org>
55759
55760         * config/depcomp: update from automake.
55761
55762 2003-12-14  Karl Berry  <karl@gnu.org>
55763
55764         * lib/config.charset: update from gettext-runtime.
55765
55766 2003-12-03  Paul Eggert  <eggert@twinsun.com>
55767
55768         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
55769         Bug reported by Alfred M. Szmidt.
55770
55771 2003-12-03  Bruno Haible  <bruno@clisp.org>
55772
55773         * m4/gettext.m4: Upgrade from gettext-0.13.
55774         * m4/po.m4: Upgrade from gettext-0.13.
55775         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
55776         * m4/intmax.m4: New file, from gettext-0.13.
55777         * m4/printf-posix.m4: New file, from gettext-0.13.
55778
55779 2003-11-29  Karl Berry  <karl@gnu.org>
55780
55781         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
55782
55783 2003-11-25  Paul Eggert  <eggert@twinsun.com>
55784             Bruno Haible  <bruno@clisp.org>
55785
55786         * lib/printf-parse.h: Don't include sys/types.h.
55787         (ARG_NONE): New macro.
55788         (char_directive): Change type of *arg_index fields to size_t.
55789         * lib/printf-parse.c: Don't include sys/types.h.
55790         (SSIZE_MAX): Remove macro.
55791         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
55792         Remove unnecessary overflow check.
55793         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
55794         fields.
55795
55796 2003-11-25  Bruno Haible  <bruno@clisp.org>
55797
55798         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
55799
55800 2003-11-25  Bruno Haible  <bruno@clisp.org>
55801
55802         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
55803         gt_TYPE_SSIZE_T.
55804
55805 2003-11-24  Paul Eggert  <eggert@twinsun.com>
55806
55807         * modules/alloca: Remove dependency on xalloc.
55808
55809 2003-11-24  Paul Eggert  <eggert@twinsun.com>
55810
55811         * lib/alloca.c: Remove dependency on xalloc module.
55812         (xalloc_die): Remove.
55813         (memory_full) [!defined emacs]: New macro.
55814         [!defined emacs]: Don't include xalloc.h.
55815         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
55816         address arithmetic overflows.  Change datatypes a bit to avoid
55817         unnecessary casts.
55818
55819 2003-11-22  Jim Meyering  <jim@meyering.net>
55820
55821         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
55822         s/size/size_t/.
55823
55824 2003-11-21  Karl Berry  <karl@gnu.org>
55825
55826         * config/config.{sub,guess}: update from config.
55827
55828 2003-11-18  Karl Berry  <karl@gnu.org>
55829
55830         * config/config.{sub,guess}: update from config.
55831
55832         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
55833
55834 2003-11-17  Paul Eggert  <eggert@twinsun.com>
55835
55836         * README: Mention that S+T cannot overflow if S is the size of
55837         an existing object and T is sufficiently small.
55838
55839 2003-11-17  Jim Meyering  <jim@meyering.net>
55840
55841         On systems without utime and without a utimes function capable of
55842         dealing with a NULL struct utimbuf* argument, this utime replacement
55843         could -- in unusual circumstances -- leak a file descriptor.
55844         * lib/utime.c: Include <unistd.h> and <errno.h>.
55845         (utime_null): Be sure to close `fd' and to preserve errno.
55846         Reported by Geoff Collyer via Arnold Robbins.
55847
55848 2003-11-17  Bruno Haible  <bruno@clisp.org>
55849
55850         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
55851         (Depends-on): Add xsize.
55852
55853 2003-11-17  Bruno Haible  <bruno@clisp.org>
55854
55855         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
55856
55857 2003-11-17  Bruno Haible  <bruno@clisp.org>
55858
55859         * lib/vasnprintf.c (alloca): Remove fallback definition.
55860         (freea): Remove definition.
55861         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
55862         Reported by Paul Eggert.
55863
55864 2003-11-16  Paul Eggert  <eggert@twinsun.com>
55865             Bruno Haible  <bruno@clisp.org>
55866
55867         Protect against address arithmetic overflow.
55868         * lib/printf-args.h: Include stddef.h.
55869         (arguments): Change type of field 'count' to size_t.
55870         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
55871         'unsigned int' where appropriate.
55872         * lib/printf-parse.h: Include sys/types.h.
55873         (char_directive): Change type of *arg_index fields to ssize_t.
55874         (char_directives): Change type of fields 'count', max_*_length to
55875         size_t.
55876         * lib/printf-parse.c: Include sys/types.h and xsize.h.
55877         (SSIZE_MAX): Define fallback value.
55878         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
55879         instead of 'int' where appropriate. Check a_allocated, d_allocated
55880         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
55881         * lib/vasnprintf.c: Include xsize.h.
55882         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
55883         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
55884         overflow. Avoid wraparound when converting a width or precision from
55885         decimal to binary.
55886
55887 2003-11-16  Bruno Haible  <bruno@clisp.org>
55888
55889         Update from GNU gettext.
55890         * lib/printf-parse.c: Generalize to it can be compiled for wide
55891         strings.
55892         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
55893         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
55894         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
55895         SNPRINTF): New macros.
55896         Don't include <alloca.h> if the file is used inside libintl.
55897         (local_wcslen): New function, for Solaris 2.5.1.
55898         (VASNPRINTF): Use it instead of wcslen.
55899
55900 2003-11-16  Bruno Haible  <bruno@clisp.org>
55901
55902         * lib/xsize.h (xmax): New function.
55903         (xsum, xsum3, xsum4): Declare as "pure" functions.
55904
55905 2003-11-12  Paul Eggert  <eggert@twinsun.com>
55906
55907         * modules/xalloc (Files): Undo latest change, since xalloc.h
55908         no longer needs SIZE_MAX or PTRDIFF_MAX.
55909
55910 2003-11-12  Paul Eggert  <eggert@twinsun.com>
55911
55912         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
55913         gl_PTRDIFF_MAX.
55914
55915 2003-11-12  Paul Eggert  <eggert@twinsun.com>
55916
55917         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
55918         "return", to pacify some unknown compiler.  Problem reported
55919         by Joerg Schilling.
55920
55921 2003-11-12  Paul Eggert  <eggert@twinsun.com>
55922
55923         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
55924         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
55925         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
55926         heuristic is just as accurate as far as we know, and it removes a
55927         dependency on size_max.m4 and ptrdiff_max.m4.
55928
55929 2003-11-11  Bruno Haible  <bruno@clisp.org>
55930
55931         * modules/xsize (Files): Add m4/size_max.m4.
55932         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
55933
55934 2003-11-11  Bruno Haible  <bruno@clisp.org>
55935
55936         * m4/size_max.m4: New file.
55937         * m4/ptrdiff_max.m4: New file.
55938         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
55939         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
55940         (gl_XALLOC): Invoke it.
55941
55942 2003-11-11  Bruno Haible  <bruno@clisp.org>
55943
55944         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
55945         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
55946         defined.
55947
55948 2003-11-10  Paul Eggert  <eggert@twinsun.com>
55949
55950         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
55951         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
55952         rejected some allocations of exactly SIZE_MAX - 2 bytes.
55953         From Bruno Haible.
55954         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
55955         not (size_t) -1, since it's defined here.
55956
55957 2003-11-09  Karl Berry  <karl@gnu.org>
55958
55959         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
55960
55961 2003-11-06  Paul Eggert  <eggert@twinsun.com>
55962
55963         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
55964         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
55965         Reject sizes of exactly SIZE_MAX bytes.
55966         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
55967         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
55968
55969 2003-11-05  Bruno Haible  <bruno@clisp.org>
55970
55971         * lib/xsize.h: Include limits.h, to avoid a possible collision with
55972         SIZE_MAX defined in <limits.h> on Solaris.
55973
55974 2003-11-04  Jim Meyering  <jim@meyering.net>
55975
55976         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
55977         variable names, rather than @VAR@.
55978         * modules/poll: Likewise.
55979
55980 2003-11-04  Bruno Haible  <bruno@clisp.org>
55981
55982         * modules/xsize: New file.
55983         * modules/linebreak: Depend on xsize.
55984         * MODULES.html.sh (func_all_modules): Add xsize.
55985
55986 2003-11-04  Bruno Haible  <bruno@clisp.org>
55987
55988         * m4/xsize.m4: New file.
55989
55990 2003-11-04  Bruno Haible  <bruno@clisp.org>
55991
55992         * lib/xsize.h: New file.
55993         * lib/linebreak.c: Include xsize.h.
55994         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
55995         argument for overflow.
55996         Suggested by Paul Eggert.
55997
55998 2003-11-03  Karl Berry  <karl@gnu.org>
55999
56000         * config/config.{guess,sub}: update from config.
56001
56002 2003-11-03  Jim Meyering  <jim@meyering.net>
56003
56004         * modules/userspec (lib_SOURCES): Add userspec.h.
56005         (Include): Add "userspec.h".
56006         Improve description.
56007
56008 2003-11-03  Jim Meyering  <jim@meyering.net>
56009
56010         * lib/userspec.c: Include "userspec.h".
56011         * lib/userspec.h: New file.
56012
56013 2003-11-03  Bruno Haible  <bruno@clisp.org>
56014
56015         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
56016
56017 2003-11-03  Bruno Haible  <bruno@clisp.org>
56018
56019         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
56020         available, to avoid (extremely rare) race condition.
56021         Suggested by Paul Eggert.
56022
56023 2003-11-02  Karl Berry  <karl@gnu.org>
56024
56025         * config/srclist.txt (vasprintf.c): sync broken, sigh.
56026
56027 2003-10-31  Paul Eggert  <eggert@twinsun.com>
56028
56029         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
56030         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
56031         (read_filesystem_list): Set and use me_type_malloced.
56032         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
56033         whatever the type happens to be), for brevity and consistency.
56034         Check for size calculation overflow on Alphas running OSF/1.
56035
56036 2003-10-31  Jim Meyering  <jim@meyering.net>
56037
56038         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
56039
56040         * lib/linebuffer.c: Include <string.h> for declaration of memset.
56041
56042 2003-10-30  Paul Eggert  <eggert@twinsun.com>
56043             Bruno Haible  <bruno@clisp.org>
56044
56045         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
56046         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
56047
56048 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
56049
56050         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
56051         netbsd*-gnu*.  Suggested by Robert Millan.
56052
56053 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56054
56055         * modules/group-member: Depend on stdbool.
56056
56057 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56058
56059         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
56060
56061 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56062
56063         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
56064         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
56065         after the 'gnu' in these cases.  This fixes some bugs in the
56066         previous change, and is based on suggestions by Robert Millan.
56067
56068 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56069
56070         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
56071         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
56072         no longer needed.
56073         * lib/quotearg.c (quotearg_n_options): Use it.
56074         * lib/group-member.c: Include <stdbool.h>.
56075         (free_group_info): Arg is now const *; don't free arg.
56076         (get_group_info): Now returns bool and accepts struct group_info *,
56077         rather than returning a malloc'ed struct group_info *.
56078         All uses changed.  Check for overflow in internal size calculation.
56079
56080         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
56081         rather than xmalloc/xrealloc.
56082         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
56083         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
56084         conformance bug: the old code used a pointer after freeing the
56085         storage that it addressed.
56086         * lib/hash.c (hash_initialize): Simplify the code by using
56087         xalloc_oversized rather than doing it by hand.
56088         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
56089         the buffer preserved.  Use free and xmalloc instead.
56090         * lib/quotearg.c (quotearg_n_options): Likewise.
56091         Use a simpler test for size overflow.  Don't use xalloc_oversized
56092         because unsigned int might be wider than size_t (!); this suggests
56093         that we should switch from unsigned int to size_t for slot numbers.
56094
56095 2003-10-28  Paul Eggert  <eggert@twinsun.com>
56096
56097         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
56098         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
56099         NetBSD kernels.  Requested by Richard Stallman.
56100
56101 2003-10-27  Paul Eggert  <eggert@twinsun.com>
56102
56103         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
56104         to allocate the returned structure.  Do not allocate a subarray,
56105         as x2nrealloc will do that.
56106         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
56107         instead of xnrealloc.
56108         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
56109
56110 2003-10-27  Bruno Haible  <bruno@clisp.org>
56111
56112         * lib/stdbool_.h: Better support for BeOS.
56113
56114 2003-10-26  Paul Eggert  <eggert@twinsun.com>
56115
56116         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
56117         now uses inline.
56118
56119 2003-10-26  Paul Eggert  <eggert@twinsun.com>
56120
56121         * lib/xalloc.h (xalloc_oversized): New static inline function, for
56122         callers that want to do their own size-overflow checking.  Include
56123         <stdbool.h>, since xalloc_oversized returns bool.
56124         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
56125         to use xalloc_oversized.
56126
56127         Add two functions x2realloc, x2nrealloc, for programs that grow
56128         arrays dynamically by doubling their sizes.
56129         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
56130         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
56131         New functions.
56132
56133         Port to C99 semantics for 'inline' of external functions.
56134         Bug reported by Bruno Haible.
56135         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
56136         with the old contents of xnmalloc.
56137         (xnmalloc, xmalloc): Use it.
56138         (xnrealloc_inline): New static inline function,
56139         with the old contents of xnrealloc.
56140         (xnrealloc, xrealloc): Use it.
56141
56142         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
56143         that.
56144
56145 2003-10-26  Karl Berry  <karl@gnu.org>
56146
56147         * config/srclist.txt (COPYING.DOC): no longer available from
56148         /gd/gnuorg; don't know where the ultimate source is.
56149
56150 2003-10-25  Paul Eggert  <eggert@twinsun.com>
56151
56152         Fix several address-calculation bugs in the hash modules,
56153         plus some minor code cleanup.
56154
56155         * lib/hash.h: Include <stdbool.h>, for bool.
56156         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
56157         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
56158         hash_get_n_entries, hash_get_max_bucket_length,
56159         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
56160         hash_rehash): Use size_t rather than unsigned.
56161         * lib/hash.c (struct hash_table, hash_get_n_buckets,
56162         hash_get_n_buckets_used, hash_get_n_entries,
56163         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
56164         hash_get_entries, hash_do_for_each, hash_string, is_prime,
56165         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
56166         Likewise.
56167         (SIZE_MAX): Define if not defined.
56168         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
56169         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
56170         hash_print):
56171         Use const * when possible.
56172         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
56173         (check_tuning): Fix bug: if tuning parameters were very close to
56174         0 or 1, rounding errors could have caused subscript violations.
56175         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
56176         (hash_initialize): Add 'fail:' label
56177         to free table and return NULL, and use it to simplify code.
56178         Use calloc rather than clearing the storage ourself.
56179         (hash_initialize, hash_rehash): Check for arithmetic overflow in
56180         buffer size calculations.
56181         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
56182         Include <stddef.h>, for size_t.
56183         * lib/hash-pjw.c (hash_pjw): Likewise.
56184         Switch to method described by Bruno Haible.
56185         Include <limits.h>, for CHAR_BIT.
56186         (SIZE_BITS): New macro.
56187
56188 2003-10-23  Paul Eggert  <eggert@twinsun.com>
56189
56190         * m4/getline.m4 (AM_FUNC_GETLINE):
56191         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
56192         hosts.  Problem reported by Derek Robert Price in
56193         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
56194         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
56195         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
56196
56197 2003-10-21  Paul Eggert  <eggert@twinsun.com>
56198
56199         * lib/getndelim2.c (getndelim2): When size calculation overflows,
56200         ceiling the allocation at NMAX bytes rather than silently
56201         discarding input bytes before NMAX is reached.  This makes
56202         a difference only if NMAX exceeds SIZE_MAX / 2.
56203
56204         * lib/obstack.c: Merge from glibc.
56205         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
56206         Add libc_hidden_def (_obstack_newchunk).
56207         (_obstack_free) [! defined _LIBC]: Remove.
56208         [defined _LIBC]: Make a strong alias from obstack_free, rather than
56209         a clone of the function body.
56210         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
56211         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
56212
56213         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
56214         glibc.
56215         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
56216         arg to memcpy.
56217
56218         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
56219         (obstack_ptr_grow_fast, obstack_int_grow_fast):
56220         Don't use lvalue casts, as GCC plans to remove support for them
56221         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
56222         was also present in the non-GCC version, indicating that this
56223         code had always been buggy and had never been widely used.
56224         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
56225         Use the fast variant of each macro, rather than copying the
56226         definiens of the fast variant; that way, we'll be more likely to
56227         catch future bugs in the fast variants.
56228
56229 2003-10-20  Bruno Haible  <bruno@clisp.org>
56230
56231         * modules/wait-process: New file.
56232         * MODULES.html.sh (func_all_modules): Add wait-process.
56233
56234 2003-10-20  Bruno Haible  <bruno@clisp.org>
56235
56236         * m4/wait-process.m4: New file.
56237
56238 2003-10-20  Bruno Haible  <bruno@clisp.org>
56239
56240         * lib/wait-process.h: New file, from GNU gettext.
56241         * lib/wait-process.c: New file, from GNU gettext.
56242
56243 2003-10-19  Jim Meyering  <jim@meyering.net>
56244
56245         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
56246         HPUX 10.20.
56247
56248 2003-10-18  Karl Berry  <karl@gnu.org>
56249
56250         * config/config.guess: update from config.
56251
56252 2003-10-16  Paul Eggert  <eggert@twinsun.com>
56253
56254         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
56255         (getgroups): First arg is int, not size_t.
56256         Don't let 'free' mangle errno.
56257
56258 2003-10-16  Paul Eggert  <eggert@twinsun.com>
56259
56260         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
56261
56262 2003-10-16  Karl Berry  <karl@gnu.org>
56263
56264         * config/config.{guess,sub}: update from config.
56265
56266 2003-10-16  Jim Meyering  <jim@meyering.net>
56267
56268         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
56269         memcpy.
56270
56271 2003-10-15  Paul Eggert  <eggert@twinsun.com>
56272
56273         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
56274         (SIZE_MAX): Remove.
56275         (new_exclude, add_exclude_file): Initial size no longer needs to
56276         be a power of 2.
56277         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
56278         our own address arithmetic overflow checking.
56279
56280         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
56281         (fnmatch): Do not alloca more than 2000 wide characters;
56282         instead, use malloc for large buffers.
56283         Check for address arithmetic overflow, and return -1
56284         with errno set to ENOMEM in that case.
56285         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
56286         (NEW_PATTERN): Do not alloca more than 8000 bytes;
56287         instead, return -1.  Check for address arithmetic overflow.
56288
56289 2003-10-14  Paul Eggert  <eggert@twinsun.com>
56290
56291         Handle invalid suffixes and overflow independently, so that
56292         callers can treat them independently as needed.  Fix some bugs in
56293         suffix handling, e.g., "100k@" was not diagnosed as an invalid
56294         suffix for a human-readable blocksize.  The major caller-visible
56295         change is the addition of a new
56296         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
56297         that both overflow and suffix chars were found.
56298
56299         * lib/human.c (humblock): Don't check separately for invalid suffix
56300         char; that is xstrtoumax's job (now that its bug is fixed).
56301         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
56302         INTMAX_MAX]: New macros.
56303         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
56304         TYPE_MAXIMUM): New macros.
56305         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
56306         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
56307         if overflow occurs, as it's what __strtol does and it's more useful
56308         in practice.
56309         (__xstrtol): If __strtol reports some error other than ERANGE,
56310         reflect it to the caller as LONGINT_INVALID.  If it reports
56311         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
56312         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
56313         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
56314         value.
56315         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
56316         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
56317         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
56318         [defined UINTMAX_MAX]: New macros.
56319
56320 2003-10-14  Bruno Haible  <bruno@clisp.org>
56321
56322         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
56323
56324 2003-10-14  Bruno Haible  <bruno@clisp.org>
56325
56326         * m4/sig_atomic_t: New file, from GNU gettext.
56327         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
56328
56329 2003-10-14  Bruno Haible  <bruno@clisp.org>
56330
56331         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
56332         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
56333         Also use volatile where needed.
56334
56335 2003-10-12  Paul Eggert  <eggert@twinsun.com>
56336
56337         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
56338         Change maintainer from Bruno Haible to 'all'.
56339
56340 2003-10-12  Paul Eggert  <eggert@twinsun.com>
56341
56342         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
56343
56344 2003-10-12  Paul Eggert  <eggert@twinsun.com>
56345
56346         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
56347         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
56348         and define in terms of the other primitives.
56349         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
56350         (SIZE_MAX): Define if not already defined.
56351         (array_size_overflow): New function.
56352         (xalloc_die): Abort instead of exiting if 'error' returns.
56353         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
56354         (xmalloc, xrealloc): Use them.
56355         (xcalloc): Check for address arithmetic overflow.
56356         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
56357         a bit faster than strcpy.
56358
56359 2003-10-10  Simon Josefsson  <jas@extundo.com>
56360
56361         * modules/argp (Depends-on): Add restrict and strcase.
56362
56363 2003-10-10  Simon Josefsson  <jas@extundo.com>
56364
56365         * m4/argp.m4: Add AC_C_INLINE.
56366
56367 2003-10-08  Paul Eggert  <eggert@twinsun.com>
56368
56369         Merge getpass from libc, plus a few fixes.
56370
56371         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
56372         Include <stdbool.h>.
56373         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
56374         __fsetlocking to empty.
56375         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
56376         do include <bits/libc-lock.h>.
56377         Do not include <fcntl.h>; not needed.
56378         [_LIBC]: Include <wchar.h>.
56379         (NOTCANCEL_MODE): New macro.
56380         (flockfile, funlockfile) [_LIBC]: New macros.
56381         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
56382         [!_LIBC]: New macros.
56383         (call_fclose): New function.
56384         (getpass): Use it.  Save tty stream separately; this simplifies the
56385         code and makes it more reliable if stdin happens to equal stdout.
56386         Invoke __fsetlocking on tty.
56387         Handle thread cancellation if needed.
56388         Namespace cleanup (use __tcgetattr, __getline).
56389         Use bool for Booleans.
56390         [USE_IN_LIBIO]: Handle wide streams.
56391         [!_LIBC]: Unconditionally do the fseek, since we don't know what
56392         stream might go where.
56393
56394         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
56395         doesn't have to include <stdio.h> before us.
56396         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
56397         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
56398         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
56399         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
56400         if not declared, so that we can use getpass.c code from libc without
56401         rewriting it.
56402         (flockfile, ftrylockfile, funlockfile): New macros.
56403
56404 2003-10-08  Paul Eggert  <eggert@twinsun.com>
56405
56406         * modules/getpass: Depend on stdbool.
56407
56408 2003-10-08  Paul Eggert  <eggert@twinsun.com>
56409
56410         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
56411
56412 2003-10-07  Karl Berry  <karl@gnu.org>
56413
56414         * config/config.{guess,sub}: update from config.
56415
56416 2003-10-06  Jim Meyering  <jim@meyering.net>
56417             Bruno Haible  <bruno@clisp.org>
56418
56419         This lets translators provide better translations for the
56420         "Written by ..." part of --version output.
56421         * lib/version-etc.h: Include stdarg.h.
56422         (version_etc_copyright): Declare as readonly.
56423         (version_etc): Make this function variadic with a NULL-terminated list
56424         of author name strings.
56425         (version_etc_va): New declaration.
56426         * lib/version-etc.c: Include stdarg.h, stdlib.h.
56427         (version_etc_copyright): Declare as readonly.
56428         (version_etc_va): New function. Provide a different translatable string
56429         for each possible number of authors < 10. Abbreviate when there are 10
56430         authors or more.
56431         (version_etc): Make this function variadic. Call version_etc_va.
56432         Suggestion from Gary V. Vaughan.
56433
56434         * lib/long-options.h (parse_long_options): Change prototype: the
56435         authors string is moved to the end and becomes variadic.
56436         * lib/long-options.c: Include stdarg.h.
56437         (parse_long_options): Make this function variadic, too.
56438         Call version_etc_va, not version_etc.
56439
56440 2003-10-06  Bruno Haible  <bruno@clisp.org>
56441
56442         * modules/version-etc-2: Remove file.
56443         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
56444
56445 2003-10-06  Bruno Haible  <bruno@clisp.org>
56446
56447         * modules/fatal-signal: New file.
56448         * MODULES.html.sh (func_all_modules): Add fatal-signal.
56449
56450 2003-10-06  Bruno Haible  <bruno@clisp.org>
56451
56452         * m4/fatal-signal.m4: New file.
56453         * m4/signalblocking.m4: New file, from GNU gettext.
56454
56455 2003-10-06  Bruno Haible  <bruno@clisp.org>
56456
56457         * lib/version-etc-2.h: Remove file.
56458         * lib/version-etc-2.c: Remove file.
56459
56460 2003-10-06  Bruno Haible  <bruno@clisp.org>
56461
56462         * lib/fatal-signal.h: New file, from GNU gettext.
56463         * lib/fatal-signal.c: New file, from GNU gettext.
56464
56465 2003-10-05  Paul Eggert  <eggert@twinsun.com>
56466
56467         * README: Rework advice for preventing empty .o files.
56468         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
56469         not <sys/types.h>.
56470
56471 2003-10-04  Karl Berry  <karl@gnu.org>
56472
56473         * lib/argp*: update from libc.
56474
56475 2003-10-04  Karl Berry  <karl@gnu.org>
56476
56477         * config/config.{guess,sub}: update from config.
56478
56479 2003-10-02  Bruno Haible  <bruno@clisp.org>
56480
56481         * modules/lchown (Include): Add lchown.h.
56482         * modules/time_r (Include): Use "..." syntax.
56483         * modules/xgetdomainname (Include): Add xgetdomainname.h.
56484
56485 2003-10-01  Simon Josefsson  <jas@extundo.com>
56486
56487         * MODULES.html.sh (func_all_modules): Move gethostname from section
56488         'based on' to section 'lacking' POSIX:2001.
56489
56490 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
56491
56492         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
56493         to output mode on the same stream.
56494
56495 2003-09-29  Paul Eggert  <eggert@twinsun.com>
56496
56497         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
56498         Fix arg typo in previous patch.
56499
56500 2003-09-28  Jim Meyering  <jim@meyering.net>
56501
56502         * lib/error.c: Correct cpp indentation.
56503
56504 2003-09-27  Paul Eggert  <eggert@twinsun.com>
56505
56506         * modules/free: New file.
56507
56508 2003-09-27  Paul Eggert  <eggert@twinsun.com>
56509
56510         * m4/free.m4: New file.
56511
56512 2003-09-27  Paul Eggert  <eggert@twinsun.com>
56513
56514         * lib/minmax.h (MIN, MAX)
56515         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
56516         Omit the special code that used __typeof__, since we worry that
56517         it could be more trouble than it's worth.  See:
56518         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
56519         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
56520
56521         * lib/free.c: New file.
56522
56523 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
56524
56525         Trivial fixes to Makefile.am parts of module listings.
56526         * modules/strstr: Append strstr.h to lib_SOURCES.
56527         * modules/strcase: Likewise, for strcase.h.
56528
56529 2003-09-27  Karl Berry  <karl@gnu.org>
56530
56531         * config/mkinstalldirs: update from automake.
56532
56533 2003-09-26  Paul Eggert  <eggert@twinsun.com>
56534
56535         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
56536         (error_tail): Do not loop, reallocating temporary buffer, since
56537         the output cannot contain more wide characters than the input
56538         contains bytes, the size must be big enough already.  This avoids
56539         one potential size overflow calculation.  Check for size overflow
56540         when calculating temporary buffer size.  Free temporary buffer
56541         when done, if it was allocated with malloc; this plugs a memory
56542         leak.  Remove casts from void * to pointers, that are no longer
56543         needed now that we're assuming C89 or better.
56544
56545         Merge error changes from glibc.
56546
56547         * lib/error.c, error.h: Update copyright notice header to match glibc.
56548         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
56549         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
56550         Disable cancellation while printing error.
56551         * lib/error.h: Prepend __ to parameter names.
56552
56553 2003-09-26  Jim Meyering  <jim@meyering.net>
56554
56555         * lib/error.c (error_tail): Move some declarations
56556         into inner scope where the local variables are used.
56557
56558 2003-09-26  Bruno Haible  <bruno@clisp.org>
56559
56560         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
56561         stpncpy().
56562         Don't define stpncpy through config.h; it's now done through stpncpy.h.
56563
56564 2003-09-26  Bruno Haible  <bruno@clisp.org>
56565
56566         * lib/stpncpy.h (gnu_stpncpy): New declaration.
56567         (stpncpy): Define as alias for gnu_stpncpy.
56568         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
56569
56570 2003-09-25  Simon Josefsson  <jas@extundo.com>
56571
56572         * lib/xgetdomainname.h: New file.
56573         * lib/xgetdomainname.c: New file.
56574
56575 2003-09-25  Simon Josefsson  <jas@extundo.com>
56576             Bruno Haible  <bruno@clisp.org>
56577
56578         * modules/getdomainname: New file.
56579         * modules/xgetdomainname: New file.
56580         * MODULES.html.sh (func_all_modules): Add getdomainname,
56581         xgetdomainname.
56582
56583 2003-09-25  Simon Josefsson  <jas@extundo.com>
56584             Bruno Haible  <bruno@clisp.org>
56585
56586         * m4/getdomainname.m4: New file.
56587
56588 2003-09-25  Simon Josefsson  <jas@extundo.com>
56589             Bruno Haible  <bruno@clisp.org>
56590
56591         * lib/getdomainname.h: New file.
56592         * lib/getdomainname.c: New file.
56593
56594 2003-09-25  Karl Berry  <karl@gnu.org>
56595
56596         * lib/argp-fmtstream.c, argp-help.c: update from libc.
56597
56598 2003-09-25  Karl Berry  <karl@gnu.org>
56599
56600         * config/install-sh: update from automake.
56601
56602 2003-09-25  Bruno Haible  <bruno@clisp.org>
56603
56604         * modules/version-etc-2: New file, from modules/version-etc with
56605         modifications.
56606         * MODULES.html.sh (func_all_modules): Add version-etc-2.
56607
56608 2003-09-25  Bruno Haible  <bruno@clisp.org>
56609
56610         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
56611         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
56612
56613 2003-09-24  Simon Josefsson  <jas@extundo.com>
56614
56615         * modules/xgethostname: Add xgethostname.h.
56616
56617 2003-09-24  Paul Eggert  <eggert@twinsun.com>
56618
56619         * lib/linebuffer.c (freebuffer): Don't free the argument, just
56620         the buffer associated with the argument.  Bug reported by
56621         Simon Josefsson.
56622
56623 2003-09-24  Paul Eggert  <eggert@twinsun.com>
56624
56625         * README: Document assumptions that 'int' is at least 32 bits
56626         wide, that integer arithmetic is 2's complement without overflow,
56627         that there are no holes in integer values, that adding sizes of
56628         two nonoverlapping objects can't overflow, and that all-bits-zero
56629         yields scalar zero.  Fix spelling and capitalization typos.
56630
56631 2003-09-19  Karl Berry  <karl@gnu.org>
56632
56633         * lib/argp.h: update from libc.
56634
56635 2003-09-17  Paul Eggert  <eggert@twinsun.com>
56636
56637         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
56638         to avoid spurious warnings like "AC_RUN_IFELSE was called before
56639         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
56640
56641 2003-09-17  Paul Eggert  <eggert@twinsun.com>
56642
56643         * gnulib-tool: Use "test -h", not "test -L", for portability
56644         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
56645         (tags_regexp): Remove, since \| doesn't conform to POSIX.
56646         (sed_extract_prog): Issue s commands one-by-one, rather than
56647         using \| in one s command.
56648
56649 2003-09-16  Paul Eggert  <eggert@twinsun.com>
56650
56651         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
56652         input error, instead of returning NULL the next time we are called
56653         (and therefore losing track of errno).
56654
56655 2003-09-16  Bruno Haible  <bruno@clisp.org>
56656
56657         * gnulib-tool (func_create_testdir): Warn about duplicated
56658         dependencies.
56659
56660 2003-09-15  Paul Eggert  <eggert@twinsun.com>
56661
56662         * modules/argmatch, modules/fatal, modules/obstack,
56663         modules/xalloc, modules/xgethostname: Sort dependencies by
56664         importance, not alphabetically.
56665
56666 2003-09-15  Paul Eggert  <eggert@twinsun.com>
56667
56668         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
56669         fails, so that the caller gets the proper errno.
56670
56671         * lib/readutmp.c (read_utmp): Likewise.
56672         Check for fstat error.  Close stream and free storage
56673         when failing.
56674
56675 2003-09-14  Karl Berry  <karl@gnu.org>
56676
56677         * config/srclist.txt (strdup.c): disable for c89 changes.
56678
56679 2003-09-14  Jim Meyering  <jim@meyering.net>
56680
56681         * lib/getloadavg.c: Correct cpp indentation.
56682         * lib/strdup.c: Likewise.
56683         * lib/vasnprintf.c: Likewise.
56684
56685 2003-09-14  Bruno Haible  <bruno@clisp.org>
56686
56687         * modules/fwriteerror: New file.
56688         * MODULES.html.sh (func_all_modules): Add fwriteerror.
56689
56690 2003-09-14  Bruno Haible  <bruno@clisp.org>
56691
56692         * lib/fwriteerror.h: New file.
56693         * lib/fwriteerror.c: New file.
56694
56695 2003-09-12  Paul Eggert  <eggert@twinsun.com>
56696
56697         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
56698         modules/xgethostname, modules/xalloc: Depend on exit.
56699
56700 2003-09-12  Paul Eggert  <eggert@twinsun.com>
56701
56702         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
56703
56704         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
56705         and AC_MINIX, too, so that their extensions are available.
56706
56707         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
56708         This macro has been superseded by gl_BACKUPFILE.
56709
56710         More patches to assume C89 or better.
56711
56712         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
56713
56714         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
56715         unconditionally.
56716         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
56717         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
56718         Include <string.h>, <stdlib.h> unconditionally.
56719         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
56720         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
56721         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
56722         headers or for string.h.
56723         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
56724         or strtoul.
56725
56726         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
56727         headers.
56728         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
56729         * m4/userspec.m4 (gl_USERSPEC): Likewise.
56730         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
56731         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
56732         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
56733         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
56734         memcpy, memset.
56735         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
56736         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
56737         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
56738         strtol.
56739         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
56740         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
56741         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
56742         strtoul.
56743
56744 2003-09-12  Paul Eggert  <eggert@twinsun.com>
56745
56746         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
56747         * lib/obstack.c [!defined _LIBC]: Likewise.
56748         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
56749         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
56750         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
56751
56752         More changes to assume C89 or better.
56753
56754         * lib/error.c (error_tail): Assume vprintf.
56755
56756         * lib/argmatch.c (getenv): Remove decl.
56757         * lib/progreloc.c (get_full_program_name): Define via prototype.
56758         * lib/setenv.c (clearenv): Likewise.
56759         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
56760         needed.
56761         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
56762         (malloc, memcpy): Remove decls.
56763         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
56764         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
56765         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
56766         (memcpy): Remove macro.
56767         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
56768         (__P): Remove.  All uses removed.
56769         (PTR): Remove.  All uses changed to void *.
56770         (CHAR_BIT, NULL): Remove.
56771         (spaces, zeros, memset_space, memset_zero)
56772         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
56773         Remove.
56774         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
56775         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
56776         Define with prototype.
56777         Remove now-unnecessary prototype decl.
56778         (extra_args_spec): Assume ANSI C.  All uses changed.
56779         (extra_args_spec_iso): Remove.
56780         (my_strftime, emacs_strftimeu): Define via prototype.
56781         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
56782         unconditionally.
56783         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
56784         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
56785         (strtoul, strtol): Remove decls.
56786         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
56787         LONG_MAX): Remove.
56788         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
56789         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
56790         (LOCALE_PARAM_PROTO): New macro.
56791         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
56792         (INTERNAL (strtol), strtol): Define with a prototype.
56793         (PARAMS): Remove.  All uses removed.
56794         * lib/tempname.c: Include <string.h> unconditionally.
56795         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
56796         * lib/xgethostname.c (main): Define with a prototype.
56797         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
56798         Include <stdlib.h> unconditionally.
56799         (calloc, malloc, realloc, free): Remove decls.
56800         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
56801         Include <stdlib.h> unconditionally.  Sort include file names.
56802         (strtod): Remove.
56803         (xstrtod): Define with a prototype.
56804         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
56805         (strtol, strtoul): Remove decls.
56806
56807 2003-09-11  Paul Eggert  <eggert@twinsun.com>
56808
56809         More patches to assume C89 or better.
56810         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
56811         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
56812         string.h, memchr, STDC_HEADERS.
56813
56814 2003-09-11  Paul Eggert  <eggert@twinsun.com>
56815
56816         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
56817         Include <stdlib.h>, <string.h> unconditionally.
56818         Remove now-unnecessary cast to char *.
56819         * lib/strnlen.c: Include <string.h> unconditionally.
56820         * lib/yesno.c (yesno): Define with a prototype.
56821
56822 2003-09-11  Bruno Haible  <bruno@clisp.org>
56823
56824         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
56825
56826 2003-09-10  Jim Meyering  <jim@meyering.net>
56827
56828         * lib/error.c: Correct indentation of cpp directives.
56829
56830 2003-09-10  Bruno Haible  <bruno@clisp.org>
56831
56832         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
56833         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
56834         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
56835         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
56836         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
56837         <stdlib.h> and <string.h> checks.
56838         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
56839         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
56840
56841 2003-09-10  Bruno Haible  <bruno@clisp.org>
56842
56843         * lib/strcspn.c: Include <string.h> unconditionally.
56844         * lib/strpbrk.c: Include <string.h> unconditionally.
56845         * lib/strstr.c: Include <string.h> unconditionally.
56846         * lib/unicodeio.c: Include <string.h> unconditionally.
56847         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
56848         * lib/unsetenv.c: Likewise.
56849         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
56850         * lib/yesno.c: Include <stdlib.h> unconditionally.
56851         (rpmatch): Add prototype.
56852
56853 2003-09-09  Paul Eggert  <eggert@twinsun.com>
56854
56855         More patches to assume C89 or better.
56856         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
56857         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
56858         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
56859         or for string.h.
56860         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
56861         stdlib.h.
56862         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
56863         C headers.
56864         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
56865         string.h.
56866         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
56867         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
56868         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
56869         or for string.h.
56870         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
56871         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
56872         C headers.
56873         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
56874         memcpy.
56875         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
56876         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
56877         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
56878         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
56879         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
56880         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
56881         string.h, free.
56882         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
56883         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
56884         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
56885         C headers, or for string.h.
56886         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
56887         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
56888         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
56889         headers, memory.h, stdlib.h, string.h, strings.h.
56890         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
56891         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
56892         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
56893         strchr.
56894         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
56895         headers, memory.h, string.h.
56896         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
56897         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
56898         free.
56899         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
56900         headers.
56901         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
56902         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
56903         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
56904         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
56905         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
56906
56907 2003-09-09  Paul Eggert  <eggert@twinsun.com>
56908
56909         More K&R removal.
56910
56911         * lib/acosl.c (main): Use a prototype.
56912         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
56913         tanl.c: Likewise.
56914
56915         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
56916
56917         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
56918         (getopt, etopt_long, getopt_long_only, _getopt_internal)
56919         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
56920         with a prototype.
56921         * lib/getopt.c (const): Remove macro.
56922         Include <string.h> unconditionally.
56923         (my_index): Remove; all uses changed to strchr.
56924         (strlen): Remove decl.
56925         (exchange): Remove forward decl; no longer needed.
56926         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
56927         Define with prototype.
56928         * lib/getopt1.c (const): Remove macro.
56929         (getopt_long, getopt_long_only, main): Define with prototype.
56930
56931         * lib/getugroups.c: Include <string.h> unconditionally.
56932
56933         * lib/getusershell.c: Include <stdlib.h> unconditionally.
56934         (getusershell, setusershell, endusershell, readname, main):
56935         Define with prototypes.
56936
56937         * lib/group-member.c: Include group-member.h first.
56938         Include <stdlib.h> unconditionally.
56939
56940         * lib/hard-locale.c: Include hard-locale.h first.
56941         Include <stdlib.h>, <string.h> unconditionally.
56942
56943         * lib/hash.c (free, malloc): Remove decls.
56944         Include <stdlib.h> unconditionally.
56945
56946         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
56947         (getenv): Do not declare.
56948
56949         * lib/idcache.c: Include <string.h> unconditionally.
56950
56951         * lib/long-options.c: Include long-options.h first, to test interface.
56952         Include <stdlib.h> unconditionally.
56953
56954         * lib/makepath.c: Include makepath.h first, to test interface.
56955         Include <stdlib.h> and <string.h> unconditionally.
56956
56957         * lib/linebuffer.c: Include <stdlib.h>.
56958         (free): Remove decl.
56959
56960         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
56961         stddef.h. rpl_malloc returns void *, not char *.
56962         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
56963         prototype.
56964
56965         * lib/md5.h: Include <limits.h> unconditionally.
56966         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
56967         (__P): Remove; all uses removed.
56968         * lib/md5.c: Include "md5.h" first.
56969         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
56970         md5_buffer, md5_process_bytes, md5_process_block):
56971         Define with prototypes.
56972         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
56973         * lib/sha.c: Include "sha.h" first.
56974         Include <stdlib.h>, <string.h> unconditionally.
56975
56976         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
56977         * lib/memcmp.c (__ptr_t): Likewise.
56978         * lib/memrchr.c (__ptr_t): Likewise.
56979         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
56980         Include <string.h> unconditionally.
56981         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
56982         * lib/memchr.c: Include <stdlib.h> unconditionally.
56983         * lib/memchr.c (LONG_MAX): Remove.
56984         * lib/memrchr.c (LONG_MAX): Likewise.
56985         * lib/memchr.c (__memchr): Define via a prototype.
56986         * lib/memrchr.c (__memrchr): Likewise.
56987         * lib/memcmp.c (__P): Remove, and remove all uses.
56988         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
56989         Remove forward decls; no longer needed.
56990         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
56991         Use types required by C89 in prototype.
56992
56993         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
56994         * lib/savedir.c: Likewise.
56995         * lib/mkdir.c (free): Remove decl.
56996         * lib/rmdir.c (rmdir): Define with a prototype.
56997         * lib/savedir.c: Include savedir.h first, to test interface.
56998
56999         * lib/mktime.c (STDC_HEADERS): Remove.
57000         Include <stdlib.h>, <string.h> unconditionally.
57001
57002         * lib/modechange.c: Include <stdlib.h> unconditionally.
57003         (malloc): Remove decl.
57004
57005         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
57006         (free): Remove decl.
57007
57008         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
57009         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
57010         (This type really should be intptr_t, but that's a C99ism.)
57011         (_obstack_memcpy): Remove: all uses changed to memcpy.
57012         Include <string.h> unconditionally.
57013         (struct obstack): Assume __STDC__ for types of members
57014         chunkfun, freefun, extra_arg.
57015         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
57016         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
57017         obstack_begin, obstack_specify_allocation,
57018         obstack_specify_allocation_with_arg, obstack_chunkfun,
57019         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
57020         Remove unprototyped decls and the macros that use them.
57021         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
57022         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
57023         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
57024         (defined __STDC__ && __STDC__)]:
57025         Remove nonprototyped code.
57026         Include <stdlib.h> unconditionally.
57027         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
57028         _obstack_allocated_p, _obstack_free, obstack_free,
57029         _obstack_memory_used, print_and_abort):
57030         Define using prototypes.
57031         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
57032         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
57033         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
57034         obstack_next_free, obstack_object_size, obstack_room) [0]:
57035         Remove unused, unprototyped code.
57036
57037         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
57038
57039         * lib/physmem.c (physmem_total, physmem_available, main): Define
57040         with prototypes.
57041
57042         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
57043         (main): Define with a prototype.
57044
57045         * lib/posixver.c (getenv): Remove decl.
57046
57047         * lib/putenv.c (malloc): Returns void *, not char *.
57048         Include <string.h> unconditionally.
57049         (strchr, memcpy, NULL): Do not define.
57050
57051         * lib/readtokens.c: Include readtokens.h first, to test interface.
57052         Include <stdlib.h>, <string.h> unconditionally.
57053         (init_tokenbuffer): Define with a prototype.
57054
57055         * lib/regex.c (PARAMS): Remove.  All uses removed.
57056         All uses of _RE_ARGS removed, too.
57057         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
57058         unconditionally.
57059         (bzero): Assume memset exists.
57060         (memcmp, memcpy, NULL): Remove.
57061         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
57062         char, or assignments to local vars of type signed char.
57063         (init_syntax_once, PREFIX(extract_number_and_incr),
57064         PREFIX(print_partial_compiled_pattern),
57065         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
57066         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
57067         PREFIX(regex_grow_registers), PREFIX(regex_compile),
57068         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
57069         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
57070         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
57071         wcs_compile_range, byte_compile_range, truncate_wchar,
57072         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
57073         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
57074         count_mbs_length, wcs_re_match_2_internal,
57075         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
57076         PREFIX(alt_match_null_string_p),
57077         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
57078         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
57079         regfree, PREFIX(extract_number)): Define with prototype.  Remove
57080         now-unnecessary declaration, if any.
57081         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
57082         regcomp, regexec):
57083         Remove now-unnecessary casts among pointer types.
57084         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
57085
57086         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
57087         (free): Remove decl.
57088
57089         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
57090
57091         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
57092         (free): Remove decl.
57093
57094         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
57095         * lib/xgetcwd.c: Likewise.
57096
57097         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
57098         (free): Remove decl.
57099
57100         * lib/strchrnul.c (strchrnul): Define with a prototype.
57101         Fix bug: c_in was not converted to char before searching.
57102
57103         The following changes are not K&R related:
57104
57105         * lib/group-member.h: Include <sys/types.h>, so that this file is
57106         self-contained.
57107         * lib/makepath.h: Likewise.
57108
57109         * lib/getusershell.c (readname, default_index, line_size, readname):
57110         Use size_t, not int, for sizes.
57111         (readname): If the size overflows, report an error instead of
57112         looping forever.
57113
57114 2003-09-09  Paul Eggert  <eggert@twinsun.com>
57115
57116         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
57117         libc.
57118
57119 2003-09-09  Paul Eggert  <eggert@twinsun.com>
57120
57121         * README: New section: portability guidelines.
57122
57123 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
57124
57125         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
57126         C89 spec.
57127
57128 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
57129
57130         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
57131
57132 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57133
57134         Assume C89 or better; remove K&R cruft.
57135         A few of these changes were first proposed by Derek Robert Price
57136         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
57137
57138         * lib/addext.c: Include <string.h> unconditionally.
57139         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
57140         Don't declare getenv or malloc.
57141
57142         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
57143         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
57144         (NULL): Remove.
57145         (find_stack_direction, alloca): Use prototypes.
57146
57147         * lib/atexit.c (atexit): Define using a prototype.
57148
57149         * lib/basename.c, dirname.c, stripslash.c:
57150         Include <string.h> unconditionally.
57151
57152         * lib/bcopy.c: Include <stddef.h>.
57153         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
57154
57155         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
57156
57157         * lib/error.h (error, error_at_line, error_print_progname)
57158         [! (defined (__STDC__) && __STDC__)]: Remove decls.
57159         * lib/error.c: Include error.h first, to check interface.
57160         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
57161         (VA_START): Remove; all uses changeed to va_start.
57162         (exit, strerror): Remove decls.
57163         (error_print_progname): Prototype uncondionally.
57164         Don't include <errno.h>; no longer needed.
57165         (private_strerror): Remove.
57166         (error_tail): Always define.
57167         (error, error_at_line): Assume C89 or better; always use prototypes.
57168         * lib/fatal.c: Include "fatal.h" first, to test interface.
57169         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
57170         (VA_START): Remove; all uses changed to va_start.
57171         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
57172         this case.
57173         (exit): Remove decl.
57174         (fatal): Prototype unconditionally.  Assume va_start works.
57175         Abort at end, to pacify gcc.
57176
57177         * lib/euidaccess.c (main): Define with a prototype.
57178
57179         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
57180
57181         * lib/exitfail.c: Include <stdlib.h> unconditionally.
57182
57183         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
57184         prototypes.
57185         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
57186         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
57187         (getenv): Remove decl.
57188         (fnmatch): Define using a prototype.
57189         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
57190         (FCT): Define using a prototype.
57191
57192         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
57193
57194         * lib/gethostname.c: Include <stddef.h>.
57195         (gethostname): Define with prototype.  Length is size_t, not int.
57196
57197 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57198
57199         Assume C89 or better; remove K&R cruft.
57200         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
57201         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
57202         string.h, getenv, malloc.
57203         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
57204         headers.
57205         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
57206         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
57207         do not check for strerror.
57208         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
57209         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
57210         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
57211         do not check for doprnt or vprintf.
57212         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
57213         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
57214
57215 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57216
57217         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
57218         getversion.c should have been removed then, but was accidentally
57219         preserved.
57220
57221         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
57222         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
57223
57224 2003-09-08  Karl Berry  <karl@gnu.org>
57225
57226         * config/config.sub, config.guess, srclistvars.sh: update from savannah
57227                 config, forget about prep.
57228
57229         * config/depcomp, missing: update from automake.
57230
57231 2003-09-07  Paul Eggert  <eggert@twinsun.com>
57232
57233         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
57234         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
57235
57236 2003-09-07  Paul Eggert  <eggert@twinsun.com>
57237
57238         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
57239         copy_tm_result.  Bug reported by Simon Josefsson in
57240         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
57241
57242 2003-09-06  Paul Eggert  <eggert@twinsun.com>
57243
57244         * m4/time_r.m4: New file.
57245         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
57246         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
57247         is. Check for timegm declaration.
57248         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
57249         Do not check for gmtime_r.
57250         Replace mktime if __mktime_internal does not exist and if mktime
57251         hasn't been replaced already.
57252
57253 2003-09-06  Paul Eggert  <eggert@twinsun.com>
57254
57255         * lib/time_r.c, lib/time_r.h: New files.
57256
57257         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
57258         __localtime_r.
57259         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
57260         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
57261
57262         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
57263         __gmtime_r.
57264         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
57265         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
57266         Include <time_r.h>.
57267
57268         * lib/timegm.c: Switch to glibc implementation, with the following
57269         changes:
57270         [defined HAVE_CONFIG_H]: Include <config.h>.
57271         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
57272         (__mktime_internal) [!defined _LIBC]: New decl.
57273         (__gmtime_r) [!defined _LIBC]: New macro and function.
57274         (timegm): Use a prototype, since gnulib assumes C89.
57275         Do not bother declaring tmp to be const, as it's not really usefu.
57276         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
57277         (timegm): Declare only if HAVE_DECL_TIMEGM.
57278
57279 2003-09-06  Paul Eggert  <eggert@twinsun.com>
57280
57281         * MODULES.html.sh (func_all_modules): Add time_r.
57282         * modules/time_r: New file.
57283         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
57284         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
57285
57286 2003-09-03  Paul Eggert  <eggert@twinsun.com>
57287
57288         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
57289         Bug reported by Lute Kamstra in
57290         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
57291
57292         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
57293         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
57294         course with correspondingly smaller numbers for tomorrow and
57295         yesterday.  From Tadayoshi Funaba.  Originally installed into
57296         sh-utils on 1999-08-07, but the patch got lost (I guess during the
57297         coreutils merge?).
57298
57299 2003-08-31  Simon Josefsson  <jas@extundo.com>
57300
57301         * modules/timegm: New file.
57302         * MODULES.html.sh (func_all_modules): Add timegm.
57303
57304 2003-08-31  Simon Josefsson  <jas@extundo.com>
57305
57306         * m4/timegm.m4: New file.
57307
57308 2003-08-31  Simon Josefsson  <jas@extundo.com>
57309
57310         * lib/timegm.h: New file.
57311         * lib/timegm.c: New file.  Based on
57312         wget-1.8.2/src/http.c:mktime_from_utc.
57313
57314 2003-08-31  Karl Berry  <karl@gnu.org>
57315
57316         * lib/argp.h: update from libc.
57317
57318 2003-08-28  Bruno Haible  <bruno@clisp.org>
57319
57320         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
57321         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
57322         followed by '#define fnmatch fnmatch_posix' gives an error.
57323
57324 2003-08-28  Bruno Haible  <bruno@clisp.org>
57325
57326         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
57327         warning on QNX, which defines O_BINARY to 000000.
57328
57329 2003-08-27  Jim Meyering  <jim@meyering.net>
57330
57331         * m4/mkstemp.m4: Require that the system mkstemp be able to create
57332         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
57333         would fail after 32.  Reported by Danny Levinson.  Details here:
57334         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
57335
57336 2003-08-24  Bruno Haible  <bruno@clisp.org>
57337
57338         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
57339         MSVC7 <stdio.h> is included later.
57340
57341 2003-08-22  Simon Josefsson  <jas@extundo.com>
57342
57343         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
57344
57345 2003-08-20  Karl Berry  <karl@gnu.org>
57346
57347         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
57348
57349 2003-08-20  Bruno Haible  <bruno@clisp.org>
57350
57351         * modules/progname: New file.
57352         * MODULES.html.sh (func_all_modules): Add progname.
57353
57354 2003-08-20  Bruno Haible  <bruno@clisp.org>
57355
57356         * lib/progname.h: New file, from GNU gettext.
57357         * lib/progname.c: New file, from GNU gettext.
57358         * lib/progreloc.c: New file, from GNU gettext.
57359
57360 2003-08-19  Jim Meyering  <jim@meyering.net>
57361
57362         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
57363         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
57364
57365 2003-08-19  Bruno Haible  <bruno@clisp.org>
57366
57367         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
57368         more.
57369
57370 2003-08-19  Bruno Haible  <bruno@clisp.org>
57371
57372         * lib/xstrdup.c: Assume <string.h> exists.
57373
57374 2003-08-18  Paul Eggert  <eggert@twinsun.com>
57375
57376         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
57377         in makefile rules.
57378
57379 2003-08-18  Jim Meyering  <jim@meyering.net>
57380
57381         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
57382         * m4/lib-ld.m4: Likewise.
57383
57384 2003-08-18  Jim Meyering  <jim@meyering.net>
57385
57386         * lib/setenv.h: Indent nested cpp directive.
57387         * lib/vasnprintf.c: Remove trailing blanks.
57388
57389 2003-08-17  Simon Josefsson  <jas@extundo.com>
57390
57391         * modules/xstrndup: New file.
57392         * MODULES.html.sh (func_all_modules): Add xstrndup.
57393
57394 2003-08-17  Simon Josefsson  <jas@extundo.com>
57395
57396         * modules/argp: Fix autoconf macro name. Add more dependencies.
57397
57398 2003-08-17  Simon Josefsson  <jas@extundo.com>
57399
57400         * m4/xstrndup.m4: New file.
57401
57402 2003-08-17  Simon Josefsson  <jas@extundo.com>
57403
57404         * m4/argp.m4: New file.
57405
57406 2003-08-17  Simon Josefsson  <jas@extundo.com>
57407             Bruno Haible  <bruno@clisp.org>
57408
57409         * lib/xstrndup.h: New file.
57410         * lib/xstrndup.c: New file.
57411
57412 2003-08-17  Bruno Haible  <bruno@clisp.org>
57413
57414         * modules/strndup (Files, Include): Add lib/strndup.h.
57415
57416 2003-08-17  Bruno Haible  <bruno@clisp.org>
57417
57418         * modules/euidaccess (Files): Add lib/euidaccess.h.
57419
57420 2003-08-17  Bruno Haible  <bruno@clisp.org>
57421
57422         * lib/strndup.h: New file.
57423
57424 2003-08-17  Bruno Haible  <bruno@clisp.org>
57425
57426         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
57427         like AC_GNU_SOURCE.
57428         * modules/extensions (configure.ac): Comment out the invocation of
57429         gl_USE_SYSTEM_EXTENSIONS.
57430
57431 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57432
57433         Merges from coreutils, etc.
57434         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
57435         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
57436         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
57437         fixing a typo.
57438         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
57439         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
57440
57441 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57442
57443         Document merge from coreutils.
57444         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
57445         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
57446         * modules/utime: Add m4/utimes-null.m4.
57447
57448 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57449
57450         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
57451         space, undoing this 2003-08-12 change:
57452         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
57453
57454 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57455
57456         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
57457         strtoul.c from libc, undoing this 2003-08-12 change:
57458         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
57459
57460 2003-08-16  Jim Meyering  <jim@meyering.net>
57461
57462         Merges from coreutils.
57463         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
57464         prefix.  Adjust cache variables similarly.  Create 500 rather than
57465         just 300 files, to exercise bug on Darwin6.5, too.
57466         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
57467         $missing_dir.
57468         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
57469         AM_SYS_POSIX_TERMIOS.
57470         Reported by mkc@mathdogs.com.
57471         Also change use of $am_cv_sys_posix_termios
57472         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
57473         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
57474         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
57475         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
57476         in /proc/mounts until it finds one with matching device number.  This
57477         is unnecessary when the FILE argument *is* a mount point.  No stat call
57478         is necessary in that case.  So, disable the statvfs-testing code on
57479         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
57480         as RedHat bug# 84846.
57481         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
57482         to 1MB, so as not to render systems with no stack size limit (e.g.,
57483         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
57484         Include <unistd.h>.  On some systems,
57485         it is required for the definition of _SC_PAGESIZE.
57486
57487 2003-08-16  Jim Meyering  <jim@meyering.net>
57488
57489         Merge from coreutils.
57490         * lib/xstrtoimax.c: #else #if -> #elif.
57491         * lib/xstrtoumax.c: Likewise.
57492
57493 2003-08-16  Jim Meyering  <jim@meyering.net>
57494
57495         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
57496         * m4/utimes.m4: Removed.
57497         * m4/utimes-null.m4: Renamed from utimes.m4.
57498
57499         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
57500         to 1MB, so as not to render systems with no stack size limit (e.g.,
57501         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
57502         Include <unistd.h>.  On some systems,
57503         it is required for the definition of _SC_PAGESIZE.
57504
57505 2003-08-16  Jim Meyering  <jim@meyering.net>
57506         and Paul Eggert  <eggert@cs.ucla.edu>
57507
57508         Merges from coreutils, etc.
57509
57510         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
57511         using the latest version from cvs.  This avoids problems with #line
57512         directives using a vendor (Sun) compiler.
57513         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
57514         Don't set GETGROUPS_LIB here; now it's
57515         done via getgroups.m4's wrapper function.
57516         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
57517         rather than just in sh-util/configure.in, so that the
57518         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
57519         same.
57520         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
57521         AC_FUNC_GETLOADAVG where to find getloadavg.c.
57522         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
57523         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
57524         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
57525         Remove code that is now done by the newly-required macros.
57526         Append $(EXEEXT) to DF_PROG.
57527         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
57528         Do not invoke or require the following here,
57529         since prereq.m4 or some gnulib .m4 now does this for us:
57530         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
57531         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
57532         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
57533         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
57534         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
57535         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
57536         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
57537         AC_FUNC_OBSTACK.
57538         Do not replace the following functions, as this is now the job
57539         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
57540         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
57541         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
57542         atexit getpass, strdup, getpagesize.
57543         Replace 'raise'.
57544         Do not check for the following functions, as this is now the job
57545         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
57546         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
57547         setregid.
57548         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
57549         Check for sys/sysctl.h.
57550         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
57551         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
57552         of checking for ssize_t ourselves.
57553
57554         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
57555         Require every macro that gnulib/modules/* suggests for us.
57556         (jm_PREREQ_ADDEXT): New macro.
57557         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
57558         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
57559
57560         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
57561         (gl_PHYSMEM): Use it.
57562         Also check for `table' function.
57563         Check for new headers and functions.
57564         Add check for sys/sysmp.h.
57565         With suggestions from Kaveh Ghazi.
57566         Ignore headers that are present but cannot be compiled.  This
57567         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
57568         C 5.4.
57569
57570 2003-08-15  Paul Eggert  <eggert@twinsun.com>
57571
57572         Document merge from coreutils.
57573         * modules/userspec: Depend on posixver.
57574         * modules/strftime: Depend on tzset.
57575
57576 2003-08-15  Paul Eggert  <eggert@twinsun.com>
57577
57578         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
57579         rather than tab, after '#' in shell-script copyright notices.
57580         Suggested by Bruno Haible.
57581
57582 2003-08-15  Paul Eggert  <eggert@twinsun.com>
57583
57584         * config/srclist-update: Use three spaces, rather than tab, after '#'
57585         in shell-script copyright notices.  Suggested by Bruno Haible.
57586         Remove unnecessary parenthesization in regular expression.
57587
57588 2003-08-15  Jim Meyering  <jim@meyering.net>
57589
57590         Merge from coreutils.
57591         * lib/xgethostname.c: Include <stdlib.h>.
57592         (xghostname): Don't exit for anything other than memory-related
57593         failure; just return NULL.
57594         * lib/userspec.c: Include "posixver.h".
57595         (parse_user_spec): Accept `.' as a separator only
57596         in pre-POSIX-200112 mode.
57597         * lib/strtoimax.c: Use #elif rather than #else #if.
57598         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
57599         Remove function, now that we can rely on a working tzset function.
57600         [!_LIBC]: Ensure that the required autoconf test has been run.
57601         [!defined _NL_CURRENT && HAVE_STRFTIME]:
57602         Use underlying_strftime for %r.
57603         * lib/sha.c: Merge in some clean-up and optimization changes from
57604         glibc.
57605         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
57606         Ensure that it is a multiple of 64.
57607         Rearrange loop exit tests so as to avoid performing an
57608         additional fread after encountering an error or EOF.
57609         * lib/realloc.c: Update copyright date.
57610
57611 2003-08-15  Jim Meyering  <jim@meyering.net>
57612         and Paul Eggert  <eggert@twinsun.com>
57613
57614         Merge from coreutils.
57615         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
57616         member but strut utmpx does not.  Needed for AIX 4.3.3.
57617         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
57618
57619 2003-08-15  Jim Meyering  <jim@meyering.net>
57620         and Paul Eggert  <eggert@cs.ucla.edu>
57621
57622         Merges from coreutils, etc.
57623         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
57624         Require gl_FUNC_TZSET_CLOBBER.
57625         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
57626         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
57627         members.
57628
57629 2003-08-14  Paul Eggert  <eggert@twinsun.com>
57630
57631         Help the merge from coreutils.
57632         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
57633         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
57634         * m4/tzset.m4: Use it too.
57635
57636 2003-08-14  Paul Eggert  <eggert@twinsun.com>
57637
57638         * modules/tzset: New file.
57639
57640 2003-08-14  Jim Meyering  <jim@meyering.net>
57641
57642         Merges from coreutils.
57643         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
57644         variable names, rather than @FNMATCH_H@.
57645         * modules/alloca: Likewise for $(ALLOCA_H).
57646
57647         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
57648         the three copies of the literal target, `fnmatch.h'.
57649         * modules/alloca (alloca.h): Likewise.
57650
57651 2003-08-14  Jim Meyering  <jim@meyering.net>
57652
57653         Merge from coreutils.
57654         * m4/tzset.m4: New file.
57655         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
57656         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
57657         otherwise, AIX 5.1 systems would end up using the latter.
57658         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
57659         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
57660         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
57661         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
57662
57663 2003-08-14  Jim Meyering  <jim@meyering.net>
57664
57665         Merge from coreutils.
57666         * lib/obstack.h: Whitespace changes.
57667         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
57668         and xcalloc return values.
57669         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
57670         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
57671         hang on OSF/1 5.1 for DIR on both local and remote file systems.
57672         Reported by (and fix confirmed by) Nelson H. F. Beebe.
57673         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
57674         error from mntctl.
57675         Use mntctl's return value to drive the entry-processing loop, since
57676         we can't rely on the value of the vmt_length member in the last
57677         entry.  On some systems doing so could result in exhausting
57678         virtual memory.  Based in part on a patch from Mike Jetzer.
57679
57680 2003-08-14  Jim Meyering  <jim@meyering.net>
57681         and Paul Eggert  <eggert@twinsun.com>
57682
57683         Merges from coreutils, plus other fixes.
57684         * lib/physmem.c: Merge in portability changes from gcc/libiberty
57685         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
57686         for credits and details.  Thanks to Kaveh Ghazi for helping
57687         to keep these files in sync.
57688         (ARRAY_SIZE): Define it.
57689         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
57690         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
57691         (memcasecmp): Don't assume size_t fits in unsigned int.
57692         Remove casts and duplicate code.
57693         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
57694         (memcpy): Remove definition.
57695         Merge in some clean-up and optimization changes from glibc.
57696         [BLOCKSIZE]: Move definition to top of file.
57697         Ensure that it is a multiple of 64.
57698         Rearrange loop exit tests so as to avoid performing an
57699         additional fread after encountering an error or EOF.
57700         * lib/md5.h (md5_uintptr): Define.
57701         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
57702         return to the initial working directory.  Preserve errno
57703         for caller.
57704         * lib/idcache.c: Include "xalloc.h".
57705         (xmalloc, xrealloc): Remove decls.
57706         (getuser): Remove casts no longer required in C89.
57707         * lib/human.c: Include stdio.h, for sprintf.
57708         * lib/group-member.c: Include "xalloc.h".
57709         (xmalloc, xrealloc): Remove decls.
57710         (get_group_info): Remove casts no longer required in C89.
57711         * lib/getusershell.c (readname): Remove casts no longer required in
57712         C89.
57713         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
57714         * lib/getline.c: Whitespace fix, from coreutils.
57715
57716 2003-08-13  Paul Eggert  <eggert@twinsun.com>
57717
57718         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
57719         Check for isascii.
57720
57721         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
57722         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
57723         Undo previous (whitespace-only) change.
57724
57725 2003-08-13  Paul Eggert  <eggert@twinsun.com>
57726
57727         * lib/exclude.c: Include <ctype.h>
57728         (IN_CTYPE_DOMAIN): New macro.
57729         (is_space): New fn.
57730         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
57731         and empty lines.
57732
57733         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
57734         Undo previous (whitespace-only) change.
57735
57736 2003-08-13  Paul Eggert  <eggert@twinsun.com>
57737
57738         * config/srclist-update: Change update back to the old behavior,
57739         leaving whitespace alone.  Use one 'sed' command rather than a
57740         pipeline.
57741         (fixlicense): Now a variable, not a function.
57742         (remove_trailing_blanks): Remove.
57743         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
57744         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
57745         Undo previous (whitespace-only) change.
57746
57747 2003-08-12  Paul Eggert  <eggert@twinsun.com>
57748
57749         Merge from coreutils.
57750         * modules/euidaccess: Add lib_SOURCES, include for new
57751         file euidaccess.h
57752
57753 2003-08-12  Paul Eggert  <eggert@twinsun.com>
57754
57755         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
57756         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
57757         Normalize leading white space and remove trailing white space.
57758
57759         Merge from coreutils
57760         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
57761
57762         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
57763         0.12.1.  These files are now being upgraded automatically by
57764         ../config/srclist-update.
57765
57766 2003-08-12  Paul Eggert  <eggert@twinsun.com>
57767
57768         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
57769         Normalize leading white space and remove trailing white space.
57770         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
57771         notice, as per ../config/srclist-update.
57772
57773         Merge from coreutils.
57774         * lib/euidaccess.h: New file.
57775         * lib/euidaccess.c: Include it.
57776         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
57777         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
57778         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
57779
57780 2003-08-12  Paul Eggert  <eggert@twinsun.com>
57781
57782         * config/srclist-update: Add copyright notice.
57783         (remove_id_lines, remove_trailing_blanks): New constants.
57784         (fixfile): Use them to normalize spacing a bit in copied files.
57785         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
57786         Normalize leading white space and remove trailing white space.
57787
57788         * config/texinfo.tex: Sync with texinfo.
57789
57790         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
57791         strtoul.c from libc, to merge coreutils whitespace changes.
57792
57793         * config/srclist.txt: Get the following m4 files from gettext:
57794         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
57795         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
57796         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
57797         wint_t.m4.
57798
57799 2003-08-12  Karl Berry  <karl@gnu.org>
57800
57801         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
57802         been made.
57803
57804 2003-08-11  Paul Eggert  <eggert@twinsun.com>
57805
57806         * modules/gnu-source, m4/gnu-source.m4:
57807         Remove; we're assuming Autoconf 2.54 or later now.
57808         Suggested by Bruno Haible.
57809         * MODULES.html.sh (func_all_modules): Remove gnu-source.
57810
57811 2003-08-11  Bruno Haible  <bruno@clisp.org>
57812
57813         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
57814
57815 2003-08-11  Bruno Haible  <bruno@clisp.org>
57816
57817         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
57818         (vasnprintf): Use it instead of wcslen.
57819
57820 2003-08-11  Bruno Haible  <bruno@clisp.org>
57821
57822         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
57823         value to ensure that _Bool promotes to int. Use #define for _Bool when
57824         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
57825
57826 2003-08-10  Karl Berry  <karl@gnu.org>
57827
57828         * lib/regex.h: update from libc (whitespace fix).
57829
57830 2003-08-09  Paul Eggert  <eggert@twinsun.com>
57831
57832         Merge some files from coreutils.  These changes were
57833         originally made by Jim Meyering.
57834         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
57835         many older Unixes require this.
57836         * lib/alloca.c (alloca): Remove cast to argument of free;
57837         no longer needed in C89.
57838         * lib/alloca_.h, regex.h: Fix white space to match
57839         what GNU indent does.
57840
57841 2003-08-09  Paul Eggert  <eggert@twinsun.com>
57842
57843         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
57844         apparently Emacs's Unicode mode got confused before my 2003-08-05
57845         checkin.
57846
57847 2003-08-08  Paul Eggert  <eggert@twinsun.com>
57848
57849         * m4/extensions.m4: New file.
57850         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
57851         Require gl_USE_SYSTEM_EXTENSIONS.
57852         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
57853         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
57854
57855 2003-08-08  Paul Eggert  <eggert@twinsun.com>
57856
57857         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
57858         * modules/extensions, modules/gnu-source: New files.
57859         * modules/timespec, modules/unlocked-io: Depend on extensions.
57860
57861 2003-08-07  Paul Eggert  <eggert@twinsun.com>
57862
57863         * modules/restrict: New file.
57864         * MODULES.html.sh (func_all_modules): Add restrict.
57865         * modules/regex: Depend on restrict.
57866
57867 2003-08-07  Paul Eggert  <eggert@twinsun.com>
57868
57869         * m4/restrict.m4: New file.
57870         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
57871
57872 2003-08-07  Bruno Haible  <bruno@clisp.org>
57873
57874         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
57875         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
57876
57877 2003-08-07  Bruno Haible  <bruno@clisp.org>
57878
57879         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
57880         makes the module 'getndelim2' compatible with the module 'getline'.
57881
57882 2003-08-05  Paul Eggert  <eggert@twinsun.com>
57883
57884         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
57885         byte with "\201" to avoid glitches when editing that source file
57886         with multi-gnome-terminal.
57887
57888 2003-08-05  Paul Eggert  <eggert@twinsun.com>
57889
57890         * lib/bumpalloc.h: Remove.
57891
57892 2003-08-05  Paul Eggert  <eggert@twinsun.com>
57893
57894         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
57895         * modules/bumpalloc: Remove.
57896
57897 2003-08-04  Paul Eggert  <eggert@twinsun.com>
57898
57899         * lib/getloadavg.c: Change copyright notice and spacing to conform to
57900         GNU coding style.
57901
57902         Merge from coreutils.
57903         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
57904         1. From glibc.
57905         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
57906         from Karl Berry, implemented by Jim Meyering.
57907         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
57908         from Dmitry V. Levin.
57909         Remove anachronistic cast of xrealloc.
57910         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
57911         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
57912         type. Otherwise, it wouldn't compile with at least /bin/cc on
57913         ymp-cray-unicos9.0.2.X.
57914         Combine two mostly-identical uses of alloca into one.
57915         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
57916
57917 2003-08-04  Dave Love  <d.love@dl.ac.uk>
57918
57919         [From Emacs.]
57920
57921         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
57922         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
57923         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
57924         obsolete NLIST_NAME_UNION.
57925         [__GNU__]: Undef BSD and FSCALE.
57926         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
57927
57928 2003-08-03  Paul Eggert  <eggert@twinsun.com>
57929
57930         * lib/stdbool_.h (_Bool): Make it signed char, instead of
57931         an enum type, so that it's guaranteed to promote to int.  See:
57932         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
57933
57934 2003-08-03  Karl Berry  <karl@gnu.org>
57935
57936         * config/depcomp: update from automake.
57937
57938 2003-07-31  Paul Eggert  <eggert@twinsun.com>
57939
57940         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
57941         (strerror): Don't assume that a printable int fits in 14 bytes.
57942
57943 2003-07-31  Bruno Haible  <bruno@clisp.org>
57944
57945         * modules/getpass-gnu: New file.
57946         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
57947
57948 2003-07-31  Bruno Haible  <bruno@clisp.org>
57949
57950         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
57951
57952 2003-07-24  Karl Berry  <karl@gnu.org>
57953
57954         * config/missing: update from automake.
57955
57956 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
57957             Bruno Haible  <bruno@clisp.org>
57958
57959         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
57960         * lib/getline.c (getline, getdelim): Likewise.
57961         Remove _GNU_SOURCE define; now it's defined in config.h through
57962         m4/getline.m4.
57963
57964 2003-07-23  Karl Berry  <karl@gnu.org>
57965
57966         * config/config.sub: update from prep.
57967
57968 2003-07-22  Paul Eggert  <eggert@twinsun.com>
57969
57970         * modules/xalloc (Depends-on): Add exitfail.
57971         * modules/xmemcoll: Likewise.
57972
57973 2003-07-22  Paul Eggert  <eggert@twinsun.com>
57974
57975         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
57976         over-parenthesization in macros.
57977
57978         Sync with coreutils.
57979
57980         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
57981         required by C99.
57982
57983         Use `exit_failure' for xalloc and xmemcoll instead of their own
57984         private exit-failure variables.
57985         * lib/xalloc.h (xalloc_exit_failure): Remove.
57986         * lib/xmalloc.c: Likewise.  Include exitfail.h.
57987         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
57988         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
57989         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
57990         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
57991
57992 2003-07-20  Jim Meyering  <jim@meyering.net>
57993
57994         * modules/closeout (Depends-on): Add exitfail.
57995         Suggestion from Bruno Haible.
57996
57997 2003-07-19  Karl Berry  <karl@gnu.org>
57998
57999         * config/config.sub: update from prep.
58000
58001 2003-07-18  Paul Eggert  <eggert@twinsun.com>
58002
58003         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
58004         Remove.
58005         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
58006         to test that it can stand by itself.  Include "exitfail.h".
58007         Clients should set exit_failure instead.
58008         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
58009
58010 2003-07-18  Bruno Haible  <bruno@clisp.org>
58011
58012         * modules/getndelim2: New file.
58013         * modules/getline: Share files with module getndelim2.
58014         * modules/getnline: Depend on getndelim2 instead of sharing files with
58015         it. Add getnline.c to lib_SOURCES.
58016         * MODULES.html.sh (func_all_modules): Add getndelim2.
58017
58018 2003-07-18  Bruno Haible  <bruno@clisp.org>
58019
58020         * m4/getndelim2.m4: New file.
58021         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
58022         invoke gl_PREREQ_GETNDELIM2.
58023         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
58024         gl_PREREQ_GETNDELIM2.
58025         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
58026         gl_GETNDELIM2.
58027
58028 2003-07-18  Bruno Haible  <bruno@clisp.org>
58029
58030         * lib/getndelim2.h: New file.
58031         * lib/getndelim2.c: Make into a module of its own. Include config.h,
58032         getndelim2.h.
58033         (getndelim2): Make non-static. Change return type to ssize_t.
58034         * lib/getline.h: Change argument names.
58035         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
58036         * lib/getnline.c: Include getndelim2.h.
58037
58038 2003-07-18  Andreas Schwab  <schwab@suse.de>
58039
58040         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
58041
58042 2003-07-17  Karl Berry  <karl@gnu.org>
58043
58044         * config/config.sub: update from prep.
58045
58046 2003-07-17  Bruno Haible  <bruno@clisp.org>
58047
58048         * modules/getnline: New file.
58049         * modules/getline: Add lib/getndelim2.c to source file list.
58050         * MODULES.html.sh (func_all_modules): Add getnline.
58051
58052 2003-07-17  Bruno Haible  <bruno@clisp.org>
58053
58054         * m4/getnline.m4: New file.
58055
58056 2003-07-17  Bruno Haible  <bruno@clisp.org>
58057
58058         * m4/Makefile.am.in: Remove file.
58059         * m4/Makefile.am: Remove file.
58060         * m4/Makefile.in: Remove file.
58061
58062 2003-07-17  Bruno Haible  <bruno@clisp.org>
58063
58064         * lib/getnline.h: New file.
58065         * lib/getnline.c: New file.
58066         * lib/getndelim2.c: New file, extracted from getline.c.
58067         (getndelim2): Renamed from getdelim2, with added nmax argument.
58068         * lib/getline.c: Include getndelim2.c.
58069         (getdelim2): Moved out to getndelim2.c.
58070         (getline, getdelim): Update.
58071
58072 2003-07-17  Bruno Haible  <bruno@clisp.org>
58073
58074         * lib/Makefile.am: Remove file.
58075         * lib/Makefile.in: Remove file.
58076
58077 2003-07-17  Bruno Haible  <bruno@clisp.org>
58078
58079         * configure.in: Remove file.
58080         * Makefile.in: Remove file.
58081
58082 2003-07-17  Bruno Haible  <bruno@clisp.org>
58083
58084         * MODULES.html.sh: Put the </BODY> right before </HTML>.
58085
58086 2003-07-16  Karl Berry  <karl@gnu.org>
58087
58088         * config/srclist-update: was running fixlicense twice, which caused
58089                 texinfo.tex to be nullified for some reason.  Simplify,
58090                 $gplsrc is no longer needed as far as I can see?
58091
58092 2003-07-16  Jim Meyering  <jim@meyering.net>
58093
58094         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
58095
58096 2003-07-15  Paul Eggert  <eggert@twinsun.com>
58097
58098         * config/srclist.txt: Get the following files from gettext-runtime/intl
58099         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
58100         ref-del.sin.  From Bruno Haible.
58101         * config/srclist-update (fixfile): Change grep pattern again, since the
58102         previous fix didn't work (there was another trailing $).  Use
58103         '[$]' to escape the $s.
58104
58105 2003-07-15  Karl Berry  <karl@gnu.org>
58106
58107         * lib/vasnprintf.c: update from gettext.
58108
58109 2003-07-15  Karl Berry  <karl@gnu.org>
58110
58111         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
58112         gets expanded when surrounded by '$'.
58113
58114 2003-07-15  Jim Meyering  <jim@meyering.net>
58115
58116         * modules/save-cwd: Don't depend on error.  From Derek Price.
58117
58118 2003-07-15  Jim Meyering  <jim@meyering.net>
58119
58120         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
58121
58122 2003-07-14  Simon Josefsson  <jas@extundo.com>
58123
58124         * modules/mempcpy: New file.
58125         * MODULES.html.sh (func_all_modules): Add mempcpy.
58126
58127 2003-07-14  Simon Josefsson  <jas@extundo.com>
58128
58129         * m4/mempcpy.m4: New file.
58130
58131 2003-07-14  Simon Josefsson  <jas@extundo.com>
58132
58133         * lib/mempcpy.h: New file.
58134         * lib/mempcpy.c: New file.
58135
58136 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58137
58138         * modules/getdate, modules/posixtm: Depend on mktime.
58139
58140 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58141
58142         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
58143         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
58144         unicodeio.c, unicodeio.h, unlocked-io.h:
58145         Switch from LGPL to GPL.
58146
58147 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58148
58149         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
58150         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
58151         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
58152         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
58153         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
58154         updated automatically by ../config/srclist-update.  This changes
58155         their license from LPGL to GPL.
58156
58157 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58158
58159         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
58160         assumed to refer to the root of the most recent stable gettext version.
58161         * config/srclistvars.sh: Add defaults for eggert.
58162         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
58163         Match "This program" as well as "The program".  This is needed
58164         for gettext.
58165
58166 2003-07-14  Jim Meyering  <jim@meyering.net>
58167
58168         Don't emit diagnostics.  Let callers do that.
58169         * lib/save-cwd.c: Don't include "error.h".
58170         (save_cwd): Don't call error.  Ensure that errno is valid
58171         when returning nonzero.
58172
58173         * lib/save-cwd.h (restore_cwd): Update prototype.
58174         * lib/save-cwd.c (restore_cwd): Remove two parameters.
58175         Simplify.  Don't call error upon failure.  Let callers do that.
58176         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
58177         when auditing is enabled.  But don't bother updating the #if.
58178
58179 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
58180
58181         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
58182         it breaks C++ compilation.
58183         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
58184
58185 2003-07-10  Simon Josefsson  <jas@extundo.com>
58186
58187         * modules/strchrnul (Makefile.am): Add strchrnul.h.
58188
58189 2003-07-10  Jim Meyering  <jim@meyering.net>
58190
58191         * m4/clock_time.m4: Remove trailing blank.
58192         * m4/intmax_t.m4: Likewise.
58193
58194 2003-07-10  Jim Meyering  <jim@meyering.net>
58195
58196         * lib/vasnprintf.c: Remove trailing blanks.
58197         Make cpp indentation consistent.
58198
58199 2003-07-09  Paul Eggert  <eggert@twinsun.com>
58200
58201         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
58202         posixver.c, strftime.c, strnlen.c, strverscmp.c:
58203         Switch from LGPL to GPL.
58204
58205 2003-07-09  Paul Eggert  <eggert@twinsun.com>
58206
58207         * config/srclist.txt: Sort sublists.  Add
58208         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
58209         that differ from gnulib for one reason or another; we'd like this list
58210         to be smaller but for now let's document what we have.
58211
58212 2003-07-08  Paul Eggert  <eggert@twinsun.com>
58213
58214         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
58215         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
58216         and sweeter "eval x=$x".
58217         * config/srclist.txt: Get lib/argp* from glibc.
58218
58219 2003-07-07  Paul Eggert  <eggert@twinsun.com>
58220
58221         * lib/mktime.c: Fix some boundary cases and remove need for floating
58222         point.
58223
58224         Issue a compile-time diagnostic if time_t is floating point, or if
58225         two's complement arithmetic is not in effect, or if arithmetic
58226         right shift does not propagate the sign.  These assumptions were
58227         all in the original code but they weren't checked.
58228
58229         (TIME_T_MIDPOINT, verify): New macros.
58230         (__isleap): Remove; it has integer overflow problems.
58231         (leapyear): New function, without those problems.
58232         (ydhms_tm_diff): Remove; splitting into two parts.
58233         (ydhms_diff): New function, containing the arithmetic part of
58234         the old ydhms_tm_diff function.  Issue a compile-time
58235         diagnostic if we are not using C99 integer division.
58236         Avoid casts when possible.
58237         (guess_time_tm): New function, containing the checking part of
58238         the old ydhms_tm_diff function.  Return the new value, rather than
58239         the difference between it and the old.  Accept a new argument T
58240         so that *T specifies the old value.  Check for overflow in the result.
58241
58242         (__mktime_internal): Use a time_t offset, not a long int offset.
58243         This undoes the 2003-06-04 change, which is no longer needed now
58244         that we have better overflow checking.
58245         (localtime_offset): Likewise.
58246
58247         (__mktime_internal): Avoid harmful overflow on hosts where time_t
58248         and long are 64-bit but int is only 32-bit.
58249         (ydhms_diff): Use long int to store year1 and yday1.
58250         Issue a compile-time diagnostic if long int is not wide enough.
58251
58252         (__mktime_internal): Use long int to store adjusted year and yday.
58253         Use plain C rather than preprocessor commands, if that doesn't
58254         affect efficiency.
58255         Check for overflow (and try to repair) after each probe
58256         rather than checking only at the very end.  This avoids some bugs
58257         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
58258         does not equal GMT offset at maximum time).
58259         Use integer to check for overflow rather than floating point; this
58260         is more portable to non-IEEE hosts, and is a tad faster.
58261         When we detect that we are oscillating between two values,
58262         don't check whether tm_isdst has the requested value, since
58263         we already know the answer.  When tm_isdst has the wrong value,
58264         use a different heuristic to find the right one, based on the
58265         extreme values actually observed in practice in tz2003a,
58266         rather than the (overly optimistic) "previous 3 calendar quarters".
58267
58268         (not_equal_tm, print_tm, check_result): Use "const T" rather than
58269         "T const" to accommodate glibc style.
58270         (check_result): Use less-confusing report format.  "long" -> "long int.
58271         (main): Likewise.
58272         Don't loop if the iteration overflows time_t.
58273         Allow a negative step in the iteration.
58274
58275 2003-07-06  Karl Berry  <karl@gnu.org>
58276
58277         * config/depcomp: update from automake.
58278         * config/config.sub: update from prep.
58279
58280 2003-07-03  Karl Berry  <karl@gnu.org>
58281
58282         * config/config.guess: update from prep.
58283
58284 2003-07-01  Paul Eggert  <eggert@twinsun.com>
58285
58286         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
58287         xreadlink.c now includes it unconditionally.
58288
58289 2003-07-01  Paul Eggert  <eggert@twinsun.com>
58290
58291         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
58292         having it depend on HAVE_SYS_TYPES_H.
58293
58294 2003-07-01  Bruno Haible  <bruno@clisp.org>
58295
58296         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
58297         <sys/types.h> should be sufficient.
58298         Reported by Paul Eggert.
58299
58300 2003-06-26  Karl Berry  <karl@gnu.org>
58301
58302         * config/depcomp: update from automake.
58303
58304 2003-06-26  Bruno Haible  <bruno@clisp.org>
58305
58306         * modules/human: Depend on module stdbool.
58307
58308 2003-06-25  Bruno Haible  <bruno@clisp.org>
58309
58310         * modules/readlink: New file.
58311         * modules/xreadlink: Depend on it.
58312         * MODULES.html.sh (func_all_modules): Add readlink.
58313
58314 2003-06-25  Bruno Haible  <bruno@clisp.org>
58315
58316         * m4/readlink.m4: New file.
58317
58318 2003-06-25  Bruno Haible  <bruno@clisp.org>
58319
58320         * lib/readlink.c: New file.
58321
58322 2003-06-22  Karl Berry  <karl@gnu.org>
58323
58324         * config/srclist.txt: update mkinstalldirs from automake.
58325         * config/mkinstalldirs: update.
58326
58327 2003-06-22  Bruno Haible  <bruno@clisp.org>
58328
58329         Portability to mingw32.
58330         * m4/ssize_t.m4: New file, from GNU gettext.
58331         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
58332         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
58333
58334 2003-06-22  Bruno Haible  <bruno@clisp.org>
58335
58336         * modules/safe-read: Add m4/ssize_t.m4.
58337         * modules/xreadlink: Add m4/ssize_t.m4.
58338
58339 2003-06-20  Bruno Haible  <bruno@clisp.org>
58340
58341         Assume C89, so PARAMS isn't needed.
58342         * lib/unicodeio.h (PARAMS): Remove.
58343         * lib/unicodeio.c: Don't use PARAMS.
58344
58345 2003-06-18  Karl Berry  <karl@gnu.org>
58346
58347         * config/config.{guess,sub}: update from prep.
58348
58349 2003-06-18  Jim Meyering  <jim@meyering.net>
58350
58351         Merge changes from coreutils.
58352         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
58353         Remove explicit declarations of xmalloc and realloc.
58354         Include xalloc.h.
58355         (read_utmp): Remove anachronistic cast of xmalloc.
58356
58357 2003-06-17  Paul Eggert  <eggert@twinsun.com>
58358
58359         Assume C89, so PARAMS isn't needed.
58360         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
58361         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
58362         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
58363         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
58364         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
58365         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
58366         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
58367         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
58368         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
58369         lib/xstrtod.h, lib/xstrtol.h: Likewise.
58370         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
58371         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
58372         no longer needed. Anyway, config.h should always be included before any
58373         other file.
58374
58375 2003-06-11  Simon Josefsson  <jas@extundo.com>
58376
58377         * modules/sysexits: New file.
58378         * MODULES.html.sh (func_all_modules): Add sysexits.
58379
58380 2003-06-11  Simon Josefsson  <jas@extundo.com>
58381
58382         * lib/sysexit_.h: New file.
58383
58384 2003-06-11  Derek Price  <derek@ximbiot.com>
58385
58386         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
58387         necessary.
58388
58389 2003-06-11  Bruno Haible  <bruno@clisp.org>
58390
58391         * m4/sysexits.m4: New file.
58392
58393 2003-06-10  Simon Josefsson  <jas@extundo.com>
58394
58395         * lib/argp.h: New file, from glibc.
58396         * lib/argp-ba.c: New file, from glibc.
58397         * lib/argp-eexst.c: New file, from glibc.
58398         * lib/argp-fmtstream.c: New file, from glibc.
58399         * lib/argp-fmtstream.h: New file, from glibc.
58400         * lib/argp-fs-xinl.c: New file, from glibc.
58401         * lib/argp-help.c: New file, from glibc.
58402         * lib/argp-namefrob.h: New file, from glibc.
58403         * lib/argp-parse.c: New file, from glibc.
58404         * lib/argp-pv.c: New file, from glibc.
58405         * lib/argp-pvh.c: New file, from glibc.
58406         * lib/argp-xinl.c: New file, from glibc.
58407
58408 2003-06-10  Simon Josefsson  <jas@extundo.com>
58409
58410         * modules/strchrnul: New file.
58411
58412 2003-06-10  Simon Josefsson  <jas@extundo.com>
58413
58414         * modules/argp: New file.
58415
58416 2003-06-10  Simon Josefsson  <jas@extundo.com>
58417
58418         * m4/strchrnul.m4: New file.
58419
58420 2003-06-10  Simon Josefsson  <jas@extundo.com>
58421
58422         * lib/strchrnul.h: New file.
58423         * lib/strchrnul.c: New file.
58424
58425 2003-06-10  Bruno Haible  <bruno@clisp.org>
58426
58427         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
58428
58429 2003-06-07  Karl Berry  <karl@gnu.org>
58430
58431         * config/config.{guess,sub}: update from prep.
58432
58433 2003-06-07  Jim Meyering  <jim@meyering.net>
58434
58435         * modules/strtod: Use $(...) notation, not @...@ for
58436         AC_REPLACE'd variables.
58437         * modules/localcharset: Likewise.
58438
58439 2003-06-07  Jim Meyering  <jim@meyering.net>
58440
58441         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
58442         in place of my name in the copyright comment.
58443         Remove definition and uses of __P.
58444
58445         From coreutils.
58446         * lib/stat.c: Don't declare xmalloc explicitly.
58447         Instead, include "xalloc.h".
58448         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
58449         xrealloc, and xcalloc return values.
58450         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
58451         Improve comment.
58452         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
58453
58454 2003-06-07  Bruno Haible  <bruno@clisp.org>
58455
58456         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
58457         avoid AC_CONFIG_LINKS.
58458         * modules/fnmatch (Makefile.am): Use explicit creation rule for
58459         fnmatch.h, to avoid AC_CONFIG_LINKS.
58460         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
58461
58462 2003-06-07  Bruno Haible  <bruno@clisp.org>
58463
58464         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
58465         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
58466         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
58467         directory.
58468         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
58469         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
58470         directory.
58471
58472 2003-06-06  Jim Meyering  <jim@meyering.net>
58473
58474         Merge from coreutils.
58475         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
58476         Consolidate declarations and initializations of *_base* locals.
58477
58478         Merge from coreutils.
58479         This avoids a core dump on systems without GNU putenv,
58480         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
58481         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
58482         (unsetenv): New static function, from GNU libc.
58483         (rpl_putenv): Use it.
58484
58485         * lib/modechange.c: Remove trailing blanks.
58486
58487         Merge from coreutils.
58488         * lib/fsusage.c: Remove declaration of statfs.
58489         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
58490
58491         * lib/posixtm.c: Include <stdbool.h> unconditionally.
58492
58493 2003-06-06  Jim Meyering  <jim@meyering.net>
58494
58495         * lib/stdbool_.h: Renamed from stdbool.h.in.
58496
58497 2003-06-06  Jim Meyering  <jim@meyering.net>
58498             Bruno Haible  <bruno@clisp.org>
58499
58500         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
58501         Adjust Makefile.am snippet not to redirect directly to target.
58502         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
58503
58504 2003-06-05  Paul Eggert  <eggert@twinsun.com>
58505
58506         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
58507         mismatch, look in future quarters as well as past.  This fixes a
58508         bug when processing fall-backwards gaps immediately after a long
58509         period of daylight-saving time.
58510
58511         * lib/mktime.c: Assume freestanding C89 or better.
58512         (HAVE_LIMITS_H): Remove.  Assume it's 1.
58513         (__P): Remove; not used.
58514         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
58515         (mktime, not_equal_tm, print_tm, check_result,
58516         main): Use prototypes.  Use const * where appropriate.
58517         (main): Fix typo in testing code that uncovered by above changes.
58518         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
58519
58520 2003-06-04  Paul Eggert  <eggert@twinsun.com>
58521
58522         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
58523         locale.h, localeconv.  This merges changes from coreutils.
58524
58525         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
58526         It can be removed after the next Autoconf is released.
58527         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
58528         needed.
58529
58530 2003-06-04  Paul Eggert  <eggert@twinsun.com>
58531
58532         * lib/mktime.c: Fix Debian bug 177940
58533         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
58534         (localtime_offset): Now long int, not time_t, because we want it
58535         to be guaranteed to be signed.  All uses changed.
58536         (__mktime_internal): If overflow would occur when adding offset,
58537         don't add it.
58538
58539         Merge 'human' changes from coreutils.  Rewrite to support
58540         locale-specific notations like thousands separators.
58541         * lib/human.c: Simplify authorship notice.
58542         Include human.h immediately after config.h.
58543         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
58544         <limits.h>: Do not include, since human.h does.
58545         (SIZE_MAX, UINTMAX_MAX): New macros.
58546         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
58547         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
58548         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
58549         (power_letter): Renamed from suffixes.
58550         (generate_suffix_backwards): Remove.
58551         (adjust_value): Now takes int style (because of human.h changes)
58552         and long double value (for greater precision on some platforms).
58553         (group_number): New function.
58554         (human_readable): Use it.  Use integer options, not enum.
58555         Put the options before the sizes in the arg list.
58556         Support all the new options.
58557         The old human_readable function has been removed;
58558         use inttostr.h instead.
58559         (human_readable, default_block_size, humblock):
58560         Use uintmax_t, not int, for block sizes.
58561         (human_readable_inexact, block_size_types): Remove.
58562         (block_size_opts): New constant.
58563         (human_options): Renamed from human_block_size, with new signature
58564         that allows block sizes up to UINTMAX_MAX.  All callers changed.
58565         * lib/human.h: Add copyright and authorship notice.
58566         Include <limits.h> and <stdbool.h> unconditionally.
58567         (PARAMS): Remove.  All uses removed.
58568         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
58569         (enum human_inexact_style): Remove tag; now a nameless enum.
58570         (human_floor, human_ceiling, human_round_to_even): Now have
58571         values 2, 0, 1 rather than -1, 1, 0.
58572         (human_group_digits, human_suppress_point_zero, human_autoscale,
58573         human_base_1024, human_SI, human_B): New constants.
58574         (human_readable_inexact, human_block_size): Remove.
58575         (human_readable): Size args are now uintmax_t, not int.
58576         (human_options): New decl.
58577
58578         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
58579         unnecessary now that we assume C89 or better.  This change
58580         imported from coreutils.
58581
58582         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
58583         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
58584         in the 2003-05-30 sync from glibc.
58585
58586         .h files should stand alone, but we shouldn't include <sys/types.h>
58587         if we can get away with just <stddef.h>.
58588
58589         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
58590         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
58591         rather than <sys/types.h>, as we merely need size_t.
58592         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
58593         to get size_t.
58594         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
58595         Include <stdio.h>, to get FILE.
58596         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
58597         memcasecmp.h has included <stddef.h> and all we need is size_t.
58598         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
58599         our interface, instead of including <sys/types.h>
58600
58601 2003-06-04  Paul Eggert  <eggert@twinsun.com>
58602
58603         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
58604         now, as glibc mktime is buggy on non-glibc systems.
58605
58606 2003-06-03  Karl Berry  <karl@gnu.org>
58607
58608         * config/config.sub: update from prep.
58609
58610 2003-06-02  Paul Eggert  <eggert@twinsun.com>
58611
58612         [from coreutils]
58613         Fix some minor time-related bugs with POSIX time arguments.
58614         Some valid time stamps were being rejected (notably -1, and
58615         time stamps before 1900 on 64-bit hosts).  And some invalid
58616         time stamps were being accepted, e.g. September 31.
58617
58618         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
58619         that we can return (time_t) -1 successfully.
58620         * lib/posixtm.c: Likewise.
58621         [HAVE_STDBOOL_H]: Include <stdbool.h>.
58622         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
58623         (t): Remove static var.
58624         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
58625         of static var.  All uses changed.
58626         (year): Do not reject years before 1900; they can occur with
58627         64-bit time_t.
58628         (posix_time_parse): Do not check for out-of-range components;
58629         that is now the caller's responsibility, since our checks were
58630         only approximations.
58631         (posixtime): Use mktime to check for out-of-range components,
58632         since it knows them exactly.
58633         If mktime returns (time_t) -1, check whether an error actually occurred
58634         by invoking localtime on -1.
58635         (main) [TEST_POSIXTIME]: Check for input data errors, and report
58636         posixtime failures better.
58637         Improve the test data (in comments only).
58638
58639 2003-06-02  Karl Berry  <karl@gnu.org>
58640
58641         * config/mkinstalldirs (version): new variable.
58642         (--version): new option.
58643         (usage): improve message.
58644
58645 2003-05-30  Karl Berry  <karl@gnu.org>
58646
58647         * lib/mktime.c: update from libc.
58648
58649 2003-05-30  Bruno Haible  <bruno@clisp.org>
58650
58651         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
58652         * config/config.rpath: Upgrade to gettext-0.12.1.
58653
58654 2003-05-30  Bruno Haible  <bruno@clisp.org>
58655
58656         * m4/gettext.m4: Upgrade to gettext-0.12.1.
58657         * m4/nls.m4: New file, from gettext-0.12.1.
58658         * m4/po.m4: New file, from gettext-0.12.1.
58659         * m4/progtest.m4: Upgrade to gettext-0.12.1.
58660
58661 2003-05-30  Bruno Haible  <bruno@clisp.org>
58662
58663         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
58664         * lib/localcharset.h: Likewise.
58665         * lib/localcharset.c: Likewise.
58666
58667 2003-05-29  Karl Berry  <karl@gnu.org>
58668
58669         * config/config.rpath: update from gettext.
58670
58671 2003-05-28  Paul Eggert  <eggert@twinsun.com>
58672
58673         Assume the headers required for C89 freestanding compilers.
58674         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
58675         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
58676         * m4/human.m4 (gl_HUMAN): Likewise.
58677         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
58678         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
58679         * m4/userspec.m4 (gl_USERSPEC): Likewise.
58680         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
58681         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
58682         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
58683
58684 2003-05-28  Paul Eggert  <eggert@twinsun.com>
58685
58686         Assume the headers required for C89 freestanding compilers.
58687         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
58688         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
58689         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
58690         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
58691         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
58692         define, since <limits.h> is guaranteed to do that.
58693         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
58694         * lib/exclude.c: Include <stdbool.h> unconditionally.
58695         * lib/tempname.c: Include <stddef.h> unconditionally.
58696         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
58697         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
58698         <stddef.h> does that.
58699         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
58700         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
58701         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
58702         needed.
58703         * lib/xstrtol.c: Likewise.
58704         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
58705         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
58706
58707         * lib/addext.c (addext): Use assignment rather than cast, to avoid
58708         warnings on some platforms.
58709
58710         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
58711         arbitrarily.
58712
58713 2003-05-26  Jim Meyering  <jim@meyering.net>
58714
58715         Merge in a change from coreutils:
58716         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
58717         that is guaranteed to be `no'.  Use `no_such_member' to indicate
58718         that condition, rather than `-1' which is slightly misleading.
58719         Change the name of the cache variable to have the gl_ prefix.
58720         Prompted by a patch from Richard Dawe for DJGPP.
58721
58722 2003-05-24  Karl Berry  <karl@gnu.org>
58723
58724         * config/config.guess: update from prep.
58725
58726 2003-05-22  Karl Berry  <karl@gnu.org>
58727
58728         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
58729
58730 2003-05-20  Karl Berry  <karl@gnu.org>
58731
58732         * config/config.guess: update from prep.
58733
58734 2003-05-18  Karl Berry  <karl@gnu.org>
58735
58736         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
58737         might actually be set by the user.
58738
58739         * config/depcomp, install-sh, mdate-sh: update from automake.
58740
58741 2003-05-17  Bruno Haible  <bruno@clisp.org>
58742
58743         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
58744         invalid expansion for AC_EGREP_CPP.
58745         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
58746         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
58747         Suggested by Akim Demaille <akim@epita.fr> in
58748         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
58749
58750 2003-05-12  Jim Meyering  <jim@meyering.net>
58751
58752         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
58753         the space-padded-by-default conversion specifiers, %e, %k, %l.
58754
58755 2003-05-12  Bruno Haible  <bruno@clisp.org>
58756
58757         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
58758         the string is longer than 4 KB.
58759
58760 2003-05-11  Karl Berry  <karl@gnu.org>
58761
58762         * config/config.{guess,sub}: update from prep.
58763
58764 2003-05-09  Bruno Haible  <bruno@clisp.org>
58765
58766         * modules/error: Add m4/strerror_r.m4 to file list.
58767
58768 2003-05-03  Bruno Haible  <bruno@clisp.org>
58769
58770         Upgrade to Unicode-4.0.
58771         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
58772         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
58773         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
58774         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
58775         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
58776         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
58777         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
58778         Change width of U+E0100..U+E01EF from 1 to 0.
58779
58780 2003-04-25  Jim Meyering  <jim@meyering.net>
58781
58782         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
58783         of type size_t, not int.
58784
58785 2003-04-25  Bruno Haible  <bruno@clisp.org>
58786
58787         * lib/copy-file.c: Include <stddef.h>, for size_t.
58788
58789 2003-04-21  Paul Eggert  <eggert@twinsun.com>
58790
58791         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
58792         code which expansion is under static control.  Patch imported from
58793         Akim Demaille's patch to Bison; see
58794         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
58795
58796 2003-04-14  Bruno Haible  <bruno@clisp.org>
58797
58798         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
58799
58800 2003-04-11  Jim Meyering  <jim@meyering.net>
58801
58802         Merge changes from Coreutils.
58803
58804         2003-03-22  Jim Meyering  <jim@meyering.net>
58805
58806         * lib/strftime.c (widen): Cast alloca return value to proper type.
58807
58808         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
58809
58810         From GNU libc.
58811         * lib/strftime.c (my_strftime): Handle very large width
58812         specifications for numeric values correctly.  Improve checks for
58813         overflow.
58814
58815         2003-01-19  Jim Meyering  <jim@meyering.net>
58816
58817         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
58818         definitions.
58819         (nl_get_alt_digit) [! defined my_strftime]: Define.
58820         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
58821         _nl_get_alt_digit and _nl_get_walt_digit.
58822
58823         * lib/strftime.c (my_strftime): Merge in locale-related changes from
58824         libc. These changes have no effect outside of _LIBC.
58825
58826 2003-04-10  Bruno Haible  <bruno@clisp.org>
58827
58828         * modules/findprog: New file.
58829         * MODULES.html.sh (func_all_modules): Add it.
58830
58831 2003-04-10  Bruno Haible  <bruno@clisp.org>
58832
58833         * m4/findprog.m4: New file.
58834         * m4/eaccess.m4: New file.
58835
58836 2003-04-10  Bruno Haible  <bruno@clisp.org>
58837
58838         * lib/findprog.h: New file, from GNU gettext.
58839         * lib/findprog.c: New file, from GNU gettext.
58840
58841 2003-04-05  Jim Meyering  <jim@meyering.net>
58842
58843         Merge changes from Coreutils.
58844
58845         * lib/exclude.h (PARAMS): Remove definition and uses.
58846         * lib/exclude.c: Remove uses of `PARAMS'.
58847
58848         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
58849         Add test-cases for DOS filenames. Declare program_name.
58850         (main): Set up program_name.  Patch by Rich Dawe.
58851
58852         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
58853         error from mntctl.
58854         Use mntctl's return value to drive the entry-processing loop, since
58855         we can't rely on the value of the vmt_length member in the last
58856         entry.  On some systems doing so could result in exhausting
58857         virtual memory.  Based in part on a patch from Mike Jetzer.
58858
58859 2003-04-04  Bruno Haible  <bruno@clisp.org>
58860
58861         * modules/linebreak: New file.
58862         * MODULES.html.sh (func_all_modules): Add it.
58863
58864 2003-04-04  Bruno Haible  <bruno@clisp.org>
58865
58866         * m4/linebreak.m4: New file.
58867
58868 2003-04-04  Bruno Haible  <bruno@clisp.org>
58869
58870         * lib/linebreak.h: New file, from GNU gettext.
58871         * lib/linebreak.c: New file, from GNU gettext with slight
58872         modifications.
58873         * lib/lbrkprop.h: New file, from GNU gettext.
58874
58875 2003-04-03  Bruno Haible  <bruno@clisp.org>
58876
58877         * modules/utf8-ucs4: New file.
58878         * modules/utf16-ucs4: New file.
58879         * modules/ucs4-utf8: New file.
58880         * modules/ucs4-utf16: New file.
58881         * MODULES.html.sh (func_all_modules): Add them.
58882
58883 2003-04-03  Bruno Haible  <bruno@clisp.org>
58884
58885         * m4/utf-ucs4.m4: New file.
58886         * m4/ucs4-utf.m4: New file.
58887
58888 2003-04-03  Bruno Haible  <bruno@clisp.org>
58889
58890         * lib/utf8-ucs4.h: New file, from GNU gettext.
58891         * lib/utf16-ucs4.h: New file, from GNU gettext.
58892         * lib/ucs4-utf8.h: New file, from GNU gettext.
58893         * lib/ucs4-utf16.h: New file, from GNU gettext.
58894
58895 2003-04-02  Bruno Haible  <bruno@clisp.org>
58896
58897         * modules/binary-io: New file.
58898         * MODULES.html.sh (func_all_modules): Add it.
58899
58900 2003-04-02  Bruno Haible  <bruno@clisp.org>
58901
58902         * lib/binary-io.h: New file, from GNU gettext.
58903
58904 2003-04-01  Bruno Haible  <bruno@clisp.org>
58905
58906         * modules/pathname: New file.
58907         * MODULES.html.sh (func_all_modules): Add it.
58908
58909 2003-04-01  Bruno Haible  <bruno@clisp.org>
58910
58911         * lib/pathname.h: New file, from GNU gettext.
58912         * lib/concatpath.c: New file, from GNU gettext.
58913
58914 2003-03-30  Bruno Haible  <bruno@clisp.org>
58915
58916         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
58917
58918 2003-03-30  Bruno Haible  <bruno@clisp.org>
58919
58920         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
58921         function chown() doesn't exist.
58922
58923 2003-03-28  Bruno Haible  <bruno@clisp.org>
58924
58925         * modules/copy-file: New file.
58926         * MODULES.html.sh (func_all_modules): Add it.
58927
58928 2003-03-28  Bruno Haible  <bruno@clisp.org>
58929
58930         * m4/copy-file.m4: New file.
58931
58932 2003-03-28  Bruno Haible  <bruno@clisp.org>
58933
58934         * lib/copy-file.h: New file, from GNU gettext.
58935         * lib/copy-file.c: New file, from GNU gettext.
58936
58937 2003-03-18  Jim Meyering  <jim@meyering.net>
58938
58939         * lib/quote.c (quote_n): Fix typo in comment.
58940
58941 2003-03-18  Bruno Haible  <bruno@clisp.org>
58942
58943         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
58944         checking.
58945         * m4/onceonly_2_57.m4: Likewise.
58946
58947 2003-03-17  Bruno Haible  <bruno@clisp.org>
58948
58949         * m4/onceonly.m4: Require autoconf 2.54 or newer.
58950         (m4_quote): Remove macro.
58951         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
58952
58953 2003-03-14  Jim Meyering  <jim@meyering.net>
58954
58955         Merge changes from Coreutils.
58956         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
58957         to be const, in order to avoid warnings.
58958         (obstack_room): Likewise.
58959         (obstack_empty_p): Likewise.
58960
58961 2003-03-14  Bruno Haible  <bruno@clisp.org>
58962
58963         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
58964         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
58965
58966 2003-03-13  Paul Eggert  <eggert@twinsun.com>
58967
58968         Merge changes from Bison.
58969         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
58970         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
58971         when compiling Bison 1.875's `bitset bset = obstack_alloc
58972         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
58973         * lib/hash.c: Include <stdbool.h> unconditionally.
58974
58975 2003-03-13  Paul Eggert  <eggert@twinsun.com>
58976
58977         * m4/onceonly.m4 (m4_quote): New macro.
58978         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
58979         Quote AC_FOREACH variable-expansions properly.
58980
58981 2003-03-13  Paul Eggert  <eggert@twinsun.com>
58982
58983         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
58984
58985 2003-03-09  Paul Eggert  <eggert@twinsun.com>
58986
58987         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
58988         Reported by Bruce Becker; see:
58989         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
58990
58991 2003-03-03  Paul Eggert  <eggert@twinsun.com>
58992             Bruno Haible  <bruno@clisp.org>
58993
58994         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
58995         Reported by John Hughes, see
58996         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
58997
58998 2003-02-20  Bruno Haible  <bruno@clisp.org>
58999
59000         * MODULES.html.sh (func_all_modules): Add poll.
59001
59002 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59003
59004         * modules/poll: New file.
59005
59006 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59007
59008         * lib/poll_.h: New file.
59009         * lib/poll.c: New file.
59010
59011 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59012
59013         * m4/poll.m4: New file.
59014
59015 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59016
59017         * modules/mathl: New file.
59018
59019 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59020
59021         * lib/mathl.h: New file.
59022         * lib/acosl.c: New file.
59023         * lib/asinl.c: New file.
59024         * lib/atanl.c: New file.
59025         * lib/ceill.c: New file.
59026         * lib/cosl.c: New file.
59027         * lib/expl.c: New file.
59028         * lib/floorl.c: New file.
59029         * lib/frexpl.c: New file.
59030         * lib/ldexpl.c: New file.
59031         * lib/logl.c: New file.
59032         * lib/sincosl.c: New file.
59033         * lib/sinl.c: New file.
59034         * lib/sqrtl.c: New file.
59035         * lib/tanl.c: New file.
59036         * lib/trigl.c: New file.
59037         * lib/trigl.h: New file.
59038
59039 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59040
59041         * m4/mathl.m4: New file.
59042
59043 2003-02-18  Bruno Haible  <bruno@clisp.org>
59044
59045         * MODULES.html.sh (func_all_modules): Add mathl.
59046
59047 2003-02-17  Bruno Haible  <bruno@clisp.org>
59048
59049         * modules/mkdtemp: New module.
59050         * MODULES.html.sh (func_all_modules): Add it.
59051
59052 2003-02-17  Bruno Haible  <bruno@clisp.org>
59053
59054         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
59055
59056 2003-02-17  Bruno Haible  <bruno@clisp.org>
59057
59058         * lib/mkdtemp.h: New file, from GNU gettext.
59059         * lib/mkdtemp.c: New file, from GNU gettext.
59060
59061 2003-02-02  Jim Meyering  <jim@meyering.net>
59062
59063         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
59064         e.g. glibc-2.2.93.
59065
59066 2003-01-31  Bruno Haible  <bruno@clisp.org>
59067
59068         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
59069         'rpl_rename'.
59070         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
59071         'rpl_strnlen'.
59072         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
59073         'rpl_strtod'.
59074         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
59075         'rpl_utime'.
59076
59077 2003-01-31  Bruno Haible  <bruno@clisp.org>
59078
59079         * lib/rename.c: #undef rename before defining rpl_rename.
59080         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
59081
59082 2003-01-30  Bruno Haible  <bruno@clisp.org>
59083
59084         * modules/vasnprintf, modules/vasprintf: New modules.
59085         * MODULES.html.sh (func_all_modules): Add them.
59086
59087 2003-01-30  Bruno Haible  <bruno@clisp.org>
59088
59089         * m4/signed.m4: New file, from GNU gettext.
59090         * m4/longdouble.m4: New file, from GNU gettext.
59091         * m4/wchar_t.m4: New file, from GNU gettext.
59092         * m4/wint_t.m4: New file, from GNU gettext.
59093         * m4/vasnprintf.m4: New file.
59094         * m4/vasprintf.m4: New file.
59095
59096 2003-01-30  Bruno Haible  <bruno@clisp.org>
59097
59098         * lib/printf-args.h: New file, from GNU gettext.
59099         * lib/printf-args.c: New file, from GNU gettext.
59100         * lib/printf-parse.h: New file, from GNU gettext.
59101         * lib/printf-parse.c: New file, from GNU gettext.
59102         * lib/vasnprintf.h: New file, from GNU gettext.
59103         * lib/vasnprintf.c: New file, from GNU gettext.
59104         * lib/asnprintf.c: New file, from GNU gettext.
59105         * lib/vasprintf.h: New file, from GNU gettext with modifications.
59106         * lib/vasprintf.c: New file, from GNU gettext.
59107         * lib/asprintf.c: New file, from GNU gettext.
59108
59109 2003-01-29  Bruno Haible  <bruno@clisp.org>
59110
59111         * modules/stpncpy: New module.
59112         * MODULES.html.sh (func_all_modules): Add it.
59113
59114 2003-01-29  Bruno Haible  <bruno@clisp.org>
59115
59116         * m4/stpncpy.m4: New file.
59117
59118 2003-01-29  Bruno Haible  <bruno@clisp.org>
59119
59120         * lib/stpncpy.h: New file, from GNU gettext with modifications.
59121         * lib/stpncpy.c: New file, from GNU gettext with modifications.
59122
59123 2003-01-28  Bruno Haible  <bruno@clisp.org>
59124
59125         * modules/c-ctype: New module.
59126         * MODULES.html.sh (func_all_modules): Add it.
59127
59128 2003-01-28  Bruno Haible  <bruno@clisp.org>
59129
59130         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
59131         Paul Eggert.
59132         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
59133         Paul Eggert.
59134
59135 2003-01-27  Bruno Haible  <bruno@clisp.org>
59136
59137         * modules/xsetenv: New module.
59138         * MODULES.html.sh (func_all_modules): Add it.
59139
59140 2003-01-27  Bruno Haible  <bruno@clisp.org>
59141
59142         * lib/xsetenv.h: New file, from GNU gettext.
59143         * lib/xsetenv.c: New file, from GNU gettext.
59144
59145 2003-01-23  Jim Meyering  <jim@meyering.net>
59146
59147         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
59148         from working on systems without dirfd (at least Irix and OSF1/Tru64).
59149
59150 2003-01-23  Bruno Haible  <bruno@clisp.org>
59151
59152         * modules/minmax: New module.
59153         * MODULES.html.sh (func_all_modules): Add it.
59154
59155 2003-01-23  Bruno Haible  <bruno@clisp.org>
59156
59157         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
59158         Eggert.
59159
59160 2003-01-22  Bruno Haible  <bruno@clisp.org>
59161
59162         * modules/exit: New module.
59163         * MODULES.html.sh (func_all_modules): Add it.
59164
59165 2003-01-22  Bruno Haible  <bruno@clisp.org>
59166
59167         * lib/exit.h: New file, from GNU gettext.
59168
59169 2003-01-19  Bruno Haible  <bruno@clisp.org>
59170
59171         * gnulib-tool: Recognize option --extract-maintainer.
59172         (func_get_maintainer): New function.
59173         * modules/*: Add Maintainer entry.
59174
59175 2003-01-16  Jim Meyering  <jim@meyering.net>
59176
59177         * m4/regex.m4: The `regex' struct is both input and output.
59178         Initialize it before each use.  Patch by Tim Waugh.
59179
59180 2003-01-16  Bruno Haible  <bruno@clisp.org>
59181
59182         * MODULES.html.sh: Add a table of contents. Add the module name as
59183         leftmost column. Add hyperlinks.
59184
59185 2003-01-15  Bruno Haible  <bruno@clisp.org>
59186
59187         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
59188
59189 2003-01-15  Bruno Haible  <bruno@clisp.org>
59190
59191         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
59192         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
59193         suffix.
59194
59195 2003-01-15  Bruno Haible  <bruno@clisp.org>
59196
59197         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
59198
59199 2003-01-15  Bruno Haible  <bruno@clisp.org>
59200
59201         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
59202         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
59203
59204 2003-01-14  Jim Meyering  <jim@meyering.net>
59205
59206         * lib/same.c (same_name): Tweak a comment.
59207
59208 2003-01-14  Bruno Haible  <bruno@clisp.org>
59209
59210         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
59211         when a string comparison is sufficient.
59212
59213 2003-01-14  Bruno Haible  <bruno@clisp.org>
59214
59215         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
59216         'unsigned int'.
59217
59218 2003-01-14  Bruno Haible  <bruno@clisp.org>
59219
59220         * lib/hash-pjw.c: Add comment about low quality of this function.
59221
59222 2003-01-13  Bruno Haible  <bruno@clisp.org>
59223
59224         * modules/stpcpy: Distribute lib/stpcpy.h.
59225         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
59226
59227 2003-01-13  Bruno Haible  <bruno@clisp.org>
59228
59229         * modules/*: Add a description.
59230         * modules/strpbrk: Fix Makefile.am snippet.
59231         * modules/strtoimax: Fix dependencies.
59232         * modules/strtoumax: Likewise.
59233
59234 2003-01-13  Bruno Haible  <bruno@clisp.org>
59235
59236         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
59237         * modules/alloca (Makefile.am): All object files depend on alloca.h.
59238         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
59239
59240 2003-01-13  Bruno Haible  <bruno@clisp.org>
59241
59242         * gnulib-tool (func_create_testdir): Store config/* files in the main
59243         directory.
59244         * config.rpath: Move to ...
59245         * config/config.rpath: ... here.
59246         * modules/gettext: Contains config/config.rpath, not config.rpath.
59247         * modules/iconv: Likewise.
59248
59249 2003-01-12  Paul Eggert  <eggert@twinsun.com>
59250
59251         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
59252         to avoid collisions with libcurses and libreadline.
59253
59254         * m4/getstr.m4: Remove.
59255         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
59256
59257 2003-01-12  Paul Eggert  <eggert@twinsun.com>
59258
59259         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
59260         to avoid collisions with libcurses and libreadline.
59261
59262         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
59263         * lib/getstr.h, getstr.c: Remove.
59264         * lib/getline.c: Include "getline.h", to check interface.
59265         Move body of old getstr.c here: this defines MIN_CHUNK and
59266         declares getdelim2, which is renamed from getstr.
59267         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
59268
59269         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
59270         All uses changed.
59271         * lib/linebuffer.h: Likewise.
59272         (readline): Remove backward-compatibility macro.
59273
59274 2003-01-12  Paul Eggert  <eggert@twinsun.com>
59275
59276         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
59277         to avoid collisions with libcurses and libreadline.
59278         * getstr: Remove.
59279         * MODULES.html.sh: Remove getstr.
59280         * modules/getline: Depend on unlocked-io, not getstr.
59281
59282 2003-01-12  Jim Meyering  <jim@meyering.net>
59283
59284         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
59285
59286 2003-01-10  Bruno Haible  <bruno@clisp.org>
59287
59288         * modules/alloca: Change Makefile.am requirements. Simplify Include
59289         requirements. Add lib/alloca_.h to file list.
59290
59291 2003-01-10  Bruno Haible  <bruno@clisp.org>
59292
59293         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
59294
59295 2003-01-10  Bruno Haible  <bruno@clisp.org>
59296
59297         * lib/alloca_.h: New file.
59298         * lib/getdate.y: Unconditionally include alloca.h.
59299         * lib/makepath.c: Likewise.
59300         * lib/setenv.c: Likewise.
59301         * lib/userspec.c: Likewise.
59302
59303 2003-01-09  Karl Berry  <karl@gnu.org>
59304
59305         * MODULES.html.sh: include `dirname $0` in PATH, to find
59306         gnulib-tool.
59307
59308 2003-01-09  Bruno Haible  <bruno@clisp.org>
59309
59310         * modules/stdbool: Change configure.ac, Makefile.am requirements.
59311         Simplify Include requirements. Add lib/stdbool.h.in to file list.
59312
59313 2003-01-09  Bruno Haible  <bruno@clisp.org>
59314
59315         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
59316
59317 2003-01-09  Bruno Haible  <bruno@clisp.org>
59318
59319         * lib/stdbool.h.in: New file.
59320
59321 2003-01-09  Bruno Haible  <bruno@clisp.org>
59322
59323         * gnulib-tool (func_all_modules): Ignore files ending in ~.
59324         * MODULES.html.sh: Likewise.
59325
59326 2003-01-08  Jim Meyering  <jim@meyering.net>
59327
59328         * lib/full-write.c: Undefine and define-away `const' after inclusion
59329         of errno.h, not before.  Suggestion from Bruno Haible.
59330
59331 2003-01-08  Bruno Haible  <bruno@clisp.org>
59332
59333         * modules/full-read: Depend on full-write.
59334
59335 2003-01-08  Bruno Haible  <bruno@clisp.org>
59336
59337         * lib/safe-read.c: Include specification header first, to ensure its
59338         selfcontainedness.
59339         * lib/full-write.c: Likewise.
59340
59341 2003-01-07  Jim Meyering  <jim@meyering.net>
59342
59343         * lib/full-write.c: Rework so that it may serve to define full_read,
59344         too.
59345         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
59346
59347 2003-01-07  Bruno Haible  <bruno@clisp.org>
59348
59349         * lib/strtoimax.c: Include <stdint.h> as an alternative to
59350         <inttypes.h>.
59351         * lib/xstrtol.h: Likewise.
59352         * lib/xstrtoimax.c: Likewise.
59353         * lib/xstrtoumax.c: Likewise.
59354         * lib/human.h: Likewise.
59355
59356         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
59357         on systems that have <inttypes.h> but not <stdint.h>.
59358
59359 2003-01-07  Bruno Haible  <bruno@clisp.org>
59360
59361         * MODULES.html.sh: Add copyright notice.
59362         (missed_files): Omit CVS directory entries.
59363         (func_module): Make it work with sed-3.02.
59364         * MODULES.txt: Remove file.
59365
59366 2003-01-06  Jim Meyering  <jim@meyering.net>
59367
59368         * lib/version-etc.c: Update year in translatable copyright string.
59369
59370 2003-01-03  Karl Berry  <karl@gnu.org>
59371
59372         * config/config.{guess,sub}: update from prep.
59373
59374 2003-01-02  Karl Berry  <karl@gnu.org>
59375
59376         * doc/COPYING.DOC: belatedly updated to 1.2.
59377
59378 2003-01-01  Karl Berry  <karl@gnu.org>
59379
59380         * gnulib-tool (func_verify_module): report module name $module in
59381         error message, not $1.
59382         * gnulib-tool (create-testdir): don't complain if destdir couldn't
59383         be created, only if it doesn't exist.
59384         * gnulib-tool (last_checkin_date): don't expand the $Date here.
59385
59386 2002-12-31  Paul Eggert  <eggert@twinsun.com>
59387
59388         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
59389
59390 2002-12-31  Paul Eggert  <eggert@twinsun.com>
59391
59392         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
59393         memcmp if strcoll doesn't work.
59394
59395 2002-12-31  Bruno Haible  <bruno@clisp.org>
59396
59397         * lib/utime.c (utime_null): No need to call ftruncate if the file was
59398         nonempty.
59399
59400 2002-12-31  Bruno Haible  <bruno@clisp.org>
59401
59402         * lib/memcoll.c (STRCOLL): New macro.
59403         (memcoll): Use it.
59404
59405 2002-12-31  Bruno Haible  <bruno@clisp.org>
59406
59407         * lib/localcharset.h: New file.
59408         * lib/localcharset.c: Include it.
59409         * lib/unicodeio.c: Likewise.
59410
59411 2002-12-31  Bruno Haible  <bruno@clisp.org>
59412
59413         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
59414         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
59415
59416 2002-12-31  Bruno Haible  <bruno@clisp.org>
59417
59418         * lib/getline.h: Include <stddef.h>, for size_t.
59419
59420         * lib/unicodeio.h: Include <stddef.h>, for size_t.
59421         * lib/unicodeio.c: Don't include <stddef.h>.
59422
59423 2002-12-31  Bruno Haible  <bruno@clisp.org>
59424
59425         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
59426         HAVE_TM_ZONE.
59427
59428 2002-12-24  Karl Berry  <karl@gnu.org>
59429
59430         * config/config.guess: update from prep.
59431
59432 2002-12-24  Bruno Haible  <bruno@clisp.org>
59433
59434         General infrasructure.
59435         * m4/README: Rewritten.
59436         * m4/onceonly.m4: New file.
59437         * m4/onceonly_2_57.m4: New file.
59438
59439         Module atexit.
59440         * m4/atexit.m4: New file.
59441
59442         Module strtod.
59443         * m4/strtod.m4: New file.
59444
59445         Module strtol.
59446         * m4/strtol.m4: New file.
59447
59448         Module strtoul.
59449         * m4/strtoul.m4: New file.
59450
59451         Module memchr.
59452         * m4/memchr.m4: New file.
59453
59454         Module memcmp.
59455         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
59456         (jm_FUNC_MEMCMP): Invoke it.
59457
59458         Module memcpy.
59459         * m4/memcpy.m4: New file.
59460
59461         Module memmove.
59462         * m4/memmove.m4: New file.
59463
59464         Module memset.
59465         * m4/memset.m4: New file.
59466
59467         Module strcspn.
59468         * m4/strcspn.m4: New file.
59469
59470         Module strpbrk.
59471         * m4/strpbrk.m4: New file.
59472
59473         Module strstr.
59474         * m4/strstr.m4: New file.
59475
59476         Module strerror.
59477         * m4/strerror.m4: New file.
59478
59479         Module mktime.
59480         * m4/mktime.m4: Renamed from jm-mktime.m4.
59481         (gl_PREREQ_MKTIME): New macro.
59482         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
59483
59484         Module malloc.
59485         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
59486         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
59487         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
59488
59489         Module realloc.
59490         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
59491         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
59492         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
59493
59494         Module strftime.
59495         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
59496         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
59497         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
59498         gl_TM_GMTOFF.
59499         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
59500
59501         Module xalloc.
59502         * m4/xalloc.m4: New file.
59503
59504         Module alloca.
59505         * m4/alloca.m4: New file.
59506
59507         Module putenv.
59508         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
59509         (jm_FUNC_PUTENV): Invoke it.
59510
59511         Module setenv.
59512         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
59513         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
59514         when invoked twice.
59515         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
59516         gt_FUNC_SETENV.
59517
59518         Module memrchr.
59519         * m4/memrchr.m4: New file.
59520
59521         Module stpcpy.
59522         * m4/stpcpy.m4: New file.
59523
59524         Module strcase.
59525         * m4/strcase.m4: New file.
59526
59527         Module strdup.
59528         * m4/strdup.m4: New file.
59529
59530         Module strnlen.
59531         * m4/strnlen.m4: New file.
59532
59533         Module strndup.
59534         * m4/strndup.m4: New file.
59535
59536         Module xstrtod.
59537         * m4/xstrtod.m4: New file.
59538
59539         Module xstrtol.
59540         * m4/xstrtol.m4: New file.
59541
59542         Module getdate.
59543         * m4/getdate.m4: New file.
59544
59545         Module unlocked-io.
59546         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
59547         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
59548         * m4/jm-glibc-io.m4n: Remove file.
59549
59550         Module long-options.
59551         * m4/long-options.m4: New file.
59552
59553         Module md5.
59554         * m4/md5.m4: New file.
59555
59556         Module sha.
59557         * m4/sha.m4: New file.
59558
59559         Module getstr.
59560         * m4/getstr.m4: New file.
59561
59562         Module getline.
59563         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
59564         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
59565         <sys/types.h>, for size_t. Use the function name gnu_getline, not
59566         simply getline. Infoke gl_PREREQ_GETLINE.
59567
59568         Module obstack.
59569         * m4/obstack.m4: New file.
59570
59571         Module hash.
59572         * m4/hash.m4: New file.
59573
59574         Module readtokens.
59575         * m4/readtokens.m4: New file.
59576
59577         Module strverscmp.
59578         * m4/strverscmp.m4: New file.
59579
59580         Module stdbool.
59581         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
59582         OSF/1.
59583
59584         Module strtoll.
59585         * m4/strtoll.m4: New file.
59586
59587         Module strtoull.
59588         * m4/strtoull.m4: New file.
59589
59590         Module strtoimax.
59591         * m4/strtoimax.m4: New file.
59592
59593         Module strtoumax.
59594         * m4/strtoumax.m4: New file.
59595
59596         Module xstrtoimax.
59597         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
59598         jm_AC_PREREQ_XSTRTOIMAX.
59599         Moved the strtol prerequisites to strtol.m4.
59600         Moved the strtoll prerequisites to strtoll.m4.
59601         Moved the strtoimax prerequisites to strtoimax.m4.
59602
59603         Module xstrtoumax.
59604         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
59605         jm_AC_PREREQ_XSTRTOUMAX.
59606         Moved the strtoul prerequisites to strtoul.m4.
59607         Moved the strtoull prerequisites to strtoull.m4.
59608         Moved the strtoumax prerequisites to strtoumax.m4.
59609
59610         Module chown.
59611         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
59612         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
59613
59614         Module dup2.
59615         * m4/dup2.m4: New file.
59616
59617         Module ftruncate.
59618         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
59619         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
59620
59621         Module getgroups.
59622         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
59623         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
59624
59625         Module gettimeofday.
59626         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
59627         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
59628         gl_PREREQ_GETTIMEOFDAY.
59629
59630         Module mkdir.
59631         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
59632         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
59633
59634         Module mkstemp.
59635         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
59636         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
59637         jm_AC_TYPE_UINTMAX_T.
59638         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
59639
59640         Module stat.
59641         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
59642         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
59643
59644         Module lstat.
59645         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
59646         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
59647
59648         Module timespec.
59649         * m4/timespec.m4 (gl_TIMESPEC): New macro.
59650         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
59651         * m4/st_mtim.m4: Indentation.
59652
59653         Module nanosleep.
59654         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
59655         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
59656         gl_PREREQ_NANOSLEEP.
59657
59658         Module regex.
59659         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
59660         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
59661         (gl_REGEX): New macro.
59662
59663         Module rename.
59664         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
59665         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
59666
59667         Module rmdir.
59668         * m4/rmdir.m4: New file.
59669
59670         Module utime.
59671         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
59672         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
59673         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
59674
59675         Module dirname.
59676         * m4/dirname.m4: New file.
59677
59678         Module getopt.
59679         * m4/getopt.m4: New file.
59680
59681         Module unistd-safer.
59682         * m4/unistd-safer.m4: New file.
59683
59684         Module fnmatch.
59685         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
59686         declaration.
59687         (gl_PREREQ_FNMATCH_EXTRA): New macro.
59688         (gl_FUNC_FNMATCH_POSIX): New macro.
59689         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
59690         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
59691         simply fnmatch.
59692
59693         Module exclude.
59694         * m4/exclude.m4: New file.
59695
59696         Module human.
59697         * m4/human.m4: New file.
59698
59699         Module acl.
59700         * m4/acl.m4: Nop.
59701
59702         Module backupfile.
59703         * m4/backupfile.m4: New file.
59704         * m4/d-ino.m4: Indentation.
59705
59706         Module fsusage.
59707         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
59708         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
59709         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
59710
59711         Module dirfd.
59712         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
59713         requirements.
59714
59715         Module euidaccess.
59716         * m4/euidaccess.m4: New file.
59717
59718         Module file-type.
59719         * m4/file-type.m4: New file.
59720
59721         Module fileblocks.
59722         * m4/fileblocks.m4: New file.
59723
59724         Module filemode.
59725         * m4/filemode.m4: New file.
59726
59727         Module isdir.
59728         * m4/isdir.m4: New file.
59729
59730         Module lchown.
59731         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
59732         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
59733
59734         Module makepath.
59735         * m4/makepath.m4: New file.
59736
59737         Module modechange.
59738         * m4/modechange.m4: New file.
59739
59740         Module mountlist.
59741         * m4/mountlist.m4: New file.
59742         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
59743         Indentation.
59744
59745         Module path-concat.
59746         * m4/path-concat.m4: New file.
59747
59748         Module pathmax.
59749         * m4/pathmax.m4: New file.
59750
59751         Module same.
59752         * m4/same.m4: New file.
59753
59754         Module save-cwd.
59755         * m4/save-cwd.m4: New file.
59756
59757         Module savedir.
59758         * m4/savedir.m4: New file.
59759
59760         Module xgetcwd.
59761         * m4/xgetcwd.m4: New file.
59762         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
59763
59764         Module xreadlink.
59765         * m4/xreadlink.m4: New file.
59766
59767         Module safe-read.
59768         * m4/safe-read.m4: New file.
59769
59770         Module safe-write.
59771         * m4/safe-write.m4: New file.
59772
59773         Module closeout.
59774         * m4/closeout.m4: New file.
59775
59776         Module stdio-safer.
59777         * m4/stdio-safer.m4: New file.
59778
59779         Module getpass.
59780         * m4/getpass.m4: New file.
59781
59782         Module getugroups.
59783         * m4/getugroups.m4: New file.
59784
59785         Module group-member.
59786         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
59787         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
59788
59789         Module idcache.
59790         * m4/idcache.m4: New file.
59791
59792         Module userspec.
59793         * m4/userspec.m4: New file.
59794
59795         Module gettime.
59796         * m4/clock_time.m4: New file.
59797         * m4/gettime.m4: New file.
59798
59799         Module settime.
59800         * m4/settime.m4: New file.
59801
59802         Module posixtm.
59803         * m4/posixtm.m4: New file.
59804
59805         Module gethostname.
59806         * m4/gethostname.m4: New file.
59807
59808         Module canon-host.
59809         * m4/canon-host.m4: New file.
59810
59811         Module gettext.
59812         * m4/codeset.m4: New file, from gettext-0.11.5.
59813         * m4/gettext.m4: New file, from gettext-0.11.5.
59814         * m4/glibc21.m4: New file, from gettext-0.11.5.
59815         * m4/iconv.m4: New file, from gettext-0.11.5.
59816         * m4/intdiv0.m4: New file, from gettext-0.11.5.
59817         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
59818         * m4/inttypes.m4: New file, from gettext-0.11.5.
59819         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
59820         * m4/isc-posix.m4: New file, from gettext-0.11.5.
59821         * m4/lcmessage.m4: New file, from gettext-0.11.5.
59822         * m4/lib-ld.m4: New file, from gettext-0.11.5.
59823         * m4/lib-link.m4: New file, from gettext-0.11.5.
59824         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
59825         * m4/progtest.m4: New file, from gettext-0.11.5.
59826         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
59827         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
59828         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
59829
59830         Module localcharset.
59831         * m4/localcharset.m4: New file.
59832
59833         Module hard-locale.
59834         * m4/hard-locale.m4: New file.
59835
59836         Module mbswidth.
59837         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
59838         onceonly macros.
59839         * m4/mbrtowc.m4: Add comment.
59840
59841         Module memcasecmp.
59842         * m4/memcasecmp.m4: New file.
59843
59844         Module memcoll.
59845         * m4/memcoll.m4: New file.
59846
59847         Module unicodeio.
59848         * m4/unicodeio.m4: New file.
59849
59850         Module rpmatch.
59851         * m4/rpmatch.m4: New file.
59852
59853         Module yesno.
59854         * m4/yesno.m4: New file.
59855
59856         Module exitfail.
59857         * m4/exitfail.m4: New file.
59858
59859         Module c-stack.
59860         * m4/c-stack.m4 (gl_C_STACK): New macro.
59861         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
59862
59863         Module error.
59864         * m4/error.m4 (gl_ERROR): New macro.
59865         (jm_PREREQ_ERROR): Use onceonly macros.
59866
59867         Module fatal.
59868         * m4/fatal.m4: New file.
59869
59870         Module getloadavg.
59871         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
59872         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
59873
59874         Module getpagesize.
59875         * m4/getpagesize.m4: New file.
59876
59877         Module getusershell.
59878         * m4/getusershell.m4: New file.
59879
59880         Module physmem.
59881         * m4/physmem.m4: New file.
59882
59883         Module posixver.
59884         * m4/posixver.m4: New file.
59885
59886         Module quotearg.
59887         * m4/quotearg.m4: New file.
59888
59889         Module quote.
59890         * m4/quote.m4: New file.
59891
59892         Module readutmp.
59893         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
59894
59895         Module sig2str.
59896         * m4/sig2str.m4: New file.
59897
59898         Other.
59899         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
59900         ulonglong.m4.
59901         * m4/intmax_t.m4: New file.
59902         * m4/d-type.m4: Indentation.
59903         * m4/jm-macros.m4: Update.
59904         * m4/prereq.m4 (jm_PREREQ): Update.
59905         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
59906         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
59907         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
59908         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
59909         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
59910         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
59911         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
59912         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
59913         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
59914         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
59915         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
59916         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
59917         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
59918         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
59919         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
59920         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
59921         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
59922         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
59923         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
59924
59925 2002-12-24  Bruno Haible  <bruno@clisp.org>
59926
59927         * MODULES.txt: Update according to m4/ changes.
59928
59929         Module gettext.
59930         * config.rpath: New file, from gettext-0.11.5.
59931
59932         * modules/*: New module descriptions.
59933         * gnulib-tool: New file.
59934         * MODULES.html.sh: New file.
59935
59936 2002-12-21  Karl Berry  <karl@gnu.org>
59937
59938         * doc/fdl.texi: update to version 1.2.
59939
59940 2002-12-19  Karl Berry  <karl@gnu.org>
59941
59942         * config/config.guess: update from prep.
59943
59944 2002-12-18  Bruno Haible  <bruno@clisp.org>
59945
59946         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
59947         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
59948
59949 2002-12-17  Bruno Haible  <bruno@clisp.org>
59950
59951         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
59952         stdlib.h, string.h.
59953
59954 2002-12-17  Bruno Haible  <bruno@clisp.org>
59955
59956         * lib/canon-host.c (strdup): Remove unused declaration.
59957
59958         * lib/fsusage.c: Include full_read.h.
59959         (get_fs_usage): Use full_read instead of safe_read.
59960
59961         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
59962
59963 2002-12-12  Karl Berry  <karl@gnu.org>
59964
59965         * config/config.guess: update from prep.
59966
59967 2002-12-11  Bruno Haible  <bruno@clisp.org>
59968
59969         * m4/setenv.m4: New file, from gettext-0.11.5.
59970
59971 2002-12-11  Bruno Haible  <bruno@clisp.org>
59972
59973         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
59974         not unsetenv().
59975         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
59976         modifications:
59977
59978         2002-12-11  Bruno Haible  <bruno@clisp.org>
59979
59980                 * setenv.c (alloca): Fall back to malloc.
59981                 (freea): New macro.
59982                 (setenv): Use freea() to free memory allocated with alloca().
59983
59984         2002-11-13  Bruno Haible  <bruno@clisp.org>
59985
59986                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
59987                 function declarations.
59988                 * unsetenv.c (unsetenv): Likewise.
59989
59990         2002-03-04  Bruno Haible  <bruno@clisp.org>
59991
59992                 Portability to AIX 4.3.3.
59993                 * unsetenv.c: New file, extracted from setenv.c.
59994                 * setenv.c: Move the unsetenv() function to unsetenv.c.
59995
59996         2001-12-20  Bruno Haible  <bruno@clisp.org>
59997
59998                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
59999                 use malloc instead. For SunOS 4.
60000
60001         2001-12-11  Bruno Haible  <bruno@clisp.org>
60002
60003                 * setenv.c: Declare alloca.
60004                 (compar_fn_t): New typedef.
60005                 (KNOWN_VALUE, STORE_VALUE): Use it.
60006
60007         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
60008         setenv.h.
60009
60010 2002-12-10  Paul Eggert  <eggert@twinsun.com>
60011
60012         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
60013         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
60014         Choose values that are less likely to collide with system fnmatch
60015         options.
60016         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
60017         defined (e.g., a pure POSIX system).
60018         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
60019         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
60020
60021 2002-12-06  Paul Eggert  <eggert@twinsun.com>
60022
60023         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
60024         a pain in practice to deal with generated m4 files.  This change
60025         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
60026
60027         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
60028         and jm-glibc-io.m4, as they are no longer a special case.
60029         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
60030         kludge and the auto-generation stuff.  Check only whether the
60031         functions are declared, not whether they exist, since older hosts
60032         that don't declare the functions can't use the optimization anyway.
60033
60034 2002-12-06  Jim Meyering  <jim@meyering.net>
60035
60036         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
60037
60038         Merge in changes from libc's misc/error.c, in preparation
60039         for the merge of gnulib's changes back into libc.
60040
60041         * lib/error.c (_): Define only if not already defined.
60042         Move definition to follow all #include directives.
60043         Include unlocked-io.h only if !_LIBC.
60044         [_LIBC]: Include <libio/libioP.h>.
60045         [USE_IN_LIBIO]: Include <libio/iolibio.h>
60046         (fflush): Tweak definition to use INTUSE.
60047         (putc): Define.
60048
60049 2002-12-05  Paul Eggert  <eggert@twinsun.com>
60050
60051         * lib/alloca.c [defined emacs]: Include "lisp.h".
60052         (xalloc_die) [defined emacs]: New macro.
60053         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
60054         [! defined emacs]: Include <xalloc.h>.
60055         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
60056         (pointer): Typedef to POINTER_TYPE *.
60057         (malloc): Remove decl; we now always use xmalloc.
60058         (alloca): Use old-style definition, since Emacs needs this.
60059         Check for arithmetic overflow when computing combined size.
60060
60061 2002-12-04  Paul Eggert  <eggert@twinsun.com>
60062
60063         Do not generate unlocked-io.h automatically, since it's easier to
60064         maintain it by hand.
60065
60066         * lib/unlocked-io.h: New file, from GNU diffutils,
60067         but with proper copyright notice and attribution.
60068         * lib/gen-uio: Remove.
60069         * lib/Makefile.am: Add copyright notice.
60070         (libfetish_a_SOURCES): Add unlocked-io.h.
60071         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
60072         (DISTCLEANFILES, io_functions): Remove macros.
60073         (EXTRA_DIST): Remove gen_uio.
60074         (unlocked-io.h): Remove rule.
60075
60076 2002-12-04  Jim Meyering  <jim@meyering.net>
60077
60078         Reflect the fact that stat.c and lstat.c are no longer generated.
60079         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
60080         (DISTCLEANFILES): Likewise.
60081         (EXTRA_DIST): Likewise.
60082         (all_local): Don't depend on stat.c or lstat.c.
60083         (stat.c, lstat.c): Remove rules.
60084         (EXTRA_DIST): Remove xstat.in.
60085
60086         * lib/xstat.in: Remove file.  Contents moved into stat.c.
60087         * lib/stat.c: New file.  Contents mostly from xstat.in.
60088         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
60089         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
60090
60091         * lib/safe-read.c: Rework so that it may serve to define safe_write,
60092         too.
60093         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
60094
60095 2002-12-03  Jim Meyering  <jim@meyering.net>
60096
60097         * lib/safe-read.c, safe-write.c: Change variable names and comments,
60098         but not semantics, to minimize the differences between these two files.
60099         (safe_read): Change comment to mention SAFE_READ_ERROR.
60100
60101         * lib/safe-read.c (IS_EINTR): Define.
60102         (safe_read): Use IS_EINTR in place of in-function cpp directives.
60103
60104 2002-12-02  Jim Meyering  <jim@meyering.net>
60105
60106         * lib/safe-read.c (EINTR): Define.
60107         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
60108         (INT_MAX): Provide fallback.
60109         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
60110
60111         * lib/safe-read.h (SAFE_READ_ERROR): Define.
60112
60113 2002-12-02  Bruno Haible  <bruno@clisp.org>
60114
60115         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
60116         Define, taken from safe-read.c.
60117         (INT_MAX): Provide fallback.
60118         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
60119         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
60120
60121         * lib/safe-read.c (EINTR): Remove definition.
60122         (safe_read): Don't use EINTR if it is absent.
60123
60124 2002-12-01  Jim Meyering  <jim@meyering.net>
60125
60126         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
60127         zero.
60128         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
60129
60130 2002-11-27  Paul Eggert  <eggert@twinsun.com>
60131
60132         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
60133         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
60134         with `if (! (value < limit)) abort ();', for readability.
60135
60136 2002-11-26  Karl Berry  <karl@gnu.org>
60137
60138         * lib/strdup.c: copy from libc again, with jim's ok.
60139         * lib/.cppi-disable: re-add strdup.c
60140
60141 2002-11-25  Karl Berry  <karl@gnu.org>
60142
60143         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
60144         instead of "strtol.c".
60145
60146 2002-11-25  Karl Berry  <karl@gnu.org>
60147
60148         * config/install-sh: update from automake for variable quoting, $0 in
60149         error msgs, etc.
60150
60151         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
60152         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
60153         entry.
60154
60155 2002-11-25  Jim Meyering  <jim@meyering.net>
60156
60157         * lib/mktime.c: Sync from libc, now that it has the latest fix.
60158
60159 2002-11-24  Karl Berry  <karl@gnu.org>
60160
60161         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
60162         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
60163
60164 2002-11-24  Jim Meyering  <jim@meyering.net>
60165
60166         Update from coreutils:
60167
60168         * lib/mktime.c: Merge in changes from libc.
60169
60170         Avoid a link-time failure on some Linux systems.
60171         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
60172         (otherwise).
60173         (__mon_yday): Declare with the STATIC attribute.
60174         (__mktime_internal): Likewise.
60175         Based on a report from Greg Schafer.
60176
60177 2002-11-23  Jim Meyering  <jim@meyering.net>
60178
60179         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
60180         Use `unsigned', not `int', as type of index.
60181
60182         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
60183
60184         * lib/fsusage.c: Remove unneeded parentheses around operands of
60185         `defined'.
60186
60187 2002-11-22  Paul Eggert  <eggert@twinsun.com>
60188
60189         * lib/quotearg.h: Allow multiple inclusion by surrounding with
60190         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
60191         so that we can be included first.
60192         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
60193         * lib/quotearg.c: Include quotearg.h immediately after config.h.
60194         No need to include stddef.h or sys/types.h any more.
60195         Surround local include files with "", not "<>".
60196         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
60197         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
60198         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
60199         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
60200         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
60201         (ISPRINT): Remove; no longer needed now that we assume C89.
60202
60203         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
60204         Preserve errno.
60205
60206         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
60207         quotearg_char): Use SIZE_MAX rather than
60208         (size_t) -1 when we are talking about "infinity".
60209
60210         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
60211
60212 2002-11-22  Paul Eggert  <eggert@twinsun.com>
60213
60214         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
60215         hint that one should use `if (! x) abort ();' rather than `assert
60216         (x);', and anyway it's one less thing to worry about configuring.
60217         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
60218         hash_rehash, hash_insert): Use abort rather than assert.
60219
60220 2002-11-22  Bruno Haible  <bruno@clisp.org>
60221
60222         * lib/safe-read.h: Assume C89. Add comments.
60223         (safe_read): Change return type to size_t.
60224         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
60225         byte counts > SSIZE_MAX correctly.
60226         * lib/safe-write.h: New file.
60227         * lib/safe-write.c: New file.
60228         * lib/full-read.h: New file.
60229         * lib/full-read.c: New file.
60230         * lib/full-write.h: Assume C89. Add comments.
60231         * lib/full-write.c: Include safe-write.h.
60232         (full_write): Rewritten to use safe_write.
60233         Suggested by Jim Meyering and Paul Eggert.
60234
60235 2002-11-21  Jim Meyering  <jim@meyering.net>
60236
60237         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
60238
60239         Merge in changes from the coreutils.
60240
60241         2002-09-25  Paul Eggert  <eggert@twinsun.com>
60242         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
60243         <stdint.h>.
60244         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
60245         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
60246         int.  Work more efficiently if X is the same width as uintmax_t.
60247         Do not compare X to -1, to avoid bogus compiler warning.
60248         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
60249         Don't assume that f_frsize and f_bsize are the same type.
60250
60251         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
60252         warning on FreeBSD.
60253
60254         * lib/makepath.c (make_path): Restore umask *before* creating the final
60255         component.
60256         (make_path): Minor reformatting.
60257
60258         * lib/xmalloc.c: Adjust to work with new autoconf macros,
60259         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
60260         HAVE_MALLOC/HAVE_REALLOC.
60261
60262         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
60263         dummy ones.  At least on GNU/Linux systems, `auto' means something
60264         else.
60265         From Michael Stone.
60266
60267 2002-11-21  Bruno Haible  <bruno@clisp.org>
60268
60269         Remove case insensitive option matching.
60270         * lib/argmatch.h (argcasematch): Remove declaration.
60271         (ARGCASEMATCH): Remove macro.
60272         (__xargmatch_internal): Remove case_sensitive argument.
60273         (XARGMATCH): Update.
60274         (XARGCASEMATCH): Remove macro.
60275         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
60276         case_sensitive argument.
60277         (argcasematch): Remove function.
60278         (__xargmatch_internal): Remove case_sensitive argument.
60279         (main): Use XARGMATCH instead of XARGCASEMATCH.
60280
60281         * lib/xmalloc.c: Change compile-time error message. Add comment about
60282         required autoconf version.
60283
60284 2002-11-20  Paul Eggert  <eggert@twinsun.com>
60285
60286         Merge argmatch cleanups from Bison.  Assume C89.
60287
60288         * lib/argmatch.c: Include config.h here, not in argmatch.h.
60289         Include stdlib.h, for EXIT_FAILURE.
60290         Always include <string.h>, since we assume C89.
60291         (EXIT_FAILURE): Remove pre-C89 bug workaround.
60292         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
60293         Include <stddef.h> instead, since it's all we need for size_t.
60294         (PARAMS): Remove.  All uses removed.
60295         (ARRAY_CARDINALITY): Do not bother to #undef.
60296         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
60297         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
60298         Remove unnecessary parentheses.
60299         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
60300         Insert necessary parentheses.
60301         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
60302         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
60303
60304 2002-11-19  Bruno Haible  <bruno@clisp.org>
60305
60306         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
60307         * lib/mbswidth.h: Include <stddef.h>, for size_t.
60308
60309         * lib/mbswidth.h (PARAMS): Remove macro.
60310         (mbswidth, mbsnwidth): Use ANSI C function declarations.
60311         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
60312
60313         * lib/gcd.h (PARAMS): Remove macro.
60314         (gcd): Use ANSI C function declarations.
60315         * lib/gcd.c (gcd): Likewise.
60316
60317 2002-11-15  Bruno Haible  <bruno@clisp.org>
60318
60319         * lib/strcspn.c: Include <stddef.h>.
60320         (strcspn): Use ANSI C function declaration. Change return type to
60321         size_t. Use NULL.
60322         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
60323         (strpbrk): Use NULL.
60324         * lib/strpbrk.h (PARAMS): Remove macro.
60325         (strpbrk): Use ANSI C function declaration.
60326         * lib/strstr.c: Don't include <sys/types.h>.
60327         * lib/strstr.h (PARAMS): Remove macro.
60328         (strstr): Use ANSI C function declarations.
60329
60330 2002-11-14  Karl Berry  <karl@gnu.org>
60331
60332         * config/mkinstalldirs: `do' on separate line, instead of
60333         `for var; do'.
60334
60335 2002-11-06  Bruno Haible  <bruno@clisp.org>
60336
60337         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
60338         * lib/gcd.c (gcd): Likewise.
60339
60340 2002-11-05  Bruno Haible  <bruno@clisp.org>
60341
60342         * lib/gcd.h: New file, from gettext-0.11.5.
60343         * lib/gcd.c: New file, from gettext-0.11.5.
60344
60345 2002-11-05  Bruno Haible  <bruno@clisp.org>
60346
60347         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60348         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60349         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60350         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60351
60352         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
60353         <libintl.h>.
60354         * lib/makepath.c: Include gettext.h instead of <locale.h> and
60355         <libintl.h>.
60356
60357         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
60358         * lib/human.c: Include gettext.h instead of <libintl.h>.
60359         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
60360         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
60361         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
60362         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
60363         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
60364         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
60365         (textdomain): Remove definition.
60366         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
60367
60368         * lib/long-options.c: Remove include of <libintl.h> and definition of
60369         _.
60370         * lib/same.c: Remove include of <libintl.h> and definition of _.
60371
60372 2002-11-04  Owen Taylor  <otaylor@redhat.com>
60373
60374         * lib/config.charset: A few additions for Solaris.
60375
60376 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
60377
60378         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
60379         * lib/localcharset.c (locale_charset): Declare as extern "C".
60380
60381 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
60382
60383         * lib/config.charset: msdos in uk_UA uses CP1125.
60384
60385 2002-11-04  Bruno Haible  <bruno@clisp.org>
60386
60387         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
60388         * lib/strcase.h: New file, from GNU gettext-0.11.5.
60389         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
60390         * lib/strstr.h: New file, from GNU gettext-0.11.5.
60391         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
60392
60393 2002-11-04  Bruno Haible  <bruno@clisp.org>
60394
60395         * lib/localcharset.c (locale_charset): Don't return an empty string.
60396
60397 2002-11-04  Bruno Haible  <bruno@clisp.org>
60398
60399         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
60400         aliases.
60401
60402 2002-11-04  Bruno Haible  <bruno@clisp.org>
60403
60404         * lib/config.charset: Update for newest glibc. Add canonical names
60405         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
60406
60407 2002-11-04  Bruno Haible  <bruno@clisp.org>
60408
60409         * lib/config.charset: Add support for NetBSD.
60410
60411 2002-11-04  Bruno Haible  <bruno@clisp.org>
60412
60413         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
60414
60415 2002-11-01  Bruno Haible  <bruno@clisp.org>
60416
60417         * configure.in: Add AC_CONFIG_AUX_DIR call.
60418         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
60419         test/Makefile.
60420         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
60421
60422 2002-09-28  Karl Berry  <karl@gnu.org>
60423
60424         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
60425         installed automake until the next release, since changes have been
60426         made.
60427
60428 2002-09-25  Karl Berry  <karl@gnu.org>
60429
60430         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
60431         * lib/getopt*: copy from libc/posix.
60432         * lib/gettext.h: copy from gettext.
60433         * lib/.cppi-disable: add strdup.c, gettext.h.
60434
60435 2002-09-25  Karl Berry  <karl@gnu.org>
60436
60437         * config/srclist.txt: enable gettext.h check.
60438         * config/config.{guess,sub}: update from prep.
60439         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
60440                 from automake 1.6.3.
60441         See srclist*.
60442
60443 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
60444
60445         * regex.c (PATFETCH): Remove the translating fetch.
60446         (PATFETCH_RAW): Rename to PATFETCH.
60447         (set_image_of_range): New fun.
60448         (SET_RANGE_TABLE_WORK_AREA): Use it.
60449         (regex_compile): Don't translate the pattern chars so eagerly.
60450         Only do it when inserting an `exactn' bytecode or when handling
60451         a char-range.
60452         (mutually_exclusive_p): Avoid empty statement.
60453
60454 2002-07-06  Jim Meyering  <meyering@lucent.com>
60455
60456         * m4/README: Don't mention Makefile.am.in.
60457         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
60458
60459 2002-07-01  Jim Meyering  <meyering@lucent.com>
60460
60461         * lib/c-stack.c: Include sys/time.h.
60462         From Volker Borchert.
60463
60464 2002-06-26  Paul Eggert  <eggert@twinsun.com>
60465
60466         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
60467
60468 2002-06-26  Paul Eggert  <eggert@twinsun.com>
60469
60470         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
60471         New macro.  Use it uniformly instead of
60472         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
60473         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
60474         reported by Vin Shelton.
60475
60476 2002-06-22  Paul Eggert  <eggert@twinsun.com>
60477
60478         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
60479         Do not assume SA_SIGINFO behavior.
60480         Bug reported by Jim Meyering on NetBSD 1.5.2.
60481
60482 2002-06-22  Jim Meyering  <meyering@lucent.com>
60483
60484         * m4/c-stack.m4: New file, from diffutils-2.8.2.
60485         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
60486
60487         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
60488         now that configure.ac uses AC_GNU_SOURCE.
60489         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
60490         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
60491
60492         Update to latest tools.  Suggestions from Paul Eggert.
60493         * m4/stdbool.m4: New file, from diffutils-2.8.2.
60494         * m4/gnu-source.m4: Update from diffutils-2.8.2.
60495         * m4/fnmatch.m4: Likewise.
60496         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
60497         to AC_HEADER_STDBOOL
60498
60499 2002-06-22  Jim Meyering  <meyering@lucent.com>
60500
60501         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
60502         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
60503
60504 2002-06-22  Jim Meyering  <meyering@lucent.com>
60505
60506         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
60507
60508         * lib/exitfail.c, exitfail.h: Likewise.
60509         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
60510
60511         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
60512         of fnmatch.h.
60513         (EXTRA_DIST): Add fnmatch_loop.c.
60514         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
60515
60516         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
60517         * lib/fnmatch.c: Update from diffutils-2.8.2.
60518         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
60519         * lib/fnmatch.h: Remove file.
60520
60521 2002-06-21  Jim Meyering  <meyering@lucent.com>
60522
60523         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
60524         * m4/mbrtowc.m4: Likewise.
60525
60526         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
60527         * m4/mbswidth.m4: Reflect name change:
60528         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
60529         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
60530
60531         * m4/lib-link.m4: Update from gettext-0.11.2.
60532         * m4/gettext.m4: Likewise.
60533
60534         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
60535         From Alfred M. Szmidt.
60536
60537 2002-06-18  Paul Eggert  <eggert@twinsun.com>
60538
60539         * lib/file-type.h: Report an error if neither S_ISREG nor
60540         S_IFREG is defined, instead of using a test specific to glibc
60541         2.2.  This should be safe, since POSIX requires S_ISREG and
60542         Unix Version 7 had S_IFREG.  We don't need to check for
60543         <sys/types.h> since we don't use any symbols that it defines.
60544
60545 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
60546
60547         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
60548         $@-t, so that each temporary file name is unique and valid in the first
60549         8 characters, for operation under DOS.
60550
60551 2002-06-15  Paul Eggert  <eggert@twinsun.com>
60552
60553         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
60554
60555 2002-06-15  Jim Meyering  <meyering@lucent.com>
60556
60557         Work even with DJGPP 2.03, which lacks support for symlinks.
60558         From Richard Dawe.
60559         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
60560         is defined.
60561         * lib/lchown.c (S_ISLNK): Likewise.
60562
60563 2002-06-15  Jim Meyering  <meyering@lucent.com>
60564
60565         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
60566         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
60567         have been included before this file.
60568
60569 2002-06-14  Jim Meyering  <meyering@lucent.com>
60570
60571         * lib/file-type.h: Use the version from diffutils-2.8.2.
60572         * lib/file-type.c: Likewise.
60573
60574 2002-06-07  Jim Meyering  <meyering@lucent.com>
60575
60576         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
60577         They're needed at least for NetBSD 1.5.2.
60578         ($statxfs_includes): Include those same headers.
60579         ($statxfs_includes): Include sys/vfs.h if available.
60580         ($statxfs_includes): Likewise for sys/statvfs.h.
60581         Check for the following members in both structs statfs and statvfs:
60582         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
60583
60584 2002-06-01  Jim Meyering  <meyering@lucent.com>
60585
60586         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
60587         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
60588
60589 2002-05-28  Jim Meyering  <meyering@lucent.com>
60590
60591         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
60592         Reported by Volker Borchert.
60593
60594 2002-05-27  Jim Meyering  <meyering@lucent.com>
60595
60596         Fix a problem seen only on nonconforming systems whereby ls.c's
60597         use of localtime, and then of gettimeofday would cause trouble:
60598         the localtime call used to initialize rpl_gettimeofday's save
60599         mechanism would clobber ls's current local time information so
60600         that in any long listing the first file would always be listed
60601         with date 1970-01-01.  Analysis by Volker Borchert.
60602
60603         * lib/gettimeofday.c (localtime): Undefine.
60604         (rpl_localtime): New function.
60605
60606 2002-05-27  Jim Meyering  <meyering@lucent.com>
60607
60608         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
60609         localtime.
60610
60611         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
60612         use the replacement function; it wouldn't resolve at link time.
60613         Reported by Volker Borchert.
60614
60615 2002-05-22  Jim Meyering  <meyering@lucent.com>
60616
60617         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
60618         file-type.h.
60619         * lib/file-type.h: New file.
60620         * lib/file-type.c (file_type): New file/function.  Extracted from
60621         diffutils.
60622
60623 2002-04-30  Jim Meyering  <meyering@lucent.com>
60624
60625         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
60626
60627 2002-04-29  Paul Eggert  <eggert@twinsun.com>
60628
60629         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
60630
60631 2002-04-29  Paul Eggert  <eggert@twinsun.com>
60632
60633         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
60634         Do not check for alloca.h (no longer used) or stdbool.h (was never
60635         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
60636
60637 2002-04-29  Paul Eggert  <eggert@twinsun.com>
60638
60639         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
60640
60641 2002-04-29  Jim Meyering  <meyering@lucent.com>
60642
60643         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
60644         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
60645         Use AC_FUNC_STRNLEN here instead.
60646
60647         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
60648         With autoconf-2.53a, it's part of AC_PROG_CC.
60649
60650 2002-04-28  Paul Eggert  <eggert@twinsun.com>
60651
60652         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
60653         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
60654
60655 2002-04-28  Paul Eggert  <eggert@twinsun.com>
60656
60657         * lib/sig2str.h, lib/sig2str.c: New files.
60658         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
60659
60660 2002-04-28  Paul Eggert  <eggert@twinsun.com>
60661
60662         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
60663         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
60664         of 127, since 64 is the largest conceivable number for ancient
60665         nonstandard hosts.
60666         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
60667
60668 2002-04-28  Jim Meyering  <meyering@lucent.com>
60669
60670         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
60671
60672 2002-04-24  Jim Meyering  <meyering@lucent.com>
60673
60674         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
60675         (jm_PREREQ): Use it.
60676
60677         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
60678         mach/mach.h fcntl.h.
60679         Check for this function: setlocale.
60680
60681 2002-04-24  Jim Meyering  <meyering@lucent.com>
60682
60683         * lib/gettext.h: New file, from Gettext.
60684         * lib/Makefile.am (INCLUDES): Remove -I../intl.
60685         (libfetish_a_SOURCES): Add gettext.h.
60686
60687 2002-04-16  Jim Meyering  <meyering@lucent.com>
60688
60689         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
60690         ut_pid, ut_id, ut_exit.
60691
60692 2002-04-16  Jim Meyering  <meyering@lucent.com>
60693
60694         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
60695         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
60696         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
60697
60698 2002-04-12  Jim Meyering  <meyering@lucent.com>
60699
60700         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
60701         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
60702         existence of the getmntinfo function.  Needed for Darwin 5.3.
60703
60704         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
60705         This is necessary at least on Darwin 5.3.
60706
60707         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
60708         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
60709         strnlen.o in the library, and that makes some versions of ranlib
60710         object.
60711
60712 2002-04-12  Jim Meyering  <meyering@lucent.com>
60713
60714         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
60715
60716 2002-04-09  Jim Meyering  <meyering@lucent.com>
60717
60718         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
60719         to be more precise.  Rather than saying we're checking whether the
60720         function `works', say what we're testing.
60721         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
60722         Reported by Bruno Haible.
60723
60724 2002-03-10  Jim Meyering  <meyering@lucent.com>
60725
60726         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
60727         Suggestion from Santiago Vila.
60728
60729 2002-03-08  Jim Meyering  <meyering@lucent.com>
60730
60731         * lib/rename.c: Mention that this wrapper is needed also on
60732         mips-dec-ultrix4.4 systems.
60733
60734 2002-03-02  Jim Meyering  <meyering@lucent.com>
60735
60736         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
60737         not HAVE_CLOCK_SETTIME.
60738
60739 2002-02-27  Paul Eggert  <eggert@twinsun.com>
60740
60741         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
60742         Check for clock_settime.
60743
60744 2002-02-27  Paul Eggert  <eggert@twinsun.com>
60745
60746         * lib/nanosleep.h: Rename to....
60747         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
60748
60749         * lib/gettime.c: New file.
60750         * lib/settime.c: New file.
60751         * lib/stime.c: Remove.
60752
60753         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
60754         timespec.h.  Remove nanosleep.h.
60755
60756 2002-02-25  Paul Eggert  <eggert@twinsun.com>
60757
60758         * m4/acl.m4: New file.
60759         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
60760         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
60761
60762 2002-02-25  Paul Eggert  <eggert@twinsun.com>
60763
60764         * lib/acl.c, lib/acl.h: New files.
60765         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
60766
60767 2002-02-24  Jim Meyering  <meyering@lucent.com>
60768
60769         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
60770         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
60771         cause trouble.  Reported by Nelson Beebe.
60772
60773 2002-02-23  Paul Eggert  <eggert@twinsun.com>
60774
60775         * lib/path-concat.c (xpath_concat): Reorder code to pacify
60776         compilers that don't know that xalloc_die never returns.
60777
60778 2002-02-20  Jim Meyering  <meyering@lucent.com>
60779
60780         * lib/getdate.c: Regenerate using bison-1.33.
60781
60782 2002-02-17  Jim Meyering  <meyering@lucent.com>
60783
60784         * config/config.guess (main): Don't use `head -1'; it's no longer
60785         portable. Use `sed 1q' instead.
60786
60787 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
60788
60789         * m4/codeset.m4: Upgrade to gettext-0.11.
60790         * m4/gettext.m4: Upgrade to gettext-0.11.
60791         * m4/glibc21.m4: Upgrade to gettext-0.11.
60792         * m4/iconv.m4: Upgrade to gettext-0.11.
60793         * m4/isc-posix.m4: Upgrade to gettext-0.11.
60794         * m4/lcmessage.m4: Upgrade to gettext-0.11.
60795         * m4/lib-ld.m4: New file, from gettext-0.11.
60796         * m4/lib-link.m4: New file, from gettext-0.11.
60797         * m4/lib-prefix.m4: New file, from gettext-0.11.
60798         * m4/progtest.m4: Upgrade to gettext-0.11.
60799
60800 2002-02-15  Paul Eggert  <eggert@twinsun.com>
60801
60802         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
60803         (jm_PREREQ): Use it.
60804
60805 2002-02-15  Paul Eggert  <eggert@twinsun.com>
60806
60807         * lib/posixver.c, lib/posixver.h: New files.
60808         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
60809
60810 2002-02-02  Paul Eggert  <eggert@twinsun.com>
60811             Bruno Haible  <bruno@clisp.org>
60812
60813         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
60814         (fwrite_success_callback): New declaration.
60815         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
60816         print_unicode_char. Call failure callback instead of error.
60817         (fwrite_success_callback): New function.
60818         (exit_failure_callback): New function.
60819         (fallback_failure_callback): New function.
60820         (print_unicode_char): Call unicode_to_mb.
60821
60822 2002-01-26  Jim Meyering  <meyering@lucent.com>
60823
60824         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
60825         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
60826
60827 2002-01-26  Jim Meyering  <meyering@lucent.com>
60828
60829         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
60830
60831 2002-01-22  Paul Eggert  <eggert@twinsun.com>
60832
60833         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
60834
60835 2002-01-22  Jim Meyering  <meyering@lucent.com>
60836
60837         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
60838         Otherwise, some versions of automake would omit the rule that makes
60839         Makefile from Makefile.in.
60840
60841 2002-01-21  Paul Eggert  <eggert@twinsun.com>
60842
60843         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
60844         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
60845         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
60846         (memcoll): Set errno to zero if there is no error.
60847
60848         * lib/quotearg.c (quotearg_buffer_restyled):
60849         Fix bug with quoting buffers containing NUL when backslashing escapes.
60850         This bug was exposed by the other changes in this patch.
60851         (quotearg_n_options): New arg ARGSIZE.
60852         All callers changed.
60853         (quoting_options_from_style): New function.
60854         (quotearg_n_style): Use it.
60855         (quotearg_n_style_mem): New function.
60856
60857         * lib/quotearg.h (quotearg_n_style_mem): New function.
60858
60859 2002-01-19  Jim Meyering  <meyering@lucent.com>
60860
60861         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
60862         Remove useless quotes: DF_PROG="df".
60863         * m4/strnlen.m4: New file.
60864
60865 2002-01-16  Paul Eggert  <eggert@twinsun.com>
60866
60867         * lib/backupfile.c (ISDIGIT): Comment fix.
60868         * lib/getdate.y (ISDIGIT): Likewise.
60869         * lib/posixtm.c (ISDIGIT, year): Likewise.
60870         * lib/strverscmp.c (ISDIGIT): Likewise.
60871         * lib/userspec.c (ISDIGIT): Likewise.
60872
60873 2002-01-16  Jim Meyering  <meyering@lucent.com>
60874
60875         * lib/getdate.y: Add three semicolons, each just before a closing
60876         brace. Bison (as of version 1.31) no longer papers over that mistake.
60877
60878 2002-01-05  Jim Meyering  <meyering@lucent.com>
60879
60880         * lib/version-etc.c (version_etc_copyright): Update copyright year.
60881
60882 2001-12-19  Paul Eggert  <eggert@twinsun.com>
60883
60884         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
60885         not silently exit merely because the output buffer happens to
60886         have nothing pending.
60887
60888 2001-12-18  Paul Eggert  <eggert@twinsun.com>
60889
60890         See the big note in ../ChangeLog.
60891         * lib/human.c (suffixes): Prefer K to k for 1024.
60892         (generate_suffix_backwards): New function.
60893         (human_readable_inexact): Use it.
60894         * lib/xstrtol.c (__xstrtol): If there is no number but there
60895         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
60896         Accept 'K' as well as 'k'.
60897
60898 2001-12-15  Jim Meyering  <meyering@lucent.com>
60899
60900         * lib/regex.h (__restrict_arr): Update from libc.
60901
60902         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
60903         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
60904         (STREQ): Define.
60905
60906 2001-12-14  Jim Meyering  <meyering@lucent.com>
60907
60908         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
60909         Suggestion from Bruno Haible.
60910
60911 2001-12-10  Jim Meyering  <meyering@lucent.com>
60912
60913         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
60914         xrealloc, Instead, include "xalloc.h".
60915         (initbuffer): Don't cast xmalloc return value to char*.
60916         (readline): Reword comment.
60917         Don't cast xrealloc return value to char*
60918         Return NULL, not 0.
60919
60920 2001-12-09  Jim Meyering  <meyering@lucent.com>
60921
60922         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
60923         about `signed and unsigned type in conditional expression'.
60924         * lib/posixtm.c (posix_time_parse): Likewise.
60925
60926         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
60927
60928         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
60929         to avoid a pedantic warning.
60930
60931         * lib/getstr.c: Don't include assert.h.
60932         (getstr): Remove warning-evoking assertions.
60933         Return -1 if offset parameter is out of bounds.
60934         Change the type of a local from int to size_t.
60935
60936         * lib/strftime.c (my_strftime_localtime_r): Include this function
60937         definition in the `#if ! HAVE_TM_GMTOFF' block.
60938
60939         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
60940         Include xalloc.h instead.
60941
60942 2001-12-02  Jim Meyering  <meyering@lucent.com>
60943
60944         * lib/tempname.c: Don't declare getenv, thus reverting the change of
60945         2001-11-18.  It's no longer necessary, now that stdlib.h is always
60946         included.
60947
60948         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
60949         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
60950
60951 2001-11-30  Akim Demaille  <akim@epita.fr>
60952
60953         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
60954         before being defined.
60955
60956 2001-11-27  Paul Eggert  <eggert@twinsun.com>
60957
60958         * lib/quotearg.h (quotearg_n, quotearg_n_style):
60959         First arg is int, not unsigned.
60960         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
60961         (SIZE_MAX, UINT_MAX): New macros.
60962         (quotearg_n_options): Abort if N is negative.
60963         Avoid overflow check on hosts where size_t is 64 bits and int
60964         is 32 bits, as overflow is impossible there.
60965         Fix off-by-one typo that caused unnecessary reallocation.
60966
60967 2001-11-27  Jim Meyering  <meyering@lucent.com>
60968
60969         * lib/tempname.c: Merge with version from libc.
60970         * lib/regex.c: Likewise.
60971
60972         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
60973         systems for which STDC_HEADERS is 0, it was not included, resulting in
60974         a warning about an integer-to-pointer conversion problem with getenv.
60975         Reported by Volker Borchert.
60976
60977 2001-11-26  Jim Meyering  <meyering@lucent.com>
60978
60979         * lib/gtod.h: Remove file.
60980         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
60981         * lib/gettimeofday.c: Don't include gtod.h.
60982         (GTOD_init): Remove function.
60983         (rpl_gettimeofday): Do its job here instead, rather than aborting.
60984         Suggestion from Volker Borchert.
60985
60986 2001-11-23  Jim Meyering  <meyering@lucent.com>
60987
60988         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
60989         it.
60990         * lib/hash.c (struct hash_table): Define it here instead.
60991
60992 2001-11-22  Jim Meyering  <meyering@lucent.com>
60993
60994         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
60995
60996 2001-11-20  Jim Meyering  <meyering@lucent.com>
60997
60998         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
60999         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
61000
61001 2001-11-19  Jim Meyering  <meyering@lucent.com>
61002
61003         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
61004         directory.  Use "conftestXXXXXX" as the template.
61005         Suggestion from Paul Eggert.
61006
61007         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
61008         immediately, so the test doesn't mistakenly hit the max-open-files
61009         limit.
61010
61011 2001-11-18  Paul Eggert  <eggert@twinsun.com>
61012
61013         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
61014         (TEMPORARIES): New macro.
61015         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
61016         removes an artificial limitation (e.g. HP-UX 10.20, where
61017         TMP_MAX is 17576).
61018
61019 2001-11-18  Jim Meyering  <meyering@lucent.com>
61020
61021         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
61022
61023 2001-11-18  Jim Meyering  <meyering@lucent.com>
61024
61025         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
61026         on SunOS 4.
61027
61028         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
61029         files will be created before anything else.
61030
61031 2001-11-17  Paul Eggert  <eggert@twinsun.com>
61032
61033         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
61034         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
61035
61036 2001-11-17  Jim Meyering  <meyering@lucent.com>
61037
61038         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
61039         Prompted by a report from Bob Proulx.
61040
61041         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
61042         Instead, require UTILS_FUNC_MKSTEMP.
61043
61044 2001-11-17  Jim Meyering  <meyering@lucent.com>
61045
61046         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
61047         Now, that's done as part of AC_FUNC_STRTOD.
61048
61049 2001-11-17  Jim Meyering  <meyering@lucent.com>
61050
61051         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
61052         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
61053         rather than group writable.  Patch by Juan F. Codagnone.
61054
61055         * lib/readtokens.c: Remove explicit declarations of xmalloc and
61056         xrealloc, Instead, include "xalloc.h".
61057
61058         * lib/mountlist.c: Include unlocked-io.h after all system headers.
61059         Remove explicit declarations of xmalloc, xrealloc,
61060         and xstrdup.  Instead, include "xalloc.h".
61061
61062         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
61063         unlocked-io.h.
61064         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
61065         Likewise.
61066         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
61067
61068         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
61069         Reported by Padraig Brady.
61070
61071         * lib/mkstemp.c: #undef mkstemp.
61072         Include config.h.
61073         (rpl_mkstemp): Rename from mkstemp.
61074         Protoize.
61075
61076 2001-11-16  Jim Meyering  <meyering@lucent.com>
61077
61078         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
61079         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
61080         determine the amount of total physical memory, use pstat_getstatic.
61081         HPUX-11 doesn't define _SC_PHYS_PAGES.
61082         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
61083         If sysconf couldn't be used to determine the amount of available
61084         physical memory, use both pstat_getstatic and pstat_getdynamic.
61085         Based on a patch from Bob Proulx.
61086
61087 2001-11-10  Jim Meyering  <meyering@lucent.com>
61088
61089         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
61090         (jm_PREREQ): Use it.
61091
61092 2001-11-09  Jim Meyering  <meyering@lucent.com>
61093
61094         * m4/jm-macros.m4: Require autoconf-2.52f.
61095         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
61096         Use these AC_-prefixed names, not the AM_-prefixed ones.
61097
61098         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
61099
61100 2001-11-05  Jim Meyering  <meyering@lucent.com>
61101
61102         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
61103
61104 2001-11-04  Jim Meyering  <meyering@lucent.com>
61105
61106         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
61107         $DEFS.
61108
61109 2001-11-03  Jim Meyering  <meyering@lucent.com>
61110
61111         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
61112         of AC_DEFUN.
61113
61114         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
61115         know the name of the variable in the macro definition.
61116
61117 2001-11-03  Jim Meyering  <meyering@lucent.com>
61118
61119         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
61120         in argmatch_to_argument call.
61121
61122         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
61123         argument.
61124
61125         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
61126         e.g., a fault due to an attempt to free a NULL pointer.
61127
61128 2001-11-01  Jim Meyering  <meyering@lucent.com>
61129
61130         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
61131         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
61132
61133 2001-11-01  Jim Meyering  <meyering@lucent.com>
61134
61135         * lib/dirfd.c, lib/dirfd.h: New files.
61136         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
61137
61138         * lib/hash.c (hash_print) [TESTING]: Clean up.
61139
61140 2001-10-22  Paul Eggert  <eggert@twinsun.com>
61141
61142         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
61143         to avoid a warning if -Wall.
61144
61145 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
61146
61147         * README: New file
61148         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
61149         (per RMS's instructions, this is now the canonical source)
61150         * lgpl/, gpl/: New directories.
61151
61152 2001-10-21  Paul Eggert  <eggert@twinsun.com>
61153
61154         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
61155
61156 2001-10-21  Jim Meyering  <meyering@lucent.com>
61157
61158         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
61159         this code would end up calling gettext even in packages built
61160         with --disable-nls.
61161         * lib/getopt.c (_): Likewise.
61162         * lib/regex.c (_): Likewise.
61163
61164 2001-10-20  Paul Eggert  <eggert@twinsun.com>
61165
61166         * m4/error.m4 (jm_PREREQ_ERROR):
61167         Do not invoke AC_CHECK_FUNCS with strerror_r, as
61168         AC_FUNC_STRERROR_R does that.
61169         Check for strerror declaration.
61170
61171         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
61172         are supposed to have them these days.
61173         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
61174         Merge changes from latest Autoconf CVS.
61175         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
61176         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
61177         POSIX decided to standardize on the int flavor of strerror_r.
61178
61179 2001-10-20  Paul Eggert  <eggert@twinsun.com>
61180
61181         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
61182         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
61183         Use strerror_r that is only a macro, even if it is not a function.
61184         (strerror): Check for HAVE_DECL_STRERROR before declaring.
61185         (private_strerror): Use prototypes, not old-style function definition.
61186         (print_errno_message): New function.
61187         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
61188         char*-flavored one.
61189         (error_tail, error, error_at_line): Use it.
61190
61191 2001-10-11  Jim Meyering  <meyering@lucent.com>
61192
61193         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
61194         and quote_n (1, ... to avoid clobbering a buffer.
61195
61196 2001-10-05  Jim Meyering  <meyering@lucent.com>
61197
61198         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
61199         hash-pjw.h.
61200         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
61201         * lib/hash-pjw.h: New file.
61202
61203 2001-09-30  Jim Meyering  <meyering@lucent.com>
61204
61205         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
61206         `struct fsstat' has the `f_fstypename' member.
61207         Use that to define FS_TYPE, which is now used to make
61208         the getfsstat link test tighter.
61209
61210 2001-09-30  Jim Meyering  <meyering@lucent.com>
61211
61212         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
61213         Include <sys/ucred.h>, for Apple Darwin.
61214         Include sys/mount.h and sys/fs_types.h only if available.
61215         (FS_TYPE): Define.
61216         (read_filesystem_list): Use FS_TYPE.
61217
61218 2001-09-29  Paul Eggert  <eggert@twinsun.com>
61219
61220         * lib/exclude.c (excluded_filename): 0 -> false, since it's
61221         a boolean context.
61222
61223 2001-09-29  Jim Meyering  <meyering@lucent.com>
61224
61225         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
61226         [one-argument getmntent function]): Include stdio.h before mntent.h.
61227         SunOS 4.1.x needs it for the declaration of `FILE'.
61228         Patch by Volker Borchert.
61229
61230         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
61231         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
61232         sys/fs_types.h, and make the link-test for getfsstat guard #include
61233         directives with appropriate #if HAVE_*_H tests so that we can
61234         detect getfsstat on Apple Darwin1.3.7 systems.
61235         Reported by Nelson Beebe.
61236         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
61237
61238 2001-09-28  Paul Eggert  <eggert@twinsun.com>
61239
61240         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
61241         #defines strtoimax.  Also treat the other strto* functions
61242         like strtoimax.
61243
61244         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
61245         Check for strtoul and strtoumax,
61246         as those declarations are made even in the signed case.
61247         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
61248         Likewise, for strtol and strtoimax.
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         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
61257         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
61258         (strtoimax, strtoumax): Do not declare if already defined as a macro.
61259
61260 2001-09-26  Jim Meyering  <meyering@lucent.com>
61261
61262         Most macros in unlocked-io.h had the wrong number of arguments.
61263         * lib/gen-uio: New script.
61264         (USE_UNLOCKED_IO): Define to 1 if not already defined.
61265         * lib/unlocked-io.hin: Remove file.
61266         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
61267         rather than trying to embed it here.
61268         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
61269         Reported by Padraig Brady.
61270
61271 2001-09-25  Volker Borchert  <bt@teknon.de>
61272
61273         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
61274         `result'.
61275
61276 2001-09-24  Jim Meyering  <meyering@lucent.com>
61277
61278         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
61279
61280 2001-09-23  Jim Meyering  <meyering@lucent.com>
61281
61282         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
61283         instead of the mere test for existence of mntent.h.  The latter
61284         would get a false-positive on AIX 3.4 systems.
61285         In the outer getmntent if-block, don't die if neither of the getmntent
61286         tests succeeds.  Instead, just fall through and continue with the
61287         remaining tests.
61288
61289 2001-09-23  Jim Meyering  <meyering@lucent.com>
61290
61291         * lib/mountlist.c: Remove useless parentheses in #if directives.
61292         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
61293         the deprecated MOUNTED symbol is no longer defined in mntent.h.
61294
61295 2001-09-22  Jim Meyering  <meyering@lucent.com>
61296
61297         * m4/gettext.m4: New file.  From gettext.
61298         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
61299         * m4/progtest.m4: Likewise
61300         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
61301         * m4/glibc21.m4: Likewise.
61302
61303         * m4/libintl.m4: Remove.  No longer used.
61304
61305 2001-09-22  Jim Meyering  <meyering@lucent.com>
61306
61307         * lib/localcharset.c: Update from latest gettext.
61308         * lib/config.charset: Likewise.
61309
61310 2001-09-20  Jim Meyering  <meyering@lucent.com>
61311
61312         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
61313         strtoimax.
61314         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
61315         strtoumax.
61316
61317 2001-09-20  Jim Meyering  <meyering@lucent.com>
61318
61319         * lib/xstrtol.c (strtoimax): Guard declaration with
61320         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
61321         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
61322         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
61323         (strtoumax): Likewise, for completeness (it wasn't necessary).
61324
61325 2001-09-17  Paul Eggert  <eggert@twinsun.com>
61326
61327         * lib/strtoimax.c (HAVE_LONG_LONG):
61328         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
61329         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
61330         to work around bug in IBM C compiler.
61331
61332 2001-09-17  Jim Meyering  <meyering@lucent.com>
61333
61334         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
61335         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
61336         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
61337         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
61338         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
61339         whenever the right hand side need not be expanded by the shell.
61340
61341 2001-09-16  Paul Eggert  <eggert@twinsun.com>
61342
61343         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
61344         library.  It's not correct, as some older glibcs are buggy.
61345         fnmatch wasn't fixed until glibc 2.2.
61346
61347         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
61348         special shell magic here.
61349
61350 2001-09-16  Jim Meyering  <meyering@lucent.com>
61351
61352         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
61353         * m4/jm-macros.m4: Require it.
61354
61355 2001-09-16  Jim Meyering  <meyering@lucent.com>
61356
61357         * lib/mkdir.c: New file.
61358
61359 2001-09-15  Jim Meyering  <meyering@lucent.com>
61360
61361         * m4/jm-macros.m4: Check for help2man.
61362
61363 2001-09-11  Jim Meyering  <meyering@lucent.com>
61364
61365         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
61366         The body, by Paul Eggert, was moved here from configure.in.
61367         * m4/jm-macros.m4: Require UTILS_HOST_OS.
61368
61369 2001-09-04  Paul Eggert  <eggert@twinsun.com>
61370
61371         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
61372         (jm_PREREQ): Use it.
61373
61374 2001-09-04  Paul Eggert  <eggert@twinsun.com>
61375
61376         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
61377         Use ssize_t, not int, to store result of readlink.
61378         Check for ssize_t overflow as well as size_t overflow,
61379         as POSIX says the result of readlink is implementation-defined
61380         when ssize_t overflows.
61381         Remove unnecessary cast to char*.
61382         Use free+malloc instead of realloc, as the storage doesn't need
61383         to be preserved and it's clearer and can be more efficient that way.
61384         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
61385         * lib/xreadlink.h (xreadlink): Update prototype.
61386
61387 2001-09-04  Paul Eggert  <eggert@twinsun.com>
61388
61389         * lib/xgetcwd.c: Revert some of the previous change; intead,
61390         fix the HAVE_GETCWD_NULL code to behave more like the
61391         !HAVE_GETCWD_NULL code used to.
61392
61393         Include "xalloc.h".
61394         (xgetcwd): Do not return NULL when memory is exhausted; instead,
61395         invoke xalloc_die.
61396
61397 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61398
61399         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
61400         sys/param.h, as pathmax.h includes them.
61401
61402 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61403
61404         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
61405         (jm_PREREQ_XGETCWD): New macro.
61406
61407         * m4/getcwd.m4: New file.
61408
61409 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61410
61411         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
61412         like the HAVE_GETCWD_NULL code.
61413         Include pathmax.h if not HAVE_GETCWD.
61414         Do not include xalloc.h.
61415         (INITIAL_BUFFER_SIZE): New symbol.
61416         Do not use xmalloc / xrealloc, since the caller is responsible for
61417         handling errors.  Preserve errno around `free' during failure.
61418         Do not overrun buffer when using getwd.
61419
61420 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61421
61422         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
61423         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
61424         getcwd (NULL, 0).
61425
61426 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61427
61428         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
61429         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
61430         spotted by Jim Meyering.
61431
61432 2001-09-03  Jim Meyering  <meyering@lucent.com>
61433
61434         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
61435         failure.
61436
61437 2001-09-02  Jim Meyering  <meyering@lucent.com>
61438
61439         * lib/error.c: Update from GNU libc.
61440
61441 2001-09-01  Jim Meyering  <meyering@lucent.com>
61442
61443         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
61444         Used by df.
61445
61446 2001-09-01  Jim Meyering  <meyering@lucent.com>
61447
61448         * lib/xreadlink.c: New file.
61449         * lib/xreadlink.h: New file.
61450         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
61451         xreadlink.h.
61452
61453         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
61454         doesn't conflict with sparc Solaris 7's definition in
61455         /usr/include/sys/int_types.h.
61456
61457         * lib/exclude.c: Use `""', not `<>' to #include non-system header
61458         files.
61459         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
61460         and strncasecmp as r-values.  Unixware didn't have declarations.
61461
61462 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61463
61464         * lib/xstrtol.h: Add copyright notice.
61465         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
61466         LONGINT_INVALID_SUFFIX_CHAR.
61467
61468 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61469
61470         * lib/xstrtol.c (strtoimax): New decl.
61471
61472 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61473
61474         * lib/xgetcwd.c: Don't include pathmax.h.
61475         Include stdlib.h and unistd.h if available.
61476         Include xalloc.h.
61477         (xmalloc, xstrdup, free): Remove decls.
61478         (xgetcwd): Don't assume sizes fit in unsigned.
61479         Check for overflow when computing sizes.
61480         Simplify reallocation code.
61481
61482 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61483
61484         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
61485         a directory's st_size can have an arbitrary value, so the old
61486         usage could waste an arbitrary amount of memory.  All uses
61487         changed.
61488         * lib/savedir.h: Update prototype.
61489
61490 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61491
61492         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
61493
61494         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
61495         old strtoimax.c.
61496
61497         Also, make the following further changes to make this file's
61498         configuration more similar to that of strtol.c:
61499         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
61500         (strtoumax, uintmax_t, strtoull, strtol): Remove.
61501         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
61502         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
61503         changed to signed values.
61504
61505         And make the following changes as well:
61506         Fix copyright notice, as 1999 was missing.
61507         (verify): New macro.
61508         (strtoimax): Check sizes at compile-time, not run-time.
61509         Prefer strtol to strtoll if both work.
61510         (main): Remove; it was not that useful and was a pain to maintain.
61511
61512         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
61513
61514 2001-08-31  Jim Meyering  <meyering@lucent.com>
61515
61516         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
61517         Use an initial, malloc'd, buffer of length 128 rather than
61518         a statically allocated one of length 1024.
61519
61520 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61521
61522         Simplify code, partly by assuming autoconf 2.52 semantics.
61523
61524         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
61525
61526         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
61527         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
61528         All uses removed.
61529         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
61530         Move AC_REQUIRE to next-to-top level, to avoid confusion.
61531         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
61532         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
61533         jm_AC_HEADER_INTTYPES_H.
61534         * m4/jm-macros.m4 (jm_MACROS): Likewise.
61535
61536         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
61537
61538         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
61539         Quote first arg of AC_DEFUN.
61540         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
61541         since they are needed to parse the include file even if we need
61542         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
61543         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
61544         but with opposite signedness.
61545
61546 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61547
61548         Merge 'exclude' changes from tar 1.13.22.
61549         This fixes one or two unlikely storage allocation overflow bugs,
61550         but doesn't change user-visible behavior otherwise.
61551
61552 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61553
61554         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
61555         (jm_PREREQ_EXCLUDE): New macro.
61556
61557 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61558
61559         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
61560         tm to be declared.
61561
61562 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61563
61564         * lib/hash.c: Remove '2001' from copyright notice.
61565
61566 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61567
61568         * lib/full-write.h: New file.
61569         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
61570         * lib/full-write.c: Correct credits, as cccp.c no longer
61571         exists and anyway it was so heavily changed from the old cccp
61572         code as to be unrecognizable.  Include full-write.h.
61573         (full_write) Return size_t, with short writes meaning failure.
61574         All callers changed.  This fixes a bug with large buffers
61575         on 64-bit hosts.
61576         * lib/utime.c: Include full-write.h.
61577
61578 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61579
61580         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
61581         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
61582         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
61583         Include if available.
61584         (<xalloc.h>): Include
61585         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
61586         (verify): New macro.  Use it to verify that EXCLUDE macros do not
61587         collide with FNM macros.
61588         (struct patopts): New struct.
61589         (struct exclude): Use it, as exclude patterns now come with options.
61590         (new_exclude): Support above changes.
61591         (new_exclude, add_exclude_file):
61592         Initial size must now be a power of two to simplify overflow checking.
61593         (free_exclude, fnmatch_no_wildcards): New function.
61594         (excluded_filename): No longer requires options arg, as the options
61595         are determined by add_exclude.  Now returns bool, not int.
61596         (excluded_filename, add_exclude):
61597         Add support for the fancy new exclusion options.
61598         (add_exclude, add_exclude_file): Now takes int options arg.
61599         Check for arithmetic overflow when computing sizes.
61600         (add_exclude_file): xrealloc might modify errno, so don't
61601         realloc until after errno might be used.
61602
61603         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
61604         New macros.
61605         (free_exclude): New decl.
61606         (add_exclude, add_exclude_file): Now takes int options arg.
61607         (excluded_filename): No longer requires options arg, as the options
61608         are determined by add_exclude.  Now returns bool, not int.
61609
61610 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61611
61612         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
61613
61614 2001-08-27  Jim Meyering  <meyering@lucent.com>
61615
61616         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
61617
61618         * lib/version-etc.c (N_): Remove definition.
61619         Revert most of last change.
61620         Instead, simply don't mark the `Copyright...' string for translation.
61621         Based on advice from Paul Eggert.
61622
61623         * lib/strtoxmax.c: Tweak comment.
61624
61625 2001-08-26  Jim Meyering  <meyering@lucent.com>
61626
61627         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
61628
61629         * m4/xstrtoimax.m4: New file.
61630         * m4/xstrtoumax.m4: Add comments explaining why we
61631         AC_REPLACE_FUNCS(strtol).
61632
61633 2001-08-26  Jim Meyering  <meyering@lucent.com>
61634
61635         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
61636         of copyright with `%s' so translators don't get an untranslated
61637         message in 2002.
61638         (COPYRIGHT_YEAR): Define.
61639         (version_etc): Use fprintf rather than fputs.
61640         Suggestion from Ulrich Drepper.
61641
61642         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
61643
61644         * lib/strtoll.c: New file, from GNU libc.
61645         * lib/xstrtoimax.c: New file.
61646
61647         * lib/xstrtol.h: Add xstrtoimax.
61648         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
61649         * lib/strtoimax.c: New file.  Likewise, but first define
61650         STRTOUXMAX_SIGNED.
61651
61652         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
61653         ...
61654         * lib/strtoxmax.c: ... then renamed to this.
61655
61656 2001-08-18  Paul Eggert  <eggert@twinsun.com>
61657
61658         * m4/inttypes.m4: Add AC_PREREQ(2.13).
61659         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
61660         (jm_AC_TYPE_INTMAX_T): New macro.
61661         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
61662
61663         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
61664
61665         * m4/longlong.m4: Renamed from ulonglong.m4.
61666         * m4/inttypes.m4: Renamed from inttypes_h.m4.
61667         * m4/uintmax_t.m4: Removed.
61668
61669 2001-08-13  Paul Eggert  <eggert@twinsun.com>
61670
61671         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
61672         Port to Solaris 8, where 'sed' requires a space after the 'r'
61673         command, and where sh dislikes "$/".  Clean up the spacing a bit.
61674         Redirect output to $tmp just once.
61675
61676 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
61677
61678         * lib/addext.c (<errno.h>): Include.
61679         (errno): Declare if not defined.
61680         (addext): Work correctly when pathconf returns -1 and leaves
61681         errno alone because there is no limit.  Also, work even if
61682         pathconf returns a value greater than SIZE_MAX.
61683
61684 2001-08-12  Jim Meyering  <meyering@lucent.com>
61685
61686         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
61687         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
61688         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
61689         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
61690         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
61691         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
61692         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
61693         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
61694         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
61695         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
61696         utime.m4, utimes.m4, xstrtoumax.m4:
61697         Quote the first argument in each use of AC_DEFUN.
61698
61699 2001-08-12  Jim Meyering  <meyering@lucent.com>
61700
61701         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
61702         Simply `return getcwd (NULL, 0);'.
61703         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
61704         Use 1300 as initial value for length, not PATH_MAX.
61705
61706         * lib/pathmax.h: Clean up cpp syntax.
61707
61708 2001-08-12  Jim Meyering  <meyering@lucent.com>
61709
61710         * lib/gettimeofday.c: New file.
61711         * lib/gtod.h: New file.
61712         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
61713
61714 2001-08-05  Jim Meyering  <meyering@lucent.com>
61715
61716         * m4/jm-macros.m4: Require autoconf-2.52.
61717
61718 2001-08-04  Jim Meyering  <meyering@lucent.com>
61719
61720         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
61721         stmt, to get in sync with glibc.
61722
61723 2001-08-03  Paul Eggert  <eggert@twinsun.com>
61724
61725         The following changes are from gettext 0.10.39 as maintained by
61726         Bruno Haible.
61727
61728         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
61729         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
61730         with inverted sense.  All uses changed.
61731
61732         * lib/mbswidth.c: Don't include <limits.h>.
61733         Include <stdlib.h> and <string.h> unconditionally.
61734         (iswcntrl, mbsinit, ISCNTRL): New macros.
61735         (mbsnwidth): Use K&R style function declarations.
61736         Don't bother checking for MB_LEN_MAX == 1, since the compiler
61737         can optimize it when MB_CUR_MAX == 1.
61738         The width of control characters is zero, not 1.
61739
61740 2001-08-03  Paul Eggert  <eggert@twinsun.com>
61741
61742         The following changes are from gettext 0.10.39 as maintained by
61743         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
61744
61745         * m4/codeset.m4: Upgrade to serial AM1.
61746         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
61747         all uses changed.  Quote first arg of AC_DEFUN.
61748         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
61749
61750         * m4/iconv.m4: Upgrade to serial AM2.
61751         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
61752         Add --with-libconv-prefix.
61753         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
61754         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
61755         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
61756         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
61757         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
61758
61759         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
61760         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
61761         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
61762         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
61763         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
61764         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
61765         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
61766         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
61767         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
61768
61769         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
61770         string.h any more.
61771
61772         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
61773         not the default value.
61774
61775         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
61776         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
61777         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
61778         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
61779         Also check for iswcntrl, used for wcwidth fallback.
61780         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
61781         to Autoconf 2.13.
61782
61783 2001-08-03  Jim Meyering  <meyering@lucent.com>
61784
61785         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
61786         as it was in the original.  Reported by Paul Eggert.
61787
61788 2001-07-16  Jim Meyering  <meyering@lucent.com>
61789
61790         * m4/gettimeofday.m4: New file.
61791         Prompted by a report from Bernhard Baehr.
61792
61793 2001-07-15  Jim Meyering  <meyering@lucent.com>
61794
61795         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
61796         stuff. Now it's in ../Makefile.cfg.
61797
61798 2001-07-15  Jim Meyering  <meyering@lucent.com>
61799
61800         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
61801         (BUILT_SOURCES): Add unlocked-io.h.
61802         (io_functions): Define.
61803         (unlocked-io.h): New rule.
61804         (DISTCLEANFILES): Add unlocked-io.h.
61805         (all-local): Depend on unlocked-io.h, to ensure it is created.
61806
61807         * lib/unlocked-io.hin: New file
61808
61809         * lib/regex.c: Update from glibc.
61810
61811 2001-07-05  Jim Meyering  <meyering@lucent.com>
61812
61813         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
61814         recommendation.
61815         (libfetish_a_SOURCES): Put all .h files here instead.
61816         Remove a thus-exposed (better checks in automake) duplicate and
61817         two unnecessary .h files.
61818
61819 2001-07-04  Jim Meyering  <meyering@lucent.com>
61820
61821         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
61822         that generates jm-glibc-io.m4 so that it doesn't trigger any make
61823         distcheck failure.
61824
61825 2001-07-02  Jim Meyering  <meyering@lucent.com>
61826
61827         The following changes were prompted by suggestions from Bruno Haible.
61828
61829         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
61830         is now generated.
61831         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
61832         definition of EXTRA_DIST.
61833         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
61834         ensure that the generated file is created/updated whenever the list
61835         of $(unlocked_functions) is changed.
61836         (jm-glibc-io.m4): New rule.
61837         (unlocked-io.h): New rule -- currently unused.
61838
61839 2001-06-24  Jim Meyering  <meyering@lucent.com>
61840
61841         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
61842         unmatched right bracket, rather than kludging it with an extra,
61843         falsely-matching quote in a comment.  Patch by Akim Demaille.
61844
61845 2001-06-11  Jim Meyering  <meyering@lucent.com>
61846
61847         * lib/regex.c: Update from GNU libc.
61848
61849 2001-05-27  Jim Meyering  <meyering@lucent.com>
61850
61851         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
61852         Check for ut_type in struct utmp.
61853
61854 2001-05-27  Jim Meyering  <meyering@lucent.com>
61855
61856         * lib/readutmp.h (UT_TYPE): Define.
61857
61858 2001-05-24  Jim Meyering  <meyering@lucent.com>
61859
61860         * lib/argmatch.c: Include "quote.h".
61861         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
61862         quote function.  Reported by Göran Uddeborg.
61863
61864 2001-05-22  Jim Meyering  <meyering@lucent.com>
61865
61866         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
61867         now that we use the package-supplied version unconditionally.
61868         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
61869
61870 2001-05-21  Jim Meyering  <meyering@lucent.com>
61871
61872         * m4/regex.m4: Change a couple backticks to single quotes to avoid
61873         shell syntax errors.
61874
61875 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
61876
61877         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
61878
61879 2001-05-20  Paul Eggert  <eggert@twinsun.com>
61880
61881         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
61882         Don't bother to check library strftime, since
61883         we'll be using our own my_strftime function anyway.
61884         Define my_strftime instead of strftime.
61885
61886 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
61887
61888         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
61889         which is not yet declared.
61890
61891 2001-05-15  Jim Meyering  <meyering@lucent.com>
61892
61893         * m4/regex.m4: Use proper quoting so brackets appear in the test
61894         program.
61895         Reported by, and with help from, Bruno Haible.
61896
61897 2001-05-13  Jim Meyering  <meyering@lucent.com>
61898
61899         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
61900         undefined.
61901
61902 2001-05-11  Paul Eggert  <eggert@twinsun.com>
61903
61904         dirname code cleanup.  base_name now behaves more compatibly
61905         with POSIX basename when given file names that have trailing
61906         slashes, and similarly for dir_name.  Add new primitives
61907         base_len and dir_len.  Put the directory-name-related decls
61908         into dirname.h.
61909
61910         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
61911         * lib/backupfile.c (base_name): Likewise.
61912         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
61913         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
61914         * lib/makepath.c (strip_trailing_slashes): Likewise.
61915         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
61916         ISSLASH): Likewise.
61917         * lib/rename.c (strip_trailing_slashes): Likewise.
61918         * lib/same.c (base_name): Likewise.
61919         * lib/stripslash.c (ISSLASH): Likewise.
61920
61921         * lib/addext.c: Include <dirname.h> after size_t is defined.
61922         * lib/backupfile.c: Likewise.
61923
61924         * lib/addext.c (addext): Use base_len to trim redundant
61925         trailing slashes instead of doing it ourselves.
61926         But do not trim the last slash if it is not redundant.
61927
61928         * lib/backupfile.c (find_backup_file_name,
61929         max_backup_version): Use base_len instead of rolling it ourselves.
61930         Handle the case of "" and (on DOS) "C:" correctly.
61931
61932         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
61933         needed. Include <string.h>, <dirname.h>.
61934         (base_name): Allow file names ending in slashes, other than names
61935         that are all slashes.  In this case, return the basename followed
61936         by the slashes.  This is more general, and can be used in places
61937         where the original base_name purposely had an assertion failure.
61938         (base_len): New function.
61939
61940         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
61941         Do not include <assert.h>; no longer needed.
61942         Include xalloc.h.
61943         (memrchr): Remove decl.
61944         (dir_name_r): Remove.
61945         (dir_len): Renamed from dirlen.  All callers changed.
61946         Rewrite in terms of base_name, for simplicity and consistency.
61947         (dir_name): Never return NULL.  All callers changed.
61948         Do not include <stdlib.h> in test program; no longer needed.
61949         return 0; is fine for test program.
61950
61951         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
61952         New macros.
61953         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
61954
61955         * lib/path-concat.c (path_concat): Use base_len to compute
61956         base length, not strlen; this means we cannot rely on memcpy
61957         to null-terminate.
61958
61959         * lib/same.c (STREQ): Remove.
61960         (same_name): Handle the case where the basename ends in trailing '/'.
61961
61962         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
61963         a slash was stripped.  Do not strip the last slash after a
61964         file system prefix.
61965
61966 2001-05-11  Paul Eggert  <eggert@twinsun.com>
61967
61968         * lib/Makefile.am (libfetish_a_SOURCES):
61969         Add strftime.c, since we now compile it on all hosts.
61970
61971         * lib/strftime.c (my_strftime):
61972         Define to nstrftime if emacs, but only if my_strftime is not defined.
61973         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
61974         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
61975         Add one more extra argument: a nanoseconds value.
61976         All uses changed.
61977         (ns): New macro.
61978         (my_strftime function): Add %N format.
61979         (emacs_strftimeu): Renamed from emacs_strftime,
61980         with extra ut argument.
61981
61982 2001-05-09  Paul Eggert  <eggert@twinsun.com>
61983
61984         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
61985
61986 2001-04-21  Jim Meyering  <meyering@lucent.com>
61987
61988         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
61989         doesn't interfere.
61990
61991 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
61992
61993         * m4/ftruncate.m4: Check for chsize.
61994         Link with ftruncate.o unconditionally if ftruncate is missing.
61995         This was required when cross-compiling to i586-mingw32msvc.
61996
61997 2001-04-08  Jim Meyering  <meyering@lucent.com>
61998
61999         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
62000         recomputed; that's necessary when the offset spans a DST transition.
62001         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
62002
62003 2001-04-02  Jim Meyering  <meyering@lucent.com>
62004
62005         * lib/regex.h, regex.c: Update from GNU libc.
62006
62007 2001-03-24  Jim Meyering  <meyering@lucent.com>
62008
62009         * m4/jm-macros.m4: Require autoconf-2.49d.
62010
62011 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
62012
62013         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
62014
62015 2001-03-19  Paul Eggert  <eggert@twinsun.com>
62016
62017         * lib/version-etc.c (version_etc_copyright): Update to 2001.
62018
62019 2001-03-17  Jim Meyering  <meyering@lucent.com>
62020
62021         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
62022         now that the version in autoconf is equivalent.
62023         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
62024
62025         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
62026         Suggestion from Akim Demaille.
62027
62028         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
62029         (jm_PREREQ_TEMPNAME): New function.
62030
62031 2001-03-16  Paul Eggert  <eggert@twinsun.com>
62032
62033         * lib/tempname.c (uint64_t): Define to uintmax_t if
62034         not defined, and if UINT64_MAX is not defined.
62035         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
62036         Reported by John David Anglin.
62037
62038 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
62039
62040         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
62041         resolve alias if codeset is empty.
62042         * lib/config.charset (BeOS): Use wildcard syntax.
62043
62044 2001-03-13  Jim Meyering  <meyering@lucent.com>
62045
62046         * lib/path-concat.c (path_concat)
62047         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
62048         concatenating e.g., `C:' and `foo'.
62049         From Bruno Haible.
62050
62051 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
62052
62053         * lib/localcharset.c (locale_charset): Don't use
62054         setlocale(LC_CTYPE,NULL). Don't return NULL.
62055         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
62056
62057 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
62058
62059         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
62060         support for DOS/DJGPP.
62061
62062 2001-03-01  Paul Eggert  <eggert@twinsun.com>
62063
62064         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
62065         lacks mkstemp.  Compile our own tempname.c if we compile our own
62066         mkstemp.c, as mkstemp relies on tempname.
62067
62068 2001-03-01  Jim Meyering  <meyering@lucent.com>
62069
62070         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
62071         AH_VERBATIM really does output its argument verbatim.
62072
62073 2001-02-28  Paul Eggert  <eggert@twinsun.com>
62074
62075         * lib/Makefile.am (libfetish_a_SOURCES):
62076         Add dup-safer.c, fopen-safer.c.
62077         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
62078
62079         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
62080         * lib/unistd-safer.h: New files.
62081
62082 2001-02-25  Paul Eggert  <eggert@twinsun.com>
62083
62084         The mkstemp replacement is taken from glibc 2.2.2, with some
62085         portability fixes for use outside glibc, as follows:
62086
62087         * lib/tempname.c (struct_stat64): New macro.
62088         (direxists, __gen_tempname): Use it.
62089         This avoids a portability problem with Solaris 8.
62090
62091         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
62092         (<stddef.h>, <stdint.h>, <string.h>):
62093         Include only if STDC_HEADERS || _LIBC.
62094         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
62095         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
62096         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
62097         (__set_errno): Define this macro if <errno.h> doesn't.
62098         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
62099         Define these macros if <stdio.h> doesn't.
62100         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
62101         Define these macros if <sys/stat.h>
62102         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
62103         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
62104         __xstat64): Define if not _LIBC.
62105         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
62106         (__gen_tempname): Invoke gettimeofday only if
62107         HAVE_GETTIMEOFDAY || _LIBC;
62108         otherwise, fall back on plain "time".
62109         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
62110
62111         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
62112
62113         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
62114
62115 2001-02-18  Paul Eggert  <eggert@twinsun.com>
62116
62117         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
62118
62119 2001-02-17  Paul Eggert  <eggert@twinsun.com>
62120
62121         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
62122         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
62123         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
62124         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
62125
62126 2001-02-17  Paul Eggert  <eggert@twinsun.com>
62127
62128         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
62129         Remove workaround macros for hosts that have mbrtowc but not
62130         mbstate_t, as we now insist on proper declarations for both
62131         before using mbrtowc.
62132
62133 2001-02-17  Jim Meyering  <meyering@lucent.com>
62134
62135         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
62136         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
62137         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
62138         UnixWare 7.1.1.
62139
62140         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
62141         rather than AC_CACHE_VAL.
62142
62143 2001-02-17  Jim Meyering  <meyering@lucent.com>
62144
62145         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
62146         around included file name.
62147
62148         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
62149
62150         * lib/strftime.c: Update from GNU libc (the only changes were to
62151         comments).
62152
62153 2001-02-17  Jim Meyering  <meyering@lucent.com>
62154
62155         * lib/regex.c: Update from libc.
62156
62157 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
62158
62159         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
62160         clash.
62161
62162 2001-02-16  Paul Eggert  <eggert@twinsun.com>
62163
62164         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
62165         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
62166         Reported by Mark Hounschell via Paul Eggert.
62167
62168 2001-02-07  Jim Meyering  <meyering@lucent.com>
62169
62170         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
62171
62172 2001-02-05  Jim Meyering  <meyering@lucent.com>
62173
62174         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
62175         it includes the patch required for `large file' support with at least
62176         HP-UX's 10.20 /bin/cc.
62177
62178 2001-02-03  Jim Meyering  <meyering@lucent.com>
62179
62180         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
62181         AS_IF, now that it works once again (mysteriously).
62182         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
62183
62184 2001-01-30  Jim Meyering  <meyering@lucent.com>
62185
62186         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
62187         * m4/chown.m4: Rename conftestchown to conftest.chown.
62188         * m4/rename.m4: s/conftestdir/conftest.d1/ and
62189         s/conftestdir2/conftest.d2/.
62190         * m4/utimes.m4: s/conftestdata/conftest.data/
62191         Inspired by Pavel Roskin's change in autoconf.
62192
62193 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
62194
62195         * lib/config.charset: Update for FreeBSD 4.2.
62196
62197 2001-01-27  Jim Meyering  <meyering@lucent.com>
62198
62199         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
62200         a use of AS_IF.
62201         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
62202
62203 2001-01-26  Jim Meyering  <meyering@lucent.com>
62204
62205         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
62206         quotearg.c includes it.
62207
62208 2001-01-26  Jim Meyering  <meyering@lucent.com>
62209
62210         * lib/quotearg.c: Include stddef.h.
62211         * lib/quote.c: Include stddef.h.
62212         Reported by Axel Kittenberger.
62213
62214         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
62215         line in double quotes so that it evokes a better diagnostic.
62216         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
62217         Reported by Axel Kittenberger.
62218
62219 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
62220
62221         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
62222         as if it was a `charset'.
62223
62224 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
62225
62226         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
62227         has const.
62228
62229 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
62230
62231         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
62232         to avoid a warning.  Add back 'const' to inptr.
62233
62234 2001-01-20  Jim Meyering  <meyering@lucent.com>
62235
62236         Be sure that headers are checked before used in code compiled
62237         for the type checks.
62238         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
62239         In place of that, invoke jm_CHECK_ALL_TYPES.
62240         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
62241         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
62242         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
62243         The check for ssize_t was mistakenly run before the test for unistd.h.
62244
62245         The configure-time check for stdbool.h was missing.
62246         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
62247         (jm_PREREQ_HASH): New function.
62248
62249 2001-01-17  Jim Meyering  <meyering@lucent.com>
62250
62251         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
62252         for autoconf-2.49c.
62253         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
62254
62255 2001-01-16  Jim Meyering  <meyering@lucent.com>
62256
62257         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
62258         From Bruno Haible.
62259
62260 2001-01-14  Jim Meyering  <meyering@lucent.com>
62261
62262         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
62263         foo and bar.  Create conftestdir/ in the script, not in the C code.
62264         Remove directories in the script, not in the C code.
62265         Remove conftestdir{,2} before trying to create the directory.
62266         Make the entire configure script fail if the mkdir fails.
62267
62268 2001-01-14  Jim Meyering  <meyering@lucent.com>
62269
62270         * lib/rename.c: New file.  From Volker Borchert.
62271         Include stdlib.h, string.h or strings.h, and xalloc.h.
62272         Use strip_trailing_slashes rather than open-coding it.
62273
62274 2001-01-03  Paul Eggert  <eggert@twinsun.com>
62275
62276         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
62277
62278 2001-01-03  Jim Meyering  <meyering@lucent.com>
62279
62280         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
62281         of local `inptr' to avoid warning with some system declarations of
62282         iconv.
62283
62284 2001-01-02  Volker Borchert  <bt@teknon.de>
62285
62286         * m4/rename.m4: New file.
62287         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
62288
62289 2001-01-01  Jim Meyering  <meyering@lucent.com>
62290
62291         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
62292         even on systems with utmpx.h.  It's necessary for the declaration of
62293         utmp's ut_user member.  Reported by Andreas Jaeger.
62294
62295         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
62296         available. They are required for the declarations of getgrgid and
62297         getpwuid resp.
62298         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
62299         Reported by Andreas Jaeger.
62300
62301 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
62302
62303         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
62304         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
62305         so `make install' also works in VPATH builds.
62306
62307 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
62308
62309         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
62310         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
62311         can be used in subdirectories.
62312
62313 2000-12-29  Paul Eggert  <eggert@twinsun.com>
62314
62315         * lib/modechange.c: Do not assume that mode_t uses the
62316         traditional octal encoding.  E.g. "chmod 1 FOO" should set
62317         the other-execute bit of FOO even if S_IXOTH != 1.
62318
62319         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
62320         WOTH, XOTH, ALLM): New macros.
62321         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
62322          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
62323         Use them.
62324         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
62325         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
62326         (mode_compile):
62327         No need to use uintmax_t; unsigned long is long enough.
62328         Don't bother to get suffix since we don't use it.
62329
62330 2000-12-26  Jim Meyering  <meyering@lucent.com>
62331
62332         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
62333         better with autoheader.
62334
62335 2000-12-24  Jim Meyering  <meyering@lucent.com>
62336
62337         * lib/hash.c (is_prime): Return explicit boolean values.
62338         (hash_get_first): Return NULL to appease Irix5.6's 89.
62339         Reported by Nelson Beebe.
62340
62341 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
62342
62343         * lib/localcharset.c (locale_charset): Add support for Win32.
62344
62345 2000-12-18  Paul Eggert  <eggert@twinsun.com>
62346
62347         * lib/physmem.h, lib/physmem.c: New files.
62348
62349         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
62350         (noinst_HEADERS): Add physmem.h.
62351
62352         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
62353         't' for compatibility with Solaris 8 sort.
62354
62355 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
62356
62357         * lib/config.charset: Add support for BeOS.
62358
62359 2000-12-17  Jim Meyering  <meyering@lucent.com>
62360
62361         * m4/dos.m4 (jm_AC_DOS): New file and macro.
62362         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
62363
62364 2000-12-16  Jim Meyering  <meyering@lucent.com>
62365
62366         This bug had a serious impact on chown: `chown N:M FILE' (for integer
62367         N and M) would have treated it like `chown N:N FILE'.
62368
62369         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
62370
62371 2000-12-16  Jim Meyering  <meyering@lucent.com>
62372
62373         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
62374         SHELLS_FILE to a file name that's useful on djgpp systems.
62375         Include stdlib.h.
62376         (ADDITIONAL_DEFAULT_SHELLS): Define.
62377         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
62378         Based mostly on a patch from Prashant TR.
62379
62380 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
62381
62382         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
62383         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
62384         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
62385
62386 2000-12-08  Andreas Schwab  <schwab@suse.de>
62387
62388         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
62389         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
62390
62391 2000-12-07  Jim Meyering  <meyering@lucent.com>
62392
62393         * lib/stripslash.c (ISSLASH): Define.
62394         (strip_trailing_slashes): Use ISSLASH rather than comparing against
62395         `/'.
62396         From Prashant TR.
62397
62398         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
62399         (dir_name_r): Declare this function as static.
62400         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
62401         manifest itself on a name containing a mix of slashes and
62402         backslashes.
62403         Make this function work with names starting with a DOS-style
62404         drive letter and colon prefix.
62405         (dir_name): Append `.' if necessary.
62406         Based mostly on patches from Prashant TR and Eli Zaretskii.
62407
62408         * lib/dirname.h (dir_name_r): Remove prototype.
62409
62410 2000-12-06  Paul Eggert  <eggert@twinsun.com>
62411
62412         * m4/off_t-format.m4: Remove this file.
62413         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
62414
62415 2000-12-06  Jim Meyering  <meyering@lucent.com>
62416
62417         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
62418         replacement strtoull, we may well need the replacement strtoul, too.
62419         Check for declarations of strtoul and strtoull.
62420         Check for strtol.  Mainly as a cue to cause automake to include
62421         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
62422         Check for limits.h -- strtol.c needs it.
62423
62424 2000-12-05  Jim Meyering  <meyering@lucent.com>
62425
62426         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
62427
62428 2000-12-04  Jim Meyering  <meyering@lucent.com>
62429
62430         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
62431         Also include memory.h, stdlib.h, unistd.h if appropriate.
62432         Reported by Andreas Jaeger (conflicting declaration of malloc).
62433
62434 2000-12-02  Jim Meyering  <meyering@lucent.com>
62435
62436         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
62437         * m4/jm-macros.m4 (jm_MACROS): require it.
62438
62439 2000-12-02  Jim Meyering  <meyering@lucent.com>
62440
62441         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
62442
62443 2000-12-01  Paul Eggert  <eggert@twinsun.com>
62444
62445         * lib/memrchr.c: Include <config.h> before any system include file.
62446
62447 2000-11-30  Jim Meyering  <meyering@lucent.com>
62448
62449         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
62450
62451 2000-11-30  Jim Meyering  <meyering@lucent.com>
62452
62453         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
62454
62455 2000-11-29  Paul Eggert  <eggert@twinsun.com>
62456
62457         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
62458
62459 2000-11-26  Jim Meyering  <meyering@lucent.com>
62460
62461         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
62462
62463 2000-11-22  Paul Eggert  <eggert@twinsun.com>
62464
62465         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
62466         size of (size_t) -1; it's not portable.
62467
62468 2000-11-17  Jim Meyering  <meyering@lucent.com>
62469
62470         * lib/strstr.c: Update from GNU libc.
62471
62472 2000-11-17  Akim Demaille  <akim@epita.fr>
62473
62474         * lib/obstack.h: Formatting changes.
62475         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
62476         prevent type checking.
62477         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
62478         cast the value to (void *): assigning a `foo *' to a `void *'
62479         variable is valid.
62480         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
62481
62482 2000-11-16  Jim Meyering  <meyering@lucent.com>
62483
62484         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
62485
62486 2000-11-11  Jim Meyering  <meyering@lucent.com>
62487
62488         * lib/error.c: Add a couple #includes, merging from GNU libc version.
62489
62490 2000-11-10  Jim Meyering  <meyering@lucent.com>
62491
62492         * lib/obstack.h: Update from GNU libc.
62493         * lib/obstack.c: Likewise.
62494
62495 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
62496
62497         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
62498
62499 2000-11-06  Paul Eggert  <eggert@twinsun.com>
62500
62501         * lib/getusershell.c (setusershell): Use rewind rather than
62502         fseek/fseeko, to avoid configuration hassles with fseeko.
62503         Don't bother opening SHELLS_FILE if shellstream is NULL;
62504         it's not necessary.
62505
62506 2000-11-05  Jim Meyering  <meyering@lucent.com>
62507
62508         * lib/makepath.h (make_dir): Declare.
62509         * lib/makepath.c (make_dir): Remove `static' attribute.
62510         Tweak a comment.
62511
62512 2000-11-04  Jim Meyering  <meyering@lucent.com>
62513
62514         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
62515
62516 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
62517
62518         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
62519         last one in a bucket, advance to the next bucket.
62520
62521 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
62522
62523         * lib/fnmatch.c: Do not comment out all the code if we are using
62524         the GNU C library, because in some cases we are replacing buggy
62525         code in the GNU C library itself.
62526
62527 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
62528
62529         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
62530         (regex_compile): Catch bogus \(\1\).
62531
62532 2000-10-30  Paul Eggert  <eggert@twinsun.com>
62533
62534         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
62535         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
62536         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
62537
62538 2000-10-30  Paul Eggert  <eggert@twinsun.com>
62539
62540         * lib/error.h, getline.h, modechange.h:
62541         Remove "2000" from Copyright line, as the file hasn't been
62542         changed this year other than in the copyright notice.
62543
62544         * lib/xalloc.h: Add "2000" to Copyright line, as this file
62545         was changed this year.
62546
62547 2000-10-29  Jim Meyering  <meyering@lucent.com>
62548
62549         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
62550         renaming.
62551         * m4/ls-mntd-fs.m4: Likewise
62552
62553 2000-10-29  Jim Meyering  <meyering@lucent.com>
62554
62555         * lib/xstat.in: Fix grammar in comment.
62556
62557 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
62558
62559         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
62560         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
62561         doesn't define __restrict_arr.
62562
62563 2000-10-28  Jim Meyering  <meyering@lucent.com>
62564
62565         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
62566         (jm_PREREQ_MEMCHR): New function.
62567
62568 2000-10-28  Jim Meyering  <meyering@lucent.com>
62569
62570         * lib/memchr.c: Update from libc.
62571         Adjust for portability:
62572         [HAVE_STDLIB_H]: Include stdlib.h.
62573         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
62574         Undef __memchr, too.
62575         [!weak_alias]: Define __memchr to memchr.
62576
62577         * lib/regex.c: Update from libc.
62578         * lib/regex.h: Likewise.
62579         * lib/getopt1.c: Likewise.
62580         * lib/memcmp.c: Likewise.
62581
62582         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
62583         Avoid using fseek, when possible -- it's broken by design.
62584         Patch by Ulrich Drepper.
62585
62586 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
62587
62588         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
62589         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
62590         Giving in to popular pressure to shut up the compiler with casts.
62591
62592 2000-10-26  Jim Meyering  <meyering@lucent.com>
62593
62594         * lib/strftime.c: Update from libc.
62595
62596 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
62597
62598         * regex.c: More `unsigned char' -> `re_char' changes.
62599         Also change several `int' into `re_wchar_t'.
62600         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
62601         (PUSH_FAILURE_POINTER): Don't cast any more.
62602         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
62603         We want GCC to complain, since this piece of code makes
62604         re_match non-reentrant, which *should* be fixed.
62605         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
62606         (EXTEND_BUFFER): Use RETALLOC.
62607         (SET_LIST_BIT): Don't cast.
62608         (re_wchar_t): New type.
62609         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
62610         that those two functions will always properly return.
62611         (IMMEDIATE_QUIT_CHECK): Cast to void.
62612         (analyse_first): Use recursion rather than an explicit stack.
62613         (re_compile_fastmap): Can't fail anymore.
62614         (re_search_2): Don't check re_compile_fastmap for failure.
62615         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
62616         Now also sets the new value (passed in a new argument).
62617         (re_match_2_internal): Use it.
62618         Also, use a new var `reg' of type size_t when looping through regs
62619         rather than reuse the inappropriate `mcnt'.
62620
62621 2000-10-25  Jim Meyering  <meyering@lucent.com>
62622
62623         * lib/obstack.c: Update from libc.
62624
62625 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
62626
62627         * regex.c (regex_compile): Change the way of handling a range from
62628         a char less than 256 to a char not less than 256.
62629
62630 2000-10-24  Andrew Innes  <andrewi@gnu.org>
62631
62632         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
62633         NT-Emacs only.
62634         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
62635         so that re_search functions only quit when callers expect them to.
62636
62637 2000-10-23  Jim Meyering  <meyering@lucent.com>
62638
62639         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
62640         wrong.  That set_locale call must not have any side effects.
62641         From Paul Eggert.
62642
62643 2000-10-22  Jim Meyering  <meyering@lucent.com>
62644
62645         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
62646         [CYCLIC]: Remove now-unused definition.
62647
62648         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
62649         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
62650         Suggestion from Ulrich Drepper.
62651
62652 2000-10-21  Jim Meyering  <meyering@lucent.com>
62653
62654         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
62655         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
62656         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
62657
62658 2000-10-21  Jim Meyering  <meyering@lucent.com>
62659
62660         * lib/dirname.c (memrchr): Declare if necessary.
62661         (dir_name): Remove the restriction that there be no
62662         trailing slashes.  Now, this code skips past them, effectively
62663         ignoring them.
62664         [TEST_DIRNAME] (main): New unit tests.
62665
62666         * lib/memrchr.c: New file from GNU libc.
62667         Undef __memrchr, too.
62668         [!weak_alias]: Define __memrchr to memrchr.
62669         Guard weak_alias use with `#ifdef weak_alias'.
62670
62671 2000-10-21  Jim Meyering  <meyering@lucent.com>
62672
62673         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
62674         (dir_name): Use dir_name_r.
62675         * lib/dirname.h (dir_name_r): Declare it.
62676
62677 2000-10-17  Jim Meyering  <meyering@lucent.com>
62678
62679         * lib/quote.h (PARAMS): Define and use.
62680         Reported by Akim Demaille.
62681
62682         * lib/getopt.c: Update from libc.
62683
62684 2000-10-16  Jim Meyering  <meyering@lucent.com>
62685
62686         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
62687         setlocale.
62688         From Jan Fedak.
62689
62690 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
62691
62692         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
62693
62694 2000-09-25  Jim Meyering  <meyering@lucent.com>
62695
62696         * lib/md5.h (rol): Define (from GnuPG).
62697
62698         * lib/sha.c: Give credit (GnuPG) where due.
62699         (M): Use rol rather than open-coding it.
62700         Add a FIXME comment.
62701
62702 2000-09-21  Jim Meyering  <meyering@lucent.com>
62703
62704         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
62705         Reported by Michael Stone.
62706
62707 2000-09-20  Jim Meyering  <meyering@lucent.com>
62708
62709         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
62710         (noinst_HEADERS): Add sha.h.
62711         Based on code from Scott G. Miller and from GnuPG.
62712
62713 2000-09-18  Jim Meyering  <meyering@lucent.com>
62714
62715         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
62716         LIBS. Otherwise, everyone ends up linking with -lelf for some
62717         configurations.
62718         Reported by Mike Stone.
62719
62720 2000-09-15  Jim Meyering  <meyering@lucent.com>
62721
62722         * lib/regex.c: Update from libc.
62723
62724 2000-09-10  Jim Meyering  <meyering@lucent.com>
62725
62726         * lib/getopt.c (_getopt_internal): Update from glibc.
62727
62728 2000-09-09  Jim Meyering  <meyering@lucent.com>
62729
62730         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
62731         think it should be used as a general replacement for isascii.
62732         * lib/fnmatch.c: Likewise.
62733         * lib/mbswidth.c: Likewise
62734         * lib/regex.c: Likewise.
62735
62736         Don't use atoi.
62737         * lib/userspec.c: Include sys/param.h and limits.h.
62738         Include xstrtol.h.
62739         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
62740         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
62741         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
62742         UID, GID.  Check range.
62743
62744 2000-09-06  Jim Meyering  <meyering@lucent.com>
62745
62746         * lib/getopt.c (_getopt_internal): Update from glibc.
62747
62748 2000-08-30  Jim Meyering  <meyering@lucent.com>
62749
62750         * lib/strftime.c: Merge in changes from GNU libc.
62751
62752 2000-08-26  Jim Meyering  <meyering@lucent.com>
62753
62754         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
62755         * m4/fpending.m4: New file.
62756
62757 2000-08-26  Jim Meyering  <meyering@lucent.com>
62758
62759         * lib/closeout.c: Include "__fpending.h".
62760         (close_stdout_status): Return right away if there's nothing to flush.
62761
62762         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
62763         * lib/__fpending.c: New file.
62764         * lib/__fpending.h: New file.
62765
62766 2000-08-20  Jim Meyering  <meyering@lucent.com>
62767
62768         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
62769         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
62770         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
62771
62772 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
62773
62774         Improve fileutils installation on systems where running
62775         programs (like install) can't be unlinked.
62776         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
62777         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
62778
62779 2000-08-07  Paul Eggert  <eggert@twinsun.com>
62780
62781         Standardize on "memory exhausted" instead of "Memory exhausted"
62782         or "virtual memory exhausted".
62783         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
62784         "virtual memory exhausted".
62785         * lib/same.c (same_name): Invoke xalloc_die instead of printing
62786         our own message.
62787         * lib/userspec.c (parse_user_spec): Likewise.
62788         * lib/bumpalloc.h: comment fix
62789         * lib/same.c, userspec.c: Include xalloc.h.
62790
62791         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
62792         not char *const and pointing to a constant array.
62793         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
62794         (xrealloc): Comment fix.
62795
62796         * lib/userspec.c (parse_user_spec):
62797         Don't translate a message until just before returning,
62798         to avoid unnecessary translation.
62799
62800 2000-08-07  Jim Meyering  <meyering@lucent.com>
62801
62802         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
62803         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
62804         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
62805         getgroups.c, gethostname.c, getopt.h, group-member.c,
62806         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
62807         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
62808         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
62809         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
62810         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
62811         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
62812         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
62813         yesno.c: Back out Copyright date changes for each file with no change
62814         this year.  This eases coordination with other programs using the same
62815         source code modules.  From Paul Eggert.
62816
62817 2000-08-06  Paul Eggert  <eggert@twinsun.com>
62818
62819         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
62820         not char, for compatibility with glibc 2.1.3 strftime.c.
62821
62822 2000-08-03  Greg McGary  <greg@mcgary.org>
62823
62824         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
62825         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
62826         (EXTEND_BUFFER): Use them.
62827
62828 2000-08-01  Jim Meyering  <meyering@lucent.com>
62829
62830         * lib/dirname.c (ISSLASH): Define.
62831         (BACKSLASH_IS_PATH_SEPARATOR): Define.
62832         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
62833         both `\' and `/' may be use as path separators.
62834         Based on a patch from Prashant TR.
62835
62836 2000-07-31  Paul Eggert  <eggert@twinsun.com>
62837
62838         * lib/quotearg.c (quotearg_n_options): Don't make the initial
62839         slot vector a constant, since it might get modified.
62840
62841 2000-07-31  Jim Meyering  <meyering@lucent.com>
62842
62843         * lib/xmalloc.c: Use `virtual memory exhausted', not
62844         `Memory exhausted'.
62845         * lib/obstack.c (print_and_abort): Likewise.
62846
62847 2000-07-30  Paul Eggert  <eggert@twinsun.com>
62848
62849         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
62850         buffer, so that the caller can always quote one small
62851         component of a "memory exhausted" message in slot 0.
62852         From a suggestion by Jim Meyering.
62853
62854 2000-07-30  Jim Meyering  <meyering@lucent.com>
62855
62856         * lib/makepath.c (make_path): Quote the other instance, too.
62857
62858         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
62859         (STATIC_BUF_SIZE): Define.
62860         (quotearg_n_options): Use only statically allocated storage when
62861         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
62862         than STATIC_BUF_SIZE.
62863
62864 2000-07-29  Jim Meyering  <meyering@lucent.com>
62865
62866         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
62867         * lib/dirname.c (dir_name): Likewise.
62868
62869         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
62870         `/'.
62871
62872         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
62873         (dir_name): Assert that there are no trailing slashes.
62874
62875 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
62876
62877         * lib/mbswidth.h (mbswidth): Add a flags argument.
62878         (mbswidth): New declaration.
62879         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
62880         * lib/mbswidth.c (mbswidth): Add a flags argument.
62881         (mbsnwidth): New function.
62882
62883 2000-07-24  Jim Meyering  <meyering@lucent.com>
62884
62885         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
62886
62887 2000-07-23  Paul Eggert  <eggert@twinsun.com>
62888
62889         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
62890
62891 2000-07-23  Paul Eggert  <eggert@twinsun.com>
62892
62893         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
62894         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
62895         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
62896         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
62897         invoke multibyte primitives.
62898
62899 2000-07-23  Paul Eggert  <eggert@twinsun.com>
62900
62901         * lib/quotearg.c:
62902         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
62903         so that mbstate_t is always defined.
62904
62905         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
62906         be 1 in at least one GCC installation, and this configuration
62907         error is likely to be common.  Ignoring MB_LEN_MAX hurts
62908         performance on hosts that have mbrtowc but have only unibyte
62909         locales, but I assume these hosts are rare.
62910
62911 2000-07-23  Paul Eggert  <eggert@twinsun.com>
62912
62913         * lib/mbswidth.c (_XOPEN_SOURCE):
62914         Don't define; this causes problems on Solaris 7.
62915         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
62916
62917 2000-07-23  Jim Meyering  <meyering@lucent.com>
62918
62919         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
62920         too: getgrgid, getpwuid, getuid.
62921
62922 2000-07-23  Jim Meyering  <meyering@lucent.com>
62923
62924         * lib/basename.c (base_name): Add an assertion.
62925
62926 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
62927
62928         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
62929         shadow its mbsinit function.
62930
62931 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
62932
62933         * lib/mbswidth.h: New file.
62934         * lib/mbswidth.c: New file.
62935         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
62936         (noinst_HEADERS): Add mbswidth.h.
62937
62938 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
62939
62940         * lib/config.charset: Add support for FreeBSD. Improve support for
62941         HP-UX and IRIX 6.
62942
62943 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
62944
62945         * m4/mbswidth.m4: New file.
62946         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
62947
62948 2000-07-15  Jim Meyering  <meyering@lucent.com>
62949
62950         * lib/makepath.c: Include quote.h.
62951         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
62952         corresponding argument in a `quote (...)' call.
62953         Give better diagnostics.
62954
62955         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
62956         (noinst_HEADERS): Add quote.h.
62957
62958         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
62959         from tar's src/misc.c.
62960         * lib/quote.h: New file.  Prototypes for same.
62961
62962 2000-07-14  Paul Eggert  <eggert@twinsun.com>
62963
62964         From a suggestion by Bruno Haible.
62965         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
62966         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
62967         to decide whether to define the BeOS workaround macro;
62968         this adjusts to the change to AC_MBSTATE_T.
62969
62970 2000-07-14  Jim Meyering  <meyering@lucent.com>
62971
62972         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
62973         jm_AC_TYPE_UINTMAX_T.
62974
62975 2000-07-13  Paul Eggert  <eggert@twinsun.com>
62976
62977         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
62978
62979         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
62980         quotearg_buffer_restyled): Add support for
62981         clocale_quoting_style.  Undo previous change to
62982         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
62983         and "{RIGHT QUOTATION MARK}" msgids.
62984
62985 2000-07-10  Paul Eggert  <eggert@twinsun.com>
62986
62987         From a suggestion by Bruno Haible.
62988         * m4/mbstate_t.m4 (AC_MBSTATE_T):
62989         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
62990         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
62991         and mbstate_t, to a single-part test that simply defines mbstate_t.
62992         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
62993         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
62994
62995 2000-07-10  Jim Meyering  <meyering@lucent.com>
62996
62997         * m4/strerror_r.m4: Mirror the correction made in autoconf.
62998
62999         * m4/gnu-source.m4: Output to confdefs.h directly.
63000         Suggestion from Akim Demaille.
63001
63002 2000-07-09  Paul Eggert  <eggert@twinsun.com>
63003
63004         The old behavior of quoting `like this' doesn't look good with
63005         newer, ISO-style fonts.  See:
63006         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
63007
63008         Instead, quote "like this" by default.  Let the translator
63009         tailor the locale-specific quoting behavior by providing
63010         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
63011
63012         * lib/quotearg.c (N_): New macro.
63013         (gettext_default): New function.
63014         (quotearg_buffer_restyled): Use
63015         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
63016         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
63017
63018 2000-07-09  Jim Meyering  <meyering@lucent.com>
63019
63020         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
63021         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
63022
63023         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
63024         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
63025
63026 2000-07-09  Jim Meyering  <meyering@lucent.com>
63027
63028         * lib/Most files: Update copyright dates to include 2000.
63029
63030 2000-07-08  Jim Meyering  <meyering@lucent.com>
63031
63032         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
63033         if not defined.
63034         (xgethostname): Remove now-unnecessary #ifdef.
63035         Move declaration of `err' into loop where it's used.
63036
63037 2000-07-05  Paul Eggert  <eggert@twinsun.com>
63038         and Bruno Haible  <haible@clisp.cons.org>
63039
63040         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
63041         only if the test for an object-type mbstate_t fails.  This
63042         prevents us from mistakenly reporting that mbstate_t is a
63043         system object type after we "#define mbstate_t int" to work
63044         around its lack.
63045
63046 2000-07-05  Paul Eggert  <eggert@twinsun.com>
63047         and Bruno Haible  <haible@clisp.cons.org>
63048
63049         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
63050
63051 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63052
63053         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
63054         to strerror_r.
63055         Include <ctype.h> for use of isalpha.
63056
63057 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63058
63059         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
63060         by allocating a larger buffer. Test the gethostname return value for
63061         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
63062         returns an error and ENAMETOOLONG isn't defined.
63063
63064 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63065
63066         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
63067         dimension.
63068
63069 2000-07-04  Jim Meyering  <meyering@lucent.com>
63070
63071         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
63072         of the deprecated AC_CHECKING.
63073
63074 2000-07-04  Jim Meyering  <meyering@lucent.com>
63075
63076         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
63077         Reported by Bruno Haible.
63078
63079 2000-07-04  Jim Meyering  <meyering@lucent.com>
63080
63081         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
63082         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
63083         lacks mbrtowc.
63084
63085 2000-07-03  Paul Eggert  <eggert@twinsun.com>
63086
63087         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
63088         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
63089
63090 2000-07-03  Paul Eggert  <eggert@twinsun.com>
63091         and Bruno Haible  <haible@clisp.cons.org>
63092
63093         * lib/quotearg.c (mbrtowc):
63094         Assign to *pwc, and return 1 only if result is nonzero.
63095         (iswprint): Use ISPRINT when substituting our own mbrtowc.
63096
63097 2000-07-03  Jim Meyering  <meyering@lucent.com>
63098
63099         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
63100
63101 2000-07-03  Jim Meyering  <meyering@lucent.com>
63102
63103         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
63104         This is necessary to get a definition of e.g., UTMP_FILE on
63105         HP-UX 10.20.
63106         From Bob Proulx.
63107
63108 2000-07-02  Jim Meyering  <meyering@lucent.com>
63109
63110         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
63111
63112         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
63113         AC_LIBOBJ(function_name).
63114         * m4/chown.m4: Likewise.
63115         * m4/fnmatch.m4: Likewise.
63116         * m4/ftruncate.m4: Likewise.
63117         * m4/getgroups.m4: Likewise.
63118         * m4/getline.m4: Likewise.
63119         * m4/group-member.m4: Likewise.
63120         * m4/jm-macros.m4: Likewise.
63121         * m4/lstat.m4: Likewise.
63122         * m4/malloc.m4: Likewise.
63123         * m4/memcmp.m4: Likewise.
63124         * m4/nanosleep.m4: Likewise.
63125         * m4/putenv.m4: Likewise.
63126         * m4/realloc.m4: Likewise.
63127         * m4/regex.m4: Likewise.
63128         * m4/stat.m4: Likewise.
63129         * m4/strftime.m4: Likewise.
63130
63131 2000-07-02  Jim Meyering  <meyering@lucent.com>
63132
63133         * lib/quotearg.c (mbstate_t): Don't define here.
63134
63135 2000-07-02  Jim Meyering  <meyering@lucent.com>
63136
63137         * lib/nanosleep.c (SIGCONT): Define if not already defined.
63138
63139 2000-07-01  Jim Meyering  <meyering@lucent.com>
63140
63141         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
63142
63143 2000-07-01  Jim Meyering  <meyering@lucent.com>
63144
63145         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
63146         problem.
63147
63148 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
63149
63150         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
63151         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
63152
63153 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
63154
63155         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
63156         per change in ../m4/ls-mntd-fs.m4.
63157         (read_filesystem_list): Ignore symbolic links.
63158
63159 2000-06-29  Jim Meyering  <meyering@lucent.com>
63160
63161         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
63162         for declaration of strcmp.
63163
63164         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
63165
63166         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
63167         Avoid warning by casting result to `char *' to remove `const'.
63168
63169 2000-06-28  Jim Meyering  <meyering@lucent.com>
63170
63171         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
63172         included by quotearg.c, for which we perform this test.  From
63173         Bruno Haible.
63174
63175 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
63176
63177         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
63178         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
63179         <utmpx.h> exists, put readutmp.o into LIBOBJS.
63180
63181 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
63182
63183         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
63184
63185 2000-06-26  Paul Eggert  <eggert@twinsun.com>
63186
63187         savedir now sets errno on failure and invokes xmalloc to get memory.
63188         Fix a couple of other minor bugs while we're at it.
63189
63190         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
63191         (NAMLEN): Remove macro.
63192         (malloc, realloc): Remove decls.
63193         (stpcpy): Likewise.
63194         ("xalloc.h"): Include.
63195         (NAME_SIZE_DEFAULT): New macro.
63196         (savedir): Use xmalloc / xrealloc to allocate memory.
63197         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
63198         Skip "" directory entries.
63199         Use strlen to calculate directory entry length, since the old method
63200         is rarely used these days and isn't worth supporting.
63201         Don't use a pointer after freeing it.
63202         Check for integer overflow when calculating allocation size.
63203         Use memcpy to copy entries, instead of stpcpy.
63204         Set errno properly when returning NULL.
63205         Check for readdir error.
63206
63207 2000-06-26  Jim Meyering  <meyering@lucent.com>
63208
63209         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
63210
63211 2000-06-25  Jim Meyering  <meyering@lucent.com>
63212
63213         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
63214         Linux header bug when _XOPEN_SOURCE is defined to 500.
63215
63216 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
63217
63218         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
63219         deficiency.
63220
63221 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
63222
63223         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
63224         Include xalloc.h.
63225         Don't include <stdlib.h>.  Don't declare malloc, realloc.
63226
63227 2000-06-24  Jim Meyering  <meyering@lucent.com>
63228
63229         * m4/strerror_r.m4: Revive this file -- to try out an experimental
63230         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
63231         for which strerror does return char*, but which lacks a conveniently
63232         accessible declaration of the function.  If the compile-test says
63233         strerror_r doesn't work, then resort to a `run'-test that works on
63234         BeOS and segfaults on DEC Unix.
63235
63236 2000-06-24  Jim Meyering  <meyering@lucent.com>
63237
63238         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
63239
63240 2000-06-23  Paul Eggert  <eggert@twinsun.com>
63241
63242         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
63243         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
63244
63245 2000-06-23  Paul Eggert  <eggert@twinsun.com>
63246
63247         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
63248         (mbrtowc, mbstate_t): Define substitutes if
63249         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
63250         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
63251         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
63252
63253 2000-06-23  Jim Meyering  <meyering@lucent.com>
63254
63255         * m4/afs.m4: Add missing AC_MSG_RESULT.
63256         Reported by Bruno Haible.
63257
63258         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
63259         Suggestion from Bruno Haible.
63260
63261 2000-06-23  Jim Meyering  <meyering@lucent.com>
63262
63263         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
63264
63265 2000-06-21  Jim Meyering  <meyering@lucent.com>
63266
63267         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
63268
63269 2000-06-21  Jim Meyering  <meyering@lucent.com>
63270
63271         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
63272         (noinst_HEADERS): Add getstr.h.
63273
63274         * lib/getline.c (getstr): Move into a separate file.
63275         * lib/getstr.c (getstr): New file, extracted from getline.c, with
63276         the following changes: new parameter, delim2; both delim[12]
63277         parameters have type `int', not `char'.  The latter would lose
63278         with 8-bit delimiters.
63279         * lib/getstr.h: New file.
63280
63281 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
63282
63283         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
63284         than 1024, return a memory chunk of least possible size, instead
63285         of size PATH_MAX + 2. In the loop, increment the size proportionally.
63286         Use free/xmalloc instead of xrealloc to avoid copying for very long
63287         paths.
63288
63289 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
63290
63291         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
63292         the empty string.
63293
63294 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
63295
63296         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
63297         address, not strdup.  Include <stdlib.h> and don't declare free().
63298
63299 2000-06-19  Jim Meyering  <meyering@lucent.com>
63300
63301         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
63302
63303 2000-06-18  Jim Meyering  <meyering@lucent.com>
63304
63305         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
63306
63307         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
63308         `checking whether...' message to be consistent with that of the
63309         lstat test.
63310
63311 2000-06-18  Jim Meyering  <meyering@lucent.com>
63312
63313         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
63314         Besides, these days every porting target provides a mkdir function.
63315
63316         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
63317         needed. (this snippet comes from src/system.h).
63318
63319 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
63320
63321         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
63322
63323 2000-06-15  Paul Eggert  <eggert@twinsun.com>
63324
63325         * lib/human.c (adjust_value): New function.
63326         (human_readable_inexact): Apply rounding style even when
63327         printing approximate values.
63328
63329 2000-06-14  Paul Eggert  <eggert@twinsun.com>
63330
63331         * lib/human.c (human_readable_inexact): Allow an input block
63332         size that is not a multiple of the output block size, and vice versa.
63333         Reported by Piergiorgio Sartor.
63334
63335 2000-06-14  Paul Eggert  <eggert@twinsun.com>
63336
63337         * lib/getdate.y (get_date): Apply relative times after time
63338         zone indicator, not before.  Reported by Todd A. Jacobs.
63339
63340 2000-06-13  Jim Meyering  <meyering@lucent.com>
63341
63342         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
63343
63344         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
63345
63346 2000-06-12  Paul Eggert  <eggert@twinsun.com>
63347
63348         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
63349
63350 2000-06-12  Jim Meyering  <meyering@lucent.com>
63351
63352         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
63353         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
63354         optional argument.
63355         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
63356         the optional argument, `lib'.
63357
63358 2000-06-08  Jim Meyering  <meyering@lucent.com>
63359
63360         * m4/largefile.m4: Remove file (now that it's part of autoconf).
63361
63362 2000-06-04  Paul Eggert  <eggert@twinsun.com>
63363
63364         Rewrite largefile configuration so that we don't need to run
63365         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
63366         AC_CANONICAL_HOST in configure.in -- jmm]
63367
63368         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
63369         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
63370         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
63371         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
63372         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
63373         All uses changed.
63374         Instead of inspecting the output of getconf, try to compile the
63375         test program without and with the macro definition.
63376         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
63377         for getconf.  Instead, check for the needed flags by compiling
63378         test programs.
63379
63380 2000-06-04  Paul Eggert  <eggert@twinsun.com>
63381
63382         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
63383
63384 2000-06-04  Jim Meyering  <meyering@lucent.com>
63385
63386         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
63387         SunOS 4.1.4 for which gid_t is an unsigned type.
63388
63389 2000-06-03  Jim Meyering  <meyering@lucent.com>
63390
63391         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
63392         now that autoconf requires that.
63393
63394         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
63395         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
63396         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
63397
63398 2000-06-03  Jim Meyering  <meyering@lucent.com>
63399
63400         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
63401
63402 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
63403
63404         * m4/glibc21.m4: New file.
63405         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
63406
63407 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
63408
63409         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
63410         newer, don't install charset.alias.
63411         * lib/config.charset: Change the Linux/glibc rules so they become empty
63412         on glibc-2.1 or newer.
63413
63414 2000-06-02  Jim Meyering  <meyering@lucent.com>
63415
63416         * lib/mountlist.c: Back out last change.  Instead, do this...
63417         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
63418         me_dummy member using the same `ignore'-testing code.
63419         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
63420         fs_type strings.
63421         From Mark D. Roth.
63422
63423 2000-05-29  Jim Meyering  <meyering@lucent.com>
63424
63425         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
63426         mounts with the `ignore' attribute.  Based on a patch from
63427         Mark D. Roth.
63428
63429 2000-05-28  Jim Meyering  <meyering@lucent.com>
63430
63431         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
63432         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
63433         * m4/stat.m4: Likewise.
63434         * m4/lstat.m4: Likewise.
63435         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
63436
63437         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
63438         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
63439
63440 2000-05-26  Jim Meyering  <meyering@lucent.com>
63441
63442         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
63443
63444 2000-05-24  Jim Meyering  <meyering@lucent.com>
63445
63446         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
63447         autoconf requires that.
63448         * m4/lib-check.m4: Likewise.
63449         * m4/jm-macros.m4: Likewise.
63450         * m4/strftime.m4: Likewise.
63451
63452         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
63453         AC_CHECK_DECLS, now that autoconf requires that.
63454
63455 2000-05-22  Jim Meyering  <meyering@lucent.com>
63456
63457         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
63458         * m4/lstat.m4: Likewise.
63459
63460 2000-05-22  Jim Meyering  <meyering@lucent.com>
63461
63462         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
63463
63464 2000-05-20  Jim Meyering  <meyering@lucent.com>
63465
63466         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
63467         (jm_PREREQ): Use it.
63468
63469 2000-05-18  Jim Meyering  <meyering@lucent.com>
63470
63471         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
63472         back, too, since it may have been modified by allocate_entry.
63473         (hash_delete): Rewrite to use neither the assignment operator
63474         nor the comma operator in an if-expression.
63475
63476 2000-05-15  Paul Eggert  <eggert@twinsun.com>
63477
63478         * lib/closeout.c:
63479         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
63480         Remove; no longer needed.
63481         "quotearg.h": Add include.
63482         (file_name): Do not bother to explicitly initialize to NULL; it's less
63483         efficient on some hosts.
63484         (close_stdout_status): Remove test as to whether stdout was already
63485         closed; it breaks for the case "echo x | sort >&-".
63486         Quote file name colons.
63487         Do not assume that _("write error") lacks format strings.
63488
63489 2000-05-15  Jim Meyering  <meyering@lucent.com>
63490
63491         * lib/version-etc.c (version_etc_copyright): Update the copyright
63492         string used in all --version output.
63493
63494 2000-05-14  Jim Meyering  <meyering@lucent.com>
63495
63496         * lib/closeout.c (close_stdout_set_file_name): New function.
63497         (close_stdout_status): Use new file-scoped global.
63498         Return right away if fstat says the stdout file descriptor is invalid.
63499         * lib/closeout.h (close_stdout_set_file_name): Declare.
63500
63501 2000-05-10  Jim Meyering  <meyering@lucent.com>
63502
63503         * lib/closeout.c [default_exit_status]: New file-scoped variable.
63504         (close_stdout_set_status): New function.
63505         * lib/closeout.h (close_stdout_set_status): Declare.
63506
63507 2000-05-09  Jim Meyering  <meyering@lucent.com>
63508
63509         * m4/gettext.m4: Rename this...
63510         * m4/libintl.m4: ...to this.
63511
63512 2000-05-08  Jim Meyering  <meyering@lucent.com>
63513
63514         * lib/long-options.c: Don't include closeout.h.
63515         (parse_long_options): Don't call close_stdout for --version.
63516
63517 2000-05-06  Paul Eggert  <eggert@twinsun.com>
63518
63519         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
63520         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
63521         2.1.3 bug.  This avoids a clash when files like regex.c define
63522         _GNU_SOURCE.
63523
63524 2000-05-06  Jim Meyering  <meyering@lucent.com>
63525
63526         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
63527         (AC_REPLACE_FUNCS): Add strnlen.
63528
63529         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
63530         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
63531
63532         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
63533         AC_SEARCH_LIBS call for nanosleep.
63534         (LIB_NANOSLEEP): Set and AC_SUBST.
63535
63536 2000-05-06  Jim Meyering  <meyering@lucent.com>
63537
63538         * lib/strnlen.c: Undefine __strnlen and strnlen.
63539         [!weak_alias]: Define __strnlen to strnlen.
63540
63541         * lib/atexit.c: New file, from libiberty.
63542
63543 2000-05-06  Jim Meyering  <meyering@lucent.com>
63544
63545         * lib/closeout.c (close_stdout_status): Also check for errors on the
63546         stderr stream.
63547
63548 2000-05-05  Jim Meyering  <meyering@lucent.com>
63549
63550         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
63551         AC_SEARCH_LIBS call for clock_gettime.
63552         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
63553
63554         * m4/search-libs.m4: Update from autoconf.
63555
63556         su doesn't work on Solaris 2.6.
63557         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
63558         <shadow.h>.  Reported by Dragos Harabor.
63559
63560 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
63561
63562         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
63563         memcpy instead of xmalloc, xrealloc, path_concat.
63564         (locale_charset): Treat empty environment variables as absent.
63565         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
63566
63567 2000-05-04  Jim Meyering  <meyering@lucent.com>
63568
63569         * lib/getopt.c: Update from glibc.
63570         * lib/obstack.c: Likewise.
63571         * lib/obstack.h: Likewise.
63572         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
63573         file
63574
63575         * lib/regex.h: Likewise.
63576         * lib/strndup.c: Likewise.
63577         * lib/strnlen.c: New file, from glibc.
63578
63579 2000-05-03  Jim Meyering  <meyering@lucent.com>
63580
63581         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
63582
63583 2000-05-02  Paul Eggert  <eggert@twinsun.com>
63584
63585         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
63586         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
63587         compile-time test, rather than inspecting host and OS, to
63588         decide whether to define _LARGEFILE_SOURCE.
63589
63590 2000-05-01  Jim Meyering  <meyering@lucent.com>
63591
63592         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
63593
63594         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
63595         Based on a patch from Bruno Haible.
63596
63597 2000-05-01  Jim Meyering  <meyering@lucent.com>
63598
63599         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
63600
63601 2000-04-29  Jim Meyering  <meyering@lucent.com>
63602
63603         * lib/path-concat.c: Declare strdup only if it's not defined.
63604         * lib/canon-host.c: Likewise.
63605
63606 2000-04-28  Jim Meyering  <meyering@lucent.com>
63607
63608         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
63609         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
63610         is included first, then limits.h is included by locale.h by libintl.h.
63611         From John David Anglin.
63612
63613 2000-04-25  Jim Meyering  <meyering@lucent.com>
63614
63615         * lib/makepath.c (S_IRWXUGO): Define.
63616         (make_path): Always perform explicit chmod if MODE specifies any
63617         of the `special' permission bits.  Prompted by a bug report against
63618         install from Mate Wierdl and Joost van Baal.
63619
63620 2000-04-18  Jim Meyering  <meyering@lucent.com>
63621
63622         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
63623         (jm_PREREQ): Use it.
63624
63625 2000-04-18  Jim Meyering  <meyering@lucent.com>
63626
63627         * lib/README: New file.
63628
63629         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
63630         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
63631
63632 2000-04-17  Jim Meyering  <meyering@lucent.com>
63633
63634         Get it right :-)
63635         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
63636         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
63637         Suggestion from Akim Demaille.
63638
63639 2000-04-17  Jim Meyering  <meyering@lucent.com>
63640
63641         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
63642         the definition of it to rpl_strftime also defined-away the system's
63643         declaration.
63644
63645 2000-04-15  Jim Meyering  <meyering@lucent.com>
63646
63647         Use `C' to denote so-called `contiguous' files, the same way
63648         that tar does.
63649         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
63650         (ftypelet): Use S_ISCTG.
63651         From Michael Deutschmann.
63652
63653 2000-04-14  Jim Meyering  <meyering@lucent.com>
63654
63655         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
63656         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
63657         clobbered.
63658
63659 2000-04-14  Jim Meyering  <meyering@lucent.com>
63660
63661         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
63662
63663 2000-04-13  Jim Meyering  <meyering@lucent.com>
63664
63665         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
63666         AH_VERBATIM to insert required #ifndef into config.h.in.
63667         Suggestion from Akim Demaille.
63668
63669 2000-04-12  Jim Meyering  <meyering@lucent.com>
63670
63671         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
63672         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
63673         Christian Krackowizer.
63674
63675         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
63676         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
63677         (AC_SYS_LARGEFILE): Require.
63678         (AM_C_PROTOTYPES): Require.
63679
63680 2000-04-08  Jim Meyering  <meyering@lucent.com>
63681
63682         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
63683         names don't conflict.  Reported by Eli Zaretskii.
63684
63685 2000-04-07  Jim Meyering  <meyering@lucent.com>
63686
63687         * lib/putenv.c: Move inclusion of errno.h so it follows that of
63688         sys/types.h, to work around system header problems on AIX 3.2.5.
63689         From Bruno Haible.
63690
63691 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
63692
63693         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
63694         bug.  Deal with the different error behavior of Irix iconv.
63695
63696 2000-04-05  Paul Eggert  <eggert@twinsun.com>
63697
63698         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
63699         IRIX if the installer said otherwise.
63700
63701 2000-04-05  Jim Meyering  <meyering@lucent.com>
63702
63703         Portability tweaks required for ultrix4.3.
63704         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
63705         (jm_CHECK_DECLS): Add getutent to the list of functions.
63706         (_jm_DECL_HEADERS): Add utmpx.h.
63707         From John David Anglin.
63708
63709         * m4/strftime.m4: Back out the 2000-04-02 change.
63710         Instead of that change, simply undefine putenv in the test program.
63711
63712 2000-04-05  Jim Meyering  <meyering@lucent.com>
63713
63714         Portability tweaks required for ultrix4.3.
63715         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
63716         getutent.
63717         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
63718         * lib/canon-host.c: Declare strdup.
63719         * lib/path-concat.c: Likewise.
63720         From John David Anglin.
63721
63722 2000-04-04  Jim Meyering  <meyering@lucent.com>
63723
63724         Be more DOS 8.3-friendly.
63725         * lib/ref-add.sin: Renamed from ref-add.sed.in.
63726         * lib/ref-del.sin: Renamed from ref-del.sed.in.
63727         * lib/Makefile.am: Reflect renaming.
63728         Reported by Eli Zaretskii.
63729
63730         Use a temporary file name that won't clash with `charset.alias'
63731         in the DOS 8.3 name space.
63732         * lib/Makefile.am (charset_tmp): Define.
63733         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
63734         (uninstall-local): Likewise.
63735         Reported by Eli Zaretskii.
63736
63737 2000-04-03  Jim Meyering  <meyering@lucent.com>
63738
63739         * m4/gettext.m4: Fix typo in comment.
63740
63741         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
63742         textutils/configure.in).  Suggestion from Paul Eggert.
63743         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
63744
63745 2000-04-02  Paul Eggert  <eggert@twinsun.com>
63746
63747         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
63748         variable in the shell rather than using putenv, which isn't
63749         portable.  This avoids the configure-time inter-test dependency
63750         on the potentially-renamed putenv function.
63751
63752 2000-03-30  Paul Eggert  <eggert@twinsun.com>
63753
63754         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
63755         before checking struct stat.st_blksize, so that
63756         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
63757
63758 2000-03-29  Paul Eggert  <eggert@twinsun.com>
63759
63760         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
63761         since strftime.c uses HAVE_STRFTIME to decide whether to use
63762         the underlying strftime.
63763
63764 2000-03-29  Paul Eggert  <eggert@twinsun.com>
63765
63766         * lib/time/strftime.c (my_strftime): Make sure we call the system
63767         strftime, not ourselves, when invoking the underlying strftime.
63768
63769 2000-03-24  Jim Meyering  <meyering@lucent.com>
63770
63771         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
63772         (charset_alias): Define.
63773         (install-exec-local): Factor out common code.
63774         (uninstall-local): Split lines longer than 80.
63775         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
63776         (SUFFIXES): Define.
63777         (.sed.in.sed): New rule.  Don't redirect directly to $@.
63778         (CLEANFILES): Add ref-add.sed and ref-del.sed.
63779
63780 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
63781
63782         * lib/config.charset: Output a line containing "Packages using this
63783         file".
63784         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
63785         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
63786         ref-del.sed): New rules.
63787
63788 2000-03-17  Jim Meyering  <meyering@lucent.com>
63789
63790         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
63791         Otherwise, include <strings.h>
63792
63793 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
63794
63795         * lib/unicodeio.c (utf8_wctomb): New function.
63796         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
63797         format instead of in UCS-4 with platform dependent endianness.
63798
63799 2000-03-10  Jim Meyering  <meyering@lucent.com>
63800
63801         * m4/lib-check.m4: Look for getspnam in -lgen, too.
63802         From Marco Franzen.
63803
63804 2000-03-07  Paul Eggert  <eggert@twinsun.com>
63805
63806         * lib/savedir.c (savedir): Work even if directory size is
63807         negative; this can happen with some screwy NFS configurations.
63808
63809 2000-03-06  Jim Meyering  <meyering@lucent.com>
63810
63811         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
63812         if it's NULL (because we ran out of memory).  From Bruno Haible.
63813
63814 2000-03-05  Jim Meyering  <meyering@lucent.com>
63815
63816         * lib/localcharset.c ("path-concat.h"): Include.
63817         (get_charset_aliases): Use path_concat instead of ANSI string
63818         concatenation.
63819
63820         * lib/unicodeio.h (PARAMS): Define.
63821         Use it to guard prototype.
63822
63823 2000-03-04  Jim Meyering  <meyering@lucent.com>
63824
63825         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
63826         for lib/localcharset.c.
63827
63828 2000-03-04  Jim Meyering  <meyering@lucent.com>
63829
63830         * lib/Makefile.am (install-exec-local): Create $(libdir) before
63831         installing into it.
63832         (uninstall-local): Uncomment this rule so `make distcheck' works
63833         once again.
63834
63835         * lib/unicodeio.c (<errno.h>): Include it.
63836         (errno): Declare if not defined.
63837
63838         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
63839
63840         * lib/config.charset: New version, incorporating remarks from a linux
63841         i18n mailing list.  From Bruno Haible.
63842
63843 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
63844
63845         * m4/codeset.m4: New file.
63846         * m4/iconv.m4: New file.
63847         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
63848
63849 2000-03-03  Jim Meyering  <meyering@lucent.com>
63850
63851         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
63852
63853 2000-03-02  Jim Meyering  <meyering@lucent.com>
63854
63855         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
63856         the messages come out on separate lines.
63857
63858         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
63859         rather than jm_CHECK_DECLARATIONS.
63860         * m4/decl.m4: Remove now-unused file.
63861
63862         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
63863         geteuid.
63864
63865 2000-03-02  Jim Meyering  <meyering@lucent.com>
63866
63867         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
63868
63869 2000-03-01  Jim Meyering  <meyering@lucent.com>
63870
63871         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
63872         * lib/unicodeio.c: Likewise.
63873
63874 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
63875
63876         * lib/config.charset: New file.
63877         * lib/localcharset.c: New file.
63878         * lib/unicodeio.h, lib/unicodeio.c: New files.
63879         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
63880         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
63881         (noinst_HEADERS): Add unicodeio.h.
63882         (all-local, install-exec-local, charset.alias): New targets.
63883
63884 2000-02-28  Paul Eggert  <eggert@twinsun.com>
63885
63886         * lib/quotearg.c (ALERT_CHAR): New macro.
63887         (quotearg_buffer_restyled): Use it.
63888
63889 2000-02-27  Jim Meyering  <meyering@lucent.com>
63890
63891         * m4/check-decl.m4: Add getenv to the list.
63892
63893 2000-02-27  Jim Meyering  <meyering@lucent.com>
63894
63895         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
63896         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
63897
63898         * lib/backupfile.c: Guard inclusion of stdlib.h with
63899         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
63900         Declare malloc if needed.
63901
63902         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
63903         `#ifndef HAVE_DECL..'
63904         now that autoconf always defines the HAVE_DECL_ symbols.
63905         * lib/human.c: Likewise.
63906         * lib/same.c: Likewise.
63907         * lib/strtoumax.c: Likewise.
63908
63909         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
63910         declaration check was not run.
63911         * lib/hash.c: Likewise.
63912         * lib/human.c: Likewise.
63913         * lib/same.c: Likewise.
63914         * lib/strtoumax.c: Likewise.
63915
63916         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
63917         `.', then first look up the entire `.'-containing string as a login
63918         name.
63919
63920 2000-02-23  Jim Meyering  <meyering@lucent.com>
63921
63922         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
63923         in place of my hack.
63924
63925 2000-02-18  Paul Eggert  <eggert@twinsun.com>
63926
63927         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
63928         (textint): New typedef.
63929         (parser_control): Member year changed from int to textint.
63930         All uses changed.
63931         (YYSTYPE): Removed; replaced by %union with int and textint members.
63932         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
63933         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
63934         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
63935         (tSNUMBER, tUNUMBER): Now of type <textintval>.
63936         (date, number, to_year): Use width of number in digits, not its value,
63937         to determine whether it's a 2-digit year, or a 2-digit time.
63938         (yylex): Store number of digits of numeric tokens.
63939         Reported by John Kendall.
63940
63941         (parser_control): Changed from struct parser_control to typedef (for
63942         consistency).  All uses changed.
63943
63944         (tID): Removed; not used.
63945         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
63946
63947 2000-02-14  Paul Eggert  <eggert@twinsun.com>
63948
63949         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
63950         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
63951
63952 2000-02-12  Jim Meyering  <meyering@lucent.com>
63953
63954         * lib/userspec.c (ISDIGIT): Define it.
63955         (isdigit): Remove definition.
63956         (is_number): Use ISDIGIT, not isdigit.
63957         <libintl.h>: Include.
63958         (_ and N_): Define.
63959         (parse_user_spec): Mark translatable strings.
63960
63961 2000-02-10  Jim Meyering  <meyering@lucent.com>
63962
63963         With these changes, nanosleep.[ch] are finally enough like the other
63964         lib/* replacement files to compile on a few more losing systems.
63965
63966         * lib/nanosleep.h: Don't include config.h.
63967         Remove prototype from declaration of nanosleep.
63968         (PARAMS): Remove now-unneeded definition.
63969         * lib/nanosleep.c: #undef nanosleep.
63970         (rpl_nanosleep): Rename from nanosleep.
63971
63972 2000-02-10  Jim Meyering  <meyering@lucent.com>
63973
63974         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
63975         gnu_nanosleep to rpl_nanosleep.
63976
63977 2000-02-09  Jim Meyering  <meyering@lucent.com>
63978
63979         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
63980         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
63981
63982 2000-02-08  Akim Demaille  <akim@epita.fr>
63983
63984         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
63985         `[' and `]' and remove uses of `changequote'.
63986         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
63987         (AC_SYS_LARGEFILE): Likewise.
63988         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
63989         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
63990         of changequote.
63991         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
63992         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
63993         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
63994         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
63995
63996 2000-02-05  Jim Meyering  <meyering@lucent.com>
63997
63998         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
63999         Remove explicit use of AC_HEADER_TIME.  It is required by
64000         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
64001         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
64002         in autoconf whereby the expansion of the latter ended up preceding
64003         the expansion of its prerequisite, AC_HEADER_TIME.
64004         Reported by Volker Borchert.
64005
64006 2000-02-03  Jim Meyering  <meyering@lucent.com>
64007
64008         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
64009
64010 2000-02-03  Jim Meyering  <meyering@lucent.com>
64011
64012         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
64013         rather than with `#if HAVE_UTMPNAME'.
64014
64015 2000-02-02  Jim Meyering  <meyering@lucent.com>
64016
64017         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
64018         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
64019         Reported by Eli Zaretskii.
64020
64021 2000-02-01  Jim Meyering  <meyering@lucent.com>
64022
64023         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
64024
64025 2000-01-31  Jim Meyering  <meyering@lucent.com>
64026
64027         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
64028         functions.  Add the time.h and sys/time.h headers along with the
64029         AC_REQUIRE'ment of AC_HEADER_TIME.
64030
64031 2000-01-31  Jim Meyering  <meyering@lucent.com>
64032
64033         * lib/nanosleep.h (nanosleep): Guard declaration with
64034         `#if ! HAVE_DECL_NANOSLEEP'.
64035         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
64036         the declaration in that vendor's sys/timers.h.
64037         Reported by Christian Krackowizer.
64038
64039         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
64040         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
64041         (ISPRINT): Likewise.
64042         Reported by Tom Tromey.
64043
64044 2000-01-30  Jim Meyering  <meyering@lucent.com>
64045
64046         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
64047
64048         * m4/prereq.m4 (utmp_includes): Define.
64049         Check for ut_user and ut_name members in both struct utmpx
64050         and struct utmp.
64051
64052 2000-01-30  Jim Meyering  <meyering@lucent.com>
64053
64054         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
64055         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
64056         header files where only utmpx.ut_user is declared.
64057
64058         * lib/readutmp.h (UT_USER): Define.
64059
64060 2000-01-29  Jim Meyering  <meyering@lucent.com>
64061
64062         * m4/lib-check.m4: New file containing library-related checks from
64063         fileutils and sh-utils (textutils had none).
64064
64065 2000-01-28  Jim Meyering  <meyering@lucent.com>
64066
64067         * m4/perl.m4: Change format of warning message to look more like that
64068         from the missing script.  Suggestion from François Pinard.
64069
64070 2000-01-25  Jim Meyering  <meyering@lucent.com>
64071
64072         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
64073         well as time.h in the compile check.
64074         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
64075         Fix typo in cross-compiling case: s/yes/no/.
64076
64077 2000-01-23  Jim Meyering  <meyering@lucent.com>
64078
64079         * m4/jm-macros.m4: Move df-related tests here from
64080         fileutils/configure.in
64081
64082         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
64083         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
64084
64085         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
64086         s/space/ac_fsusage_space/.
64087         (jm_FILE_SYSTEM_USAGE): Take two parameters.
64088
64089         * m4/ftruncate.m4: New file (derived from part of
64090         fileutils/configure.in).
64091         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
64092         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
64093
64094         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
64095         AC_SUBST these here, rather than just in sh-util/configure.in, so
64096         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
64097         all the same.
64098         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
64099         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
64100         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
64101         (AC_SUBST(POW_LIBM)): Likewise.
64102         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
64103
64104 2000-01-23  Jim Meyering  <meyering@lucent.com>
64105
64106         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
64107         obstack.c.
64108
64109 2000-01-22  Jim Meyering  <meyering@lucent.com>
64110
64111         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
64112
64113         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
64114
64115         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
64116         configure.in
64117         (AC_CHECK_HEADERS): Likewise for sh-utils.
64118         (AC_CHECK_HEADERS): Likewise for textutils.
64119         Merge the three lists of headers.
64120
64121         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
64122         from fileutils' configure.in.
64123
64124         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
64125         code. Moved tests into their own function (_jm_DECL_HEADERS) in
64126         check-decl.m4.
64127
64128         * m4/check-decl.m4: Use #if rather than #ifdef.
64129         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
64130         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
64131         (_jm_DECL_HEADERS): Define new function.
64132         (jm_CHECK_DECLARATIONS): Require it.
64133
64134 2000-01-22  Jim Meyering  <meyering@lucent.com>
64135
64136         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
64137         [! HAVE_DECL_STRTOULL]: Declare strtoull.
64138         Required for some AIX systems.  Reported by Christian Krackowizer.
64139         [TESTING] (main): New function.
64140
64141         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
64142         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
64143         letters.
64144
64145         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
64146         iswprint.
64147
64148         * lib/strverscmp.c (ISDIGIT): Define.
64149         (strverscmp): Use ISDIGIT, not isdigit.
64150
64151 2000-01-19  Jim Meyering  <meyering@lucent.com>
64152
64153         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
64154         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
64155         defines `struct timespec' in <sys/time.h>
64156
64157         * m4/c-bs-a.m4: Remove uses of changequote altogether.
64158         Thanks to Akim for explaining.
64159
64160 2000-01-17  Paul Eggert  <eggert@twinsun.com>
64161
64162         * lib/nanosleep.c (nanosleep):
64163         Don't use SA_INTERRUPT to decide whether to call sigaction, as
64164         POSIX.1 doesn't require SA_INTERRUPT and some systems
64165         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
64166         it's been part of POSIX.1 since day 1 (in 1988).
64167
64168 2000-01-17  Jim Meyering  <meyering@lucent.com>
64169
64170         * lib/interlock: Remove unused file.  Reported by François Pinard.
64171
64172 2000-01-16  Paul Eggert  <eggert@twinsun.com>
64173
64174         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
64175         alert, backslash, formfeed, and vertical tab unnecessarily in
64176         shell quoting style.
64177
64178 2000-01-16  Jim Meyering  <meyering@lucent.com>
64179
64180         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
64181         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
64182         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
64183         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
64184
64185 2000-01-16  Jim Meyering  <meyering@lucent.com>
64186
64187         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
64188         because the latter didn't work.
64189
64190 2000-01-15  Jim Meyering  <meyering@lucent.com>
64191
64192         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
64193         (AC_REPLACE_FUNCS): Add memcpy and memset.
64194         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
64195         Add strpbrk.
64196         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
64197
64198 2000-01-12  Jim Meyering  <meyering@lucent.com>
64199
64200         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
64201         (jm_PREREQ): Use it.
64202         (jm_PREREQ_READUTMP): New macro.
64203         (jm_PREREQ): Use it.
64204
64205 2000-01-11  Paul Eggert  <eggert@twinsun.com>
64206
64207         Quote multibyte characters correctly.
64208         * m4/c-bs-a.m4: New file.
64209         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
64210         (jm_PREREQ): Use it.
64211
64212 2000-01-11  Paul Eggert  <eggert@twinsun.com>
64213
64214         * m4/uintmax_t.m4: Port to autoconf 2.13.
64215
64216 2000-01-08  Jim Meyering  <meyering@ascend.com>
64217
64218         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
64219         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
64220
64221 2000-01-04  Jim Meyering  <meyering@ascend.com>
64222
64223         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
64224         jm_STRUCT_DIRENT_D_TYPE.
64225         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
64226         jm_STRUCT_DIRENT_D_INO.
64227         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
64228         jm_STRUCT_UTIMBUF.
64229         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
64230         renamings.
64231         * m4/utime.m4: Likewise.
64232
64233         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
64234         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
64235
64236 2000-01-03  Paul Eggert  <eggert@twinsun.com>
64237
64238         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
64239         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
64240
64241 2000-01-02  Jim Meyering  <meyering@ascend.com>
64242
64243         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
64244         remember if this is necessary.
64245
64246 1999-12-26  Jim Meyering  <meyering@ascend.com>
64247
64248         * m4/jm-macros.m4: Use it here.
64249         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
64250
64251 1999-12-23  Jim Meyering  <meyering@ascend.com>
64252
64253         * m4/jm-macros.m4: Check for clock_gettime (moved from
64254         fileutils/configure.in)
64255         Check for gettimeofday.
64256
64257 1999-12-20  Jim Meyering  <meyering@ascend.com>
64258
64259         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
64260         autoconf-2.14a-1999-12-20.
64261
64262 1999-12-19  Jim Meyering  <meyering@ascend.com>
64263
64264         * m4/lstat-slash.m4: New file.
64265         * m4/jm-macros.m4: Use the new macro:
64266         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
64267
64268 1999-12-07  Jim Meyering  <meyering@ascend.com>
64269
64270         * m4/perl.m4: Require that File::Compare be available, too.
64271         Too many systems seem to lack it.
64272
64273         * m4/strftime.m4: Add checks for most of the cpp macros tested in
64274         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
64275
64276 1999-11-18  Paul Eggert  <eggert@twinsun.com>
64277
64278         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
64279         problem with the QNX 4.25 shell, which doesn't propagate exit
64280         status of failed commands inside shell assignments.
64281
64282 1999-11-17  Jim Meyering  <meyering@ascend.com>
64283
64284         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
64285
64286 1999-11-07  Jim Meyering  <meyering@ascend.com>
64287
64288         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
64289
64290 1999-11-06  Jim Meyering  <meyering@ascend.com>
64291
64292         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
64293         * m4/jm-macros.m4 (jm_MACROS): Use it here.
64294
64295 1999-11-05  Jim Meyering  <meyering@ascend.com>
64296
64297         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
64298         configure.in of textutils, fileutils, and sh-utils into this one
64299         (shared between those packages) file.
64300         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
64301         AC_STRUCT_ST_BLKSIZE.
64302
64303 1999-11-03  Jim Meyering  <meyering@ascend.com>
64304
64305         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
64306         of AC_CHECK_TYPE checks includes unistd.h.
64307         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
64308         Suggestion from Akim Demaille.
64309
64310 1999-10-30  Jim Meyering  <meyering@ascend.com>
64311
64312         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
64313         m4-quoted string.
64314         * m4/ls-mntd-fs.m4: Likewise.
64315         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
64316         * m4/jm-winsz1.m4: Likewise.
64317
64318         * m4/const.m4: Remove file, since the fix made it into the experimental
64319         version of autoconf.
64320         * m4/mktime.m4: Likewise.
64321
64322         * m4/check-type.m4: Remove file, now that the latest version of
64323         AC_CHECK_TYPE takes a third arg to specify additional #includes.
64324
64325         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
64326         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
64327         AC_CHECK_TYPE.
64328
64329 1999-10-04  Jim Meyering  <meyering@ascend.com>
64330
64331         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
64332
64333 1999-09-22  Paul Eggert  <eggert@twinsun.com>
64334
64335         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
64336         2.95.1 bug with HP-UX 10.20.
64337
64338 1999-09-17  Jim Meyering  <meyering@ascend.com>
64339
64340         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
64341         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
64342         due to missing strdup (against sh-utils-2.0).
64343
64344 1999-08-29  Jim Meyering  <meyering@ascend.com>
64345
64346         * m4/jm-macros.m4: Require jm_BISON.
64347         * m4/bison.m4: New file.
64348
64349 1999-08-17  Paul Eggert  <eggert@twinsun.com>
64350
64351         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
64352         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
64353
64354 1999-08-05  Jim Meyering  <meyering@ascend.com>
64355
64356         * m4/getline.m4: Rename test file from conftestdata to conftest.data
64357         to avoid conflicts with `conftest' on 8+3 filesystems.
64358         Suggestion from Eli Zaretskii.
64359
64360 1999-08-04  Jim Meyering  <meyering@ascend.com>
64361
64362         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
64363         fileutils and sh-utils (textutils's getline test was inadequate).
64364         (AM_FUNC_GETLINE): Run this test.
64365         (AC_CHECK_FUNCS): Check for getdelim.
64366         Reported by Bob Proulx.
64367
64368 1999-08-02  Jim Meyering  <meyering@ascend.com>
64369
64370         * m4/jm-macros.m4: Add a comment.
64371
64372 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64373
64374         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
64375         <inttypes.h> defines strtoumax as a macro (and not as a
64376         function).
64377
64378 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64379
64380         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
64381         that we can shift, multiply and divide unsigned long long
64382         values; Ultrix cc can't do it.
64383
64384 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64385
64386         * m4/mktime.m4: New file, which is a preview of what should appear
64387         in the next public autoconf release.
64388
64389 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64390
64391         * m4/lfs.m4: Remove this file.
64392         * m4/largefile.m4: New file.  It contains the old contents of
64393         lfs.m4, except that all names with prefix AC_LFS have been
64394         changed to use the prefix AC_SYS_LARGEFILE instead, to be
64395         compatible with future autoconf versions.  Also, some minor m4
64396         quoting problems have been fixed.
64397
64398 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64399
64400         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
64401         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
64402         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
64403         and simplify the shell code.
64404
64405 1999-08-01  Jim Meyering  <meyering@ascend.com>
64406
64407         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
64408         m4.
64409
64410 1999-07-20  Jim Meyering  <meyering@ascend.com>
64411
64412         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
64413
64414 1999-07-15  Jim Meyering  <meyering@ascend.com>
64415
64416         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
64417
64418 1999-05-22  Jim Meyering  <meyering@ascend.com>
64419
64420         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
64421
64422 1999-05-20  Jim Meyering  <meyering@ascend.com>
64423
64424         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
64425         Add a colon after each `then' in case $4 is empty.
64426
64427 1999-05-16  Jim Meyering  <meyering@ascend.com>
64428
64429         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
64430
64431 1999-05-10  Jim Meyering  <meyering@ascend.com>
64432
64433         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
64434
64435         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
64436         AC_FUNC_MKTIME.
64437
64438 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
64439
64440         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
64441
64442 1999-05-04  Paul Eggert  <eggert@twinsun.com>
64443
64444         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
64445         not CPPFLAGS, so that linking works correctly in IRIX.
64446
64447 1999-04-30  Paul Eggert  <eggert@twinsun.com>
64448
64449         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
64450
64451 1999-04-20  Paul Eggert  <eggert@twinsun.com>
64452
64453         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
64454         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
64455         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
64456         jm_AC_TYPE_UNSIGNED_LONG_LONG.
64457         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
64458
64459         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
64460
64461 1999-04-20  Jim Meyering  <meyering@ascend.com>
64462
64463         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
64464         AC_REPLACE xstroull if necessary.  From Paul Eggert.
64465         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
64466
64467 1999-04-18  Jim Meyering  <meyering@ascend.com>
64468
64469         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
64470         * m4/jm-macros.m4: Use it.
64471
64472 1999-04-06  Jim Meyering  <meyering@ascend.com>
64473
64474         * m4/strftime.m4: Remove test for %f.
64475
64476 1999-03-29  Jim Meyering  <meyering@ascend.com>
64477
64478         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
64479         superset of the AC_TYPE_* checks in the textutils, fileutils,
64480         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
64481         AC_TYPE_PID_T.
64482
64483 1999-03-28  Jim Meyering  <meyering@ascend.com>
64484
64485         * m4/jm-macros.m4: Define GNU_PACKAGE here.
64486         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
64487         replaced e.g., in the *.sh files of the sh-utils.
64488
64489 1999-03-20  Jim Meyering  <meyering@ascend.com>
64490
64491         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
64492         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
64493         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
64494
64495 1999-03-19  Jim Meyering  <meyering@ascend.com>
64496
64497         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
64498
64499 1999-03-12  Jim Meyering  <meyering@ascend.com>
64500
64501         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
64502
64503 1999-03-07  Jim Meyering  <meyering@ascend.com>
64504
64505         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
64506         declared.
64507
64508 1999-02-17  Jim Meyering  <meyering@ascend.com>
64509
64510         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
64511         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
64512
64513 1999-02-07  Jim Meyering  <meyering@ascend.com>
64514
64515         * m4/group-member.m4: New file -- extracted from sh-utils'
64516         configure.in.
64517
64518         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
64519         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
64520
64521 1999-02-06  Jim Meyering  <meyering@ascend.com>
64522
64523         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
64524         * m4/fnmatch.m4: Likewise.
64525         * m4/getgroups.m4: Likewise.
64526         * m4/lstat.m4: Likewise.
64527         * m4/malloc.m4: Likewise.
64528         * m4/putenv.m4: Likewise.
64529         * m4/realloc.m4: Likewise.
64530         * m4/regex.m4: Likewise.
64531         * m4/stat.m4: Likewise.
64532         * m4/strftime.m4: Likewise.
64533         Suggestion from Alain Magloire.
64534
64535         * m4/chown.m4: Use `.$ac_objext', not `.o'.
64536         * m4/fnmatch.m4: Likewise.
64537         * m4/getgroups.m4: Likewise.
64538         * m4/getline.m4: Likewise.
64539         * m4/lstat.m4: Likewise.
64540         * m4/malloc.m4: Likewise.
64541         * m4/memcmp.m4: Likewise.
64542         * m4/putenv.m4: Likewise.
64543         * m4/realloc.m4: Likewise.
64544         * m4/regex.m4: Likewise.
64545         * m4/stat.m4: Likewise.
64546         * m4/strftime.m4: Likewise.
64547         Suggestion from Alain Magloire.
64548
64549         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
64550         an argument.
64551
64552         * m4/regex.m4: Add a run-time Test for proper operation of
64553         re_compile_pattern.
64554
64555 1999-01-31  Jim Meyering  <meyering@ascend.com>
64556
64557         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
64558
64559 1999-01-30  Jim Meyering  <meyering@ascend.com>
64560
64561         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
64562
64563         * m4/jm-mktime.m4: Make this a wrapper around the official
64564         AM_FUNC_MKTIME rather than my private copy, now that the official one
64565         is up to date.
64566         * m4/mktime.m4: Remove file.
64567
64568         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
64569         * m4/uptime.m4: Likewise.
64570         * m4/uintmax_t.m4: Likewise.
64571
64572 1999-01-28  Jim Meyering  <meyering@ascend.com>
64573
64574         * m4/jm-macros.m4: Use jm_AFS.
64575         * m4/afs.m4: New file (from fileutils' configure.in).
64576
64577         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
64578         * m4/chown.m4: Likewise.
64579         * m4/d-ino.m4: Likewise.
64580         * m4/d-type.m4: Likewise.
64581         * m4/fnmatch.m4: Likewise.
64582         * m4/getgroups.m4: Likewise.
64583         * m4/gettext.m4: Likewise.
64584         * m4/jm-mktime.m4: Likewise.
64585         * m4/jm-winsz2.m4: Likewise.
64586         * m4/lcmessage.m4: Likewise.
64587         * m4/ls-mntd-fs.m4: Likewise.
64588         * m4/malloc.m4: Likewise.
64589         * m4/memcmp.m4: Likewise.
64590         * m4/putenv.m4: Likewise.
64591         * m4/realloc.m4: Likewise.
64592         * m4/st_mtim.m4: Likewise.
64593         * m4/strftime.m4: Likewise.
64594
64595 1999-01-16  Jim Meyering  <meyering@ascend.com>
64596
64597         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
64598         (ARGMATCH_DIE_DECL): Define.
64599
64600 1999-01-12  Jim Meyering  <meyering@ascend.com>
64601
64602         * m4/Makefile.am.in: Rewrite to avoid using fmt.
64603         Reported by Lars Hecking.
64604
64605 1999-01-10  Jim Meyering  <meyering@ascend.com>
64606
64607         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
64608         gross kludge.
64609         * m4/inttypes_h.m4: Likewise.
64610         * m4/lstat.m4: Likewise.
64611         * m4/malloc.m4: Likewise.
64612         * m4/readdir.m4: Likewise.
64613         * m4/realloc.m4: Likewise.
64614         * m4/st_dm_mode.m4: Likewise.
64615         * m4/stat.m4: Likewise.
64616         * m4/utimbuf.m4: Likewise.
64617         * m4/utimes.m4: Likewise.
64618
64619         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
64620         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
64621         comments in config.h.in are meaningful.
64622
64623         * m4/jm-macros.m4: Require autoconf-2.13 here.
64624
64625         * m4/regex.m4: By default, don't use the included regex.c on systems
64626         with glibc 2.  Suggestion from Uli Drepper.
64627
64628 1999-01-02  Jim Meyering  <meyering@ascend.com>
64629
64630         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
64631
64632 1998-12-18  Jim Meyering  <meyering@ascend.com>
64633
64634         * m4/Makefile.am.in (Makefile.am): Simplify rule.
64635         Based on a suggestion from Lars Hecking.
64636
64637 1998-11-16  Paul Eggert  <eggert@twinsun.com>
64638
64639         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
64640
64641 1998-11-16  Jim Meyering  <meyering@ascend.com>
64642
64643         * m4/lfs.m4: Double-quote the `uname...` expression.
64644
64645 1998-11-14  Jim Meyering  <meyering@ascend.com>
64646
64647         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
64648         * m4/stat.m4: Likewise.
64649
64650 1998-11-03  Jim Meyering  <meyering@ascend.com>
64651
64652         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
64653         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
64654
64655 1998-10-18  Jim Meyering  <meyering@ascend.com>
64656
64657         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
64658
64659 1998-10-17  Jim Meyering  <meyering@ascend.com>
64660
64661         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
64662         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
64663         calls for those previously hard-coded headers.  Instead, take a new
64664         parameter.
64665         (jm_CHECK_DECLARATIONS): Reflect interface change.
64666         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
64667         (jm_CHECK_DECL_LOCALTIME_R): New macro.
64668
64669         * m4/mktime.m4: Test for spring-forward gap before long-running test.
64670
64671 1998-10-14  Jim Meyering  <meyering@ascend.com>
64672
64673         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
64674         instead of "TZ=America/Vancouver".  From Paul Eggert.
64675
64676 1998-10-11  Jim Meyering  <meyering@ascend.com>
64677
64678         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
64679         This adds a test for a recently added compatibility fix for mktime.c.
64680         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
64681
64682 1998-09-27  Jim Meyering  <meyering@ascend.com>
64683
64684         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
64685
64686         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
64687         ../configure.in, including a change from Gordon Matzigkeit to allow
64688         cross-compiling for the Hurd.
64689
64690         * m4/glibc.m4: New file/macro to test for the GNU C Library
64691         versions 1 and 2.  From Gordon Matzigkeit.
64692         Indent.
64693
64694 1998-09-21  Jim Meyering  <meyering@ascend.com>
64695
64696         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
64697
64698 1998-08-18  Paul Eggert  <eggert@twinsun.com>
64699
64700         Port nanosecond-resolution times to UnixWare 2.1.2 and
64701         pedantic Solaris 2.6.
64702
64703         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
64704         AC_STRUCT_ST_MTIM.
64705         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
64706         Generate name of ns member, instead of just 1 or undef.
64707         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
64708
64709 1998-08-15  Jim Meyering  <meyering@ascend.com>
64710
64711         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
64712         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
64713         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
64714         instead of jm_TYPE_SSIZE_T.
64715
64716 1998-08-12  Jim Meyering  <meyering@ascend.com>
64717
64718         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
64719
64720 1998-08-02  Jim Meyering  <meyering@ascend.com>
64721
64722         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
64723         in acconfig.h manually.
64724
64725 1998-07-31  Paul Eggert  <eggert@twinsun.com>
64726
64727         * m4/st_mtim.m4: New file.
64728
64729 1998-07-28  Jim Meyering  <meyering@ascend.com>
64730
64731         * m4/utimes.m4: Undef stat.
64732
64733 1998-07-25  Jim Meyering  <meyering@ascend.com>
64734
64735         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
64736         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
64737
64738 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
64739
64740         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
64741         uid and gid actually remain unchanged.
64742
64743 1998-07-07  Jim Meyering  <meyering@ascend.com>
64744
64745         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
64746
64747 1998-07-04  Jim Meyering  <meyering@ascend.com>
64748
64749         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
64750         to prove that this macro can be used in packages without regex.c.
64751
64752 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
64753
64754         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
64755         is to be used.
64756
64757 1998-07-03  Jim Meyering  <meyering@ascend.com>
64758
64759         * m4/gettext.m4: Add -lintl if it's found to be necessary.
64760
64761         * m4/gettext.m4: New file -- from gettext-0.10.35.
64762         * m4/lcmessage.m4: Likewise.
64763         * m4/progtest.m4: Likewise.
64764
64765         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
64766         * m4/jm-macros.m4: Require the new macro.
64767
64768 1998-06-29  Jim Meyering  <meyering@ascend.com>
64769
64770         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
64771         for the definition of NGROUPS (used in a system header included
64772         by sys/mount.h).
64773
64774 1998-06-28  Jim Meyering  <meyering@ascend.com>
64775
64776         * m4/ls-mntd-fs.m4: New file.
64777         * m4/fstypename.m4: New file.
64778
64779         * m4/jm-macros.m4: Require the new macro.
64780         * m4/jm-glibc-io.m4: New file.
64781
64782 1998-05-19  Jim Meyering  <meyering@ascend.com>
64783
64784         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
64785         * m4/lchown.m4: New file.
64786
64787         * m4/Makefile.am.in: New file.
64788         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
64789
64790 1998-05-14  Jim Meyering  <meyering@ascend.com>
64791
64792         * m4/Makefile.am (EXTRA_DIST): Add them.
64793         * m4/jm-macros.m4: New file.
64794         * m4/utimbuf.m4: New file.
64795
64796 1998-05-12  Jim Meyering  <meyering@ascend.com>
64797
64798         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
64799
64800 1998-05-11  Jim Meyering  <meyering@ascend.com>
64801
64802         * m4/isc-posix.m4: New file.
64803
64804 1998-05-10  Jim Meyering  <meyering@ascend.com>
64805
64806         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
64807
64808 1998-05-09  Jim Meyering  <meyering@ascend.com>
64809
64810         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
64811         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
64812         with automake.
64813
64814         * m4/ssize_t.m4: New file.
64815         * m4/mktime.m4: Remove file -- the new automake has this now.
64816
64817 1998-04-26  Jim Meyering  <meyering@ascend.com>
64818
64819         * m4/assert.m4: New file.
64820         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
64821
64822 1998-04-05  Jim Meyering  <meyering@ascend.com>
64823
64824         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
64825         (jm_PREREQ): Use it here.
64826
64827 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
64828
64829         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
64830         in acconfig.h.
64831
64832 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
64833
64834         * m4/prereq.m4: New file.
64835         * m4/error.m4: New file.
64836         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
64837
64838 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
64839
64840         * m4/getline.m4: Don't set am_cv_func_working_getline before the
64841         cache-check for the same variable -- that defeated the purpose of
64842         the test; the test program was never run.  This was a problem only
64843         on systems with losing getline functions -- HP-UX 10.20 is one.
64844         Reported by Bjorn Helgaas.
64845
64846 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
64847
64848         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
64849
64850 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
64851
64852         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
64853
64854         * m4/const.m4: New file.  Use an initializer in this declaration
64855         typedef int charset[2]; const charset x;
64856         Reported by Bob Glickstein.
64857
64858 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
64859
64860         * m4/chown.m4: Fix reversed types on -1 args to chown.
64861         From Kaveh Ghazi.
64862
64863 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
64864
64865         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
64866         Add lseek and memchr.
64867
64868         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
64869         T.E.Dickey <dickey@clark.net> said that some older preprocessors
64870         have a 20-character limit on names.
64871
64872 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
64873
64874         * m4/inttypes_h.m4: New file.
64875         * m4/uintmax_t.m4: New file.
64876         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
64877
64878
64879         -----
64880
64881         Local Variables:
64882         coding: utf-8
64883         End:
64884
64885         Copyright (C) 1997-2010 Free Software Foundation, Inc.
64886
64887         Copying and distribution of this file, with or without
64888         modification, are permitted provided the copyright notice
64889         and this notice are preserved.